# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class GcpParams(object):
"""Implementation of the 'GcpParams' model.
Specifies various resources when converting and deploying a VM to GCP.
Attributes:
instance_id (long|int): Specifies id of the GCP instance type in which
to deploy the VM.
region (long|int): Specifies id of the GCP region in which to deploy
the VM.
subnet_id (long|int): Specifies id of the subnet within above VPC.
virtual_private_cloud_id (long|int): Specifies id of the Virtual
Private Cloud to chose for the instance type.
"""
# Create a mapping from Model property names to API property names
_names = {
"instance_id":'instanceId',
"region":'region',
"subnet_id":'subnetId',
"virtual_private_cloud_id":'virtualPrivateCloudId'
}
def __init__(self,
instance_id=None,
region=None,
subnet_id=None,
virtual_private_cloud_id=None):
"""Constructor for the GcpParams class"""
# Initialize members of the class
self.instance_id = instance_id
self.region = region
self.subnet_id = subnet_id
self.virtual_private_cloud_id = virtual_private_cloud_id
[docs] @classmethod
def from_dictionary(cls,
dictionary):
"""Creates an instance of this model from a dictionary
Args:
dictionary (dictionary): A dictionary representation of the object as
obtained from the deserialization of the server's response. The keys
MUST match property names in the API description.
Returns:
object: An instance of this structure class.
"""
if dictionary is None:
return None
# Extract variables from the dictionary
instance_id = dictionary.get('instanceId')
region = dictionary.get('region')
subnet_id = dictionary.get('subnetId')
virtual_private_cloud_id = dictionary.get('virtualPrivateCloudId')
# Return an object of this model
return cls(instance_id,
region,
subnet_id,
virtual_private_cloud_id)