volcengine-python-sdk 4.0.26__py2.py3-none-any.whl → 4.0.27__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.

Files changed (168) hide show
  1. {volcengine_python_sdk-4.0.26.dist-info → volcengine_python_sdk-4.0.27.dist-info}/METADATA +1 -1
  2. {volcengine_python_sdk-4.0.26.dist-info → volcengine_python_sdk-4.0.27.dist-info}/RECORD +168 -44
  3. volcenginesdkacep/__init__.py +15 -0
  4. volcenginesdkacep/api/acep_api.py +485 -0
  5. volcenginesdkacep/models/__init__.py +15 -0
  6. volcenginesdkacep/models/backup_data_request.py +176 -0
  7. volcenginesdkacep/models/backup_data_response.py +149 -0
  8. volcenginesdkacep/models/delete_backup_data_request.py +150 -0
  9. volcenginesdkacep/models/delete_backup_data_response.py +123 -0
  10. volcenginesdkacep/models/detail_for_backup_data_output.py +201 -0
  11. volcenginesdkacep/models/detail_for_delete_backup_data_output.py +175 -0
  12. volcenginesdkacep/models/detail_for_restore_data_output.py +175 -0
  13. volcenginesdkacep/models/get_dc_bandwidth_daily_peak_request.py +204 -0
  14. volcenginesdkacep/models/get_dc_bandwidth_daily_peak_response.py +123 -0
  15. volcenginesdkacep/models/list_backup_data_request.py +254 -0
  16. volcenginesdkacep/models/list_backup_data_response.py +149 -0
  17. volcenginesdkacep/models/restore_data_request.py +203 -0
  18. volcenginesdkacep/models/restore_data_response.py +149 -0
  19. volcenginesdkacep/models/row_for_get_dc_bandwidth_daily_peak_output.py +253 -0
  20. volcenginesdkacep/models/row_for_list_backup_data_output.py +799 -0
  21. volcenginesdkclb/__init__.py +10 -0
  22. volcenginesdkclb/api/clb_api.py +194 -0
  23. volcenginesdkclb/models/__init__.py +10 -0
  24. volcenginesdkclb/models/access_log_for_describe_network_load_balancer_attributes_output.py +175 -0
  25. volcenginesdkclb/models/add_domain_extension_for_modify_listener_domain_extensions_input.py +175 -0
  26. volcenginesdkclb/models/convert_load_balancer_billing_type_request.py +27 -1
  27. volcenginesdkclb/models/describe_listener_attributes_response.py +27 -1
  28. volcenginesdkclb/models/describe_network_load_balancer_attributes_response.py +27 -1
  29. volcenginesdkclb/models/describe_nlb_server_groups_request.py +53 -1
  30. volcenginesdkclb/models/domain_extension_for_describe_listener_attributes_output.py +201 -0
  31. volcenginesdkclb/models/domain_extension_for_describe_listeners_output.py +201 -0
  32. volcenginesdkclb/models/listener_for_describe_listeners_output.py +27 -1
  33. volcenginesdkclb/models/modify_domain_extension_for_modify_listener_domain_extensions_input.py +175 -0
  34. volcenginesdkclb/models/modify_listener_domain_extensions_request.py +202 -0
  35. volcenginesdkclb/models/modify_listener_domain_extensions_response.py +123 -0
  36. volcenginesdkclb/models/modify_network_load_balancer_access_log_request.py +202 -0
  37. volcenginesdkclb/models/modify_network_load_balancer_access_log_response.py +123 -0
  38. volcenginesdkclb/models/remove_domain_extension_for_modify_listener_domain_extensions_input.py +123 -0
  39. volcenginesdkcore/api_client.py +1 -1
  40. volcenginesdkcore/configuration.py +1 -1
  41. volcenginesdkcore/interceptor/interceptors/build_request_interceptor.py +4 -0
  42. volcenginesdkcore/interceptor/interceptors/sign_request_interceptor.py +1 -1
  43. volcenginesdkdbw/__init__.py +18 -0
  44. volcenginesdkdbw/api/dbw_api.py +388 -0
  45. volcenginesdkdbw/models/__init__.py +18 -0
  46. volcenginesdkdbw/models/column_for_get_table_info_output.py +331 -0
  47. volcenginesdkdbw/models/execute_sql_request.py +231 -0
  48. volcenginesdkdbw/models/execute_sql_response.py +123 -0
  49. volcenginesdkdbw/models/foreign_key_for_get_table_info_output.py +279 -0
  50. volcenginesdkdbw/models/get_table_info_request.py +205 -0
  51. volcenginesdkdbw/models/get_table_info_response.py +123 -0
  52. volcenginesdkdbw/models/index_for_get_table_info_output.py +201 -0
  53. volcenginesdkdbw/models/item_for_list_databases_output.py +279 -0
  54. volcenginesdkdbw/models/list_databases_request.py +203 -0
  55. volcenginesdkdbw/models/list_databases_response.py +149 -0
  56. volcenginesdkdbw/models/list_tables_request.py +230 -0
  57. volcenginesdkdbw/models/list_tables_response.py +149 -0
  58. volcenginesdkdbw/models/partition_options_for_get_table_info_output.py +175 -0
  59. volcenginesdkdbw/models/result_for_execute_sql_output.py +305 -0
  60. volcenginesdkdbw/models/row_for_execute_sql_output.py +123 -0
  61. volcenginesdkdbw/models/running_info_for_execute_sql_output.py +201 -0
  62. volcenginesdkdbw/models/table_meta_for_get_table_info_output.py +383 -0
  63. volcenginesdkdbw/models/table_options_for_get_table_info_output.py +331 -0
  64. volcenginesdkgraph/__init__.py +48 -0
  65. volcenginesdkgraph/api/graph_api.py +951 -78
  66. volcenginesdkgraph/models/__init__.py +48 -0
  67. volcenginesdkgraph/models/availability_zone_for_list_graph_rag_service_output.py +253 -0
  68. volcenginesdkgraph/models/bg3_link_for_list_graph_rag_service_output.py +175 -0
  69. volcenginesdkgraph/models/bytestore_info_for_list_graph_rag_service_output.py +201 -0
  70. volcenginesdkgraph/models/conf_checker_for_get_conf_checker_output.py +409 -0
  71. volcenginesdkgraph/models/conf_checker_for_update_conf_checker_input.py +409 -0
  72. volcenginesdkgraph/models/conf_checker_for_validate_conf_checker_input.py +409 -0
  73. volcenginesdkgraph/models/convert_value_for_list_tablets_output.py +149 -0
  74. volcenginesdkgraph/models/create_instance_request.py +29 -3
  75. volcenginesdkgraph/models/first_for_list_tablet_task_output.py +175 -0
  76. volcenginesdkgraph/models/get_conf_checker_request.py +253 -0
  77. volcenginesdkgraph/models/get_conf_checker_response.py +123 -0
  78. volcenginesdkgraph/models/graphrag_add_knowledge_base_request.py +178 -0
  79. volcenginesdkgraph/models/graphrag_add_knowledge_base_response.py +95 -0
  80. volcenginesdkgraph/models/image_info_for_list_graph_rag_service_output.py +227 -0
  81. volcenginesdkgraph/models/info_for_list_graph_rag_service_output.py +175 -0
  82. volcenginesdkgraph/models/info_for_list_tablet_task_output.py +201 -0
  83. volcenginesdkgraph/models/ins_spec_for_list_graph_rag_service_output.py +175 -0
  84. volcenginesdkgraph/models/list_graph_rag_service_request.py +178 -0
  85. volcenginesdkgraph/models/list_graph_rag_service_response.py +149 -0
  86. volcenginesdkgraph/models/list_tablet_server_request.py +150 -0
  87. volcenginesdkgraph/models/list_tablet_server_response.py +149 -0
  88. volcenginesdkgraph/models/list_tablet_task_request.py +177 -0
  89. volcenginesdkgraph/models/list_tablet_task_response.py +123 -0
  90. volcenginesdkgraph/models/list_tablets_request.py +254 -0
  91. volcenginesdkgraph/models/list_tablets_response.py +123 -0
  92. volcenginesdkgraph/models/migrate_tablet_replica_request.py +257 -0
  93. volcenginesdkgraph/models/migrate_tablet_replica_response.py +123 -0
  94. volcenginesdkgraph/models/pending_schedule_replica_for_list_tablets_output.py +149 -0
  95. volcenginesdkgraph/models/replica_info_for_list_tablets_output.py +149 -0
  96. volcenginesdkgraph/models/replicas_to_close_for_list_tablet_task_output.py +227 -0
  97. volcenginesdkgraph/models/replicas_to_delete_for_list_tablet_task_output.py +227 -0
  98. volcenginesdkgraph/models/replicas_to_failover_by_promote_for_list_tablet_task_output.py +149 -0
  99. volcenginesdkgraph/models/replicas_to_failover_by_reopen_for_list_tablet_task_output.py +149 -0
  100. volcenginesdkgraph/models/replicas_to_open_or_add_for_list_tablet_task_output.py +227 -0
  101. volcenginesdkgraph/models/second_for_list_tablet_task_output.py +175 -0
  102. volcenginesdkgraph/models/storage_info_for_list_graph_rag_service_output.py +149 -0
  103. volcenginesdkgraph/models/tablet_info_for_list_tablets_output.py +149 -0
  104. volcenginesdkgraph/models/tablet_server_info_for_list_tablet_server_output.py +227 -0
  105. volcenginesdkgraph/models/tablet_task_info_for_list_tablet_task_output.py +435 -0
  106. volcenginesdkgraph/models/tablet_to_merge_for_list_tablet_task_output.py +149 -0
  107. volcenginesdkgraph/models/tablet_to_split_for_list_tablet_task_output.py +175 -0
  108. volcenginesdkgraph/models/tablets_to_delete_for_list_tablet_task_output.py +175 -0
  109. volcenginesdkgraph/models/tag_for_list_graph_rag_service_output.py +149 -0
  110. volcenginesdkgraph/models/update_conf_checker_request.py +123 -0
  111. volcenginesdkgraph/models/update_conf_checker_response.py +123 -0
  112. volcenginesdkgraph/models/validate_conf_checker_request.py +123 -0
  113. volcenginesdkgraph/models/validate_conf_checker_response.py +149 -0
  114. volcenginesdkgraph/models/value_for_list_tablets_output.py +201 -0
  115. volcenginesdkgraph/models/ve_graph_info_for_list_graph_rag_service_output.py +851 -0
  116. volcenginesdklivesaas/__init__.py +3 -0
  117. volcenginesdklivesaas/models/__init__.py +3 -0
  118. volcenginesdklivesaas/models/auto_start_config_for_create_activity_apiv2_input.py +175 -0
  119. volcenginesdklivesaas/models/auto_start_config_for_get_activity_basic_config_api_output.py +175 -0
  120. volcenginesdklivesaas/models/auto_start_config_for_update_activity_basic_config_api_input.py +175 -0
  121. volcenginesdklivesaas/models/create_activity_apiv2_request.py +27 -1
  122. volcenginesdklivesaas/models/get_activity_basic_config_api_response.py +79 -1
  123. volcenginesdklivesaas/models/update_activity_basic_config_api_request.py +53 -1
  124. volcenginesdkvefaas/__init__.py +4 -0
  125. volcenginesdkvefaas/api/vefaas_api.py +194 -0
  126. volcenginesdkvefaas/models/__init__.py +4 -0
  127. volcenginesdkvefaas/models/enable_user_cr_vpc_tunnel_request.py +124 -0
  128. volcenginesdkvefaas/models/enable_user_cr_vpc_tunnel_response.py +149 -0
  129. volcenginesdkvefaas/models/query_user_cr_vpc_tunnel_request.py +124 -0
  130. volcenginesdkvefaas/models/query_user_cr_vpc_tunnel_response.py +123 -0
  131. volcenginesdkvke/models/scheduled_instance_policy_for_create_scaling_policy_input.py +27 -1
  132. volcenginesdkvke/models/scheduled_instance_policy_for_list_scaling_policies_output.py +27 -1
  133. volcenginesdkvke/models/scheduled_instance_policy_for_update_scaling_policy_input.py +27 -1
  134. volcenginesdkvod20250101/__init__.py +26 -0
  135. volcenginesdkvod20250101/api/vod20250101_api.py +888 -112
  136. volcenginesdkvod20250101/models/__init__.py +26 -0
  137. volcenginesdkvod20250101/models/create_ai_termbase_request.py +256 -0
  138. volcenginesdkvod20250101/models/create_ai_termbase_response.py +123 -0
  139. volcenginesdkvod20250101/models/delete_ai_term_item_request.py +177 -0
  140. volcenginesdkvod20250101/models/delete_ai_term_item_response.py +95 -0
  141. volcenginesdkvod20250101/models/delete_ai_termbase_request.py +151 -0
  142. volcenginesdkvod20250101/models/delete_ai_termbase_response.py +95 -0
  143. volcenginesdkvod20250101/models/get_ai_termbase_request.py +151 -0
  144. volcenginesdkvod20250101/models/get_ai_termbase_response.py +123 -0
  145. volcenginesdkvod20250101/models/list_ai_termbase_request.py +124 -0
  146. volcenginesdkvod20250101/models/list_ai_termbase_response.py +123 -0
  147. volcenginesdkvod20250101/models/process_config_for_submit_ai_translation_workflow_input.py +53 -1
  148. volcenginesdkvod20250101/models/process_config_for_update_ai_translation_project_config_input.py +149 -0
  149. volcenginesdkvod20250101/models/scenario_for_create_ai_termbase_input.py +95 -0
  150. volcenginesdkvod20250101/models/set_ai_term_item_request.py +177 -0
  151. volcenginesdkvod20250101/models/set_ai_term_item_response.py +95 -0
  152. volcenginesdkvod20250101/models/term_item_for_create_ai_termbase_output.py +149 -0
  153. volcenginesdkvod20250101/models/term_item_for_get_ai_termbase_output.py +149 -0
  154. volcenginesdkvod20250101/models/term_item_for_list_ai_termbase_output.py +149 -0
  155. volcenginesdkvod20250101/models/term_item_for_set_ai_term_item_input.py +149 -0
  156. volcenginesdkvod20250101/models/termbase_config_for_submit_ai_translation_workflow_input.py +123 -0
  157. volcenginesdkvod20250101/models/termbase_for_create_ai_termbase_output.py +279 -0
  158. volcenginesdkvod20250101/models/termbase_for_get_ai_termbase_output.py +279 -0
  159. volcenginesdkvod20250101/models/termbase_for_list_ai_termbase_output.py +279 -0
  160. volcenginesdkvod20250101/models/translation_config_for_submit_ai_translation_workflow_input.py +27 -1
  161. volcenginesdkvod20250101/models/update_ai_termbase_request.py +203 -0
  162. volcenginesdkvod20250101/models/update_ai_termbase_response.py +95 -0
  163. volcenginesdkvod20250101/models/update_ai_translation_project_config_request.py +204 -0
  164. volcenginesdkvod20250101/models/update_ai_translation_project_config_response.py +95 -0
  165. {volcengine_python_sdk-4.0.26.dist-info → volcengine_python_sdk-4.0.27.dist-info}/WHEEL +0 -0
  166. {volcengine_python_sdk-4.0.26.dist-info → volcengine_python_sdk-4.0.27.dist-info}/licenses/LICENSE.txt +0 -0
  167. {volcengine_python_sdk-4.0.26.dist-info → volcengine_python_sdk-4.0.27.dist-info}/licenses/NOTICE.md +0 -0
  168. {volcengine_python_sdk-4.0.26.dist-info → volcengine_python_sdk-4.0.27.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,178 @@
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 GraphragAddKnowledgeBaseRequest(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
+ 'instance_id': 'str',
37
+ 'knowledge_base_desc': 'str',
38
+ 'knowledge_base_name': 'str'
39
+ }
40
+
41
+ attribute_map = {
42
+ 'instance_id': 'InstanceId',
43
+ 'knowledge_base_desc': 'KnowledgeBaseDesc',
44
+ 'knowledge_base_name': 'KnowledgeBaseName'
45
+ }
46
+
47
+ def __init__(self, instance_id=None, knowledge_base_desc=None, knowledge_base_name=None, _configuration=None): # noqa: E501
48
+ """GraphragAddKnowledgeBaseRequest - a model defined in Swagger""" # noqa: E501
49
+ if _configuration is None:
50
+ _configuration = Configuration()
51
+ self._configuration = _configuration
52
+
53
+ self._instance_id = None
54
+ self._knowledge_base_desc = None
55
+ self._knowledge_base_name = None
56
+ self.discriminator = None
57
+
58
+ self.instance_id = instance_id
59
+ self.knowledge_base_desc = knowledge_base_desc
60
+ self.knowledge_base_name = knowledge_base_name
61
+
62
+ @property
63
+ def instance_id(self):
64
+ """Gets the instance_id of this GraphragAddKnowledgeBaseRequest. # noqa: E501
65
+
66
+
67
+ :return: The instance_id of this GraphragAddKnowledgeBaseRequest. # noqa: E501
68
+ :rtype: str
69
+ """
70
+ return self._instance_id
71
+
72
+ @instance_id.setter
73
+ def instance_id(self, instance_id):
74
+ """Sets the instance_id of this GraphragAddKnowledgeBaseRequest.
75
+
76
+
77
+ :param instance_id: The instance_id of this GraphragAddKnowledgeBaseRequest. # noqa: E501
78
+ :type: str
79
+ """
80
+ if self._configuration.client_side_validation and instance_id is None:
81
+ raise ValueError("Invalid value for `instance_id`, must not be `None`") # noqa: E501
82
+
83
+ self._instance_id = instance_id
84
+
85
+ @property
86
+ def knowledge_base_desc(self):
87
+ """Gets the knowledge_base_desc of this GraphragAddKnowledgeBaseRequest. # noqa: E501
88
+
89
+
90
+ :return: The knowledge_base_desc of this GraphragAddKnowledgeBaseRequest. # noqa: E501
91
+ :rtype: str
92
+ """
93
+ return self._knowledge_base_desc
94
+
95
+ @knowledge_base_desc.setter
96
+ def knowledge_base_desc(self, knowledge_base_desc):
97
+ """Sets the knowledge_base_desc of this GraphragAddKnowledgeBaseRequest.
98
+
99
+
100
+ :param knowledge_base_desc: The knowledge_base_desc of this GraphragAddKnowledgeBaseRequest. # noqa: E501
101
+ :type: str
102
+ """
103
+ if self._configuration.client_side_validation and knowledge_base_desc is None:
104
+ raise ValueError("Invalid value for `knowledge_base_desc`, must not be `None`") # noqa: E501
105
+
106
+ self._knowledge_base_desc = knowledge_base_desc
107
+
108
+ @property
109
+ def knowledge_base_name(self):
110
+ """Gets the knowledge_base_name of this GraphragAddKnowledgeBaseRequest. # noqa: E501
111
+
112
+
113
+ :return: The knowledge_base_name of this GraphragAddKnowledgeBaseRequest. # noqa: E501
114
+ :rtype: str
115
+ """
116
+ return self._knowledge_base_name
117
+
118
+ @knowledge_base_name.setter
119
+ def knowledge_base_name(self, knowledge_base_name):
120
+ """Sets the knowledge_base_name of this GraphragAddKnowledgeBaseRequest.
121
+
122
+
123
+ :param knowledge_base_name: The knowledge_base_name of this GraphragAddKnowledgeBaseRequest. # noqa: E501
124
+ :type: str
125
+ """
126
+ if self._configuration.client_side_validation and knowledge_base_name is None:
127
+ raise ValueError("Invalid value for `knowledge_base_name`, must not be `None`") # noqa: E501
128
+
129
+ self._knowledge_base_name = knowledge_base_name
130
+
131
+ def to_dict(self):
132
+ """Returns the model properties as a dict"""
133
+ result = {}
134
+
135
+ for attr, _ in six.iteritems(self.swagger_types):
136
+ value = getattr(self, attr)
137
+ if isinstance(value, list):
138
+ result[attr] = list(map(
139
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
140
+ value
141
+ ))
142
+ elif hasattr(value, "to_dict"):
143
+ result[attr] = value.to_dict()
144
+ elif isinstance(value, dict):
145
+ result[attr] = dict(map(
146
+ lambda item: (item[0], item[1].to_dict())
147
+ if hasattr(item[1], "to_dict") else item,
148
+ value.items()
149
+ ))
150
+ else:
151
+ result[attr] = value
152
+ if issubclass(GraphragAddKnowledgeBaseRequest, dict):
153
+ for key, value in self.items():
154
+ result[key] = value
155
+
156
+ return result
157
+
158
+ def to_str(self):
159
+ """Returns the string representation of the model"""
160
+ return pprint.pformat(self.to_dict())
161
+
162
+ def __repr__(self):
163
+ """For `print` and `pprint`"""
164
+ return self.to_str()
165
+
166
+ def __eq__(self, other):
167
+ """Returns true if both objects are equal"""
168
+ if not isinstance(other, GraphragAddKnowledgeBaseRequest):
169
+ return False
170
+
171
+ return self.to_dict() == other.to_dict()
172
+
173
+ def __ne__(self, other):
174
+ """Returns true if both objects are not equal"""
175
+ if not isinstance(other, GraphragAddKnowledgeBaseRequest):
176
+ return True
177
+
178
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,95 @@
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 GraphragAddKnowledgeBaseResponse(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
+ """GraphragAddKnowledgeBaseResponse - 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(GraphragAddKnowledgeBaseResponse, 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, GraphragAddKnowledgeBaseResponse):
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, GraphragAddKnowledgeBaseResponse):
93
+ return True
94
+
95
+ return self.to_dict() != other.to_dict()
@@ -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 ImageInfoForListGraphRagServiceOutput(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
+ 'bg3_deploy_version': 'str',
37
+ 'bg3_image_version': 'str',
38
+ 'ms_deploy_version': 'str',
39
+ 'ms_image_version': 'str',
40
+ 'version_set_id': 'int'
41
+ }
42
+
43
+ attribute_map = {
44
+ 'bg3_deploy_version': 'Bg3DeployVersion',
45
+ 'bg3_image_version': 'Bg3ImageVersion',
46
+ 'ms_deploy_version': 'MsDeployVersion',
47
+ 'ms_image_version': 'MsImageVersion',
48
+ 'version_set_id': 'VersionSetID'
49
+ }
50
+
51
+ def __init__(self, bg3_deploy_version=None, bg3_image_version=None, ms_deploy_version=None, ms_image_version=None, version_set_id=None, _configuration=None): # noqa: E501
52
+ """ImageInfoForListGraphRagServiceOutput - a model defined in Swagger""" # noqa: E501
53
+ if _configuration is None:
54
+ _configuration = Configuration()
55
+ self._configuration = _configuration
56
+
57
+ self._bg3_deploy_version = None
58
+ self._bg3_image_version = None
59
+ self._ms_deploy_version = None
60
+ self._ms_image_version = None
61
+ self._version_set_id = None
62
+ self.discriminator = None
63
+
64
+ if bg3_deploy_version is not None:
65
+ self.bg3_deploy_version = bg3_deploy_version
66
+ if bg3_image_version is not None:
67
+ self.bg3_image_version = bg3_image_version
68
+ if ms_deploy_version is not None:
69
+ self.ms_deploy_version = ms_deploy_version
70
+ if ms_image_version is not None:
71
+ self.ms_image_version = ms_image_version
72
+ if version_set_id is not None:
73
+ self.version_set_id = version_set_id
74
+
75
+ @property
76
+ def bg3_deploy_version(self):
77
+ """Gets the bg3_deploy_version of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
78
+
79
+
80
+ :return: The bg3_deploy_version of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
81
+ :rtype: str
82
+ """
83
+ return self._bg3_deploy_version
84
+
85
+ @bg3_deploy_version.setter
86
+ def bg3_deploy_version(self, bg3_deploy_version):
87
+ """Sets the bg3_deploy_version of this ImageInfoForListGraphRagServiceOutput.
88
+
89
+
90
+ :param bg3_deploy_version: The bg3_deploy_version of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
91
+ :type: str
92
+ """
93
+
94
+ self._bg3_deploy_version = bg3_deploy_version
95
+
96
+ @property
97
+ def bg3_image_version(self):
98
+ """Gets the bg3_image_version of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
99
+
100
+
101
+ :return: The bg3_image_version of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
102
+ :rtype: str
103
+ """
104
+ return self._bg3_image_version
105
+
106
+ @bg3_image_version.setter
107
+ def bg3_image_version(self, bg3_image_version):
108
+ """Sets the bg3_image_version of this ImageInfoForListGraphRagServiceOutput.
109
+
110
+
111
+ :param bg3_image_version: The bg3_image_version of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
112
+ :type: str
113
+ """
114
+
115
+ self._bg3_image_version = bg3_image_version
116
+
117
+ @property
118
+ def ms_deploy_version(self):
119
+ """Gets the ms_deploy_version of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
120
+
121
+
122
+ :return: The ms_deploy_version of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
123
+ :rtype: str
124
+ """
125
+ return self._ms_deploy_version
126
+
127
+ @ms_deploy_version.setter
128
+ def ms_deploy_version(self, ms_deploy_version):
129
+ """Sets the ms_deploy_version of this ImageInfoForListGraphRagServiceOutput.
130
+
131
+
132
+ :param ms_deploy_version: The ms_deploy_version of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
133
+ :type: str
134
+ """
135
+
136
+ self._ms_deploy_version = ms_deploy_version
137
+
138
+ @property
139
+ def ms_image_version(self):
140
+ """Gets the ms_image_version of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
141
+
142
+
143
+ :return: The ms_image_version of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
144
+ :rtype: str
145
+ """
146
+ return self._ms_image_version
147
+
148
+ @ms_image_version.setter
149
+ def ms_image_version(self, ms_image_version):
150
+ """Sets the ms_image_version of this ImageInfoForListGraphRagServiceOutput.
151
+
152
+
153
+ :param ms_image_version: The ms_image_version of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
154
+ :type: str
155
+ """
156
+
157
+ self._ms_image_version = ms_image_version
158
+
159
+ @property
160
+ def version_set_id(self):
161
+ """Gets the version_set_id of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
162
+
163
+
164
+ :return: The version_set_id of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
165
+ :rtype: int
166
+ """
167
+ return self._version_set_id
168
+
169
+ @version_set_id.setter
170
+ def version_set_id(self, version_set_id):
171
+ """Sets the version_set_id of this ImageInfoForListGraphRagServiceOutput.
172
+
173
+
174
+ :param version_set_id: The version_set_id of this ImageInfoForListGraphRagServiceOutput. # noqa: E501
175
+ :type: int
176
+ """
177
+
178
+ self._version_set_id = version_set_id
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(ImageInfoForListGraphRagServiceOutput, 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, ImageInfoForListGraphRagServiceOutput):
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, ImageInfoForListGraphRagServiceOutput):
225
+ return True
226
+
227
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,175 @@
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 InfoForListGraphRagServiceOutput(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
+ 'id': 'str',
37
+ 'name': 'str',
38
+ 've_graph_info': 'VeGraphInfoForListGraphRagServiceOutput'
39
+ }
40
+
41
+ attribute_map = {
42
+ 'id': 'Id',
43
+ 'name': 'Name',
44
+ 've_graph_info': 'VeGraphInfo'
45
+ }
46
+
47
+ def __init__(self, id=None, name=None, ve_graph_info=None, _configuration=None): # noqa: E501
48
+ """InfoForListGraphRagServiceOutput - a model defined in Swagger""" # noqa: E501
49
+ if _configuration is None:
50
+ _configuration = Configuration()
51
+ self._configuration = _configuration
52
+
53
+ self._id = None
54
+ self._name = None
55
+ self._ve_graph_info = None
56
+ self.discriminator = None
57
+
58
+ if id is not None:
59
+ self.id = id
60
+ if name is not None:
61
+ self.name = name
62
+ if ve_graph_info is not None:
63
+ self.ve_graph_info = ve_graph_info
64
+
65
+ @property
66
+ def id(self):
67
+ """Gets the id of this InfoForListGraphRagServiceOutput. # noqa: E501
68
+
69
+
70
+ :return: The id of this InfoForListGraphRagServiceOutput. # noqa: E501
71
+ :rtype: str
72
+ """
73
+ return self._id
74
+
75
+ @id.setter
76
+ def id(self, id):
77
+ """Sets the id of this InfoForListGraphRagServiceOutput.
78
+
79
+
80
+ :param id: The id of this InfoForListGraphRagServiceOutput. # noqa: E501
81
+ :type: str
82
+ """
83
+
84
+ self._id = id
85
+
86
+ @property
87
+ def name(self):
88
+ """Gets the name of this InfoForListGraphRagServiceOutput. # noqa: E501
89
+
90
+
91
+ :return: The name of this InfoForListGraphRagServiceOutput. # noqa: E501
92
+ :rtype: str
93
+ """
94
+ return self._name
95
+
96
+ @name.setter
97
+ def name(self, name):
98
+ """Sets the name of this InfoForListGraphRagServiceOutput.
99
+
100
+
101
+ :param name: The name of this InfoForListGraphRagServiceOutput. # noqa: E501
102
+ :type: str
103
+ """
104
+
105
+ self._name = name
106
+
107
+ @property
108
+ def ve_graph_info(self):
109
+ """Gets the ve_graph_info of this InfoForListGraphRagServiceOutput. # noqa: E501
110
+
111
+
112
+ :return: The ve_graph_info of this InfoForListGraphRagServiceOutput. # noqa: E501
113
+ :rtype: VeGraphInfoForListGraphRagServiceOutput
114
+ """
115
+ return self._ve_graph_info
116
+
117
+ @ve_graph_info.setter
118
+ def ve_graph_info(self, ve_graph_info):
119
+ """Sets the ve_graph_info of this InfoForListGraphRagServiceOutput.
120
+
121
+
122
+ :param ve_graph_info: The ve_graph_info of this InfoForListGraphRagServiceOutput. # noqa: E501
123
+ :type: VeGraphInfoForListGraphRagServiceOutput
124
+ """
125
+
126
+ self._ve_graph_info = ve_graph_info
127
+
128
+ def to_dict(self):
129
+ """Returns the model properties as a dict"""
130
+ result = {}
131
+
132
+ for attr, _ in six.iteritems(self.swagger_types):
133
+ value = getattr(self, attr)
134
+ if isinstance(value, list):
135
+ result[attr] = list(map(
136
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
137
+ value
138
+ ))
139
+ elif hasattr(value, "to_dict"):
140
+ result[attr] = value.to_dict()
141
+ elif isinstance(value, dict):
142
+ result[attr] = dict(map(
143
+ lambda item: (item[0], item[1].to_dict())
144
+ if hasattr(item[1], "to_dict") else item,
145
+ value.items()
146
+ ))
147
+ else:
148
+ result[attr] = value
149
+ if issubclass(InfoForListGraphRagServiceOutput, dict):
150
+ for key, value in self.items():
151
+ result[key] = value
152
+
153
+ return result
154
+
155
+ def to_str(self):
156
+ """Returns the string representation of the model"""
157
+ return pprint.pformat(self.to_dict())
158
+
159
+ def __repr__(self):
160
+ """For `print` and `pprint`"""
161
+ return self.to_str()
162
+
163
+ def __eq__(self, other):
164
+ """Returns true if both objects are equal"""
165
+ if not isinstance(other, InfoForListGraphRagServiceOutput):
166
+ return False
167
+
168
+ return self.to_dict() == other.to_dict()
169
+
170
+ def __ne__(self, other):
171
+ """Returns true if both objects are not equal"""
172
+ if not isinstance(other, InfoForListGraphRagServiceOutput):
173
+ return True
174
+
175
+ return self.to_dict() != other.to_dict()