4 cloudFPGA Resource Manager API
6 No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
8 OpenAPI spec version: 0.8
10 Generated by: https://github.com/swagger-api/swagger-codegen.git
19 """NOTE: This class is auto generated by the swagger code generator program.
21 Do not edit the class manually.
25 swagger_types (dict): The key is attribute name
26 and the value is attribute type.
27 attribute_map (dict): The key is attribute name
28 and the value is json key in definition.
35 'image_id':
'image_id'
39 """InstancesBody - a model defined in Swagger"""
46 """Gets the image_id of this InstancesBody. # noqa: E501
48 Image unique identifier # noqa: E501
50 :return: The image_id of this InstancesBody. # noqa: E501
57 """Sets the image_id of this InstancesBody.
59 Image unique identifier # noqa: E501
61 :param image_id: The image_id of this InstancesBody. # noqa: E501
65 raise ValueError(
"Invalid value for `image_id`, must not be `None`")
70 """Returns the model properties as a dict"""
73 for attr, _
in six.iteritems(self.
swagger_typesswagger_types):
74 value = getattr(self, attr)
75 if isinstance(value, list):
76 result[attr] = list(map(
77 lambda x: x.to_dict()
if hasattr(x,
"to_dict")
else x,
80 elif hasattr(value,
"to_dict"):
81 result[attr] = value.to_dict()
82 elif isinstance(value, dict):
83 result[attr] = dict(map(
84 lambda item: (item[0], item[1].
to_dict())
85 if hasattr(item[1],
"to_dict")
else item,
90 if issubclass(InstancesBody, dict):
91 for key, value
in self.items():
97 """Returns the string representation of the model"""
98 return pprint.pformat(self.
to_dictto_dict())
101 """For `print` and `pprint`"""
102 return self.
to_strto_str()
105 """Returns true if both objects are equal"""
106 if not isinstance(other, InstancesBody):
109 return self.
__dict____dict__ == other.__dict__
112 """Returns true if both objects are not equal"""
113 return not self == other
def image_id(self, image_id)
def __init__(self, image_id=None)