volcengine-python-sdk 4.0.20__py2.py3-none-any.whl → 4.0.21__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.
Potentially problematic release.
This version of volcengine-python-sdk might be problematic. Click here for more details.
- volcengine_python_sdk-4.0.21.dist-info/METADATA +214 -0
- {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.21.dist-info}/RECORD +88 -62
- {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.21.dist-info}/WHEEL +1 -1
- volcenginesdkarkruntime/resources/images/images.py +1 -1
- volcenginesdkarkruntime/resources/responses/input_items.py +2 -2
- volcenginesdkarkruntime/resources/responses/responses.py +4 -1
- volcenginesdkarkruntime/types/images/images.py +3 -0
- volcenginesdkcore/api_client.py +1 -1
- volcenginesdkcore/configuration.py +1 -1
- volcenginesdkrdsmysqlv2/__init__.py +39 -25
- volcenginesdkrdsmysqlv2/api/rds_mysql_v2_api.py +1347 -1153
- volcenginesdkrdsmysqlv2/models/__init__.py +39 -25
- volcenginesdkrdsmysqlv2/models/address_for_describe_db_instance_endpoints_output.py +305 -0
- volcenginesdkrdsmysqlv2/models/allow_list_for_describe_allow_lists_output.py +27 -1
- volcenginesdkrdsmysqlv2/models/basic_info_for_describe_db_instance_detail_output.py +1 -105
- volcenginesdkrdsmysqlv2/models/change_object_for_sync_allow_list_output.py +331 -0
- volcenginesdkrdsmysqlv2/models/charge_detail_for_describe_db_instance_charge_detail_output.py +383 -0
- volcenginesdkrdsmysqlv2/models/create_db_endpoint_request.py +27 -1
- volcenginesdkrdsmysqlv2/models/create_db_instance_request.py +27 -1
- volcenginesdkrdsmysqlv2/models/create_dr_db_instance_request.py +27 -1
- volcenginesdkrdsmysqlv2/models/db_instance_attribute_for_describe_db_instance_attribute_output.py +825 -0
- volcenginesdkrdsmysqlv2/models/describe_allow_lists_request.py +29 -3
- volcenginesdkrdsmysqlv2/models/describe_backup_policy_response.py +53 -1
- volcenginesdkrdsmysqlv2/models/describe_db_disaster_recovery_instances_request.py +124 -0
- volcenginesdkrdsmysqlv2/models/describe_db_disaster_recovery_instances_response.py +305 -0
- volcenginesdkrdsmysqlv2/models/{describe_db_auto_scaling_config_request.py → describe_db_instance_attribute_request.py} +9 -9
- volcenginesdkrdsmysqlv2/models/describe_db_instance_attribute_response.py +123 -0
- volcenginesdkrdsmysqlv2/models/describe_db_instance_charge_detail_request.py +124 -0
- volcenginesdkrdsmysqlv2/models/describe_db_instance_charge_detail_response.py +123 -0
- volcenginesdkrdsmysqlv2/models/describe_db_instance_endpoints_request.py +124 -0
- volcenginesdkrdsmysqlv2/models/describe_db_instance_endpoints_response.py +123 -0
- volcenginesdkrdsmysqlv2/models/describe_db_instance_ha_config_request.py +124 -0
- volcenginesdkrdsmysqlv2/models/{describe_available_cross_region_request.py → describe_db_instance_ha_config_response.py} +36 -37
- volcenginesdkrdsmysqlv2/models/describe_db_instance_price_detail_response.py +29 -3
- volcenginesdkrdsmysqlv2/models/{describe_cross_backup_policy_request.py → describe_db_instance_tde_request.py} +9 -9
- volcenginesdkrdsmysqlv2/models/describe_db_instance_tde_response.py +123 -0
- volcenginesdkrdsmysqlv2/models/describe_db_proxy_price_detail_response.py +27 -1
- volcenginesdkrdsmysqlv2/models/describe_db_proxy_request.py +124 -0
- volcenginesdkrdsmysqlv2/models/describe_db_proxy_response.py +123 -0
- volcenginesdkrdsmysqlv2/models/describe_resource_usage_request.py +124 -0
- volcenginesdkrdsmysqlv2/models/describe_resource_usage_response.py +565 -0
- volcenginesdkrdsmysqlv2/models/disaster_recovery_instance_for_describe_db_disaster_recovery_instances_output.py +279 -0
- volcenginesdkrdsmysqlv2/models/endpoint_for_describe_db_instance_detail_output.py +27 -1
- volcenginesdkrdsmysqlv2/models/endpoint_for_describe_db_instance_endpoints_output.py +669 -0
- volcenginesdkrdsmysqlv2/models/maintenance_window_for_describe_db_instance_attribute_output.py +175 -0
- volcenginesdkrdsmysqlv2/models/modify_backup_policy_request.py +53 -1
- volcenginesdkrdsmysqlv2/models/modify_backup_policy_response.py +53 -1
- volcenginesdkrdsmysqlv2/models/modify_db_endpoint_request.py +53 -1
- volcenginesdkrdsmysqlv2/models/modify_db_instance_tde_request.py +281 -0
- volcenginesdkrdsmysqlv2/models/{modify_db_auto_scaling_config_response.py → modify_db_instance_tde_response.py} +5 -5
- volcenginesdkrdsmysqlv2/models/{upgrade_db_instance_kernel_version_request.py → modify_db_instance_type_request.py} +55 -29
- volcenginesdkrdsmysqlv2/models/{restore_to_cross_region_instance_response.py → modify_db_instance_type_response.py} +13 -13
- volcenginesdkrdsmysqlv2/models/node_for_describe_db_instance_ha_config_output.py +435 -0
- volcenginesdkrdsmysqlv2/models/{node_info_for_restore_to_cross_region_instance_input.py → node_info_for_modify_db_instance_type_input.py} +25 -25
- volcenginesdkrdsmysqlv2/models/{modify_db_auto_scaling_config_request.py → proxy_detail_for_describe_db_proxy_output.py} +36 -37
- volcenginesdkrdsmysqlv2/models/{describe_available_cross_region_response.py → proxy_node_custom_for_create_db_instance_input.py} +22 -22
- volcenginesdkrdsmysqlv2/models/proxy_node_custom_for_create_dr_db_instance_input.py +123 -0
- volcenginesdkrdsmysqlv2/models/proxy_node_custom_for_rebuild_db_instance_input.py +123 -0
- volcenginesdkrdsmysqlv2/models/proxy_node_custom_for_restore_to_new_instance_input.py +123 -0
- volcenginesdkrdsmysqlv2/models/proxy_resource_info_for_describe_db_proxy_output.py +175 -0
- volcenginesdkrdsmysqlv2/models/read_only_node_weight_for_describe_db_instance_endpoints_output.py +175 -0
- volcenginesdkrdsmysqlv2/models/rebuild_db_instance_request.py +27 -1
- volcenginesdkrdsmysqlv2/models/restore_to_new_instance_request.py +27 -1
- volcenginesdkrdsmysqlv2/models/sync_allow_list_request.py +150 -0
- volcenginesdkrdsmysqlv2/models/sync_allow_list_response.py +123 -0
- volcenginesdkrdsmysqlv2/models/{instance_tag_for_restore_to_cross_region_instance_input.py → tag_for_describe_db_instance_attribute_output.py} +13 -13
- volcenginesdkresourceshare/__init__.py +12 -0
- volcenginesdkresourceshare/api/resource_share_api.py +291 -0
- volcenginesdkresourceshare/models/__init__.py +12 -0
- volcenginesdkresourceshare/models/create_resource_share_request.py +29 -3
- volcenginesdkresourceshare/models/create_resource_share_response.py +29 -1
- volcenginesdkresourceshare/models/describe_resource_shares_request.py +31 -6
- volcenginesdkresourceshare/models/list_tags_for_resources_request.py +228 -0
- volcenginesdkrdsmysqlv2/models/describe_cross_region_backup_db_instances_response.py → volcenginesdkresourceshare/models/list_tags_for_resources_response.py +53 -27
- volcenginesdkresourceshare/models/resource_share_for_describe_resource_shares_output.py +27 -1
- volcenginesdkresourceshare/models/resource_tag_for_list_tags_for_resources_output.py +201 -0
- volcenginesdkresourceshare/models/tag_filter_for_describe_resource_shares_input.py +149 -0
- volcenginesdkresourceshare/models/tag_filter_for_list_tags_for_resources_input.py +149 -0
- volcenginesdkresourceshare/models/tag_for_create_resource_share_input.py +149 -0
- volcenginesdkresourceshare/models/tag_for_describe_resource_shares_output.py +149 -0
- volcenginesdkresourceshare/models/tag_for_tag_resources_input.py +151 -0
- volcenginesdkresourceshare/models/tag_resources_request.py +176 -0
- volcenginesdkrdsmysqlv2/models/upgrade_db_instance_kernel_version_response.py → volcenginesdkresourceshare/models/tag_resources_response.py +6 -6
- volcenginesdkresourceshare/models/untag_resources_request.py +176 -0
- volcenginesdkrdsmysqlv2/models/modify_db_instance_auto_upgrade_minor_version_response.py → volcenginesdkresourceshare/models/untag_resources_response.py +6 -6
- volcengine_python_sdk-4.0.20.dist-info/METADATA +0 -20
- volcenginesdkrdsmysqlv2/models/auto_storage_scaling_config_for_restore_to_cross_region_instance_input.py +0 -175
- volcenginesdkrdsmysqlv2/models/charge_info_for_restore_to_cross_region_instance_input.py +0 -227
- volcenginesdkrdsmysqlv2/models/data_for_describe_cross_region_backup_db_instances_output.py +0 -357
- volcenginesdkrdsmysqlv2/models/describe_cross_backup_policy_response.py +0 -227
- volcenginesdkrdsmysqlv2/models/describe_cross_region_backup_db_instances_request.py +0 -279
- volcenginesdkrdsmysqlv2/models/describe_db_auto_scaling_config_response.py +0 -227
- volcenginesdkrdsmysqlv2/models/modify_cross_backup_policy_request.py +0 -228
- volcenginesdkrdsmysqlv2/models/modify_cross_backup_policy_response.py +0 -227
- volcenginesdkrdsmysqlv2/models/modify_db_instance_auto_upgrade_minor_version_request.py +0 -151
- volcenginesdkrdsmysqlv2/models/restore_to_cross_region_instance_request.py +0 -597
- volcenginesdkrdsmysqlv2/models/storage_config_for_describe_db_auto_scaling_config_output.py +0 -175
- volcenginesdkrdsmysqlv2/models/storage_config_for_modify_db_auto_scaling_config_input.py +0 -175
- {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.21.dist-info/licenses}/LICENSE.txt +0 -0
- {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.21.dist-info/licenses}/NOTICE.md +0 -0
- {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.21.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
rds_mysql_v2
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: common-version
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
import pprint
|
|
15
|
+
import re # noqa: F401
|
|
16
|
+
|
|
17
|
+
import six
|
|
18
|
+
|
|
19
|
+
from volcenginesdkcore.configuration import Configuration
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class SyncAllowListResponse(object):
|
|
23
|
+
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
24
|
+
|
|
25
|
+
Do not edit the class manually.
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
"""
|
|
29
|
+
Attributes:
|
|
30
|
+
swagger_types (dict): The key is attribute name
|
|
31
|
+
and the value is attribute type.
|
|
32
|
+
attribute_map (dict): The key is attribute name
|
|
33
|
+
and the value is json key in definition.
|
|
34
|
+
"""
|
|
35
|
+
swagger_types = {
|
|
36
|
+
'change_objects': 'list[ChangeObjectForSyncAllowListOutput]'
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
attribute_map = {
|
|
40
|
+
'change_objects': 'ChangeObjects'
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
def __init__(self, change_objects=None, _configuration=None): # noqa: E501
|
|
44
|
+
"""SyncAllowListResponse - a model defined in Swagger""" # noqa: E501
|
|
45
|
+
if _configuration is None:
|
|
46
|
+
_configuration = Configuration()
|
|
47
|
+
self._configuration = _configuration
|
|
48
|
+
|
|
49
|
+
self._change_objects = None
|
|
50
|
+
self.discriminator = None
|
|
51
|
+
|
|
52
|
+
if change_objects is not None:
|
|
53
|
+
self.change_objects = change_objects
|
|
54
|
+
|
|
55
|
+
@property
|
|
56
|
+
def change_objects(self):
|
|
57
|
+
"""Gets the change_objects of this SyncAllowListResponse. # noqa: E501
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
:return: The change_objects of this SyncAllowListResponse. # noqa: E501
|
|
61
|
+
:rtype: list[ChangeObjectForSyncAllowListOutput]
|
|
62
|
+
"""
|
|
63
|
+
return self._change_objects
|
|
64
|
+
|
|
65
|
+
@change_objects.setter
|
|
66
|
+
def change_objects(self, change_objects):
|
|
67
|
+
"""Sets the change_objects of this SyncAllowListResponse.
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
:param change_objects: The change_objects of this SyncAllowListResponse. # noqa: E501
|
|
71
|
+
:type: list[ChangeObjectForSyncAllowListOutput]
|
|
72
|
+
"""
|
|
73
|
+
|
|
74
|
+
self._change_objects = change_objects
|
|
75
|
+
|
|
76
|
+
def to_dict(self):
|
|
77
|
+
"""Returns the model properties as a dict"""
|
|
78
|
+
result = {}
|
|
79
|
+
|
|
80
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
81
|
+
value = getattr(self, attr)
|
|
82
|
+
if isinstance(value, list):
|
|
83
|
+
result[attr] = list(map(
|
|
84
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
85
|
+
value
|
|
86
|
+
))
|
|
87
|
+
elif hasattr(value, "to_dict"):
|
|
88
|
+
result[attr] = value.to_dict()
|
|
89
|
+
elif isinstance(value, dict):
|
|
90
|
+
result[attr] = dict(map(
|
|
91
|
+
lambda item: (item[0], item[1].to_dict())
|
|
92
|
+
if hasattr(item[1], "to_dict") else item,
|
|
93
|
+
value.items()
|
|
94
|
+
))
|
|
95
|
+
else:
|
|
96
|
+
result[attr] = value
|
|
97
|
+
if issubclass(SyncAllowListResponse, dict):
|
|
98
|
+
for key, value in self.items():
|
|
99
|
+
result[key] = value
|
|
100
|
+
|
|
101
|
+
return result
|
|
102
|
+
|
|
103
|
+
def to_str(self):
|
|
104
|
+
"""Returns the string representation of the model"""
|
|
105
|
+
return pprint.pformat(self.to_dict())
|
|
106
|
+
|
|
107
|
+
def __repr__(self):
|
|
108
|
+
"""For `print` and `pprint`"""
|
|
109
|
+
return self.to_str()
|
|
110
|
+
|
|
111
|
+
def __eq__(self, other):
|
|
112
|
+
"""Returns true if both objects are equal"""
|
|
113
|
+
if not isinstance(other, SyncAllowListResponse):
|
|
114
|
+
return False
|
|
115
|
+
|
|
116
|
+
return self.to_dict() == other.to_dict()
|
|
117
|
+
|
|
118
|
+
def __ne__(self, other):
|
|
119
|
+
"""Returns true if both objects are not equal"""
|
|
120
|
+
if not isinstance(other, SyncAllowListResponse):
|
|
121
|
+
return True
|
|
122
|
+
|
|
123
|
+
return self.to_dict() != other.to_dict()
|
|
@@ -19,7 +19,7 @@ import six
|
|
|
19
19
|
from volcenginesdkcore.configuration import Configuration
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
class
|
|
22
|
+
class TagForDescribeDBInstanceAttributeOutput(object):
|
|
23
23
|
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
24
24
|
|
|
25
25
|
Do not edit the class manually.
|
|
@@ -43,7 +43,7 @@ class InstanceTagForRestoreToCrossRegionInstanceInput(object):
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
def __init__(self, key=None, value=None, _configuration=None): # noqa: E501
|
|
46
|
-
"""
|
|
46
|
+
"""TagForDescribeDBInstanceAttributeOutput - a model defined in Swagger""" # noqa: E501
|
|
47
47
|
if _configuration is None:
|
|
48
48
|
_configuration = Configuration()
|
|
49
49
|
self._configuration = _configuration
|
|
@@ -59,20 +59,20 @@ class InstanceTagForRestoreToCrossRegionInstanceInput(object):
|
|
|
59
59
|
|
|
60
60
|
@property
|
|
61
61
|
def key(self):
|
|
62
|
-
"""Gets the key of this
|
|
62
|
+
"""Gets the key of this TagForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
63
63
|
|
|
64
64
|
|
|
65
|
-
:return: The key of this
|
|
65
|
+
:return: The key of this TagForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
66
66
|
:rtype: str
|
|
67
67
|
"""
|
|
68
68
|
return self._key
|
|
69
69
|
|
|
70
70
|
@key.setter
|
|
71
71
|
def key(self, key):
|
|
72
|
-
"""Sets the key of this
|
|
72
|
+
"""Sets the key of this TagForDescribeDBInstanceAttributeOutput.
|
|
73
73
|
|
|
74
74
|
|
|
75
|
-
:param key: The key of this
|
|
75
|
+
:param key: The key of this TagForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
76
76
|
:type: str
|
|
77
77
|
"""
|
|
78
78
|
|
|
@@ -80,20 +80,20 @@ class InstanceTagForRestoreToCrossRegionInstanceInput(object):
|
|
|
80
80
|
|
|
81
81
|
@property
|
|
82
82
|
def value(self):
|
|
83
|
-
"""Gets the value of this
|
|
83
|
+
"""Gets the value of this TagForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
84
84
|
|
|
85
85
|
|
|
86
|
-
:return: The value of this
|
|
86
|
+
:return: The value of this TagForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
87
87
|
:rtype: str
|
|
88
88
|
"""
|
|
89
89
|
return self._value
|
|
90
90
|
|
|
91
91
|
@value.setter
|
|
92
92
|
def value(self, value):
|
|
93
|
-
"""Sets the value of this
|
|
93
|
+
"""Sets the value of this TagForDescribeDBInstanceAttributeOutput.
|
|
94
94
|
|
|
95
95
|
|
|
96
|
-
:param value: The value of this
|
|
96
|
+
:param value: The value of this TagForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
97
97
|
:type: str
|
|
98
98
|
"""
|
|
99
99
|
|
|
@@ -120,7 +120,7 @@ class InstanceTagForRestoreToCrossRegionInstanceInput(object):
|
|
|
120
120
|
))
|
|
121
121
|
else:
|
|
122
122
|
result[attr] = value
|
|
123
|
-
if issubclass(
|
|
123
|
+
if issubclass(TagForDescribeDBInstanceAttributeOutput, dict):
|
|
124
124
|
for key, value in self.items():
|
|
125
125
|
result[key] = value
|
|
126
126
|
|
|
@@ -136,14 +136,14 @@ class InstanceTagForRestoreToCrossRegionInstanceInput(object):
|
|
|
136
136
|
|
|
137
137
|
def __eq__(self, other):
|
|
138
138
|
"""Returns true if both objects are equal"""
|
|
139
|
-
if not isinstance(other,
|
|
139
|
+
if not isinstance(other, TagForDescribeDBInstanceAttributeOutput):
|
|
140
140
|
return False
|
|
141
141
|
|
|
142
142
|
return self.to_dict() == other.to_dict()
|
|
143
143
|
|
|
144
144
|
def __ne__(self, other):
|
|
145
145
|
"""Returns true if both objects are not equal"""
|
|
146
|
-
if not isinstance(other,
|
|
146
|
+
if not isinstance(other, TagForDescribeDBInstanceAttributeOutput):
|
|
147
147
|
return True
|
|
148
148
|
|
|
149
149
|
return self.to_dict() != other.to_dict()
|
|
@@ -52,6 +52,8 @@ from volcenginesdkresourceshare.models.list_resource_types_request import ListRe
|
|
|
52
52
|
from volcenginesdkresourceshare.models.list_resource_types_response import ListResourceTypesResponse
|
|
53
53
|
from volcenginesdkresourceshare.models.list_resources_request import ListResourcesRequest
|
|
54
54
|
from volcenginesdkresourceshare.models.list_resources_response import ListResourcesResponse
|
|
55
|
+
from volcenginesdkresourceshare.models.list_tags_for_resources_request import ListTagsForResourcesRequest
|
|
56
|
+
from volcenginesdkresourceshare.models.list_tags_for_resources_response import ListTagsForResourcesResponse
|
|
55
57
|
from volcenginesdkresourceshare.models.permission_for_list_permissions_output import PermissionForListPermissionsOutput
|
|
56
58
|
from volcenginesdkresourceshare.models.permission_for_list_resource_share_permissions_output import PermissionForListResourceSharePermissionsOutput
|
|
57
59
|
from volcenginesdkresourceshare.models.principal_for_list_principals_output import PrincipalForListPrincipalsOutput
|
|
@@ -62,6 +64,16 @@ from volcenginesdkresourceshare.models.resource_share_for_describe_resource_shar
|
|
|
62
64
|
from volcenginesdkresourceshare.models.resource_share_for_list_principals_output import ResourceShareForListPrincipalsOutput
|
|
63
65
|
from volcenginesdkresourceshare.models.resource_share_for_list_resources_output import ResourceShareForListResourcesOutput
|
|
64
66
|
from volcenginesdkresourceshare.models.resource_share_invitation_for_describe_resource_share_invitations_output import ResourceShareInvitationForDescribeResourceShareInvitationsOutput
|
|
67
|
+
from volcenginesdkresourceshare.models.resource_tag_for_list_tags_for_resources_output import ResourceTagForListTagsForResourcesOutput
|
|
65
68
|
from volcenginesdkresourceshare.models.resource_type_for_list_resource_types_output import ResourceTypeForListResourceTypesOutput
|
|
69
|
+
from volcenginesdkresourceshare.models.tag_filter_for_describe_resource_shares_input import TagFilterForDescribeResourceSharesInput
|
|
70
|
+
from volcenginesdkresourceshare.models.tag_filter_for_list_tags_for_resources_input import TagFilterForListTagsForResourcesInput
|
|
71
|
+
from volcenginesdkresourceshare.models.tag_for_create_resource_share_input import TagForCreateResourceShareInput
|
|
72
|
+
from volcenginesdkresourceshare.models.tag_for_describe_resource_shares_output import TagForDescribeResourceSharesOutput
|
|
73
|
+
from volcenginesdkresourceshare.models.tag_for_tag_resources_input import TagForTagResourcesInput
|
|
74
|
+
from volcenginesdkresourceshare.models.tag_resources_request import TagResourcesRequest
|
|
75
|
+
from volcenginesdkresourceshare.models.tag_resources_response import TagResourcesResponse
|
|
76
|
+
from volcenginesdkresourceshare.models.untag_resources_request import UntagResourcesRequest
|
|
77
|
+
from volcenginesdkresourceshare.models.untag_resources_response import UntagResourcesResponse
|
|
66
78
|
from volcenginesdkresourceshare.models.update_resource_share_request import UpdateResourceShareRequest
|
|
67
79
|
from volcenginesdkresourceshare.models.update_resource_share_response import UpdateResourceShareResponse
|
|
@@ -1585,6 +1585,103 @@ class RESOURCESHAREApi(object):
|
|
|
1585
1585
|
_request_timeout=params.get('_request_timeout'),
|
|
1586
1586
|
collection_formats=collection_formats)
|
|
1587
1587
|
|
|
1588
|
+
def list_tags_for_resources(self, body, **kwargs): # noqa: E501
|
|
1589
|
+
"""list_tags_for_resources # noqa: E501
|
|
1590
|
+
|
|
1591
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
1592
|
+
asynchronous HTTP request, please pass async_req=True
|
|
1593
|
+
>>> thread = api.list_tags_for_resources(body, async_req=True)
|
|
1594
|
+
>>> result = thread.get()
|
|
1595
|
+
|
|
1596
|
+
:param async_req bool
|
|
1597
|
+
:param ListTagsForResourcesRequest body: (required)
|
|
1598
|
+
:return: ListTagsForResourcesResponse
|
|
1599
|
+
If the method is called asynchronously,
|
|
1600
|
+
returns the request thread.
|
|
1601
|
+
"""
|
|
1602
|
+
kwargs['_return_http_data_only'] = True
|
|
1603
|
+
if kwargs.get('async_req'):
|
|
1604
|
+
return self.list_tags_for_resources_with_http_info(body, **kwargs) # noqa: E501
|
|
1605
|
+
else:
|
|
1606
|
+
(data) = self.list_tags_for_resources_with_http_info(body, **kwargs) # noqa: E501
|
|
1607
|
+
return data
|
|
1608
|
+
|
|
1609
|
+
def list_tags_for_resources_with_http_info(self, body, **kwargs): # noqa: E501
|
|
1610
|
+
"""list_tags_for_resources # noqa: E501
|
|
1611
|
+
|
|
1612
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
1613
|
+
asynchronous HTTP request, please pass async_req=True
|
|
1614
|
+
>>> thread = api.list_tags_for_resources_with_http_info(body, async_req=True)
|
|
1615
|
+
>>> result = thread.get()
|
|
1616
|
+
|
|
1617
|
+
:param async_req bool
|
|
1618
|
+
:param ListTagsForResourcesRequest body: (required)
|
|
1619
|
+
:return: ListTagsForResourcesResponse
|
|
1620
|
+
If the method is called asynchronously,
|
|
1621
|
+
returns the request thread.
|
|
1622
|
+
"""
|
|
1623
|
+
|
|
1624
|
+
all_params = ['body'] # noqa: E501
|
|
1625
|
+
all_params.append('async_req')
|
|
1626
|
+
all_params.append('_return_http_data_only')
|
|
1627
|
+
all_params.append('_preload_content')
|
|
1628
|
+
all_params.append('_request_timeout')
|
|
1629
|
+
|
|
1630
|
+
params = locals()
|
|
1631
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
1632
|
+
if key not in all_params:
|
|
1633
|
+
raise TypeError(
|
|
1634
|
+
"Got an unexpected keyword argument '%s'"
|
|
1635
|
+
" to method list_tags_for_resources" % key
|
|
1636
|
+
)
|
|
1637
|
+
params[key] = val
|
|
1638
|
+
del params['kwargs']
|
|
1639
|
+
# verify the required parameter 'body' is set
|
|
1640
|
+
if self.api_client.client_side_validation and ('body' not in params or
|
|
1641
|
+
params['body'] is None): # noqa: E501
|
|
1642
|
+
raise ValueError("Missing the required parameter `body` when calling `list_tags_for_resources`") # noqa: E501
|
|
1643
|
+
|
|
1644
|
+
collection_formats = {}
|
|
1645
|
+
|
|
1646
|
+
path_params = {}
|
|
1647
|
+
|
|
1648
|
+
query_params = []
|
|
1649
|
+
|
|
1650
|
+
header_params = {}
|
|
1651
|
+
|
|
1652
|
+
form_params = []
|
|
1653
|
+
local_var_files = {}
|
|
1654
|
+
|
|
1655
|
+
body_params = None
|
|
1656
|
+
if 'body' in params:
|
|
1657
|
+
body_params = params['body']
|
|
1658
|
+
# HTTP header `Accept`
|
|
1659
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
1660
|
+
['application/json']) # noqa: E501
|
|
1661
|
+
|
|
1662
|
+
# HTTP header `Content-Type`
|
|
1663
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
1664
|
+
['text/plain']) # noqa: E501
|
|
1665
|
+
|
|
1666
|
+
# Authentication setting
|
|
1667
|
+
auth_settings = ['volcengineSign'] # noqa: E501
|
|
1668
|
+
|
|
1669
|
+
return self.api_client.call_api(
|
|
1670
|
+
'/ListTagsForResources/2024-01-01/resource_share/get/text_plain/', 'GET',
|
|
1671
|
+
path_params,
|
|
1672
|
+
query_params,
|
|
1673
|
+
header_params,
|
|
1674
|
+
body=body_params,
|
|
1675
|
+
post_params=form_params,
|
|
1676
|
+
files=local_var_files,
|
|
1677
|
+
response_type='ListTagsForResourcesResponse', # noqa: E501
|
|
1678
|
+
auth_settings=auth_settings,
|
|
1679
|
+
async_req=params.get('async_req'),
|
|
1680
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
1681
|
+
_preload_content=params.get('_preload_content', True),
|
|
1682
|
+
_request_timeout=params.get('_request_timeout'),
|
|
1683
|
+
collection_formats=collection_formats)
|
|
1684
|
+
|
|
1588
1685
|
def reject_resource_share_invitation(self, body, **kwargs): # noqa: E501
|
|
1589
1686
|
"""reject_resource_share_invitation # noqa: E501
|
|
1590
1687
|
|
|
@@ -1682,6 +1779,200 @@ class RESOURCESHAREApi(object):
|
|
|
1682
1779
|
_request_timeout=params.get('_request_timeout'),
|
|
1683
1780
|
collection_formats=collection_formats)
|
|
1684
1781
|
|
|
1782
|
+
def tag_resources(self, body, **kwargs): # noqa: E501
|
|
1783
|
+
"""tag_resources # noqa: E501
|
|
1784
|
+
|
|
1785
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
1786
|
+
asynchronous HTTP request, please pass async_req=True
|
|
1787
|
+
>>> thread = api.tag_resources(body, async_req=True)
|
|
1788
|
+
>>> result = thread.get()
|
|
1789
|
+
|
|
1790
|
+
:param async_req bool
|
|
1791
|
+
:param TagResourcesRequest body: (required)
|
|
1792
|
+
:return: TagResourcesResponse
|
|
1793
|
+
If the method is called asynchronously,
|
|
1794
|
+
returns the request thread.
|
|
1795
|
+
"""
|
|
1796
|
+
kwargs['_return_http_data_only'] = True
|
|
1797
|
+
if kwargs.get('async_req'):
|
|
1798
|
+
return self.tag_resources_with_http_info(body, **kwargs) # noqa: E501
|
|
1799
|
+
else:
|
|
1800
|
+
(data) = self.tag_resources_with_http_info(body, **kwargs) # noqa: E501
|
|
1801
|
+
return data
|
|
1802
|
+
|
|
1803
|
+
def tag_resources_with_http_info(self, body, **kwargs): # noqa: E501
|
|
1804
|
+
"""tag_resources # noqa: E501
|
|
1805
|
+
|
|
1806
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
1807
|
+
asynchronous HTTP request, please pass async_req=True
|
|
1808
|
+
>>> thread = api.tag_resources_with_http_info(body, async_req=True)
|
|
1809
|
+
>>> result = thread.get()
|
|
1810
|
+
|
|
1811
|
+
:param async_req bool
|
|
1812
|
+
:param TagResourcesRequest body: (required)
|
|
1813
|
+
:return: TagResourcesResponse
|
|
1814
|
+
If the method is called asynchronously,
|
|
1815
|
+
returns the request thread.
|
|
1816
|
+
"""
|
|
1817
|
+
|
|
1818
|
+
all_params = ['body'] # noqa: E501
|
|
1819
|
+
all_params.append('async_req')
|
|
1820
|
+
all_params.append('_return_http_data_only')
|
|
1821
|
+
all_params.append('_preload_content')
|
|
1822
|
+
all_params.append('_request_timeout')
|
|
1823
|
+
|
|
1824
|
+
params = locals()
|
|
1825
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
1826
|
+
if key not in all_params:
|
|
1827
|
+
raise TypeError(
|
|
1828
|
+
"Got an unexpected keyword argument '%s'"
|
|
1829
|
+
" to method tag_resources" % key
|
|
1830
|
+
)
|
|
1831
|
+
params[key] = val
|
|
1832
|
+
del params['kwargs']
|
|
1833
|
+
# verify the required parameter 'body' is set
|
|
1834
|
+
if self.api_client.client_side_validation and ('body' not in params or
|
|
1835
|
+
params['body'] is None): # noqa: E501
|
|
1836
|
+
raise ValueError("Missing the required parameter `body` when calling `tag_resources`") # noqa: E501
|
|
1837
|
+
|
|
1838
|
+
collection_formats = {}
|
|
1839
|
+
|
|
1840
|
+
path_params = {}
|
|
1841
|
+
|
|
1842
|
+
query_params = []
|
|
1843
|
+
|
|
1844
|
+
header_params = {}
|
|
1845
|
+
|
|
1846
|
+
form_params = []
|
|
1847
|
+
local_var_files = {}
|
|
1848
|
+
|
|
1849
|
+
body_params = None
|
|
1850
|
+
if 'body' in params:
|
|
1851
|
+
body_params = params['body']
|
|
1852
|
+
# HTTP header `Accept`
|
|
1853
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
1854
|
+
['application/json']) # noqa: E501
|
|
1855
|
+
|
|
1856
|
+
# HTTP header `Content-Type`
|
|
1857
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
1858
|
+
['text/plain']) # noqa: E501
|
|
1859
|
+
|
|
1860
|
+
# Authentication setting
|
|
1861
|
+
auth_settings = ['volcengineSign'] # noqa: E501
|
|
1862
|
+
|
|
1863
|
+
return self.api_client.call_api(
|
|
1864
|
+
'/TagResources/2024-01-01/resource_share/get/text_plain/', 'GET',
|
|
1865
|
+
path_params,
|
|
1866
|
+
query_params,
|
|
1867
|
+
header_params,
|
|
1868
|
+
body=body_params,
|
|
1869
|
+
post_params=form_params,
|
|
1870
|
+
files=local_var_files,
|
|
1871
|
+
response_type='TagResourcesResponse', # noqa: E501
|
|
1872
|
+
auth_settings=auth_settings,
|
|
1873
|
+
async_req=params.get('async_req'),
|
|
1874
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
1875
|
+
_preload_content=params.get('_preload_content', True),
|
|
1876
|
+
_request_timeout=params.get('_request_timeout'),
|
|
1877
|
+
collection_formats=collection_formats)
|
|
1878
|
+
|
|
1879
|
+
def untag_resources(self, body, **kwargs): # noqa: E501
|
|
1880
|
+
"""untag_resources # noqa: E501
|
|
1881
|
+
|
|
1882
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
1883
|
+
asynchronous HTTP request, please pass async_req=True
|
|
1884
|
+
>>> thread = api.untag_resources(body, async_req=True)
|
|
1885
|
+
>>> result = thread.get()
|
|
1886
|
+
|
|
1887
|
+
:param async_req bool
|
|
1888
|
+
:param UntagResourcesRequest body: (required)
|
|
1889
|
+
:return: UntagResourcesResponse
|
|
1890
|
+
If the method is called asynchronously,
|
|
1891
|
+
returns the request thread.
|
|
1892
|
+
"""
|
|
1893
|
+
kwargs['_return_http_data_only'] = True
|
|
1894
|
+
if kwargs.get('async_req'):
|
|
1895
|
+
return self.untag_resources_with_http_info(body, **kwargs) # noqa: E501
|
|
1896
|
+
else:
|
|
1897
|
+
(data) = self.untag_resources_with_http_info(body, **kwargs) # noqa: E501
|
|
1898
|
+
return data
|
|
1899
|
+
|
|
1900
|
+
def untag_resources_with_http_info(self, body, **kwargs): # noqa: E501
|
|
1901
|
+
"""untag_resources # noqa: E501
|
|
1902
|
+
|
|
1903
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
1904
|
+
asynchronous HTTP request, please pass async_req=True
|
|
1905
|
+
>>> thread = api.untag_resources_with_http_info(body, async_req=True)
|
|
1906
|
+
>>> result = thread.get()
|
|
1907
|
+
|
|
1908
|
+
:param async_req bool
|
|
1909
|
+
:param UntagResourcesRequest body: (required)
|
|
1910
|
+
:return: UntagResourcesResponse
|
|
1911
|
+
If the method is called asynchronously,
|
|
1912
|
+
returns the request thread.
|
|
1913
|
+
"""
|
|
1914
|
+
|
|
1915
|
+
all_params = ['body'] # noqa: E501
|
|
1916
|
+
all_params.append('async_req')
|
|
1917
|
+
all_params.append('_return_http_data_only')
|
|
1918
|
+
all_params.append('_preload_content')
|
|
1919
|
+
all_params.append('_request_timeout')
|
|
1920
|
+
|
|
1921
|
+
params = locals()
|
|
1922
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
1923
|
+
if key not in all_params:
|
|
1924
|
+
raise TypeError(
|
|
1925
|
+
"Got an unexpected keyword argument '%s'"
|
|
1926
|
+
" to method untag_resources" % key
|
|
1927
|
+
)
|
|
1928
|
+
params[key] = val
|
|
1929
|
+
del params['kwargs']
|
|
1930
|
+
# verify the required parameter 'body' is set
|
|
1931
|
+
if self.api_client.client_side_validation and ('body' not in params or
|
|
1932
|
+
params['body'] is None): # noqa: E501
|
|
1933
|
+
raise ValueError("Missing the required parameter `body` when calling `untag_resources`") # noqa: E501
|
|
1934
|
+
|
|
1935
|
+
collection_formats = {}
|
|
1936
|
+
|
|
1937
|
+
path_params = {}
|
|
1938
|
+
|
|
1939
|
+
query_params = []
|
|
1940
|
+
|
|
1941
|
+
header_params = {}
|
|
1942
|
+
|
|
1943
|
+
form_params = []
|
|
1944
|
+
local_var_files = {}
|
|
1945
|
+
|
|
1946
|
+
body_params = None
|
|
1947
|
+
if 'body' in params:
|
|
1948
|
+
body_params = params['body']
|
|
1949
|
+
# HTTP header `Accept`
|
|
1950
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
1951
|
+
['application/json']) # noqa: E501
|
|
1952
|
+
|
|
1953
|
+
# HTTP header `Content-Type`
|
|
1954
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
1955
|
+
['text/plain']) # noqa: E501
|
|
1956
|
+
|
|
1957
|
+
# Authentication setting
|
|
1958
|
+
auth_settings = ['volcengineSign'] # noqa: E501
|
|
1959
|
+
|
|
1960
|
+
return self.api_client.call_api(
|
|
1961
|
+
'/UntagResources/2024-01-01/resource_share/get/text_plain/', 'GET',
|
|
1962
|
+
path_params,
|
|
1963
|
+
query_params,
|
|
1964
|
+
header_params,
|
|
1965
|
+
body=body_params,
|
|
1966
|
+
post_params=form_params,
|
|
1967
|
+
files=local_var_files,
|
|
1968
|
+
response_type='UntagResourcesResponse', # noqa: E501
|
|
1969
|
+
auth_settings=auth_settings,
|
|
1970
|
+
async_req=params.get('async_req'),
|
|
1971
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
1972
|
+
_preload_content=params.get('_preload_content', True),
|
|
1973
|
+
_request_timeout=params.get('_request_timeout'),
|
|
1974
|
+
collection_formats=collection_formats)
|
|
1975
|
+
|
|
1685
1976
|
def update_resource_share(self, body, **kwargs): # noqa: E501
|
|
1686
1977
|
"""update_resource_share # noqa: E501
|
|
1687
1978
|
|
|
@@ -48,6 +48,8 @@ from volcenginesdkresourceshare.models.list_resource_types_request import ListRe
|
|
|
48
48
|
from volcenginesdkresourceshare.models.list_resource_types_response import ListResourceTypesResponse
|
|
49
49
|
from volcenginesdkresourceshare.models.list_resources_request import ListResourcesRequest
|
|
50
50
|
from volcenginesdkresourceshare.models.list_resources_response import ListResourcesResponse
|
|
51
|
+
from volcenginesdkresourceshare.models.list_tags_for_resources_request import ListTagsForResourcesRequest
|
|
52
|
+
from volcenginesdkresourceshare.models.list_tags_for_resources_response import ListTagsForResourcesResponse
|
|
51
53
|
from volcenginesdkresourceshare.models.permission_for_list_permissions_output import PermissionForListPermissionsOutput
|
|
52
54
|
from volcenginesdkresourceshare.models.permission_for_list_resource_share_permissions_output import PermissionForListResourceSharePermissionsOutput
|
|
53
55
|
from volcenginesdkresourceshare.models.principal_for_list_principals_output import PrincipalForListPrincipalsOutput
|
|
@@ -58,6 +60,16 @@ from volcenginesdkresourceshare.models.resource_share_for_describe_resource_shar
|
|
|
58
60
|
from volcenginesdkresourceshare.models.resource_share_for_list_principals_output import ResourceShareForListPrincipalsOutput
|
|
59
61
|
from volcenginesdkresourceshare.models.resource_share_for_list_resources_output import ResourceShareForListResourcesOutput
|
|
60
62
|
from volcenginesdkresourceshare.models.resource_share_invitation_for_describe_resource_share_invitations_output import ResourceShareInvitationForDescribeResourceShareInvitationsOutput
|
|
63
|
+
from volcenginesdkresourceshare.models.resource_tag_for_list_tags_for_resources_output import ResourceTagForListTagsForResourcesOutput
|
|
61
64
|
from volcenginesdkresourceshare.models.resource_type_for_list_resource_types_output import ResourceTypeForListResourceTypesOutput
|
|
65
|
+
from volcenginesdkresourceshare.models.tag_filter_for_describe_resource_shares_input import TagFilterForDescribeResourceSharesInput
|
|
66
|
+
from volcenginesdkresourceshare.models.tag_filter_for_list_tags_for_resources_input import TagFilterForListTagsForResourcesInput
|
|
67
|
+
from volcenginesdkresourceshare.models.tag_for_create_resource_share_input import TagForCreateResourceShareInput
|
|
68
|
+
from volcenginesdkresourceshare.models.tag_for_describe_resource_shares_output import TagForDescribeResourceSharesOutput
|
|
69
|
+
from volcenginesdkresourceshare.models.tag_for_tag_resources_input import TagForTagResourcesInput
|
|
70
|
+
from volcenginesdkresourceshare.models.tag_resources_request import TagResourcesRequest
|
|
71
|
+
from volcenginesdkresourceshare.models.tag_resources_response import TagResourcesResponse
|
|
72
|
+
from volcenginesdkresourceshare.models.untag_resources_request import UntagResourcesRequest
|
|
73
|
+
from volcenginesdkresourceshare.models.untag_resources_response import UntagResourcesResponse
|
|
62
74
|
from volcenginesdkresourceshare.models.update_resource_share_request import UpdateResourceShareRequest
|
|
63
75
|
from volcenginesdkresourceshare.models.update_resource_share_response import UpdateResourceShareResponse
|
|
@@ -36,17 +36,19 @@ class CreateResourceShareRequest(object):
|
|
|
36
36
|
'allow_share_type': 'str',
|
|
37
37
|
'name': 'str',
|
|
38
38
|
'principals': 'str',
|
|
39
|
-
'resource_trns': 'str'
|
|
39
|
+
'resource_trns': 'str',
|
|
40
|
+
'tags': 'list[TagForCreateResourceShareInput]'
|
|
40
41
|
}
|
|
41
42
|
|
|
42
43
|
attribute_map = {
|
|
43
44
|
'allow_share_type': 'AllowShareType',
|
|
44
45
|
'name': 'Name',
|
|
45
46
|
'principals': 'Principals',
|
|
46
|
-
'resource_trns': 'ResourceTrns'
|
|
47
|
+
'resource_trns': 'ResourceTrns',
|
|
48
|
+
'tags': 'Tags'
|
|
47
49
|
}
|
|
48
50
|
|
|
49
|
-
def __init__(self, allow_share_type=None, name=None, principals=None, resource_trns=None, _configuration=None): # noqa: E501
|
|
51
|
+
def __init__(self, allow_share_type=None, name=None, principals=None, resource_trns=None, tags=None, _configuration=None): # noqa: E501
|
|
50
52
|
"""CreateResourceShareRequest - a model defined in Swagger""" # noqa: E501
|
|
51
53
|
if _configuration is None:
|
|
52
54
|
_configuration = Configuration()
|
|
@@ -56,6 +58,7 @@ class CreateResourceShareRequest(object):
|
|
|
56
58
|
self._name = None
|
|
57
59
|
self._principals = None
|
|
58
60
|
self._resource_trns = None
|
|
61
|
+
self._tags = None
|
|
59
62
|
self.discriminator = None
|
|
60
63
|
|
|
61
64
|
if allow_share_type is not None:
|
|
@@ -65,6 +68,8 @@ class CreateResourceShareRequest(object):
|
|
|
65
68
|
self.principals = principals
|
|
66
69
|
if resource_trns is not None:
|
|
67
70
|
self.resource_trns = resource_trns
|
|
71
|
+
if tags is not None:
|
|
72
|
+
self.tags = tags
|
|
68
73
|
|
|
69
74
|
@property
|
|
70
75
|
def allow_share_type(self):
|
|
@@ -152,6 +157,27 @@ class CreateResourceShareRequest(object):
|
|
|
152
157
|
|
|
153
158
|
self._resource_trns = resource_trns
|
|
154
159
|
|
|
160
|
+
@property
|
|
161
|
+
def tags(self):
|
|
162
|
+
"""Gets the tags of this CreateResourceShareRequest. # noqa: E501
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
:return: The tags of this CreateResourceShareRequest. # noqa: E501
|
|
166
|
+
:rtype: list[TagForCreateResourceShareInput]
|
|
167
|
+
"""
|
|
168
|
+
return self._tags
|
|
169
|
+
|
|
170
|
+
@tags.setter
|
|
171
|
+
def tags(self, tags):
|
|
172
|
+
"""Sets the tags of this CreateResourceShareRequest.
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
:param tags: The tags of this CreateResourceShareRequest. # noqa: E501
|
|
176
|
+
:type: list[TagForCreateResourceShareInput]
|
|
177
|
+
"""
|
|
178
|
+
|
|
179
|
+
self._tags = tags
|
|
180
|
+
|
|
155
181
|
def to_dict(self):
|
|
156
182
|
"""Returns the model properties as a dict"""
|
|
157
183
|
result = {}
|