huaweicloud-sdk-python-v3/huaweicloud-sdk-functiongraph/huaweicloudsdkfunctiongraph/v2/model/update_dependency_request_b...

244 lines
6.9 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# coding: utf-8
import pprint
import re
import six
class UpdateDependencyRequestBody:
"""
Attributes:
openapi_types (dict): The key is attribute name
and the value is attribute type.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
"""
sensitive_list = []
openapi_types = {
'depend_file': 'str',
'depend_link': 'str',
'depend_type': 'str',
'runtime': 'str',
'name': 'str',
'description': 'str'
}
attribute_map = {
'depend_file': 'depend_file',
'depend_link': 'depend_link',
'depend_type': 'depend_type',
'runtime': 'runtime',
'name': 'name',
'description': 'description'
}
def __init__(self, depend_file=None, depend_link=None, depend_type=None, runtime=None, name=None, description=None):
"""UpdateDependencyRequestBody - a model defined in huaweicloud sdk"""
self._depend_file = None
self._depend_link = None
self._depend_type = None
self._runtime = None
self._name = None
self._description = None
self.discriminator = None
if depend_file is not None:
self.depend_file = depend_file
if depend_link is not None:
self.depend_link = depend_link
self.depend_type = depend_type
self.runtime = runtime
if name is not None:
self.name = name
if description is not None:
self.description = description
@property
def depend_file(self):
"""Gets the depend_file of this UpdateDependencyRequestBody.
depend_type为zip类型时必填为文件流格式。
:return: The depend_file of this UpdateDependencyRequestBody.
:rtype: str
"""
return self._depend_file
@depend_file.setter
def depend_file(self, depend_file):
"""Sets the depend_file of this UpdateDependencyRequestBody.
depend_type为zip类型时必填为文件流格式。
:param depend_file: The depend_file of this UpdateDependencyRequestBody.
:type: str
"""
self._depend_file = depend_file
@property
def depend_link(self):
"""Gets the depend_link of this UpdateDependencyRequestBody.
depend_type为obs类型时依赖包在obs的存储地址。
:return: The depend_link of this UpdateDependencyRequestBody.
:rtype: str
"""
return self._depend_link
@depend_link.setter
def depend_link(self, depend_link):
"""Sets the depend_link of this UpdateDependencyRequestBody.
depend_type为obs类型时依赖包在obs的存储地址。
:param depend_link: The depend_link of this UpdateDependencyRequestBody.
:type: str
"""
self._depend_link = depend_link
@property
def depend_type(self):
"""Gets the depend_type of this UpdateDependencyRequestBody.
导入类型,目前支持obs和zip。
:return: The depend_type of this UpdateDependencyRequestBody.
:rtype: str
"""
return self._depend_type
@depend_type.setter
def depend_type(self, depend_type):
"""Sets the depend_type of this UpdateDependencyRequestBody.
导入类型,目前支持obs和zip。
:param depend_type: The depend_type of this UpdateDependencyRequestBody.
:type: str
"""
self._depend_type = depend_type
@property
def runtime(self):
"""Gets the runtime of this UpdateDependencyRequestBody.
运行时语言。
:return: The runtime of this UpdateDependencyRequestBody.
:rtype: str
"""
return self._runtime
@runtime.setter
def runtime(self, runtime):
"""Sets the runtime of this UpdateDependencyRequestBody.
运行时语言。
:param runtime: The runtime of this UpdateDependencyRequestBody.
:type: str
"""
self._runtime = runtime
@property
def name(self):
"""Gets the name of this UpdateDependencyRequestBody.
依赖包名称。必须以大、小写字母开头以字母或数字结尾只能由字母、数字、下划线、点和中划线组成长度不超过96个字符。
:return: The name of this UpdateDependencyRequestBody.
:rtype: str
"""
return self._name
@name.setter
def name(self, name):
"""Sets the name of this UpdateDependencyRequestBody.
依赖包名称。必须以大、小写字母开头以字母或数字结尾只能由字母、数字、下划线、点和中划线组成长度不超过96个字符。
:param name: The name of this UpdateDependencyRequestBody.
:type: str
"""
self._name = name
@property
def description(self):
"""Gets the description of this UpdateDependencyRequestBody.
依赖包描述不超过512个字符。
:return: The description of this UpdateDependencyRequestBody.
:rtype: str
"""
return self._description
@description.setter
def description(self, description):
"""Sets the description of this UpdateDependencyRequestBody.
依赖包描述不超过512个字符。
:param description: The description of this UpdateDependencyRequestBody.
:type: str
"""
self._description = description
def to_dict(self):
"""Returns the model properties as a dict"""
result = {}
for attr, _ in six.iteritems(self.openapi_types):
value = getattr(self, attr)
if isinstance(value, list):
result[attr] = list(map(
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
value
))
elif hasattr(value, "to_dict"):
result[attr] = value.to_dict()
elif isinstance(value, dict):
result[attr] = dict(map(
lambda item: (item[0], item[1].to_dict())
if hasattr(item[1], "to_dict") else item,
value.items()
))
else:
if attr in self.sensitive_list:
result[attr] = "****"
else:
result[attr] = value
return result
def to_str(self):
"""Returns the string representation of the model"""
return pprint.pformat(self.to_dict())
def __repr__(self):
"""For `print` and `pprint`"""
return self.to_str()
def __eq__(self, other):
"""Returns true if both objects are equal"""
if not isinstance(other, UpdateDependencyRequestBody):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other