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