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,95 @@
|
|
|
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 UpdateInstanceNameResponse(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
|
+
}
|
|
37
|
+
|
|
38
|
+
attribute_map = {
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
def __init__(self, _configuration=None): # noqa: E501
|
|
42
|
+
"""UpdateInstanceNameResponse - a model defined in Swagger""" # noqa: E501
|
|
43
|
+
if _configuration is None:
|
|
44
|
+
_configuration = Configuration()
|
|
45
|
+
self._configuration = _configuration
|
|
46
|
+
self.discriminator = None
|
|
47
|
+
|
|
48
|
+
def to_dict(self):
|
|
49
|
+
"""Returns the model properties as a dict"""
|
|
50
|
+
result = {}
|
|
51
|
+
|
|
52
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
53
|
+
value = getattr(self, attr)
|
|
54
|
+
if isinstance(value, list):
|
|
55
|
+
result[attr] = list(map(
|
|
56
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
57
|
+
value
|
|
58
|
+
))
|
|
59
|
+
elif hasattr(value, "to_dict"):
|
|
60
|
+
result[attr] = value.to_dict()
|
|
61
|
+
elif isinstance(value, dict):
|
|
62
|
+
result[attr] = dict(map(
|
|
63
|
+
lambda item: (item[0], item[1].to_dict())
|
|
64
|
+
if hasattr(item[1], "to_dict") else item,
|
|
65
|
+
value.items()
|
|
66
|
+
))
|
|
67
|
+
else:
|
|
68
|
+
result[attr] = value
|
|
69
|
+
if issubclass(UpdateInstanceNameResponse, dict):
|
|
70
|
+
for key, value in self.items():
|
|
71
|
+
result[key] = value
|
|
72
|
+
|
|
73
|
+
return result
|
|
74
|
+
|
|
75
|
+
def to_str(self):
|
|
76
|
+
"""Returns the string representation of the model"""
|
|
77
|
+
return pprint.pformat(self.to_dict())
|
|
78
|
+
|
|
79
|
+
def __repr__(self):
|
|
80
|
+
"""For `print` and `pprint`"""
|
|
81
|
+
return self.to_str()
|
|
82
|
+
|
|
83
|
+
def __eq__(self, other):
|
|
84
|
+
"""Returns true if both objects are equal"""
|
|
85
|
+
if not isinstance(other, UpdateInstanceNameResponse):
|
|
86
|
+
return False
|
|
87
|
+
|
|
88
|
+
return self.to_dict() == other.to_dict()
|
|
89
|
+
|
|
90
|
+
def __ne__(self, other):
|
|
91
|
+
"""Returns true if both objects are not equal"""
|
|
92
|
+
if not isinstance(other, UpdateInstanceNameResponse):
|
|
93
|
+
return True
|
|
94
|
+
|
|
95
|
+
return self.to_dict() != other.to_dict()
|
|
@@ -0,0 +1,205 @@
|
|
|
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 UpdatePermissionSetRequest(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
|
+
'description': 'str',
|
|
37
|
+
'permission_set_id': 'str',
|
|
38
|
+
'relay_state': 'str',
|
|
39
|
+
'session_duration': 'int'
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
attribute_map = {
|
|
43
|
+
'description': 'Description',
|
|
44
|
+
'permission_set_id': 'PermissionSetId',
|
|
45
|
+
'relay_state': 'RelayState',
|
|
46
|
+
'session_duration': 'SessionDuration'
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
def __init__(self, description=None, permission_set_id=None, relay_state=None, session_duration=None, _configuration=None): # noqa: E501
|
|
50
|
+
"""UpdatePermissionSetRequest - a model defined in Swagger""" # noqa: E501
|
|
51
|
+
if _configuration is None:
|
|
52
|
+
_configuration = Configuration()
|
|
53
|
+
self._configuration = _configuration
|
|
54
|
+
|
|
55
|
+
self._description = None
|
|
56
|
+
self._permission_set_id = None
|
|
57
|
+
self._relay_state = None
|
|
58
|
+
self._session_duration = None
|
|
59
|
+
self.discriminator = None
|
|
60
|
+
|
|
61
|
+
if description is not None:
|
|
62
|
+
self.description = description
|
|
63
|
+
self.permission_set_id = permission_set_id
|
|
64
|
+
if relay_state is not None:
|
|
65
|
+
self.relay_state = relay_state
|
|
66
|
+
if session_duration is not None:
|
|
67
|
+
self.session_duration = session_duration
|
|
68
|
+
|
|
69
|
+
@property
|
|
70
|
+
def description(self):
|
|
71
|
+
"""Gets the description of this UpdatePermissionSetRequest. # noqa: E501
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
:return: The description of this UpdatePermissionSetRequest. # noqa: E501
|
|
75
|
+
:rtype: str
|
|
76
|
+
"""
|
|
77
|
+
return self._description
|
|
78
|
+
|
|
79
|
+
@description.setter
|
|
80
|
+
def description(self, description):
|
|
81
|
+
"""Sets the description of this UpdatePermissionSetRequest.
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
:param description: The description of this UpdatePermissionSetRequest. # noqa: E501
|
|
85
|
+
:type: str
|
|
86
|
+
"""
|
|
87
|
+
if (self._configuration.client_side_validation and
|
|
88
|
+
description is not None and len(description) > 255):
|
|
89
|
+
raise ValueError("Invalid value for `description`, length must be less than or equal to `255`") # noqa: E501
|
|
90
|
+
|
|
91
|
+
self._description = description
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
def permission_set_id(self):
|
|
95
|
+
"""Gets the permission_set_id of this UpdatePermissionSetRequest. # noqa: E501
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
:return: The permission_set_id of this UpdatePermissionSetRequest. # noqa: E501
|
|
99
|
+
:rtype: str
|
|
100
|
+
"""
|
|
101
|
+
return self._permission_set_id
|
|
102
|
+
|
|
103
|
+
@permission_set_id.setter
|
|
104
|
+
def permission_set_id(self, permission_set_id):
|
|
105
|
+
"""Sets the permission_set_id of this UpdatePermissionSetRequest.
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
:param permission_set_id: The permission_set_id of this UpdatePermissionSetRequest. # noqa: E501
|
|
109
|
+
:type: str
|
|
110
|
+
"""
|
|
111
|
+
if self._configuration.client_side_validation and permission_set_id is None:
|
|
112
|
+
raise ValueError("Invalid value for `permission_set_id`, must not be `None`") # noqa: E501
|
|
113
|
+
|
|
114
|
+
self._permission_set_id = permission_set_id
|
|
115
|
+
|
|
116
|
+
@property
|
|
117
|
+
def relay_state(self):
|
|
118
|
+
"""Gets the relay_state of this UpdatePermissionSetRequest. # noqa: E501
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
:return: The relay_state of this UpdatePermissionSetRequest. # noqa: E501
|
|
122
|
+
:rtype: str
|
|
123
|
+
"""
|
|
124
|
+
return self._relay_state
|
|
125
|
+
|
|
126
|
+
@relay_state.setter
|
|
127
|
+
def relay_state(self, relay_state):
|
|
128
|
+
"""Sets the relay_state of this UpdatePermissionSetRequest.
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
:param relay_state: The relay_state of this UpdatePermissionSetRequest. # noqa: E501
|
|
132
|
+
:type: str
|
|
133
|
+
"""
|
|
134
|
+
|
|
135
|
+
self._relay_state = relay_state
|
|
136
|
+
|
|
137
|
+
@property
|
|
138
|
+
def session_duration(self):
|
|
139
|
+
"""Gets the session_duration of this UpdatePermissionSetRequest. # noqa: E501
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
:return: The session_duration of this UpdatePermissionSetRequest. # noqa: E501
|
|
143
|
+
:rtype: int
|
|
144
|
+
"""
|
|
145
|
+
return self._session_duration
|
|
146
|
+
|
|
147
|
+
@session_duration.setter
|
|
148
|
+
def session_duration(self, session_duration):
|
|
149
|
+
"""Sets the session_duration of this UpdatePermissionSetRequest.
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
:param session_duration: The session_duration of this UpdatePermissionSetRequest. # noqa: E501
|
|
153
|
+
:type: int
|
|
154
|
+
"""
|
|
155
|
+
|
|
156
|
+
self._session_duration = session_duration
|
|
157
|
+
|
|
158
|
+
def to_dict(self):
|
|
159
|
+
"""Returns the model properties as a dict"""
|
|
160
|
+
result = {}
|
|
161
|
+
|
|
162
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
163
|
+
value = getattr(self, attr)
|
|
164
|
+
if isinstance(value, list):
|
|
165
|
+
result[attr] = list(map(
|
|
166
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
167
|
+
value
|
|
168
|
+
))
|
|
169
|
+
elif hasattr(value, "to_dict"):
|
|
170
|
+
result[attr] = value.to_dict()
|
|
171
|
+
elif isinstance(value, dict):
|
|
172
|
+
result[attr] = dict(map(
|
|
173
|
+
lambda item: (item[0], item[1].to_dict())
|
|
174
|
+
if hasattr(item[1], "to_dict") else item,
|
|
175
|
+
value.items()
|
|
176
|
+
))
|
|
177
|
+
else:
|
|
178
|
+
result[attr] = value
|
|
179
|
+
if issubclass(UpdatePermissionSetRequest, dict):
|
|
180
|
+
for key, value in self.items():
|
|
181
|
+
result[key] = value
|
|
182
|
+
|
|
183
|
+
return result
|
|
184
|
+
|
|
185
|
+
def to_str(self):
|
|
186
|
+
"""Returns the string representation of the model"""
|
|
187
|
+
return pprint.pformat(self.to_dict())
|
|
188
|
+
|
|
189
|
+
def __repr__(self):
|
|
190
|
+
"""For `print` and `pprint`"""
|
|
191
|
+
return self.to_str()
|
|
192
|
+
|
|
193
|
+
def __eq__(self, other):
|
|
194
|
+
"""Returns true if both objects are equal"""
|
|
195
|
+
if not isinstance(other, UpdatePermissionSetRequest):
|
|
196
|
+
return False
|
|
197
|
+
|
|
198
|
+
return self.to_dict() == other.to_dict()
|
|
199
|
+
|
|
200
|
+
def __ne__(self, other):
|
|
201
|
+
"""Returns true if both objects are not equal"""
|
|
202
|
+
if not isinstance(other, UpdatePermissionSetRequest):
|
|
203
|
+
return True
|
|
204
|
+
|
|
205
|
+
return self.to_dict() != other.to_dict()
|
|
@@ -0,0 +1,95 @@
|
|
|
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 UpdatePermissionSetResponse(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
|
+
}
|
|
37
|
+
|
|
38
|
+
attribute_map = {
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
def __init__(self, _configuration=None): # noqa: E501
|
|
42
|
+
"""UpdatePermissionSetResponse - a model defined in Swagger""" # noqa: E501
|
|
43
|
+
if _configuration is None:
|
|
44
|
+
_configuration = Configuration()
|
|
45
|
+
self._configuration = _configuration
|
|
46
|
+
self.discriminator = None
|
|
47
|
+
|
|
48
|
+
def to_dict(self):
|
|
49
|
+
"""Returns the model properties as a dict"""
|
|
50
|
+
result = {}
|
|
51
|
+
|
|
52
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
53
|
+
value = getattr(self, attr)
|
|
54
|
+
if isinstance(value, list):
|
|
55
|
+
result[attr] = list(map(
|
|
56
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
57
|
+
value
|
|
58
|
+
))
|
|
59
|
+
elif hasattr(value, "to_dict"):
|
|
60
|
+
result[attr] = value.to_dict()
|
|
61
|
+
elif isinstance(value, dict):
|
|
62
|
+
result[attr] = dict(map(
|
|
63
|
+
lambda item: (item[0], item[1].to_dict())
|
|
64
|
+
if hasattr(item[1], "to_dict") else item,
|
|
65
|
+
value.items()
|
|
66
|
+
))
|
|
67
|
+
else:
|
|
68
|
+
result[attr] = value
|
|
69
|
+
if issubclass(UpdatePermissionSetResponse, dict):
|
|
70
|
+
for key, value in self.items():
|
|
71
|
+
result[key] = value
|
|
72
|
+
|
|
73
|
+
return result
|
|
74
|
+
|
|
75
|
+
def to_str(self):
|
|
76
|
+
"""Returns the string representation of the model"""
|
|
77
|
+
return pprint.pformat(self.to_dict())
|
|
78
|
+
|
|
79
|
+
def __repr__(self):
|
|
80
|
+
"""For `print` and `pprint`"""
|
|
81
|
+
return self.to_str()
|
|
82
|
+
|
|
83
|
+
def __eq__(self, other):
|
|
84
|
+
"""Returns true if both objects are equal"""
|
|
85
|
+
if not isinstance(other, UpdatePermissionSetResponse):
|
|
86
|
+
return False
|
|
87
|
+
|
|
88
|
+
return self.to_dict() == other.to_dict()
|
|
89
|
+
|
|
90
|
+
def __ne__(self, other):
|
|
91
|
+
"""Returns true if both objects are not equal"""
|
|
92
|
+
if not isinstance(other, UpdatePermissionSetResponse):
|
|
93
|
+
return True
|
|
94
|
+
|
|
95
|
+
return self.to_dict() != other.to_dict()
|
|
@@ -0,0 +1,272 @@
|
|
|
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 UpdateUserRequest(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
|
+
'description': 'str',
|
|
37
|
+
'display_name': 'str',
|
|
38
|
+
'email': 'str',
|
|
39
|
+
'phone': 'str',
|
|
40
|
+
'user_id': 'str',
|
|
41
|
+
'user_name': 'str'
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
attribute_map = {
|
|
45
|
+
'description': 'Description',
|
|
46
|
+
'display_name': 'DisplayName',
|
|
47
|
+
'email': 'Email',
|
|
48
|
+
'phone': 'Phone',
|
|
49
|
+
'user_id': 'UserId',
|
|
50
|
+
'user_name': 'UserName'
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
def __init__(self, description=None, display_name=None, email=None, phone=None, user_id=None, user_name=None, _configuration=None): # noqa: E501
|
|
54
|
+
"""UpdateUserRequest - a model defined in Swagger""" # noqa: E501
|
|
55
|
+
if _configuration is None:
|
|
56
|
+
_configuration = Configuration()
|
|
57
|
+
self._configuration = _configuration
|
|
58
|
+
|
|
59
|
+
self._description = None
|
|
60
|
+
self._display_name = None
|
|
61
|
+
self._email = None
|
|
62
|
+
self._phone = None
|
|
63
|
+
self._user_id = None
|
|
64
|
+
self._user_name = None
|
|
65
|
+
self.discriminator = None
|
|
66
|
+
|
|
67
|
+
if description is not None:
|
|
68
|
+
self.description = description
|
|
69
|
+
if display_name is not None:
|
|
70
|
+
self.display_name = display_name
|
|
71
|
+
if email is not None:
|
|
72
|
+
self.email = email
|
|
73
|
+
if phone is not None:
|
|
74
|
+
self.phone = phone
|
|
75
|
+
self.user_id = user_id
|
|
76
|
+
if user_name is not None:
|
|
77
|
+
self.user_name = user_name
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
def description(self):
|
|
81
|
+
"""Gets the description of this UpdateUserRequest. # noqa: E501
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
:return: The description of this UpdateUserRequest. # noqa: E501
|
|
85
|
+
:rtype: str
|
|
86
|
+
"""
|
|
87
|
+
return self._description
|
|
88
|
+
|
|
89
|
+
@description.setter
|
|
90
|
+
def description(self, description):
|
|
91
|
+
"""Sets the description of this UpdateUserRequest.
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
:param description: The description of this UpdateUserRequest. # noqa: E501
|
|
95
|
+
:type: str
|
|
96
|
+
"""
|
|
97
|
+
if (self._configuration.client_side_validation and
|
|
98
|
+
description is not None and len(description) > 255):
|
|
99
|
+
raise ValueError("Invalid value for `description`, length must be less than or equal to `255`") # noqa: E501
|
|
100
|
+
|
|
101
|
+
self._description = description
|
|
102
|
+
|
|
103
|
+
@property
|
|
104
|
+
def display_name(self):
|
|
105
|
+
"""Gets the display_name of this UpdateUserRequest. # noqa: E501
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
:return: The display_name of this UpdateUserRequest. # noqa: E501
|
|
109
|
+
:rtype: str
|
|
110
|
+
"""
|
|
111
|
+
return self._display_name
|
|
112
|
+
|
|
113
|
+
@display_name.setter
|
|
114
|
+
def display_name(self, display_name):
|
|
115
|
+
"""Sets the display_name of this UpdateUserRequest.
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
:param display_name: The display_name of this UpdateUserRequest. # noqa: E501
|
|
119
|
+
:type: str
|
|
120
|
+
"""
|
|
121
|
+
if (self._configuration.client_side_validation and
|
|
122
|
+
display_name is not None and len(display_name) > 64):
|
|
123
|
+
raise ValueError("Invalid value for `display_name`, length must be less than or equal to `64`") # noqa: E501
|
|
124
|
+
|
|
125
|
+
self._display_name = display_name
|
|
126
|
+
|
|
127
|
+
@property
|
|
128
|
+
def email(self):
|
|
129
|
+
"""Gets the email of this UpdateUserRequest. # noqa: E501
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
:return: The email of this UpdateUserRequest. # noqa: E501
|
|
133
|
+
:rtype: str
|
|
134
|
+
"""
|
|
135
|
+
return self._email
|
|
136
|
+
|
|
137
|
+
@email.setter
|
|
138
|
+
def email(self, email):
|
|
139
|
+
"""Sets the email of this UpdateUserRequest.
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
:param email: The email of this UpdateUserRequest. # noqa: E501
|
|
143
|
+
:type: str
|
|
144
|
+
"""
|
|
145
|
+
if (self._configuration.client_side_validation and
|
|
146
|
+
email is not None and len(email) > 128):
|
|
147
|
+
raise ValueError("Invalid value for `email`, length must be less than or equal to `128`") # noqa: E501
|
|
148
|
+
|
|
149
|
+
self._email = email
|
|
150
|
+
|
|
151
|
+
@property
|
|
152
|
+
def phone(self):
|
|
153
|
+
"""Gets the phone of this UpdateUserRequest. # noqa: E501
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
:return: The phone of this UpdateUserRequest. # noqa: E501
|
|
157
|
+
:rtype: str
|
|
158
|
+
"""
|
|
159
|
+
return self._phone
|
|
160
|
+
|
|
161
|
+
@phone.setter
|
|
162
|
+
def phone(self, phone):
|
|
163
|
+
"""Sets the phone of this UpdateUserRequest.
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
:param phone: The phone of this UpdateUserRequest. # noqa: E501
|
|
167
|
+
:type: str
|
|
168
|
+
"""
|
|
169
|
+
if (self._configuration.client_side_validation and
|
|
170
|
+
phone is not None and len(phone) > 20):
|
|
171
|
+
raise ValueError("Invalid value for `phone`, length must be less than or equal to `20`") # noqa: E501
|
|
172
|
+
|
|
173
|
+
self._phone = phone
|
|
174
|
+
|
|
175
|
+
@property
|
|
176
|
+
def user_id(self):
|
|
177
|
+
"""Gets the user_id of this UpdateUserRequest. # noqa: E501
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
:return: The user_id of this UpdateUserRequest. # noqa: E501
|
|
181
|
+
:rtype: str
|
|
182
|
+
"""
|
|
183
|
+
return self._user_id
|
|
184
|
+
|
|
185
|
+
@user_id.setter
|
|
186
|
+
def user_id(self, user_id):
|
|
187
|
+
"""Sets the user_id of this UpdateUserRequest.
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
:param user_id: The user_id of this UpdateUserRequest. # noqa: E501
|
|
191
|
+
:type: str
|
|
192
|
+
"""
|
|
193
|
+
if self._configuration.client_side_validation and user_id is None:
|
|
194
|
+
raise ValueError("Invalid value for `user_id`, must not be `None`") # noqa: E501
|
|
195
|
+
|
|
196
|
+
self._user_id = user_id
|
|
197
|
+
|
|
198
|
+
@property
|
|
199
|
+
def user_name(self):
|
|
200
|
+
"""Gets the user_name of this UpdateUserRequest. # noqa: E501
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
:return: The user_name of this UpdateUserRequest. # noqa: E501
|
|
204
|
+
:rtype: str
|
|
205
|
+
"""
|
|
206
|
+
return self._user_name
|
|
207
|
+
|
|
208
|
+
@user_name.setter
|
|
209
|
+
def user_name(self, user_name):
|
|
210
|
+
"""Sets the user_name of this UpdateUserRequest.
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
:param user_name: The user_name of this UpdateUserRequest. # noqa: E501
|
|
214
|
+
:type: str
|
|
215
|
+
"""
|
|
216
|
+
if (self._configuration.client_side_validation and
|
|
217
|
+
user_name is not None and len(user_name) > 54):
|
|
218
|
+
raise ValueError("Invalid value for `user_name`, length must be less than or equal to `54`") # noqa: E501
|
|
219
|
+
if (self._configuration.client_side_validation and
|
|
220
|
+
user_name is not None and len(user_name) < 1):
|
|
221
|
+
raise ValueError("Invalid value for `user_name`, length must be greater than or equal to `1`") # noqa: E501
|
|
222
|
+
|
|
223
|
+
self._user_name = user_name
|
|
224
|
+
|
|
225
|
+
def to_dict(self):
|
|
226
|
+
"""Returns the model properties as a dict"""
|
|
227
|
+
result = {}
|
|
228
|
+
|
|
229
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
230
|
+
value = getattr(self, attr)
|
|
231
|
+
if isinstance(value, list):
|
|
232
|
+
result[attr] = list(map(
|
|
233
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
234
|
+
value
|
|
235
|
+
))
|
|
236
|
+
elif hasattr(value, "to_dict"):
|
|
237
|
+
result[attr] = value.to_dict()
|
|
238
|
+
elif isinstance(value, dict):
|
|
239
|
+
result[attr] = dict(map(
|
|
240
|
+
lambda item: (item[0], item[1].to_dict())
|
|
241
|
+
if hasattr(item[1], "to_dict") else item,
|
|
242
|
+
value.items()
|
|
243
|
+
))
|
|
244
|
+
else:
|
|
245
|
+
result[attr] = value
|
|
246
|
+
if issubclass(UpdateUserRequest, dict):
|
|
247
|
+
for key, value in self.items():
|
|
248
|
+
result[key] = value
|
|
249
|
+
|
|
250
|
+
return result
|
|
251
|
+
|
|
252
|
+
def to_str(self):
|
|
253
|
+
"""Returns the string representation of the model"""
|
|
254
|
+
return pprint.pformat(self.to_dict())
|
|
255
|
+
|
|
256
|
+
def __repr__(self):
|
|
257
|
+
"""For `print` and `pprint`"""
|
|
258
|
+
return self.to_str()
|
|
259
|
+
|
|
260
|
+
def __eq__(self, other):
|
|
261
|
+
"""Returns true if both objects are equal"""
|
|
262
|
+
if not isinstance(other, UpdateUserRequest):
|
|
263
|
+
return False
|
|
264
|
+
|
|
265
|
+
return self.to_dict() == other.to_dict()
|
|
266
|
+
|
|
267
|
+
def __ne__(self, other):
|
|
268
|
+
"""Returns true if both objects are not equal"""
|
|
269
|
+
if not isinstance(other, UpdateUserRequest):
|
|
270
|
+
return True
|
|
271
|
+
|
|
272
|
+
return self.to_dict() != other.to_dict()
|