volcengine-python-sdk 4.0.15__py2.py3-none-any.whl → 4.0.17__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.17.dist-info/METADATA +20 -0
- {volcengine_python_sdk-4.0.15.dist-info → volcengine_python_sdk-4.0.17.dist-info}/RECORD +179 -31
- {volcengine_python_sdk-4.0.15.dist-info → volcengine_python_sdk-4.0.17.dist-info}/WHEEL +1 -1
- {volcengine_python_sdk-4.0.15.dist-info → volcengine_python_sdk-4.0.17.dist-info}/top_level.txt +2 -0
- volcenginesdkarkruntime/_client.py +1 -1
- volcenginesdkbmq/models/item_for_preview_topic_data_output.py +3 -3
- volcenginesdkcloudidentity/__init__.py +146 -0
- volcenginesdkcloudidentity/api/__init__.py +6 -0
- volcenginesdkcloudidentity/api/cloudidentity_api.py +5369 -0
- volcenginesdkcloudidentity/models/__init__.py +142 -0
- volcenginesdkcloudidentity/models/account_assignment_for_list_account_assignments_output.py +305 -0
- volcenginesdkcloudidentity/models/add_inline_policy_to_permission_set_request.py +151 -0
- volcenginesdkcloudidentity/models/add_inline_policy_to_permission_set_response.py +95 -0
- volcenginesdkcloudidentity/models/add_system_policy_to_permission_set_request.py +151 -0
- volcenginesdkcloudidentity/models/add_system_policy_to_permission_set_response.py +95 -0
- volcenginesdkcloudidentity/models/add_user_to_group_request.py +151 -0
- volcenginesdkcloudidentity/models/add_user_to_group_response.py +95 -0
- volcenginesdkcloudidentity/models/attach_policy_to_user_provision_request.py +151 -0
- volcenginesdkcloudidentity/models/attach_policy_to_user_provision_response.py +95 -0
- volcenginesdkcloudidentity/models/create_account_assignment_request.py +212 -0
- volcenginesdkcloudidentity/models/create_account_assignment_response.py +123 -0
- volcenginesdkcloudidentity/models/create_external_saml_identity_provider_request.py +124 -0
- volcenginesdkcloudidentity/models/create_external_saml_identity_provider_response.py +227 -0
- volcenginesdkcloudidentity/models/create_group_request.py +219 -0
- volcenginesdkcloudidentity/models/create_group_response.py +305 -0
- volcenginesdkcloudidentity/models/create_permission_set_request.py +205 -0
- volcenginesdkcloudidentity/models/create_permission_set_response.py +123 -0
- volcenginesdkcloudidentity/models/create_scim_server_credential_request.py +95 -0
- volcenginesdkcloudidentity/models/create_scim_server_credential_response.py +253 -0
- volcenginesdkcloudidentity/models/create_user_provisioning_request.py +339 -0
- volcenginesdkcloudidentity/models/create_user_provisioning_response.py +383 -0
- volcenginesdkcloudidentity/models/create_user_request.py +246 -0
- volcenginesdkcloudidentity/models/create_user_response.py +331 -0
- volcenginesdkcloudidentity/models/delete_account_assignment_request.py +245 -0
- volcenginesdkcloudidentity/models/delete_account_assignment_response.py +123 -0
- volcenginesdkcloudidentity/models/delete_group_request.py +124 -0
- volcenginesdkcloudidentity/models/delete_group_response.py +95 -0
- volcenginesdkcloudidentity/models/delete_permission_set_request.py +124 -0
- volcenginesdkcloudidentity/models/delete_permission_set_response.py +95 -0
- volcenginesdkcloudidentity/models/delete_scim_server_credential_request.py +124 -0
- volcenginesdkcloudidentity/models/delete_scim_server_credential_response.py +95 -0
- volcenginesdkcloudidentity/models/delete_user_provisioning_event_request.py +124 -0
- volcenginesdkcloudidentity/models/delete_user_provisioning_event_response.py +95 -0
- volcenginesdkcloudidentity/models/delete_user_provisioning_request.py +124 -0
- volcenginesdkcloudidentity/models/delete_user_provisioning_response.py +95 -0
- volcenginesdkcloudidentity/models/delete_user_request.py +124 -0
- volcenginesdkcloudidentity/models/delete_user_response.py +95 -0
- volcenginesdkcloudidentity/models/deprovision_permission_set_request.py +151 -0
- volcenginesdkcloudidentity/models/deprovision_permission_set_response.py +123 -0
- volcenginesdkcloudidentity/models/detach_policy_to_user_provision_request.py +151 -0
- volcenginesdkcloudidentity/models/detach_policy_to_user_provision_response.py +95 -0
- volcenginesdkcloudidentity/models/disable_portal_login_setting_request.py +124 -0
- volcenginesdkcloudidentity/models/disable_portal_login_setting_response.py +95 -0
- volcenginesdkcloudidentity/models/disable_service_request.py +95 -0
- volcenginesdkcloudidentity/models/disable_service_response.py +95 -0
- volcenginesdkcloudidentity/models/enable_portal_login_setting_request.py +124 -0
- volcenginesdkcloudidentity/models/enable_portal_login_setting_response.py +95 -0
- volcenginesdkcloudidentity/models/enable_service_request.py +95 -0
- volcenginesdkcloudidentity/models/enable_service_response.py +95 -0
- volcenginesdkcloudidentity/models/get_external_saml_identity_provider_request.py +95 -0
- volcenginesdkcloudidentity/models/get_external_saml_identity_provider_response.py +227 -0
- volcenginesdkcloudidentity/models/get_group_request.py +124 -0
- volcenginesdkcloudidentity/models/get_group_response.py +305 -0
- volcenginesdkcloudidentity/models/get_permission_set_request.py +124 -0
- volcenginesdkcloudidentity/models/get_permission_set_response.py +279 -0
- volcenginesdkcloudidentity/models/get_portal_login_config_request.py +95 -0
- volcenginesdkcloudidentity/models/get_portal_login_config_response.py +175 -0
- volcenginesdkcloudidentity/models/get_saml_service_provider_request.py +95 -0
- volcenginesdkcloudidentity/models/get_saml_service_provider_response.py +175 -0
- volcenginesdkcloudidentity/models/get_service_status_request.py +95 -0
- volcenginesdkcloudidentity/models/get_service_status_response.py +149 -0
- volcenginesdkcloudidentity/models/get_task_status_request.py +124 -0
- volcenginesdkcloudidentity/models/get_task_status_response.py +227 -0
- volcenginesdkcloudidentity/models/get_user_provisioning_request.py +124 -0
- volcenginesdkcloudidentity/models/get_user_provisioning_response.py +435 -0
- volcenginesdkcloudidentity/models/get_user_request.py +124 -0
- volcenginesdkcloudidentity/models/get_user_response.py +357 -0
- volcenginesdkcloudidentity/models/group_for_list_groups_output.py +305 -0
- volcenginesdkcloudidentity/models/idp_certificate_for_create_external_saml_identity_provider_output.py +149 -0
- volcenginesdkcloudidentity/models/idp_certificate_for_get_external_saml_identity_provider_output.py +149 -0
- volcenginesdkcloudidentity/models/instance_for_get_service_status_output.py +227 -0
- volcenginesdkcloudidentity/models/list_account_assignments_request.py +260 -0
- volcenginesdkcloudidentity/models/list_account_assignments_response.py +201 -0
- volcenginesdkcloudidentity/models/list_group_members_request.py +208 -0
- volcenginesdkcloudidentity/models/list_group_members_response.py +201 -0
- volcenginesdkcloudidentity/models/list_groups_request.py +208 -0
- volcenginesdkcloudidentity/models/list_groups_response.py +201 -0
- volcenginesdkcloudidentity/models/list_permission_policies_in_permission_set_request.py +209 -0
- volcenginesdkcloudidentity/models/list_permission_policies_in_permission_set_response.py +201 -0
- volcenginesdkcloudidentity/models/list_permission_set_provisionings_request.py +234 -0
- volcenginesdkcloudidentity/models/list_permission_set_provisionings_response.py +201 -0
- volcenginesdkcloudidentity/models/list_permission_sets_request.py +210 -0
- volcenginesdkcloudidentity/models/list_permission_sets_response.py +201 -0
- volcenginesdkcloudidentity/models/list_portal_login_settings_request.py +95 -0
- volcenginesdkcloudidentity/models/list_portal_login_settings_response.py +123 -0
- volcenginesdkcloudidentity/models/list_scim_server_credentials_request.py +95 -0
- volcenginesdkcloudidentity/models/list_scim_server_credentials_response.py +123 -0
- volcenginesdkcloudidentity/models/list_tasks_request.py +270 -0
- volcenginesdkcloudidentity/models/list_tasks_response.py +201 -0
- volcenginesdkcloudidentity/models/list_user_provisioning_events_request.py +209 -0
- volcenginesdkcloudidentity/models/list_user_provisioning_events_response.py +201 -0
- volcenginesdkcloudidentity/models/list_user_provisionings_request.py +175 -0
- volcenginesdkcloudidentity/models/list_user_provisionings_response.py +201 -0
- volcenginesdkcloudidentity/models/list_users_request.py +243 -0
- volcenginesdkcloudidentity/models/list_users_response.py +201 -0
- volcenginesdkcloudidentity/models/member_for_list_group_members_output.py +331 -0
- volcenginesdkcloudidentity/models/permission_policy_for_list_permission_policies_in_permission_set_output.py +201 -0
- volcenginesdkcloudidentity/models/permission_set_for_list_permission_sets_output.py +305 -0
- volcenginesdkcloudidentity/models/permission_set_provisioning_for_list_permission_set_provisionings_output.py +279 -0
- volcenginesdkcloudidentity/models/portal_login_setting_for_list_portal_login_settings_output.py +149 -0
- volcenginesdkcloudidentity/models/provision_permission_set_request.py +151 -0
- volcenginesdkcloudidentity/models/provision_permission_set_response.py +123 -0
- volcenginesdkcloudidentity/models/remove_permission_policy_from_permission_set_request.py +184 -0
- volcenginesdkcloudidentity/models/remove_permission_policy_from_permission_set_response.py +95 -0
- volcenginesdkcloudidentity/models/remove_user_from_group_request.py +151 -0
- volcenginesdkcloudidentity/models/remove_user_from_group_response.py +95 -0
- volcenginesdkcloudidentity/models/reset_password_request.py +210 -0
- volcenginesdkcloudidentity/models/reset_password_response.py +123 -0
- volcenginesdkcloudidentity/models/retry_user_provisioning_event_request.py +124 -0
- volcenginesdkcloudidentity/models/retry_user_provisioning_event_response.py +95 -0
- volcenginesdkcloudidentity/models/scim_server_credential_for_list_scim_server_credentials_output.py +227 -0
- volcenginesdkcloudidentity/models/task_for_list_tasks_output.py +409 -0
- volcenginesdkcloudidentity/models/update_group_request.py +182 -0
- volcenginesdkcloudidentity/models/update_group_response.py +95 -0
- volcenginesdkcloudidentity/models/update_inline_policy_to_permission_set_request.py +151 -0
- volcenginesdkcloudidentity/models/update_inline_policy_to_permission_set_response.py +95 -0
- volcenginesdkcloudidentity/models/update_instance_name_request.py +124 -0
- volcenginesdkcloudidentity/models/update_instance_name_response.py +95 -0
- volcenginesdkcloudidentity/models/update_permission_set_request.py +205 -0
- volcenginesdkcloudidentity/models/update_permission_set_response.py +95 -0
- volcenginesdkcloudidentity/models/update_user_request.py +272 -0
- volcenginesdkcloudidentity/models/update_user_response.py +95 -0
- volcenginesdkcloudidentity/models/user_for_list_users_output.py +331 -0
- volcenginesdkcloudidentity/models/user_provisioning_event_for_list_user_provisioning_events_output.py +409 -0
- volcenginesdkcloudidentity/models/user_provisioning_for_list_user_provisionings_output.py +435 -0
- volcenginesdkcore/api_client.py +1 -1
- volcenginesdkcore/auth/providers/sts_provider.py +1 -1
- volcenginesdkcore/configuration.py +1 -1
- volcenginesdkcore/endpoint/providers/default_provider.py +6 -0
- volcenginesdkdms/__init__.py +6 -0
- volcenginesdkdms/api/dms_api.py +97 -0
- volcenginesdkdms/models/__init__.py +6 -0
- volcenginesdkdms/models/basic_config_for_create_data_migrate_task_input.py +53 -7
- volcenginesdkdms/models/basic_config_for_query_data_migrate_task_output.py +53 -1
- volcenginesdkdms/models/delete_data_migrate_task_request.py +150 -0
- volcenginesdkdms/models/delete_data_migrate_task_response.py +95 -0
- volcenginesdkdms/models/increase_setting_for_create_data_migrate_task_input.py +2 -2
- volcenginesdkdms/models/object_migration_policy_for_create_data_migrate_task_input.py +175 -0
- volcenginesdkdms/models/object_migration_policy_for_query_data_migrate_task_output.py +175 -0
- volcenginesdkdms/models/offline_migration_policy_for_create_data_migrate_task_input.py +149 -0
- volcenginesdkdms/models/offline_migration_policy_for_query_data_migrate_task_output.py +149 -0
- volcenginesdkgraph/__init__.py +8 -0
- volcenginesdkgraph/models/__init__.py +8 -0
- volcenginesdkgraph/models/alter_table_request.py +108 -4
- volcenginesdkgraph/models/get_table_response.py +211 -3
- volcenginesdkgraph/models/get_version_set_and_components_info_request.py +29 -3
- volcenginesdkgraph/models/gremlin_quota_config_for_add_tables_input.py +27 -1
- volcenginesdkgraph/models/gremlin_quota_config_for_get_table_output.py +201 -0
- volcenginesdkgraph/models/gremlin_quota_config_for_get_table_quota_output.py +27 -1
- volcenginesdkgraph/models/idc_replica_num_for_alter_table_input.py +149 -0
- volcenginesdkgraph/models/idc_replica_num_for_get_table_output.py +149 -0
- volcenginesdkgraph/models/idc_ro_num_for_alter_table_input.py +149 -0
- volcenginesdkgraph/models/idc_ro_num_for_get_table_output.py +149 -0
- volcenginesdkgraph/models/io_qos_options_for_get_table_output.py +201 -0
- volcenginesdkgraph/models/psm_quota_config_for_add_tables_input.py +53 -1
- volcenginesdkgraph/models/psm_quota_config_for_get_table_output.py +227 -0
- volcenginesdkgraph/models/psm_quota_config_for_get_table_quota_output.py +53 -1
- volcenginesdkgraph/models/table_quota_for_get_table_output.py +149 -0
- volcenginesdklivesaas/models/line_detail_for_get_streams_api_output.py +12 -12
- volcenginesdkllmshield/__init__.py +82 -0
- volcenginesdkllmshield/api/__init__.py +4 -0
- volcenginesdkllmshield/api/llm_shield_sdk_v2.py +470 -0
- volcenginesdkllmshield/models/__init__.py +20 -0
- volcenginesdkllmshield/models/llm_shield_sign.py +159 -0
- volcenginesdkwafruntime/__init__.py +4 -2
- volcenginesdkwafruntime/api/waf_runtime_api.py +7 -3
- volcenginesdkwafruntime/models/llm_stream_session.py +4 -2
- volcengine_python_sdk-4.0.15.dist-info/METADATA +0 -21
- {volcengine_python_sdk-4.0.15.dist-info → volcengine_python_sdk-4.0.17.dist-info}/LICENSE.txt +0 -0
- {volcengine_python_sdk-4.0.15.dist-info → volcengine_python_sdk-4.0.17.dist-info}/NOTICE.md +0 -0
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
cloudidentity
|
|
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 GetGroupResponse(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
|
+
'created_time': 'str',
|
|
37
|
+
'description': 'str',
|
|
38
|
+
'display_name': 'str',
|
|
39
|
+
'group_id': 'str',
|
|
40
|
+
'group_name': 'str',
|
|
41
|
+
'join_type': 'str',
|
|
42
|
+
'source': 'str',
|
|
43
|
+
'updated_time': 'str'
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
attribute_map = {
|
|
47
|
+
'created_time': 'CreatedTime',
|
|
48
|
+
'description': 'Description',
|
|
49
|
+
'display_name': 'DisplayName',
|
|
50
|
+
'group_id': 'GroupId',
|
|
51
|
+
'group_name': 'GroupName',
|
|
52
|
+
'join_type': 'JoinType',
|
|
53
|
+
'source': 'Source',
|
|
54
|
+
'updated_time': 'UpdatedTime'
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
def __init__(self, created_time=None, description=None, display_name=None, group_id=None, group_name=None, join_type=None, source=None, updated_time=None, _configuration=None): # noqa: E501
|
|
58
|
+
"""GetGroupResponse - a model defined in Swagger""" # noqa: E501
|
|
59
|
+
if _configuration is None:
|
|
60
|
+
_configuration = Configuration()
|
|
61
|
+
self._configuration = _configuration
|
|
62
|
+
|
|
63
|
+
self._created_time = None
|
|
64
|
+
self._description = None
|
|
65
|
+
self._display_name = None
|
|
66
|
+
self._group_id = None
|
|
67
|
+
self._group_name = None
|
|
68
|
+
self._join_type = None
|
|
69
|
+
self._source = None
|
|
70
|
+
self._updated_time = None
|
|
71
|
+
self.discriminator = None
|
|
72
|
+
|
|
73
|
+
if created_time is not None:
|
|
74
|
+
self.created_time = created_time
|
|
75
|
+
if description is not None:
|
|
76
|
+
self.description = description
|
|
77
|
+
if display_name is not None:
|
|
78
|
+
self.display_name = display_name
|
|
79
|
+
if group_id is not None:
|
|
80
|
+
self.group_id = group_id
|
|
81
|
+
if group_name is not None:
|
|
82
|
+
self.group_name = group_name
|
|
83
|
+
if join_type is not None:
|
|
84
|
+
self.join_type = join_type
|
|
85
|
+
if source is not None:
|
|
86
|
+
self.source = source
|
|
87
|
+
if updated_time is not None:
|
|
88
|
+
self.updated_time = updated_time
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
def created_time(self):
|
|
92
|
+
"""Gets the created_time of this GetGroupResponse. # noqa: E501
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
:return: The created_time of this GetGroupResponse. # noqa: E501
|
|
96
|
+
:rtype: str
|
|
97
|
+
"""
|
|
98
|
+
return self._created_time
|
|
99
|
+
|
|
100
|
+
@created_time.setter
|
|
101
|
+
def created_time(self, created_time):
|
|
102
|
+
"""Sets the created_time of this GetGroupResponse.
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
:param created_time: The created_time of this GetGroupResponse. # noqa: E501
|
|
106
|
+
:type: str
|
|
107
|
+
"""
|
|
108
|
+
|
|
109
|
+
self._created_time = created_time
|
|
110
|
+
|
|
111
|
+
@property
|
|
112
|
+
def description(self):
|
|
113
|
+
"""Gets the description of this GetGroupResponse. # noqa: E501
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
:return: The description of this GetGroupResponse. # noqa: E501
|
|
117
|
+
:rtype: str
|
|
118
|
+
"""
|
|
119
|
+
return self._description
|
|
120
|
+
|
|
121
|
+
@description.setter
|
|
122
|
+
def description(self, description):
|
|
123
|
+
"""Sets the description of this GetGroupResponse.
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
:param description: The description of this GetGroupResponse. # noqa: E501
|
|
127
|
+
:type: str
|
|
128
|
+
"""
|
|
129
|
+
|
|
130
|
+
self._description = description
|
|
131
|
+
|
|
132
|
+
@property
|
|
133
|
+
def display_name(self):
|
|
134
|
+
"""Gets the display_name of this GetGroupResponse. # noqa: E501
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
:return: The display_name of this GetGroupResponse. # noqa: E501
|
|
138
|
+
:rtype: str
|
|
139
|
+
"""
|
|
140
|
+
return self._display_name
|
|
141
|
+
|
|
142
|
+
@display_name.setter
|
|
143
|
+
def display_name(self, display_name):
|
|
144
|
+
"""Sets the display_name of this GetGroupResponse.
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
:param display_name: The display_name of this GetGroupResponse. # noqa: E501
|
|
148
|
+
:type: str
|
|
149
|
+
"""
|
|
150
|
+
|
|
151
|
+
self._display_name = display_name
|
|
152
|
+
|
|
153
|
+
@property
|
|
154
|
+
def group_id(self):
|
|
155
|
+
"""Gets the group_id of this GetGroupResponse. # noqa: E501
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
:return: The group_id of this GetGroupResponse. # noqa: E501
|
|
159
|
+
:rtype: str
|
|
160
|
+
"""
|
|
161
|
+
return self._group_id
|
|
162
|
+
|
|
163
|
+
@group_id.setter
|
|
164
|
+
def group_id(self, group_id):
|
|
165
|
+
"""Sets the group_id of this GetGroupResponse.
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
:param group_id: The group_id of this GetGroupResponse. # noqa: E501
|
|
169
|
+
:type: str
|
|
170
|
+
"""
|
|
171
|
+
|
|
172
|
+
self._group_id = group_id
|
|
173
|
+
|
|
174
|
+
@property
|
|
175
|
+
def group_name(self):
|
|
176
|
+
"""Gets the group_name of this GetGroupResponse. # noqa: E501
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
:return: The group_name of this GetGroupResponse. # noqa: E501
|
|
180
|
+
:rtype: str
|
|
181
|
+
"""
|
|
182
|
+
return self._group_name
|
|
183
|
+
|
|
184
|
+
@group_name.setter
|
|
185
|
+
def group_name(self, group_name):
|
|
186
|
+
"""Sets the group_name of this GetGroupResponse.
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
:param group_name: The group_name of this GetGroupResponse. # noqa: E501
|
|
190
|
+
:type: str
|
|
191
|
+
"""
|
|
192
|
+
|
|
193
|
+
self._group_name = group_name
|
|
194
|
+
|
|
195
|
+
@property
|
|
196
|
+
def join_type(self):
|
|
197
|
+
"""Gets the join_type of this GetGroupResponse. # noqa: E501
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
:return: The join_type of this GetGroupResponse. # noqa: E501
|
|
201
|
+
:rtype: str
|
|
202
|
+
"""
|
|
203
|
+
return self._join_type
|
|
204
|
+
|
|
205
|
+
@join_type.setter
|
|
206
|
+
def join_type(self, join_type):
|
|
207
|
+
"""Sets the join_type of this GetGroupResponse.
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
:param join_type: The join_type of this GetGroupResponse. # noqa: E501
|
|
211
|
+
:type: str
|
|
212
|
+
"""
|
|
213
|
+
|
|
214
|
+
self._join_type = join_type
|
|
215
|
+
|
|
216
|
+
@property
|
|
217
|
+
def source(self):
|
|
218
|
+
"""Gets the source of this GetGroupResponse. # noqa: E501
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
:return: The source of this GetGroupResponse. # noqa: E501
|
|
222
|
+
:rtype: str
|
|
223
|
+
"""
|
|
224
|
+
return self._source
|
|
225
|
+
|
|
226
|
+
@source.setter
|
|
227
|
+
def source(self, source):
|
|
228
|
+
"""Sets the source of this GetGroupResponse.
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
:param source: The source of this GetGroupResponse. # noqa: E501
|
|
232
|
+
:type: str
|
|
233
|
+
"""
|
|
234
|
+
|
|
235
|
+
self._source = source
|
|
236
|
+
|
|
237
|
+
@property
|
|
238
|
+
def updated_time(self):
|
|
239
|
+
"""Gets the updated_time of this GetGroupResponse. # noqa: E501
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
:return: The updated_time of this GetGroupResponse. # noqa: E501
|
|
243
|
+
:rtype: str
|
|
244
|
+
"""
|
|
245
|
+
return self._updated_time
|
|
246
|
+
|
|
247
|
+
@updated_time.setter
|
|
248
|
+
def updated_time(self, updated_time):
|
|
249
|
+
"""Sets the updated_time of this GetGroupResponse.
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
:param updated_time: The updated_time of this GetGroupResponse. # noqa: E501
|
|
253
|
+
:type: str
|
|
254
|
+
"""
|
|
255
|
+
|
|
256
|
+
self._updated_time = updated_time
|
|
257
|
+
|
|
258
|
+
def to_dict(self):
|
|
259
|
+
"""Returns the model properties as a dict"""
|
|
260
|
+
result = {}
|
|
261
|
+
|
|
262
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
263
|
+
value = getattr(self, attr)
|
|
264
|
+
if isinstance(value, list):
|
|
265
|
+
result[attr] = list(map(
|
|
266
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
267
|
+
value
|
|
268
|
+
))
|
|
269
|
+
elif hasattr(value, "to_dict"):
|
|
270
|
+
result[attr] = value.to_dict()
|
|
271
|
+
elif isinstance(value, dict):
|
|
272
|
+
result[attr] = dict(map(
|
|
273
|
+
lambda item: (item[0], item[1].to_dict())
|
|
274
|
+
if hasattr(item[1], "to_dict") else item,
|
|
275
|
+
value.items()
|
|
276
|
+
))
|
|
277
|
+
else:
|
|
278
|
+
result[attr] = value
|
|
279
|
+
if issubclass(GetGroupResponse, dict):
|
|
280
|
+
for key, value in self.items():
|
|
281
|
+
result[key] = value
|
|
282
|
+
|
|
283
|
+
return result
|
|
284
|
+
|
|
285
|
+
def to_str(self):
|
|
286
|
+
"""Returns the string representation of the model"""
|
|
287
|
+
return pprint.pformat(self.to_dict())
|
|
288
|
+
|
|
289
|
+
def __repr__(self):
|
|
290
|
+
"""For `print` and `pprint`"""
|
|
291
|
+
return self.to_str()
|
|
292
|
+
|
|
293
|
+
def __eq__(self, other):
|
|
294
|
+
"""Returns true if both objects are equal"""
|
|
295
|
+
if not isinstance(other, GetGroupResponse):
|
|
296
|
+
return False
|
|
297
|
+
|
|
298
|
+
return self.to_dict() == other.to_dict()
|
|
299
|
+
|
|
300
|
+
def __ne__(self, other):
|
|
301
|
+
"""Returns true if both objects are not equal"""
|
|
302
|
+
if not isinstance(other, GetGroupResponse):
|
|
303
|
+
return True
|
|
304
|
+
|
|
305
|
+
return self.to_dict() != other.to_dict()
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
cloudidentity
|
|
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 GetPermissionSetRequest(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
|
+
'permission_set_id': 'str'
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
attribute_map = {
|
|
40
|
+
'permission_set_id': 'PermissionSetId'
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
def __init__(self, permission_set_id=None, _configuration=None): # noqa: E501
|
|
44
|
+
"""GetPermissionSetRequest - a model defined in Swagger""" # noqa: E501
|
|
45
|
+
if _configuration is None:
|
|
46
|
+
_configuration = Configuration()
|
|
47
|
+
self._configuration = _configuration
|
|
48
|
+
|
|
49
|
+
self._permission_set_id = None
|
|
50
|
+
self.discriminator = None
|
|
51
|
+
|
|
52
|
+
self.permission_set_id = permission_set_id
|
|
53
|
+
|
|
54
|
+
@property
|
|
55
|
+
def permission_set_id(self):
|
|
56
|
+
"""Gets the permission_set_id of this GetPermissionSetRequest. # noqa: E501
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
:return: The permission_set_id of this GetPermissionSetRequest. # noqa: E501
|
|
60
|
+
:rtype: str
|
|
61
|
+
"""
|
|
62
|
+
return self._permission_set_id
|
|
63
|
+
|
|
64
|
+
@permission_set_id.setter
|
|
65
|
+
def permission_set_id(self, permission_set_id):
|
|
66
|
+
"""Sets the permission_set_id of this GetPermissionSetRequest.
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
:param permission_set_id: The permission_set_id of this GetPermissionSetRequest. # noqa: E501
|
|
70
|
+
:type: str
|
|
71
|
+
"""
|
|
72
|
+
if self._configuration.client_side_validation and permission_set_id is None:
|
|
73
|
+
raise ValueError("Invalid value for `permission_set_id`, must not be `None`") # noqa: E501
|
|
74
|
+
|
|
75
|
+
self._permission_set_id = permission_set_id
|
|
76
|
+
|
|
77
|
+
def to_dict(self):
|
|
78
|
+
"""Returns the model properties as a dict"""
|
|
79
|
+
result = {}
|
|
80
|
+
|
|
81
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
82
|
+
value = getattr(self, attr)
|
|
83
|
+
if isinstance(value, list):
|
|
84
|
+
result[attr] = list(map(
|
|
85
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
86
|
+
value
|
|
87
|
+
))
|
|
88
|
+
elif hasattr(value, "to_dict"):
|
|
89
|
+
result[attr] = value.to_dict()
|
|
90
|
+
elif isinstance(value, dict):
|
|
91
|
+
result[attr] = dict(map(
|
|
92
|
+
lambda item: (item[0], item[1].to_dict())
|
|
93
|
+
if hasattr(item[1], "to_dict") else item,
|
|
94
|
+
value.items()
|
|
95
|
+
))
|
|
96
|
+
else:
|
|
97
|
+
result[attr] = value
|
|
98
|
+
if issubclass(GetPermissionSetRequest, dict):
|
|
99
|
+
for key, value in self.items():
|
|
100
|
+
result[key] = value
|
|
101
|
+
|
|
102
|
+
return result
|
|
103
|
+
|
|
104
|
+
def to_str(self):
|
|
105
|
+
"""Returns the string representation of the model"""
|
|
106
|
+
return pprint.pformat(self.to_dict())
|
|
107
|
+
|
|
108
|
+
def __repr__(self):
|
|
109
|
+
"""For `print` and `pprint`"""
|
|
110
|
+
return self.to_str()
|
|
111
|
+
|
|
112
|
+
def __eq__(self, other):
|
|
113
|
+
"""Returns true if both objects are equal"""
|
|
114
|
+
if not isinstance(other, GetPermissionSetRequest):
|
|
115
|
+
return False
|
|
116
|
+
|
|
117
|
+
return self.to_dict() == other.to_dict()
|
|
118
|
+
|
|
119
|
+
def __ne__(self, other):
|
|
120
|
+
"""Returns true if both objects are not equal"""
|
|
121
|
+
if not isinstance(other, GetPermissionSetRequest):
|
|
122
|
+
return True
|
|
123
|
+
|
|
124
|
+
return self.to_dict() != other.to_dict()
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
cloudidentity
|
|
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 GetPermissionSetResponse(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
|
+
'created_time': 'str',
|
|
37
|
+
'description': 'str',
|
|
38
|
+
'name': 'str',
|
|
39
|
+
'permission_set_id': 'str',
|
|
40
|
+
'relay_state': 'str',
|
|
41
|
+
'session_duration': 'int',
|
|
42
|
+
'updated_time': 'str'
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
attribute_map = {
|
|
46
|
+
'created_time': 'CreatedTime',
|
|
47
|
+
'description': 'Description',
|
|
48
|
+
'name': 'Name',
|
|
49
|
+
'permission_set_id': 'PermissionSetId',
|
|
50
|
+
'relay_state': 'RelayState',
|
|
51
|
+
'session_duration': 'SessionDuration',
|
|
52
|
+
'updated_time': 'UpdatedTime'
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
def __init__(self, created_time=None, description=None, name=None, permission_set_id=None, relay_state=None, session_duration=None, updated_time=None, _configuration=None): # noqa: E501
|
|
56
|
+
"""GetPermissionSetResponse - a model defined in Swagger""" # noqa: E501
|
|
57
|
+
if _configuration is None:
|
|
58
|
+
_configuration = Configuration()
|
|
59
|
+
self._configuration = _configuration
|
|
60
|
+
|
|
61
|
+
self._created_time = None
|
|
62
|
+
self._description = None
|
|
63
|
+
self._name = None
|
|
64
|
+
self._permission_set_id = None
|
|
65
|
+
self._relay_state = None
|
|
66
|
+
self._session_duration = None
|
|
67
|
+
self._updated_time = None
|
|
68
|
+
self.discriminator = None
|
|
69
|
+
|
|
70
|
+
if created_time is not None:
|
|
71
|
+
self.created_time = created_time
|
|
72
|
+
if description is not None:
|
|
73
|
+
self.description = description
|
|
74
|
+
if name is not None:
|
|
75
|
+
self.name = name
|
|
76
|
+
if permission_set_id is not None:
|
|
77
|
+
self.permission_set_id = permission_set_id
|
|
78
|
+
if relay_state is not None:
|
|
79
|
+
self.relay_state = relay_state
|
|
80
|
+
if session_duration is not None:
|
|
81
|
+
self.session_duration = session_duration
|
|
82
|
+
if updated_time is not None:
|
|
83
|
+
self.updated_time = updated_time
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
def created_time(self):
|
|
87
|
+
"""Gets the created_time of this GetPermissionSetResponse. # noqa: E501
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
:return: The created_time of this GetPermissionSetResponse. # noqa: E501
|
|
91
|
+
:rtype: str
|
|
92
|
+
"""
|
|
93
|
+
return self._created_time
|
|
94
|
+
|
|
95
|
+
@created_time.setter
|
|
96
|
+
def created_time(self, created_time):
|
|
97
|
+
"""Sets the created_time of this GetPermissionSetResponse.
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
:param created_time: The created_time of this GetPermissionSetResponse. # noqa: E501
|
|
101
|
+
:type: str
|
|
102
|
+
"""
|
|
103
|
+
|
|
104
|
+
self._created_time = created_time
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
def description(self):
|
|
108
|
+
"""Gets the description of this GetPermissionSetResponse. # noqa: E501
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
:return: The description of this GetPermissionSetResponse. # noqa: E501
|
|
112
|
+
:rtype: str
|
|
113
|
+
"""
|
|
114
|
+
return self._description
|
|
115
|
+
|
|
116
|
+
@description.setter
|
|
117
|
+
def description(self, description):
|
|
118
|
+
"""Sets the description of this GetPermissionSetResponse.
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
:param description: The description of this GetPermissionSetResponse. # noqa: E501
|
|
122
|
+
:type: str
|
|
123
|
+
"""
|
|
124
|
+
|
|
125
|
+
self._description = description
|
|
126
|
+
|
|
127
|
+
@property
|
|
128
|
+
def name(self):
|
|
129
|
+
"""Gets the name of this GetPermissionSetResponse. # noqa: E501
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
:return: The name of this GetPermissionSetResponse. # noqa: E501
|
|
133
|
+
:rtype: str
|
|
134
|
+
"""
|
|
135
|
+
return self._name
|
|
136
|
+
|
|
137
|
+
@name.setter
|
|
138
|
+
def name(self, name):
|
|
139
|
+
"""Sets the name of this GetPermissionSetResponse.
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
:param name: The name of this GetPermissionSetResponse. # noqa: E501
|
|
143
|
+
:type: str
|
|
144
|
+
"""
|
|
145
|
+
|
|
146
|
+
self._name = name
|
|
147
|
+
|
|
148
|
+
@property
|
|
149
|
+
def permission_set_id(self):
|
|
150
|
+
"""Gets the permission_set_id of this GetPermissionSetResponse. # noqa: E501
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
:return: The permission_set_id of this GetPermissionSetResponse. # noqa: E501
|
|
154
|
+
:rtype: str
|
|
155
|
+
"""
|
|
156
|
+
return self._permission_set_id
|
|
157
|
+
|
|
158
|
+
@permission_set_id.setter
|
|
159
|
+
def permission_set_id(self, permission_set_id):
|
|
160
|
+
"""Sets the permission_set_id of this GetPermissionSetResponse.
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
:param permission_set_id: The permission_set_id of this GetPermissionSetResponse. # noqa: E501
|
|
164
|
+
:type: str
|
|
165
|
+
"""
|
|
166
|
+
|
|
167
|
+
self._permission_set_id = permission_set_id
|
|
168
|
+
|
|
169
|
+
@property
|
|
170
|
+
def relay_state(self):
|
|
171
|
+
"""Gets the relay_state of this GetPermissionSetResponse. # noqa: E501
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
:return: The relay_state of this GetPermissionSetResponse. # noqa: E501
|
|
175
|
+
:rtype: str
|
|
176
|
+
"""
|
|
177
|
+
return self._relay_state
|
|
178
|
+
|
|
179
|
+
@relay_state.setter
|
|
180
|
+
def relay_state(self, relay_state):
|
|
181
|
+
"""Sets the relay_state of this GetPermissionSetResponse.
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
:param relay_state: The relay_state of this GetPermissionSetResponse. # noqa: E501
|
|
185
|
+
:type: str
|
|
186
|
+
"""
|
|
187
|
+
|
|
188
|
+
self._relay_state = relay_state
|
|
189
|
+
|
|
190
|
+
@property
|
|
191
|
+
def session_duration(self):
|
|
192
|
+
"""Gets the session_duration of this GetPermissionSetResponse. # noqa: E501
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
:return: The session_duration of this GetPermissionSetResponse. # noqa: E501
|
|
196
|
+
:rtype: int
|
|
197
|
+
"""
|
|
198
|
+
return self._session_duration
|
|
199
|
+
|
|
200
|
+
@session_duration.setter
|
|
201
|
+
def session_duration(self, session_duration):
|
|
202
|
+
"""Sets the session_duration of this GetPermissionSetResponse.
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
:param session_duration: The session_duration of this GetPermissionSetResponse. # noqa: E501
|
|
206
|
+
:type: int
|
|
207
|
+
"""
|
|
208
|
+
|
|
209
|
+
self._session_duration = session_duration
|
|
210
|
+
|
|
211
|
+
@property
|
|
212
|
+
def updated_time(self):
|
|
213
|
+
"""Gets the updated_time of this GetPermissionSetResponse. # noqa: E501
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
:return: The updated_time of this GetPermissionSetResponse. # noqa: E501
|
|
217
|
+
:rtype: str
|
|
218
|
+
"""
|
|
219
|
+
return self._updated_time
|
|
220
|
+
|
|
221
|
+
@updated_time.setter
|
|
222
|
+
def updated_time(self, updated_time):
|
|
223
|
+
"""Sets the updated_time of this GetPermissionSetResponse.
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
:param updated_time: The updated_time of this GetPermissionSetResponse. # noqa: E501
|
|
227
|
+
:type: str
|
|
228
|
+
"""
|
|
229
|
+
|
|
230
|
+
self._updated_time = updated_time
|
|
231
|
+
|
|
232
|
+
def to_dict(self):
|
|
233
|
+
"""Returns the model properties as a dict"""
|
|
234
|
+
result = {}
|
|
235
|
+
|
|
236
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
237
|
+
value = getattr(self, attr)
|
|
238
|
+
if isinstance(value, list):
|
|
239
|
+
result[attr] = list(map(
|
|
240
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
241
|
+
value
|
|
242
|
+
))
|
|
243
|
+
elif hasattr(value, "to_dict"):
|
|
244
|
+
result[attr] = value.to_dict()
|
|
245
|
+
elif isinstance(value, dict):
|
|
246
|
+
result[attr] = dict(map(
|
|
247
|
+
lambda item: (item[0], item[1].to_dict())
|
|
248
|
+
if hasattr(item[1], "to_dict") else item,
|
|
249
|
+
value.items()
|
|
250
|
+
))
|
|
251
|
+
else:
|
|
252
|
+
result[attr] = value
|
|
253
|
+
if issubclass(GetPermissionSetResponse, dict):
|
|
254
|
+
for key, value in self.items():
|
|
255
|
+
result[key] = value
|
|
256
|
+
|
|
257
|
+
return result
|
|
258
|
+
|
|
259
|
+
def to_str(self):
|
|
260
|
+
"""Returns the string representation of the model"""
|
|
261
|
+
return pprint.pformat(self.to_dict())
|
|
262
|
+
|
|
263
|
+
def __repr__(self):
|
|
264
|
+
"""For `print` and `pprint`"""
|
|
265
|
+
return self.to_str()
|
|
266
|
+
|
|
267
|
+
def __eq__(self, other):
|
|
268
|
+
"""Returns true if both objects are equal"""
|
|
269
|
+
if not isinstance(other, GetPermissionSetResponse):
|
|
270
|
+
return False
|
|
271
|
+
|
|
272
|
+
return self.to_dict() == other.to_dict()
|
|
273
|
+
|
|
274
|
+
def __ne__(self, other):
|
|
275
|
+
"""Returns true if both objects are not equal"""
|
|
276
|
+
if not isinstance(other, GetPermissionSetResponse):
|
|
277
|
+
return True
|
|
278
|
+
|
|
279
|
+
return self.to_dict() != other.to_dict()
|