byteplus-python-sdk-v2 3.0.53__py2.py3-none-any.whl → 3.0.54__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {byteplus_python_sdk_v2-3.0.53.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/METADATA +1 -1
- {byteplus_python_sdk_v2-3.0.53.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/RECORD +38 -27
- {byteplus_python_sdk_v2-3.0.53.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/top_level.txt +1 -0
- byteplussdkclawsentry/__init__.py +24 -0
- byteplussdkclawsentry/api/__init__.py +6 -0
- byteplussdkclawsentry/api/clawsentry_api.py +131 -0
- byteplussdkclawsentry/models/__init__.py +20 -0
- byteplussdkclawsentry/models/base_for_create_claw_input.py +126 -0
- byteplussdkclawsentry/models/create_claw_request.py +251 -0
- byteplussdkclawsentry/models/create_claw_response.py +279 -0
- byteplussdkcore/api_client.py +1 -1
- byteplussdkcore/configuration.py +1 -1
- byteplussdkcore/endpoint/providers/default_provider.py +7 -0
- byteplussdkcore/endpoint/providers/standard_provider.py +1 -0
- byteplussdkcpaas/__init__.py +4 -0
- byteplussdkcpaas/models/__init__.py +4 -0
- byteplussdkcpaas/models/create_template_v2_request.py +27 -1
- byteplussdkcpaas/models/data_for_get_template_v2_output.py +79 -1
- byteplussdkcpaas/models/element_style_for_create_template_v2_input.py +497 -3
- byteplussdkcpaas/models/element_style_for_get_template_v2_output.py +497 -3
- byteplussdkcpaas/models/extend_attrs_for_create_template_v2_input.py +79 -1
- byteplussdkcpaas/models/extend_attrs_for_get_template_v2_output.py +79 -1
- byteplussdkcpaas/models/item_for_create_template_v2_input.py +149 -0
- byteplussdkcpaas/models/item_for_get_template_v2_output.py +149 -0
- byteplussdkcpaas/models/page_dto_list_for_create_template_v2_input.py +29 -3
- byteplussdkcpaas/models/page_dto_list_for_get_template_v2_output.py +29 -3
- byteplussdkcpaas/models/page_element_dto_list_for_create_template_v2_input.py +29 -3
- byteplussdkcpaas/models/page_element_dto_list_for_get_template_v2_output.py +29 -3
- byteplussdkcpaas/models/template_button_list_for_create_template_v2_input.py +227 -0
- byteplussdkcpaas/models/template_button_list_for_get_template_v2_output.py +227 -0
- byteplussdkcpaas/models/template_list_for_create_template_v2_input.py +235 -1
- byteplussdkcpaas/models/template_list_for_get_template_v2_output.py +235 -1
- byteplussdkcpaas/models/template_status_for_list_template_v2_output.py +79 -1
- byteplussdkcpaas/models/variables_dto_list_for_create_template_v2_input.py +27 -1
- byteplussdkcpaas/models/variables_dto_list_for_get_template_v2_output.py +27 -1
- {byteplus_python_sdk_v2-3.0.53.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/WHEEL +0 -0
- {byteplus_python_sdk_v2-3.0.53.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/licenses/LICENSE.txt +0 -0
- {byteplus_python_sdk_v2-3.0.53.dist-info → byteplus_python_sdk_v2-3.0.54.dist-info}/licenses/NOTICE.md +0 -0
|
@@ -35,16 +35,22 @@ class TemplateStatusForListTemplateV2Output(object):
|
|
|
35
35
|
swagger_types = {
|
|
36
36
|
'audit_status': 'str',
|
|
37
37
|
'reason': 'str',
|
|
38
|
+
'service_name': 'str',
|
|
39
|
+
'service_no': 'str',
|
|
40
|
+
'subaccount_id': 'str',
|
|
38
41
|
'template_type': 'str'
|
|
39
42
|
}
|
|
40
43
|
|
|
41
44
|
attribute_map = {
|
|
42
45
|
'audit_status': 'AuditStatus',
|
|
43
46
|
'reason': 'Reason',
|
|
47
|
+
'service_name': 'ServiceName',
|
|
48
|
+
'service_no': 'ServiceNo',
|
|
49
|
+
'subaccount_id': 'SubaccountId',
|
|
44
50
|
'template_type': 'TemplateType'
|
|
45
51
|
}
|
|
46
52
|
|
|
47
|
-
def __init__(self, audit_status=None, reason=None, template_type=None, _configuration=None): # noqa: E501
|
|
53
|
+
def __init__(self, audit_status=None, reason=None, service_name=None, service_no=None, subaccount_id=None, template_type=None, _configuration=None): # noqa: E501
|
|
48
54
|
"""TemplateStatusForListTemplateV2Output - a model defined in Swagger""" # noqa: E501
|
|
49
55
|
if _configuration is None:
|
|
50
56
|
_configuration = Configuration()
|
|
@@ -52,6 +58,9 @@ class TemplateStatusForListTemplateV2Output(object):
|
|
|
52
58
|
|
|
53
59
|
self._audit_status = None
|
|
54
60
|
self._reason = None
|
|
61
|
+
self._service_name = None
|
|
62
|
+
self._service_no = None
|
|
63
|
+
self._subaccount_id = None
|
|
55
64
|
self._template_type = None
|
|
56
65
|
self.discriminator = None
|
|
57
66
|
|
|
@@ -59,6 +68,12 @@ class TemplateStatusForListTemplateV2Output(object):
|
|
|
59
68
|
self.audit_status = audit_status
|
|
60
69
|
if reason is not None:
|
|
61
70
|
self.reason = reason
|
|
71
|
+
if service_name is not None:
|
|
72
|
+
self.service_name = service_name
|
|
73
|
+
if service_no is not None:
|
|
74
|
+
self.service_no = service_no
|
|
75
|
+
if subaccount_id is not None:
|
|
76
|
+
self.subaccount_id = subaccount_id
|
|
62
77
|
if template_type is not None:
|
|
63
78
|
self.template_type = template_type
|
|
64
79
|
|
|
@@ -104,6 +119,69 @@ class TemplateStatusForListTemplateV2Output(object):
|
|
|
104
119
|
|
|
105
120
|
self._reason = reason
|
|
106
121
|
|
|
122
|
+
@property
|
|
123
|
+
def service_name(self):
|
|
124
|
+
"""Gets the service_name of this TemplateStatusForListTemplateV2Output. # noqa: E501
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
:return: The service_name of this TemplateStatusForListTemplateV2Output. # noqa: E501
|
|
128
|
+
:rtype: str
|
|
129
|
+
"""
|
|
130
|
+
return self._service_name
|
|
131
|
+
|
|
132
|
+
@service_name.setter
|
|
133
|
+
def service_name(self, service_name):
|
|
134
|
+
"""Sets the service_name of this TemplateStatusForListTemplateV2Output.
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
:param service_name: The service_name of this TemplateStatusForListTemplateV2Output. # noqa: E501
|
|
138
|
+
:type: str
|
|
139
|
+
"""
|
|
140
|
+
|
|
141
|
+
self._service_name = service_name
|
|
142
|
+
|
|
143
|
+
@property
|
|
144
|
+
def service_no(self):
|
|
145
|
+
"""Gets the service_no of this TemplateStatusForListTemplateV2Output. # noqa: E501
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
:return: The service_no of this TemplateStatusForListTemplateV2Output. # noqa: E501
|
|
149
|
+
:rtype: str
|
|
150
|
+
"""
|
|
151
|
+
return self._service_no
|
|
152
|
+
|
|
153
|
+
@service_no.setter
|
|
154
|
+
def service_no(self, service_no):
|
|
155
|
+
"""Sets the service_no of this TemplateStatusForListTemplateV2Output.
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
:param service_no: The service_no of this TemplateStatusForListTemplateV2Output. # noqa: E501
|
|
159
|
+
:type: str
|
|
160
|
+
"""
|
|
161
|
+
|
|
162
|
+
self._service_no = service_no
|
|
163
|
+
|
|
164
|
+
@property
|
|
165
|
+
def subaccount_id(self):
|
|
166
|
+
"""Gets the subaccount_id of this TemplateStatusForListTemplateV2Output. # noqa: E501
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
:return: The subaccount_id of this TemplateStatusForListTemplateV2Output. # noqa: E501
|
|
170
|
+
:rtype: str
|
|
171
|
+
"""
|
|
172
|
+
return self._subaccount_id
|
|
173
|
+
|
|
174
|
+
@subaccount_id.setter
|
|
175
|
+
def subaccount_id(self, subaccount_id):
|
|
176
|
+
"""Sets the subaccount_id of this TemplateStatusForListTemplateV2Output.
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
:param subaccount_id: The subaccount_id of this TemplateStatusForListTemplateV2Output. # noqa: E501
|
|
180
|
+
:type: str
|
|
181
|
+
"""
|
|
182
|
+
|
|
183
|
+
self._subaccount_id = subaccount_id
|
|
184
|
+
|
|
107
185
|
@property
|
|
108
186
|
def template_type(self):
|
|
109
187
|
"""Gets the template_type of this TemplateStatusForListTemplateV2Output. # noqa: E501
|
|
@@ -37,6 +37,7 @@ class VariablesDTOListForCreateTemplateV2Input(object):
|
|
|
37
37
|
'format': 'str',
|
|
38
38
|
'unique_variable_code': 'str',
|
|
39
39
|
'variable_code': 'str',
|
|
40
|
+
'variable_length': 'int',
|
|
40
41
|
'variable_name': 'str'
|
|
41
42
|
}
|
|
42
43
|
|
|
@@ -45,10 +46,11 @@ class VariablesDTOListForCreateTemplateV2Input(object):
|
|
|
45
46
|
'format': 'Format',
|
|
46
47
|
'unique_variable_code': 'UniqueVariableCode',
|
|
47
48
|
'variable_code': 'VariableCode',
|
|
49
|
+
'variable_length': 'VariableLength',
|
|
48
50
|
'variable_name': 'VariableName'
|
|
49
51
|
}
|
|
50
52
|
|
|
51
|
-
def __init__(self, default_value=None, format=None, unique_variable_code=None, variable_code=None, variable_name=None, _configuration=None): # noqa: E501
|
|
53
|
+
def __init__(self, default_value=None, format=None, unique_variable_code=None, variable_code=None, variable_length=None, variable_name=None, _configuration=None): # noqa: E501
|
|
52
54
|
"""VariablesDTOListForCreateTemplateV2Input - a model defined in Swagger""" # noqa: E501
|
|
53
55
|
if _configuration is None:
|
|
54
56
|
_configuration = Configuration()
|
|
@@ -58,6 +60,7 @@ class VariablesDTOListForCreateTemplateV2Input(object):
|
|
|
58
60
|
self._format = None
|
|
59
61
|
self._unique_variable_code = None
|
|
60
62
|
self._variable_code = None
|
|
63
|
+
self._variable_length = None
|
|
61
64
|
self._variable_name = None
|
|
62
65
|
self.discriminator = None
|
|
63
66
|
|
|
@@ -69,6 +72,8 @@ class VariablesDTOListForCreateTemplateV2Input(object):
|
|
|
69
72
|
self.unique_variable_code = unique_variable_code
|
|
70
73
|
if variable_code is not None:
|
|
71
74
|
self.variable_code = variable_code
|
|
75
|
+
if variable_length is not None:
|
|
76
|
+
self.variable_length = variable_length
|
|
72
77
|
if variable_name is not None:
|
|
73
78
|
self.variable_name = variable_name
|
|
74
79
|
|
|
@@ -156,6 +161,27 @@ class VariablesDTOListForCreateTemplateV2Input(object):
|
|
|
156
161
|
|
|
157
162
|
self._variable_code = variable_code
|
|
158
163
|
|
|
164
|
+
@property
|
|
165
|
+
def variable_length(self):
|
|
166
|
+
"""Gets the variable_length of this VariablesDTOListForCreateTemplateV2Input. # noqa: E501
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
:return: The variable_length of this VariablesDTOListForCreateTemplateV2Input. # noqa: E501
|
|
170
|
+
:rtype: int
|
|
171
|
+
"""
|
|
172
|
+
return self._variable_length
|
|
173
|
+
|
|
174
|
+
@variable_length.setter
|
|
175
|
+
def variable_length(self, variable_length):
|
|
176
|
+
"""Sets the variable_length of this VariablesDTOListForCreateTemplateV2Input.
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
:param variable_length: The variable_length of this VariablesDTOListForCreateTemplateV2Input. # noqa: E501
|
|
180
|
+
:type: int
|
|
181
|
+
"""
|
|
182
|
+
|
|
183
|
+
self._variable_length = variable_length
|
|
184
|
+
|
|
159
185
|
@property
|
|
160
186
|
def variable_name(self):
|
|
161
187
|
"""Gets the variable_name of this VariablesDTOListForCreateTemplateV2Input. # noqa: E501
|
|
@@ -37,6 +37,7 @@ class VariablesDTOListForGetTemplateV2Output(object):
|
|
|
37
37
|
'format': 'str',
|
|
38
38
|
'unique_variable_code': 'str',
|
|
39
39
|
'variable_code': 'str',
|
|
40
|
+
'variable_length': 'int',
|
|
40
41
|
'variable_name': 'str'
|
|
41
42
|
}
|
|
42
43
|
|
|
@@ -45,10 +46,11 @@ class VariablesDTOListForGetTemplateV2Output(object):
|
|
|
45
46
|
'format': 'Format',
|
|
46
47
|
'unique_variable_code': 'UniqueVariableCode',
|
|
47
48
|
'variable_code': 'VariableCode',
|
|
49
|
+
'variable_length': 'VariableLength',
|
|
48
50
|
'variable_name': 'VariableName'
|
|
49
51
|
}
|
|
50
52
|
|
|
51
|
-
def __init__(self, default_value=None, format=None, unique_variable_code=None, variable_code=None, variable_name=None, _configuration=None): # noqa: E501
|
|
53
|
+
def __init__(self, default_value=None, format=None, unique_variable_code=None, variable_code=None, variable_length=None, variable_name=None, _configuration=None): # noqa: E501
|
|
52
54
|
"""VariablesDTOListForGetTemplateV2Output - a model defined in Swagger""" # noqa: E501
|
|
53
55
|
if _configuration is None:
|
|
54
56
|
_configuration = Configuration()
|
|
@@ -58,6 +60,7 @@ class VariablesDTOListForGetTemplateV2Output(object):
|
|
|
58
60
|
self._format = None
|
|
59
61
|
self._unique_variable_code = None
|
|
60
62
|
self._variable_code = None
|
|
63
|
+
self._variable_length = None
|
|
61
64
|
self._variable_name = None
|
|
62
65
|
self.discriminator = None
|
|
63
66
|
|
|
@@ -69,6 +72,8 @@ class VariablesDTOListForGetTemplateV2Output(object):
|
|
|
69
72
|
self.unique_variable_code = unique_variable_code
|
|
70
73
|
if variable_code is not None:
|
|
71
74
|
self.variable_code = variable_code
|
|
75
|
+
if variable_length is not None:
|
|
76
|
+
self.variable_length = variable_length
|
|
72
77
|
if variable_name is not None:
|
|
73
78
|
self.variable_name = variable_name
|
|
74
79
|
|
|
@@ -156,6 +161,27 @@ class VariablesDTOListForGetTemplateV2Output(object):
|
|
|
156
161
|
|
|
157
162
|
self._variable_code = variable_code
|
|
158
163
|
|
|
164
|
+
@property
|
|
165
|
+
def variable_length(self):
|
|
166
|
+
"""Gets the variable_length of this VariablesDTOListForGetTemplateV2Output. # noqa: E501
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
:return: The variable_length of this VariablesDTOListForGetTemplateV2Output. # noqa: E501
|
|
170
|
+
:rtype: int
|
|
171
|
+
"""
|
|
172
|
+
return self._variable_length
|
|
173
|
+
|
|
174
|
+
@variable_length.setter
|
|
175
|
+
def variable_length(self, variable_length):
|
|
176
|
+
"""Sets the variable_length of this VariablesDTOListForGetTemplateV2Output.
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
:param variable_length: The variable_length of this VariablesDTOListForGetTemplateV2Output. # noqa: E501
|
|
180
|
+
:type: int
|
|
181
|
+
"""
|
|
182
|
+
|
|
183
|
+
self._variable_length = variable_length
|
|
184
|
+
|
|
159
185
|
@property
|
|
160
186
|
def variable_name(self):
|
|
161
187
|
"""Gets the variable_name of this VariablesDTOListForGetTemplateV2Output. # noqa: E501
|
|
File without changes
|
|
File without changes
|
|
File without changes
|