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,435 @@
|
|
|
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 GetUserProvisioningResponse(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
|
+
'deletion_strategy': 'str',
|
|
38
|
+
'description': 'str',
|
|
39
|
+
'duplication_strategy': 'str',
|
|
40
|
+
'duplication_suffix': 'str',
|
|
41
|
+
'identity_source_strategy': 'str',
|
|
42
|
+
'principal_id': 'str',
|
|
43
|
+
'principal_name': 'str',
|
|
44
|
+
'principal_type': 'str',
|
|
45
|
+
'provision_status': 'str',
|
|
46
|
+
'target_id': 'str',
|
|
47
|
+
'updated_time': 'str',
|
|
48
|
+
'user_provisioning_id': 'str'
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
attribute_map = {
|
|
52
|
+
'created_time': 'CreatedTime',
|
|
53
|
+
'deletion_strategy': 'DeletionStrategy',
|
|
54
|
+
'description': 'Description',
|
|
55
|
+
'duplication_strategy': 'DuplicationStrategy',
|
|
56
|
+
'duplication_suffix': 'DuplicationSuffix',
|
|
57
|
+
'identity_source_strategy': 'IdentitySourceStrategy',
|
|
58
|
+
'principal_id': 'PrincipalId',
|
|
59
|
+
'principal_name': 'PrincipalName',
|
|
60
|
+
'principal_type': 'PrincipalType',
|
|
61
|
+
'provision_status': 'ProvisionStatus',
|
|
62
|
+
'target_id': 'TargetId',
|
|
63
|
+
'updated_time': 'UpdatedTime',
|
|
64
|
+
'user_provisioning_id': 'UserProvisioningId'
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
def __init__(self, created_time=None, deletion_strategy=None, description=None, duplication_strategy=None, duplication_suffix=None, identity_source_strategy=None, principal_id=None, principal_name=None, principal_type=None, provision_status=None, target_id=None, updated_time=None, user_provisioning_id=None, _configuration=None): # noqa: E501
|
|
68
|
+
"""GetUserProvisioningResponse - a model defined in Swagger""" # noqa: E501
|
|
69
|
+
if _configuration is None:
|
|
70
|
+
_configuration = Configuration()
|
|
71
|
+
self._configuration = _configuration
|
|
72
|
+
|
|
73
|
+
self._created_time = None
|
|
74
|
+
self._deletion_strategy = None
|
|
75
|
+
self._description = None
|
|
76
|
+
self._duplication_strategy = None
|
|
77
|
+
self._duplication_suffix = None
|
|
78
|
+
self._identity_source_strategy = None
|
|
79
|
+
self._principal_id = None
|
|
80
|
+
self._principal_name = None
|
|
81
|
+
self._principal_type = None
|
|
82
|
+
self._provision_status = None
|
|
83
|
+
self._target_id = None
|
|
84
|
+
self._updated_time = None
|
|
85
|
+
self._user_provisioning_id = None
|
|
86
|
+
self.discriminator = None
|
|
87
|
+
|
|
88
|
+
if created_time is not None:
|
|
89
|
+
self.created_time = created_time
|
|
90
|
+
if deletion_strategy is not None:
|
|
91
|
+
self.deletion_strategy = deletion_strategy
|
|
92
|
+
if description is not None:
|
|
93
|
+
self.description = description
|
|
94
|
+
if duplication_strategy is not None:
|
|
95
|
+
self.duplication_strategy = duplication_strategy
|
|
96
|
+
if duplication_suffix is not None:
|
|
97
|
+
self.duplication_suffix = duplication_suffix
|
|
98
|
+
if identity_source_strategy is not None:
|
|
99
|
+
self.identity_source_strategy = identity_source_strategy
|
|
100
|
+
if principal_id is not None:
|
|
101
|
+
self.principal_id = principal_id
|
|
102
|
+
if principal_name is not None:
|
|
103
|
+
self.principal_name = principal_name
|
|
104
|
+
if principal_type is not None:
|
|
105
|
+
self.principal_type = principal_type
|
|
106
|
+
if provision_status is not None:
|
|
107
|
+
self.provision_status = provision_status
|
|
108
|
+
if target_id is not None:
|
|
109
|
+
self.target_id = target_id
|
|
110
|
+
if updated_time is not None:
|
|
111
|
+
self.updated_time = updated_time
|
|
112
|
+
if user_provisioning_id is not None:
|
|
113
|
+
self.user_provisioning_id = user_provisioning_id
|
|
114
|
+
|
|
115
|
+
@property
|
|
116
|
+
def created_time(self):
|
|
117
|
+
"""Gets the created_time of this GetUserProvisioningResponse. # noqa: E501
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
:return: The created_time of this GetUserProvisioningResponse. # noqa: E501
|
|
121
|
+
:rtype: str
|
|
122
|
+
"""
|
|
123
|
+
return self._created_time
|
|
124
|
+
|
|
125
|
+
@created_time.setter
|
|
126
|
+
def created_time(self, created_time):
|
|
127
|
+
"""Sets the created_time of this GetUserProvisioningResponse.
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
:param created_time: The created_time of this GetUserProvisioningResponse. # noqa: E501
|
|
131
|
+
:type: str
|
|
132
|
+
"""
|
|
133
|
+
|
|
134
|
+
self._created_time = created_time
|
|
135
|
+
|
|
136
|
+
@property
|
|
137
|
+
def deletion_strategy(self):
|
|
138
|
+
"""Gets the deletion_strategy of this GetUserProvisioningResponse. # noqa: E501
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
:return: The deletion_strategy of this GetUserProvisioningResponse. # noqa: E501
|
|
142
|
+
:rtype: str
|
|
143
|
+
"""
|
|
144
|
+
return self._deletion_strategy
|
|
145
|
+
|
|
146
|
+
@deletion_strategy.setter
|
|
147
|
+
def deletion_strategy(self, deletion_strategy):
|
|
148
|
+
"""Sets the deletion_strategy of this GetUserProvisioningResponse.
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
:param deletion_strategy: The deletion_strategy of this GetUserProvisioningResponse. # noqa: E501
|
|
152
|
+
:type: str
|
|
153
|
+
"""
|
|
154
|
+
|
|
155
|
+
self._deletion_strategy = deletion_strategy
|
|
156
|
+
|
|
157
|
+
@property
|
|
158
|
+
def description(self):
|
|
159
|
+
"""Gets the description of this GetUserProvisioningResponse. # noqa: E501
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
:return: The description of this GetUserProvisioningResponse. # noqa: E501
|
|
163
|
+
:rtype: str
|
|
164
|
+
"""
|
|
165
|
+
return self._description
|
|
166
|
+
|
|
167
|
+
@description.setter
|
|
168
|
+
def description(self, description):
|
|
169
|
+
"""Sets the description of this GetUserProvisioningResponse.
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
:param description: The description of this GetUserProvisioningResponse. # noqa: E501
|
|
173
|
+
:type: str
|
|
174
|
+
"""
|
|
175
|
+
|
|
176
|
+
self._description = description
|
|
177
|
+
|
|
178
|
+
@property
|
|
179
|
+
def duplication_strategy(self):
|
|
180
|
+
"""Gets the duplication_strategy of this GetUserProvisioningResponse. # noqa: E501
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
:return: The duplication_strategy of this GetUserProvisioningResponse. # noqa: E501
|
|
184
|
+
:rtype: str
|
|
185
|
+
"""
|
|
186
|
+
return self._duplication_strategy
|
|
187
|
+
|
|
188
|
+
@duplication_strategy.setter
|
|
189
|
+
def duplication_strategy(self, duplication_strategy):
|
|
190
|
+
"""Sets the duplication_strategy of this GetUserProvisioningResponse.
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
:param duplication_strategy: The duplication_strategy of this GetUserProvisioningResponse. # noqa: E501
|
|
194
|
+
:type: str
|
|
195
|
+
"""
|
|
196
|
+
|
|
197
|
+
self._duplication_strategy = duplication_strategy
|
|
198
|
+
|
|
199
|
+
@property
|
|
200
|
+
def duplication_suffix(self):
|
|
201
|
+
"""Gets the duplication_suffix of this GetUserProvisioningResponse. # noqa: E501
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
:return: The duplication_suffix of this GetUserProvisioningResponse. # noqa: E501
|
|
205
|
+
:rtype: str
|
|
206
|
+
"""
|
|
207
|
+
return self._duplication_suffix
|
|
208
|
+
|
|
209
|
+
@duplication_suffix.setter
|
|
210
|
+
def duplication_suffix(self, duplication_suffix):
|
|
211
|
+
"""Sets the duplication_suffix of this GetUserProvisioningResponse.
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
:param duplication_suffix: The duplication_suffix of this GetUserProvisioningResponse. # noqa: E501
|
|
215
|
+
:type: str
|
|
216
|
+
"""
|
|
217
|
+
|
|
218
|
+
self._duplication_suffix = duplication_suffix
|
|
219
|
+
|
|
220
|
+
@property
|
|
221
|
+
def identity_source_strategy(self):
|
|
222
|
+
"""Gets the identity_source_strategy of this GetUserProvisioningResponse. # noqa: E501
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
:return: The identity_source_strategy of this GetUserProvisioningResponse. # noqa: E501
|
|
226
|
+
:rtype: str
|
|
227
|
+
"""
|
|
228
|
+
return self._identity_source_strategy
|
|
229
|
+
|
|
230
|
+
@identity_source_strategy.setter
|
|
231
|
+
def identity_source_strategy(self, identity_source_strategy):
|
|
232
|
+
"""Sets the identity_source_strategy of this GetUserProvisioningResponse.
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
:param identity_source_strategy: The identity_source_strategy of this GetUserProvisioningResponse. # noqa: E501
|
|
236
|
+
:type: str
|
|
237
|
+
"""
|
|
238
|
+
|
|
239
|
+
self._identity_source_strategy = identity_source_strategy
|
|
240
|
+
|
|
241
|
+
@property
|
|
242
|
+
def principal_id(self):
|
|
243
|
+
"""Gets the principal_id of this GetUserProvisioningResponse. # noqa: E501
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
:return: The principal_id of this GetUserProvisioningResponse. # noqa: E501
|
|
247
|
+
:rtype: str
|
|
248
|
+
"""
|
|
249
|
+
return self._principal_id
|
|
250
|
+
|
|
251
|
+
@principal_id.setter
|
|
252
|
+
def principal_id(self, principal_id):
|
|
253
|
+
"""Sets the principal_id of this GetUserProvisioningResponse.
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
:param principal_id: The principal_id of this GetUserProvisioningResponse. # noqa: E501
|
|
257
|
+
:type: str
|
|
258
|
+
"""
|
|
259
|
+
|
|
260
|
+
self._principal_id = principal_id
|
|
261
|
+
|
|
262
|
+
@property
|
|
263
|
+
def principal_name(self):
|
|
264
|
+
"""Gets the principal_name of this GetUserProvisioningResponse. # noqa: E501
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
:return: The principal_name of this GetUserProvisioningResponse. # noqa: E501
|
|
268
|
+
:rtype: str
|
|
269
|
+
"""
|
|
270
|
+
return self._principal_name
|
|
271
|
+
|
|
272
|
+
@principal_name.setter
|
|
273
|
+
def principal_name(self, principal_name):
|
|
274
|
+
"""Sets the principal_name of this GetUserProvisioningResponse.
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
:param principal_name: The principal_name of this GetUserProvisioningResponse. # noqa: E501
|
|
278
|
+
:type: str
|
|
279
|
+
"""
|
|
280
|
+
|
|
281
|
+
self._principal_name = principal_name
|
|
282
|
+
|
|
283
|
+
@property
|
|
284
|
+
def principal_type(self):
|
|
285
|
+
"""Gets the principal_type of this GetUserProvisioningResponse. # noqa: E501
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
:return: The principal_type of this GetUserProvisioningResponse. # noqa: E501
|
|
289
|
+
:rtype: str
|
|
290
|
+
"""
|
|
291
|
+
return self._principal_type
|
|
292
|
+
|
|
293
|
+
@principal_type.setter
|
|
294
|
+
def principal_type(self, principal_type):
|
|
295
|
+
"""Sets the principal_type of this GetUserProvisioningResponse.
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
:param principal_type: The principal_type of this GetUserProvisioningResponse. # noqa: E501
|
|
299
|
+
:type: str
|
|
300
|
+
"""
|
|
301
|
+
|
|
302
|
+
self._principal_type = principal_type
|
|
303
|
+
|
|
304
|
+
@property
|
|
305
|
+
def provision_status(self):
|
|
306
|
+
"""Gets the provision_status of this GetUserProvisioningResponse. # noqa: E501
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
:return: The provision_status of this GetUserProvisioningResponse. # noqa: E501
|
|
310
|
+
:rtype: str
|
|
311
|
+
"""
|
|
312
|
+
return self._provision_status
|
|
313
|
+
|
|
314
|
+
@provision_status.setter
|
|
315
|
+
def provision_status(self, provision_status):
|
|
316
|
+
"""Sets the provision_status of this GetUserProvisioningResponse.
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
:param provision_status: The provision_status of this GetUserProvisioningResponse. # noqa: E501
|
|
320
|
+
:type: str
|
|
321
|
+
"""
|
|
322
|
+
|
|
323
|
+
self._provision_status = provision_status
|
|
324
|
+
|
|
325
|
+
@property
|
|
326
|
+
def target_id(self):
|
|
327
|
+
"""Gets the target_id of this GetUserProvisioningResponse. # noqa: E501
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
:return: The target_id of this GetUserProvisioningResponse. # noqa: E501
|
|
331
|
+
:rtype: str
|
|
332
|
+
"""
|
|
333
|
+
return self._target_id
|
|
334
|
+
|
|
335
|
+
@target_id.setter
|
|
336
|
+
def target_id(self, target_id):
|
|
337
|
+
"""Sets the target_id of this GetUserProvisioningResponse.
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
:param target_id: The target_id of this GetUserProvisioningResponse. # noqa: E501
|
|
341
|
+
:type: str
|
|
342
|
+
"""
|
|
343
|
+
|
|
344
|
+
self._target_id = target_id
|
|
345
|
+
|
|
346
|
+
@property
|
|
347
|
+
def updated_time(self):
|
|
348
|
+
"""Gets the updated_time of this GetUserProvisioningResponse. # noqa: E501
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
:return: The updated_time of this GetUserProvisioningResponse. # noqa: E501
|
|
352
|
+
:rtype: str
|
|
353
|
+
"""
|
|
354
|
+
return self._updated_time
|
|
355
|
+
|
|
356
|
+
@updated_time.setter
|
|
357
|
+
def updated_time(self, updated_time):
|
|
358
|
+
"""Sets the updated_time of this GetUserProvisioningResponse.
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
:param updated_time: The updated_time of this GetUserProvisioningResponse. # noqa: E501
|
|
362
|
+
:type: str
|
|
363
|
+
"""
|
|
364
|
+
|
|
365
|
+
self._updated_time = updated_time
|
|
366
|
+
|
|
367
|
+
@property
|
|
368
|
+
def user_provisioning_id(self):
|
|
369
|
+
"""Gets the user_provisioning_id of this GetUserProvisioningResponse. # noqa: E501
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
:return: The user_provisioning_id of this GetUserProvisioningResponse. # noqa: E501
|
|
373
|
+
:rtype: str
|
|
374
|
+
"""
|
|
375
|
+
return self._user_provisioning_id
|
|
376
|
+
|
|
377
|
+
@user_provisioning_id.setter
|
|
378
|
+
def user_provisioning_id(self, user_provisioning_id):
|
|
379
|
+
"""Sets the user_provisioning_id of this GetUserProvisioningResponse.
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
:param user_provisioning_id: The user_provisioning_id of this GetUserProvisioningResponse. # noqa: E501
|
|
383
|
+
:type: str
|
|
384
|
+
"""
|
|
385
|
+
|
|
386
|
+
self._user_provisioning_id = user_provisioning_id
|
|
387
|
+
|
|
388
|
+
def to_dict(self):
|
|
389
|
+
"""Returns the model properties as a dict"""
|
|
390
|
+
result = {}
|
|
391
|
+
|
|
392
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
393
|
+
value = getattr(self, attr)
|
|
394
|
+
if isinstance(value, list):
|
|
395
|
+
result[attr] = list(map(
|
|
396
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
397
|
+
value
|
|
398
|
+
))
|
|
399
|
+
elif hasattr(value, "to_dict"):
|
|
400
|
+
result[attr] = value.to_dict()
|
|
401
|
+
elif isinstance(value, dict):
|
|
402
|
+
result[attr] = dict(map(
|
|
403
|
+
lambda item: (item[0], item[1].to_dict())
|
|
404
|
+
if hasattr(item[1], "to_dict") else item,
|
|
405
|
+
value.items()
|
|
406
|
+
))
|
|
407
|
+
else:
|
|
408
|
+
result[attr] = value
|
|
409
|
+
if issubclass(GetUserProvisioningResponse, dict):
|
|
410
|
+
for key, value in self.items():
|
|
411
|
+
result[key] = value
|
|
412
|
+
|
|
413
|
+
return result
|
|
414
|
+
|
|
415
|
+
def to_str(self):
|
|
416
|
+
"""Returns the string representation of the model"""
|
|
417
|
+
return pprint.pformat(self.to_dict())
|
|
418
|
+
|
|
419
|
+
def __repr__(self):
|
|
420
|
+
"""For `print` and `pprint`"""
|
|
421
|
+
return self.to_str()
|
|
422
|
+
|
|
423
|
+
def __eq__(self, other):
|
|
424
|
+
"""Returns true if both objects are equal"""
|
|
425
|
+
if not isinstance(other, GetUserProvisioningResponse):
|
|
426
|
+
return False
|
|
427
|
+
|
|
428
|
+
return self.to_dict() == other.to_dict()
|
|
429
|
+
|
|
430
|
+
def __ne__(self, other):
|
|
431
|
+
"""Returns true if both objects are not equal"""
|
|
432
|
+
if not isinstance(other, GetUserProvisioningResponse):
|
|
433
|
+
return True
|
|
434
|
+
|
|
435
|
+
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 GetUserRequest(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
|
+
'user_id': 'str'
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
attribute_map = {
|
|
40
|
+
'user_id': 'UserId'
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
def __init__(self, user_id=None, _configuration=None): # noqa: E501
|
|
44
|
+
"""GetUserRequest - a model defined in Swagger""" # noqa: E501
|
|
45
|
+
if _configuration is None:
|
|
46
|
+
_configuration = Configuration()
|
|
47
|
+
self._configuration = _configuration
|
|
48
|
+
|
|
49
|
+
self._user_id = None
|
|
50
|
+
self.discriminator = None
|
|
51
|
+
|
|
52
|
+
self.user_id = user_id
|
|
53
|
+
|
|
54
|
+
@property
|
|
55
|
+
def user_id(self):
|
|
56
|
+
"""Gets the user_id of this GetUserRequest. # noqa: E501
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
:return: The user_id of this GetUserRequest. # noqa: E501
|
|
60
|
+
:rtype: str
|
|
61
|
+
"""
|
|
62
|
+
return self._user_id
|
|
63
|
+
|
|
64
|
+
@user_id.setter
|
|
65
|
+
def user_id(self, user_id):
|
|
66
|
+
"""Sets the user_id of this GetUserRequest.
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
:param user_id: The user_id of this GetUserRequest. # noqa: E501
|
|
70
|
+
:type: str
|
|
71
|
+
"""
|
|
72
|
+
if self._configuration.client_side_validation and user_id is None:
|
|
73
|
+
raise ValueError("Invalid value for `user_id`, must not be `None`") # noqa: E501
|
|
74
|
+
|
|
75
|
+
self._user_id = user_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(GetUserRequest, 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, GetUserRequest):
|
|
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, GetUserRequest):
|
|
122
|
+
return True
|
|
123
|
+
|
|
124
|
+
return self.to_dict() != other.to_dict()
|