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.
36 'image_id':
'image_id',
40 def __init__(self, image_id=None, node_id=None):
41 """ClustersBody - a model defined in Swagger"""
45 if image_id
is not None:
47 if node_id
is not None:
52 """Gets the image_id of this ClustersBody. # noqa: E501
54 ID of Image for that Node # noqa: E501
56 :return: The image_id of this ClustersBody. # noqa: E501
63 """Sets the image_id of this ClustersBody.
65 ID of Image for that Node # noqa: E501
67 :param image_id: The image_id of this ClustersBody. # noqa: E501
75 """Gets the node_id of this ClustersBody. # noqa: E501
77 ID of a Node (must be unique) # noqa: E501
79 :return: The node_id of this ClustersBody. # noqa: E501
86 """Sets the node_id of this ClustersBody.
88 ID of a Node (must be unique) # noqa: E501
90 :param node_id: The node_id of this ClustersBody. # noqa: E501
97 """Returns the model properties as a dict"""
100 for attr, _
in six.iteritems(self.
swagger_typesswagger_types):
101 value = getattr(self, attr)
102 if isinstance(value, list):
103 result[attr] = list(map(
104 lambda x: x.to_dict()
if hasattr(x,
"to_dict")
else x,
107 elif hasattr(value,
"to_dict"):
108 result[attr] = value.to_dict()
109 elif isinstance(value, dict):
110 result[attr] = dict(map(
111 lambda item: (item[0], item[1].
to_dict())
112 if hasattr(item[1],
"to_dict")
else item,
117 if issubclass(ClustersBody, dict):
118 for key, value
in self.items():
124 """Returns the string representation of the model"""
125 return pprint.pformat(self.
to_dictto_dict())
128 """For `print` and `pprint`"""
129 return self.
to_strto_str()
132 """Returns true if both objects are equal"""
133 if not isinstance(other, ClustersBody):
136 return self.
__dict____dict__ == other.__dict__
139 """Returns true if both objects are not equal"""
140 return not self == other
def __init__(self, image_id=None, node_id=None)
def image_id(self, image_id)
def node_id(self, node_id)