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,227 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
graph
|
|
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 PsmQuotaConfigForGetTableOutput(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
|
+
'caller_psm': 'str',
|
|
37
|
+
'read_fetch_size': 'int',
|
|
38
|
+
'read_quota_size': 'int',
|
|
39
|
+
'write_fetch_size': 'int',
|
|
40
|
+
'write_quota_size': 'int'
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
attribute_map = {
|
|
44
|
+
'caller_psm': 'caller_psm',
|
|
45
|
+
'read_fetch_size': 'read_fetch_size',
|
|
46
|
+
'read_quota_size': 'read_quota_size',
|
|
47
|
+
'write_fetch_size': 'write_fetch_size',
|
|
48
|
+
'write_quota_size': 'write_quota_size'
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
def __init__(self, caller_psm=None, read_fetch_size=None, read_quota_size=None, write_fetch_size=None, write_quota_size=None, _configuration=None): # noqa: E501
|
|
52
|
+
"""PsmQuotaConfigForGetTableOutput - a model defined in Swagger""" # noqa: E501
|
|
53
|
+
if _configuration is None:
|
|
54
|
+
_configuration = Configuration()
|
|
55
|
+
self._configuration = _configuration
|
|
56
|
+
|
|
57
|
+
self._caller_psm = None
|
|
58
|
+
self._read_fetch_size = None
|
|
59
|
+
self._read_quota_size = None
|
|
60
|
+
self._write_fetch_size = None
|
|
61
|
+
self._write_quota_size = None
|
|
62
|
+
self.discriminator = None
|
|
63
|
+
|
|
64
|
+
if caller_psm is not None:
|
|
65
|
+
self.caller_psm = caller_psm
|
|
66
|
+
if read_fetch_size is not None:
|
|
67
|
+
self.read_fetch_size = read_fetch_size
|
|
68
|
+
if read_quota_size is not None:
|
|
69
|
+
self.read_quota_size = read_quota_size
|
|
70
|
+
if write_fetch_size is not None:
|
|
71
|
+
self.write_fetch_size = write_fetch_size
|
|
72
|
+
if write_quota_size is not None:
|
|
73
|
+
self.write_quota_size = write_quota_size
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
def caller_psm(self):
|
|
77
|
+
"""Gets the caller_psm of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
:return: The caller_psm of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
81
|
+
:rtype: str
|
|
82
|
+
"""
|
|
83
|
+
return self._caller_psm
|
|
84
|
+
|
|
85
|
+
@caller_psm.setter
|
|
86
|
+
def caller_psm(self, caller_psm):
|
|
87
|
+
"""Sets the caller_psm of this PsmQuotaConfigForGetTableOutput.
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
:param caller_psm: The caller_psm of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
91
|
+
:type: str
|
|
92
|
+
"""
|
|
93
|
+
|
|
94
|
+
self._caller_psm = caller_psm
|
|
95
|
+
|
|
96
|
+
@property
|
|
97
|
+
def read_fetch_size(self):
|
|
98
|
+
"""Gets the read_fetch_size of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
:return: The read_fetch_size of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
102
|
+
:rtype: int
|
|
103
|
+
"""
|
|
104
|
+
return self._read_fetch_size
|
|
105
|
+
|
|
106
|
+
@read_fetch_size.setter
|
|
107
|
+
def read_fetch_size(self, read_fetch_size):
|
|
108
|
+
"""Sets the read_fetch_size of this PsmQuotaConfigForGetTableOutput.
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
:param read_fetch_size: The read_fetch_size of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
112
|
+
:type: int
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
self._read_fetch_size = read_fetch_size
|
|
116
|
+
|
|
117
|
+
@property
|
|
118
|
+
def read_quota_size(self):
|
|
119
|
+
"""Gets the read_quota_size of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
:return: The read_quota_size of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
123
|
+
:rtype: int
|
|
124
|
+
"""
|
|
125
|
+
return self._read_quota_size
|
|
126
|
+
|
|
127
|
+
@read_quota_size.setter
|
|
128
|
+
def read_quota_size(self, read_quota_size):
|
|
129
|
+
"""Sets the read_quota_size of this PsmQuotaConfigForGetTableOutput.
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
:param read_quota_size: The read_quota_size of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
133
|
+
:type: int
|
|
134
|
+
"""
|
|
135
|
+
|
|
136
|
+
self._read_quota_size = read_quota_size
|
|
137
|
+
|
|
138
|
+
@property
|
|
139
|
+
def write_fetch_size(self):
|
|
140
|
+
"""Gets the write_fetch_size of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
:return: The write_fetch_size of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
144
|
+
:rtype: int
|
|
145
|
+
"""
|
|
146
|
+
return self._write_fetch_size
|
|
147
|
+
|
|
148
|
+
@write_fetch_size.setter
|
|
149
|
+
def write_fetch_size(self, write_fetch_size):
|
|
150
|
+
"""Sets the write_fetch_size of this PsmQuotaConfigForGetTableOutput.
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
:param write_fetch_size: The write_fetch_size of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
154
|
+
:type: int
|
|
155
|
+
"""
|
|
156
|
+
|
|
157
|
+
self._write_fetch_size = write_fetch_size
|
|
158
|
+
|
|
159
|
+
@property
|
|
160
|
+
def write_quota_size(self):
|
|
161
|
+
"""Gets the write_quota_size of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
:return: The write_quota_size of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
165
|
+
:rtype: int
|
|
166
|
+
"""
|
|
167
|
+
return self._write_quota_size
|
|
168
|
+
|
|
169
|
+
@write_quota_size.setter
|
|
170
|
+
def write_quota_size(self, write_quota_size):
|
|
171
|
+
"""Sets the write_quota_size of this PsmQuotaConfigForGetTableOutput.
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
:param write_quota_size: The write_quota_size of this PsmQuotaConfigForGetTableOutput. # noqa: E501
|
|
175
|
+
:type: int
|
|
176
|
+
"""
|
|
177
|
+
|
|
178
|
+
self._write_quota_size = write_quota_size
|
|
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(PsmQuotaConfigForGetTableOutput, 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, PsmQuotaConfigForGetTableOutput):
|
|
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, PsmQuotaConfigForGetTableOutput):
|
|
225
|
+
return True
|
|
226
|
+
|
|
227
|
+
return self.to_dict() != other.to_dict()
|
|
@@ -34,31 +34,41 @@ class PsmQuotaConfigForGetTableQuotaOutput(object):
|
|
|
34
34
|
"""
|
|
35
35
|
swagger_types = {
|
|
36
36
|
'caller_psm': 'str',
|
|
37
|
+
'read_fetch_size': 'int',
|
|
37
38
|
'read_quota_size': 'int',
|
|
39
|
+
'write_fetch_size': 'int',
|
|
38
40
|
'write_quota_size': 'int'
|
|
39
41
|
}
|
|
40
42
|
|
|
41
43
|
attribute_map = {
|
|
42
44
|
'caller_psm': 'caller_psm',
|
|
45
|
+
'read_fetch_size': 'read_fetch_size',
|
|
43
46
|
'read_quota_size': 'read_quota_size',
|
|
47
|
+
'write_fetch_size': 'write_fetch_size',
|
|
44
48
|
'write_quota_size': 'write_quota_size'
|
|
45
49
|
}
|
|
46
50
|
|
|
47
|
-
def __init__(self, caller_psm=None, read_quota_size=None, write_quota_size=None, _configuration=None): # noqa: E501
|
|
51
|
+
def __init__(self, caller_psm=None, read_fetch_size=None, read_quota_size=None, write_fetch_size=None, write_quota_size=None, _configuration=None): # noqa: E501
|
|
48
52
|
"""PsmQuotaConfigForGetTableQuotaOutput - a model defined in Swagger""" # noqa: E501
|
|
49
53
|
if _configuration is None:
|
|
50
54
|
_configuration = Configuration()
|
|
51
55
|
self._configuration = _configuration
|
|
52
56
|
|
|
53
57
|
self._caller_psm = None
|
|
58
|
+
self._read_fetch_size = None
|
|
54
59
|
self._read_quota_size = None
|
|
60
|
+
self._write_fetch_size = None
|
|
55
61
|
self._write_quota_size = None
|
|
56
62
|
self.discriminator = None
|
|
57
63
|
|
|
58
64
|
if caller_psm is not None:
|
|
59
65
|
self.caller_psm = caller_psm
|
|
66
|
+
if read_fetch_size is not None:
|
|
67
|
+
self.read_fetch_size = read_fetch_size
|
|
60
68
|
if read_quota_size is not None:
|
|
61
69
|
self.read_quota_size = read_quota_size
|
|
70
|
+
if write_fetch_size is not None:
|
|
71
|
+
self.write_fetch_size = write_fetch_size
|
|
62
72
|
if write_quota_size is not None:
|
|
63
73
|
self.write_quota_size = write_quota_size
|
|
64
74
|
|
|
@@ -83,6 +93,27 @@ class PsmQuotaConfigForGetTableQuotaOutput(object):
|
|
|
83
93
|
|
|
84
94
|
self._caller_psm = caller_psm
|
|
85
95
|
|
|
96
|
+
@property
|
|
97
|
+
def read_fetch_size(self):
|
|
98
|
+
"""Gets the read_fetch_size of this PsmQuotaConfigForGetTableQuotaOutput. # noqa: E501
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
:return: The read_fetch_size of this PsmQuotaConfigForGetTableQuotaOutput. # noqa: E501
|
|
102
|
+
:rtype: int
|
|
103
|
+
"""
|
|
104
|
+
return self._read_fetch_size
|
|
105
|
+
|
|
106
|
+
@read_fetch_size.setter
|
|
107
|
+
def read_fetch_size(self, read_fetch_size):
|
|
108
|
+
"""Sets the read_fetch_size of this PsmQuotaConfigForGetTableQuotaOutput.
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
:param read_fetch_size: The read_fetch_size of this PsmQuotaConfigForGetTableQuotaOutput. # noqa: E501
|
|
112
|
+
:type: int
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
self._read_fetch_size = read_fetch_size
|
|
116
|
+
|
|
86
117
|
@property
|
|
87
118
|
def read_quota_size(self):
|
|
88
119
|
"""Gets the read_quota_size of this PsmQuotaConfigForGetTableQuotaOutput. # noqa: E501
|
|
@@ -104,6 +135,27 @@ class PsmQuotaConfigForGetTableQuotaOutput(object):
|
|
|
104
135
|
|
|
105
136
|
self._read_quota_size = read_quota_size
|
|
106
137
|
|
|
138
|
+
@property
|
|
139
|
+
def write_fetch_size(self):
|
|
140
|
+
"""Gets the write_fetch_size of this PsmQuotaConfigForGetTableQuotaOutput. # noqa: E501
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
:return: The write_fetch_size of this PsmQuotaConfigForGetTableQuotaOutput. # noqa: E501
|
|
144
|
+
:rtype: int
|
|
145
|
+
"""
|
|
146
|
+
return self._write_fetch_size
|
|
147
|
+
|
|
148
|
+
@write_fetch_size.setter
|
|
149
|
+
def write_fetch_size(self, write_fetch_size):
|
|
150
|
+
"""Sets the write_fetch_size of this PsmQuotaConfigForGetTableQuotaOutput.
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
:param write_fetch_size: The write_fetch_size of this PsmQuotaConfigForGetTableQuotaOutput. # noqa: E501
|
|
154
|
+
:type: int
|
|
155
|
+
"""
|
|
156
|
+
|
|
157
|
+
self._write_fetch_size = write_fetch_size
|
|
158
|
+
|
|
107
159
|
@property
|
|
108
160
|
def write_quota_size(self):
|
|
109
161
|
"""Gets the write_quota_size of this PsmQuotaConfigForGetTableQuotaOutput. # noqa: E501
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
graph
|
|
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 TableQuotaForGetTableOutput(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
|
+
'gremlin_quota_configs': 'list[GremlinQuotaConfigForGetTableOutput]',
|
|
37
|
+
'psm_quota_configs': 'list[PsmQuotaConfigForGetTableOutput]'
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
attribute_map = {
|
|
41
|
+
'gremlin_quota_configs': 'gremlin_quota_configs',
|
|
42
|
+
'psm_quota_configs': 'psm_quota_configs'
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
def __init__(self, gremlin_quota_configs=None, psm_quota_configs=None, _configuration=None): # noqa: E501
|
|
46
|
+
"""TableQuotaForGetTableOutput - a model defined in Swagger""" # noqa: E501
|
|
47
|
+
if _configuration is None:
|
|
48
|
+
_configuration = Configuration()
|
|
49
|
+
self._configuration = _configuration
|
|
50
|
+
|
|
51
|
+
self._gremlin_quota_configs = None
|
|
52
|
+
self._psm_quota_configs = None
|
|
53
|
+
self.discriminator = None
|
|
54
|
+
|
|
55
|
+
if gremlin_quota_configs is not None:
|
|
56
|
+
self.gremlin_quota_configs = gremlin_quota_configs
|
|
57
|
+
if psm_quota_configs is not None:
|
|
58
|
+
self.psm_quota_configs = psm_quota_configs
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
def gremlin_quota_configs(self):
|
|
62
|
+
"""Gets the gremlin_quota_configs of this TableQuotaForGetTableOutput. # noqa: E501
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
:return: The gremlin_quota_configs of this TableQuotaForGetTableOutput. # noqa: E501
|
|
66
|
+
:rtype: list[GremlinQuotaConfigForGetTableOutput]
|
|
67
|
+
"""
|
|
68
|
+
return self._gremlin_quota_configs
|
|
69
|
+
|
|
70
|
+
@gremlin_quota_configs.setter
|
|
71
|
+
def gremlin_quota_configs(self, gremlin_quota_configs):
|
|
72
|
+
"""Sets the gremlin_quota_configs of this TableQuotaForGetTableOutput.
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
:param gremlin_quota_configs: The gremlin_quota_configs of this TableQuotaForGetTableOutput. # noqa: E501
|
|
76
|
+
:type: list[GremlinQuotaConfigForGetTableOutput]
|
|
77
|
+
"""
|
|
78
|
+
|
|
79
|
+
self._gremlin_quota_configs = gremlin_quota_configs
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
def psm_quota_configs(self):
|
|
83
|
+
"""Gets the psm_quota_configs of this TableQuotaForGetTableOutput. # noqa: E501
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
:return: The psm_quota_configs of this TableQuotaForGetTableOutput. # noqa: E501
|
|
87
|
+
:rtype: list[PsmQuotaConfigForGetTableOutput]
|
|
88
|
+
"""
|
|
89
|
+
return self._psm_quota_configs
|
|
90
|
+
|
|
91
|
+
@psm_quota_configs.setter
|
|
92
|
+
def psm_quota_configs(self, psm_quota_configs):
|
|
93
|
+
"""Sets the psm_quota_configs of this TableQuotaForGetTableOutput.
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
:param psm_quota_configs: The psm_quota_configs of this TableQuotaForGetTableOutput. # noqa: E501
|
|
97
|
+
:type: list[PsmQuotaConfigForGetTableOutput]
|
|
98
|
+
"""
|
|
99
|
+
|
|
100
|
+
self._psm_quota_configs = psm_quota_configs
|
|
101
|
+
|
|
102
|
+
def to_dict(self):
|
|
103
|
+
"""Returns the model properties as a dict"""
|
|
104
|
+
result = {}
|
|
105
|
+
|
|
106
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
107
|
+
value = getattr(self, attr)
|
|
108
|
+
if isinstance(value, list):
|
|
109
|
+
result[attr] = list(map(
|
|
110
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
111
|
+
value
|
|
112
|
+
))
|
|
113
|
+
elif hasattr(value, "to_dict"):
|
|
114
|
+
result[attr] = value.to_dict()
|
|
115
|
+
elif isinstance(value, dict):
|
|
116
|
+
result[attr] = dict(map(
|
|
117
|
+
lambda item: (item[0], item[1].to_dict())
|
|
118
|
+
if hasattr(item[1], "to_dict") else item,
|
|
119
|
+
value.items()
|
|
120
|
+
))
|
|
121
|
+
else:
|
|
122
|
+
result[attr] = value
|
|
123
|
+
if issubclass(TableQuotaForGetTableOutput, dict):
|
|
124
|
+
for key, value in self.items():
|
|
125
|
+
result[key] = value
|
|
126
|
+
|
|
127
|
+
return result
|
|
128
|
+
|
|
129
|
+
def to_str(self):
|
|
130
|
+
"""Returns the string representation of the model"""
|
|
131
|
+
return pprint.pformat(self.to_dict())
|
|
132
|
+
|
|
133
|
+
def __repr__(self):
|
|
134
|
+
"""For `print` and `pprint`"""
|
|
135
|
+
return self.to_str()
|
|
136
|
+
|
|
137
|
+
def __eq__(self, other):
|
|
138
|
+
"""Returns true if both objects are equal"""
|
|
139
|
+
if not isinstance(other, TableQuotaForGetTableOutput):
|
|
140
|
+
return False
|
|
141
|
+
|
|
142
|
+
return self.to_dict() == other.to_dict()
|
|
143
|
+
|
|
144
|
+
def __ne__(self, other):
|
|
145
|
+
"""Returns true if both objects are not equal"""
|
|
146
|
+
if not isinstance(other, TableQuotaForGetTableOutput):
|
|
147
|
+
return True
|
|
148
|
+
|
|
149
|
+
return self.to_dict() != other.to_dict()
|
|
@@ -33,13 +33,13 @@ class LineDetailForGetStreamsAPIOutput(object):
|
|
|
33
33
|
and the value is json key in definition.
|
|
34
34
|
"""
|
|
35
35
|
swagger_types = {
|
|
36
|
-
'back_push_info': '
|
|
37
|
-
'backup_forward_info': '
|
|
36
|
+
'back_push_info': 'BackPushInfoForGetStreamsAPIOutput',
|
|
37
|
+
'backup_forward_info': 'BackupForwardInfoForGetStreamsAPIOutput',
|
|
38
38
|
'expire_time': 'int',
|
|
39
|
-
'forward_info': '
|
|
39
|
+
'forward_info': 'ForwardInfoForGetStreamsAPIOutput',
|
|
40
40
|
'line_id': 'int',
|
|
41
41
|
'line_name': 'str',
|
|
42
|
-
'main_push_info': '
|
|
42
|
+
'main_push_info': 'MainPushInfoForGetStreamsAPIOutput',
|
|
43
43
|
'ratio': 'str'
|
|
44
44
|
}
|
|
45
45
|
|
|
@@ -93,7 +93,7 @@ class LineDetailForGetStreamsAPIOutput(object):
|
|
|
93
93
|
|
|
94
94
|
|
|
95
95
|
:return: The back_push_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
|
|
96
|
-
:rtype:
|
|
96
|
+
:rtype: BackPushInfoForGetStreamsAPIOutput
|
|
97
97
|
"""
|
|
98
98
|
return self._back_push_info
|
|
99
99
|
|
|
@@ -103,7 +103,7 @@ class LineDetailForGetStreamsAPIOutput(object):
|
|
|
103
103
|
|
|
104
104
|
|
|
105
105
|
:param back_push_info: The back_push_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
|
|
106
|
-
:type:
|
|
106
|
+
:type: BackPushInfoForGetStreamsAPIOutput
|
|
107
107
|
"""
|
|
108
108
|
|
|
109
109
|
self._back_push_info = back_push_info
|
|
@@ -114,7 +114,7 @@ class LineDetailForGetStreamsAPIOutput(object):
|
|
|
114
114
|
|
|
115
115
|
|
|
116
116
|
:return: The backup_forward_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
|
|
117
|
-
:rtype:
|
|
117
|
+
:rtype: BackupForwardInfoForGetStreamsAPIOutput
|
|
118
118
|
"""
|
|
119
119
|
return self._backup_forward_info
|
|
120
120
|
|
|
@@ -124,7 +124,7 @@ class LineDetailForGetStreamsAPIOutput(object):
|
|
|
124
124
|
|
|
125
125
|
|
|
126
126
|
:param backup_forward_info: The backup_forward_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
|
|
127
|
-
:type:
|
|
127
|
+
:type: BackupForwardInfoForGetStreamsAPIOutput
|
|
128
128
|
"""
|
|
129
129
|
|
|
130
130
|
self._backup_forward_info = backup_forward_info
|
|
@@ -156,7 +156,7 @@ class LineDetailForGetStreamsAPIOutput(object):
|
|
|
156
156
|
|
|
157
157
|
|
|
158
158
|
:return: The forward_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
|
|
159
|
-
:rtype:
|
|
159
|
+
:rtype: ForwardInfoForGetStreamsAPIOutput
|
|
160
160
|
"""
|
|
161
161
|
return self._forward_info
|
|
162
162
|
|
|
@@ -166,7 +166,7 @@ class LineDetailForGetStreamsAPIOutput(object):
|
|
|
166
166
|
|
|
167
167
|
|
|
168
168
|
:param forward_info: The forward_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
|
|
169
|
-
:type:
|
|
169
|
+
:type: ForwardInfoForGetStreamsAPIOutput
|
|
170
170
|
"""
|
|
171
171
|
|
|
172
172
|
self._forward_info = forward_info
|
|
@@ -219,7 +219,7 @@ class LineDetailForGetStreamsAPIOutput(object):
|
|
|
219
219
|
|
|
220
220
|
|
|
221
221
|
:return: The main_push_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
|
|
222
|
-
:rtype:
|
|
222
|
+
:rtype: MainPushInfoForGetStreamsAPIOutput
|
|
223
223
|
"""
|
|
224
224
|
return self._main_push_info
|
|
225
225
|
|
|
@@ -229,7 +229,7 @@ class LineDetailForGetStreamsAPIOutput(object):
|
|
|
229
229
|
|
|
230
230
|
|
|
231
231
|
:param main_push_info: The main_push_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
|
|
232
|
-
:type:
|
|
232
|
+
:type: MainPushInfoForGetStreamsAPIOutput
|
|
233
233
|
"""
|
|
234
234
|
|
|
235
235
|
self._main_push_info = main_push_info
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
llmshield
|
|
7
|
+
|
|
8
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
9
|
+
|
|
10
|
+
OpenAPI spec version: common-version
|
|
11
|
+
|
|
12
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
from __future__ import absolute_import
|
|
16
|
+
|
|
17
|
+
# 导入API模块
|
|
18
|
+
from volcenginesdkllmshield.api.llm_shield_sdk_v2 import ClientV2
|
|
19
|
+
from volcenginesdkllmshield.api.llm_shield_sdk_v2 import (
|
|
20
|
+
ContentTypeV2,
|
|
21
|
+
DecisionTypeV2,
|
|
22
|
+
UserAction,
|
|
23
|
+
MatchSource,
|
|
24
|
+
MessageV2,
|
|
25
|
+
ModerateV2Request,
|
|
26
|
+
RiskMatchV2,
|
|
27
|
+
PermitMatchV2,
|
|
28
|
+
RiskV2,
|
|
29
|
+
RiskInfoV2,
|
|
30
|
+
PermitV2,
|
|
31
|
+
PermitInfoV2,
|
|
32
|
+
BlockDetailV2,
|
|
33
|
+
ReplaceDetailV2,
|
|
34
|
+
DecisionDetailV2,
|
|
35
|
+
DecisionV2,
|
|
36
|
+
ModerateV2Result,
|
|
37
|
+
ErrorInfo,
|
|
38
|
+
ResponseMetadata,
|
|
39
|
+
ModerateV2Response,
|
|
40
|
+
ModerateV2StreamSession,
|
|
41
|
+
GenerateStreamV2Request,
|
|
42
|
+
GenerateStreamV2Response,
|
|
43
|
+
GenerateSummarizeV2,
|
|
44
|
+
GenerateStreamResult,
|
|
45
|
+
GenerateStreamV2ResponseData,
|
|
46
|
+
CustomJSONEncoder
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
__all__ = [
|
|
51
|
+
# API客户端
|
|
52
|
+
'ClientV2',
|
|
53
|
+
# 常量类
|
|
54
|
+
'ContentTypeV2',
|
|
55
|
+
'DecisionTypeV2',
|
|
56
|
+
'UserAction',
|
|
57
|
+
'MatchSource',
|
|
58
|
+
# 数据模型
|
|
59
|
+
'MessageV2',
|
|
60
|
+
'ModerateV2Request',
|
|
61
|
+
'RiskMatchV2',
|
|
62
|
+
'PermitMatchV2',
|
|
63
|
+
'RiskV2',
|
|
64
|
+
'RiskInfoV2',
|
|
65
|
+
'PermitV2',
|
|
66
|
+
'PermitInfoV2',
|
|
67
|
+
'BlockDetailV2',
|
|
68
|
+
'ReplaceDetailV2',
|
|
69
|
+
'DecisionDetailV2',
|
|
70
|
+
'DecisionV2',
|
|
71
|
+
'ModerateV2Result',
|
|
72
|
+
'ErrorInfo',
|
|
73
|
+
'ResponseMetadata',
|
|
74
|
+
'ModerateV2Response',
|
|
75
|
+
'ModerateV2StreamSession',
|
|
76
|
+
'GenerateStreamV2Request',
|
|
77
|
+
'GenerateStreamV2Response',
|
|
78
|
+
'GenerateSummarizeV2',
|
|
79
|
+
'GenerateStreamResult',
|
|
80
|
+
'GenerateStreamV2ResponseData',
|
|
81
|
+
'CustomJSONEncoder',
|
|
82
|
+
]
|