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
@@ -33,6 +33,7 @@ class ConvertLoadBalancerBillingTypeRequest(object):
33
33
  and the value is json key in definition.
34
34
  """
35
35
  swagger_types = {
36
+ 'auto_renewal': 'bool',
36
37
  'load_balancer_billing_type': 'int',
37
38
  'load_balancer_id': 'str',
38
39
  'load_balancer_spec': 'str',
@@ -41,6 +42,7 @@ class ConvertLoadBalancerBillingTypeRequest(object):
41
42
  }
42
43
 
43
44
  attribute_map = {
45
+ 'auto_renewal': 'AutoRenewal',
44
46
  'load_balancer_billing_type': 'LoadBalancerBillingType',
45
47
  'load_balancer_id': 'LoadBalancerId',
46
48
  'load_balancer_spec': 'LoadBalancerSpec',
@@ -48,12 +50,13 @@ class ConvertLoadBalancerBillingTypeRequest(object):
48
50
  'period_unit': 'PeriodUnit'
49
51
  }
50
52
 
51
- def __init__(self, load_balancer_billing_type=None, load_balancer_id=None, load_balancer_spec=None, period=None, period_unit=None, _configuration=None): # noqa: E501
53
+ def __init__(self, auto_renewal=None, load_balancer_billing_type=None, load_balancer_id=None, load_balancer_spec=None, period=None, period_unit=None, _configuration=None): # noqa: E501
52
54
  """ConvertLoadBalancerBillingTypeRequest - a model defined in Swagger""" # noqa: E501
53
55
  if _configuration is None:
54
56
  _configuration = Configuration()
55
57
  self._configuration = _configuration
56
58
 
59
+ self._auto_renewal = None
57
60
  self._load_balancer_billing_type = None
58
61
  self._load_balancer_id = None
59
62
  self._load_balancer_spec = None
@@ -61,6 +64,8 @@ class ConvertLoadBalancerBillingTypeRequest(object):
61
64
  self._period_unit = None
62
65
  self.discriminator = None
63
66
 
67
+ if auto_renewal is not None:
68
+ self.auto_renewal = auto_renewal
64
69
  self.load_balancer_billing_type = load_balancer_billing_type
65
70
  self.load_balancer_id = load_balancer_id
66
71
  if load_balancer_spec is not None:
@@ -70,6 +75,27 @@ class ConvertLoadBalancerBillingTypeRequest(object):
70
75
  if period_unit is not None:
71
76
  self.period_unit = period_unit
72
77
 
78
+ @property
79
+ def auto_renewal(self):
80
+ """Gets the auto_renewal of this ConvertLoadBalancerBillingTypeRequest. # noqa: E501
81
+
82
+
83
+ :return: The auto_renewal of this ConvertLoadBalancerBillingTypeRequest. # noqa: E501
84
+ :rtype: bool
85
+ """
86
+ return self._auto_renewal
87
+
88
+ @auto_renewal.setter
89
+ def auto_renewal(self, auto_renewal):
90
+ """Sets the auto_renewal of this ConvertLoadBalancerBillingTypeRequest.
91
+
92
+
93
+ :param auto_renewal: The auto_renewal of this ConvertLoadBalancerBillingTypeRequest. # noqa: E501
94
+ :type: bool
95
+ """
96
+
97
+ self._auto_renewal = auto_renewal
98
+
73
99
  @property
74
100
  def load_balancer_billing_type(self):
75
101
  """Gets the load_balancer_billing_type of this ConvertLoadBalancerBillingTypeRequest. # noqa: E501
@@ -50,6 +50,7 @@ class DescribeListenerAttributesResponse(object):
50
50
  'cps': 'int',
51
51
  'create_time': 'str',
52
52
  'description': 'str',
53
+ 'domain_extensions': 'list[DomainExtensionForDescribeListenerAttributesOutput]',
53
54
  'enabled': 'str',
54
55
  'end_port': 'int',
55
56
  'enhanced_scheduler_enable': 'str',
@@ -101,6 +102,7 @@ class DescribeListenerAttributesResponse(object):
101
102
  'cps': 'Cps',
102
103
  'create_time': 'CreateTime',
103
104
  'description': 'Description',
105
+ 'domain_extensions': 'DomainExtensions',
104
106
  'enabled': 'Enabled',
105
107
  'end_port': 'EndPort',
106
108
  'enhanced_scheduler_enable': 'EnhancedSchedulerEnable',
@@ -134,7 +136,7 @@ class DescribeListenerAttributesResponse(object):
134
136
  'waf_protection_enabled': 'WafProtectionEnabled'
135
137
  }
136
138
 
137
- def __init__(self, acl_ids=None, acl_status=None, acl_type=None, bandwidth=None, ca_certificate_id=None, ca_enabled=None, cert_center_certificate_id=None, certificate_id=None, certificate_source=None, client_body_timeout=None, client_header_timeout=None, connection_drain_enabled=None, connection_drain_timeout=None, cookie=None, cps=None, create_time=None, description=None, enabled=None, end_port=None, enhanced_scheduler_enable=None, established_timeout=None, health_check=None, http2_enabled=None, keepalive_timeout=None, listener_id=None, listener_name=None, load_balancer_id=None, load_type=None, max_connections=None, persistence_timeout=None, persistence_type=None, port=None, protocol=None, proxy_connect_timeout=None, proxy_protocol_type=None, proxy_read_timeout=None, proxy_send_timeout=None, request_id=None, response_check_enabled=None, scheduler=None, security_policy_id=None, send_timeout=None, server_group_id=None, start_port=None, status=None, tags=None, update_time=None, waf_protection_enabled=None, _configuration=None): # noqa: E501
139
+ def __init__(self, acl_ids=None, acl_status=None, acl_type=None, bandwidth=None, ca_certificate_id=None, ca_enabled=None, cert_center_certificate_id=None, certificate_id=None, certificate_source=None, client_body_timeout=None, client_header_timeout=None, connection_drain_enabled=None, connection_drain_timeout=None, cookie=None, cps=None, create_time=None, description=None, domain_extensions=None, enabled=None, end_port=None, enhanced_scheduler_enable=None, established_timeout=None, health_check=None, http2_enabled=None, keepalive_timeout=None, listener_id=None, listener_name=None, load_balancer_id=None, load_type=None, max_connections=None, persistence_timeout=None, persistence_type=None, port=None, protocol=None, proxy_connect_timeout=None, proxy_protocol_type=None, proxy_read_timeout=None, proxy_send_timeout=None, request_id=None, response_check_enabled=None, scheduler=None, security_policy_id=None, send_timeout=None, server_group_id=None, start_port=None, status=None, tags=None, update_time=None, waf_protection_enabled=None, _configuration=None): # noqa: E501
138
140
  """DescribeListenerAttributesResponse - a model defined in Swagger""" # noqa: E501
139
141
  if _configuration is None:
140
142
  _configuration = Configuration()
@@ -157,6 +159,7 @@ class DescribeListenerAttributesResponse(object):
157
159
  self._cps = None
158
160
  self._create_time = None
159
161
  self._description = None
162
+ self._domain_extensions = None
160
163
  self._enabled = None
161
164
  self._end_port = None
162
165
  self._enhanced_scheduler_enable = None
@@ -224,6 +227,8 @@ class DescribeListenerAttributesResponse(object):
224
227
  self.create_time = create_time
225
228
  if description is not None:
226
229
  self.description = description
230
+ if domain_extensions is not None:
231
+ self.domain_extensions = domain_extensions
227
232
  if enabled is not None:
228
233
  self.enabled = enabled
229
234
  if end_port is not None:
@@ -644,6 +649,27 @@ class DescribeListenerAttributesResponse(object):
644
649
 
645
650
  self._description = description
646
651
 
652
+ @property
653
+ def domain_extensions(self):
654
+ """Gets the domain_extensions of this DescribeListenerAttributesResponse. # noqa: E501
655
+
656
+
657
+ :return: The domain_extensions of this DescribeListenerAttributesResponse. # noqa: E501
658
+ :rtype: list[DomainExtensionForDescribeListenerAttributesOutput]
659
+ """
660
+ return self._domain_extensions
661
+
662
+ @domain_extensions.setter
663
+ def domain_extensions(self, domain_extensions):
664
+ """Sets the domain_extensions of this DescribeListenerAttributesResponse.
665
+
666
+
667
+ :param domain_extensions: The domain_extensions of this DescribeListenerAttributesResponse. # noqa: E501
668
+ :type: list[DomainExtensionForDescribeListenerAttributesOutput]
669
+ """
670
+
671
+ self._domain_extensions = domain_extensions
672
+
647
673
  @property
648
674
  def enabled(self):
649
675
  """Gets the enabled of this DescribeListenerAttributesResponse. # noqa: E501
@@ -33,6 +33,7 @@ class DescribeNetworkLoadBalancerAttributesResponse(object):
33
33
  and the value is json key in definition.
34
34
  """
35
35
  swagger_types = {
36
+ 'access_log': 'AccessLogForDescribeNetworkLoadBalancerAttributesOutput',
36
37
  'account_id': 'str',
37
38
  'billing_status': 'str',
38
39
  'billing_type': 'int',
@@ -63,6 +64,7 @@ class DescribeNetworkLoadBalancerAttributesResponse(object):
63
64
  }
64
65
 
65
66
  attribute_map = {
67
+ 'access_log': 'AccessLog',
66
68
  'account_id': 'AccountId',
67
69
  'billing_status': 'BillingStatus',
68
70
  'billing_type': 'BillingType',
@@ -92,12 +94,13 @@ class DescribeNetworkLoadBalancerAttributesResponse(object):
92
94
  'zone_mappings': 'ZoneMappings'
93
95
  }
94
96
 
95
- def __init__(self, account_id=None, billing_status=None, billing_type=None, create_time=None, cross_zone_enabled=None, dns_name=None, description=None, expected_overdue_time=None, ip_address_version=None, ipv4_bandwidth_package_id=None, ipv4_network_type=None, ipv6_bandwidth_package_id=None, ipv6_network_type=None, load_balancer_id=None, load_balancer_name=None, managed_security_group_id=None, modification_protection_status=None, overdue_time=None, project_name=None, reclaimed_time=None, request_id=None, security_group_ids=None, status=None, tags=None, update_time=None, vpc_id=None, zone_mappings=None, _configuration=None): # noqa: E501
97
+ def __init__(self, access_log=None, account_id=None, billing_status=None, billing_type=None, create_time=None, cross_zone_enabled=None, dns_name=None, description=None, expected_overdue_time=None, ip_address_version=None, ipv4_bandwidth_package_id=None, ipv4_network_type=None, ipv6_bandwidth_package_id=None, ipv6_network_type=None, load_balancer_id=None, load_balancer_name=None, managed_security_group_id=None, modification_protection_status=None, overdue_time=None, project_name=None, reclaimed_time=None, request_id=None, security_group_ids=None, status=None, tags=None, update_time=None, vpc_id=None, zone_mappings=None, _configuration=None): # noqa: E501
96
98
  """DescribeNetworkLoadBalancerAttributesResponse - a model defined in Swagger""" # noqa: E501
97
99
  if _configuration is None:
98
100
  _configuration = Configuration()
99
101
  self._configuration = _configuration
100
102
 
103
+ self._access_log = None
101
104
  self._account_id = None
102
105
  self._billing_status = None
103
106
  self._billing_type = None
@@ -127,6 +130,8 @@ class DescribeNetworkLoadBalancerAttributesResponse(object):
127
130
  self._zone_mappings = None
128
131
  self.discriminator = None
129
132
 
133
+ if access_log is not None:
134
+ self.access_log = access_log
130
135
  if account_id is not None:
131
136
  self.account_id = account_id
132
137
  if billing_status is not None:
@@ -182,6 +187,27 @@ class DescribeNetworkLoadBalancerAttributesResponse(object):
182
187
  if zone_mappings is not None:
183
188
  self.zone_mappings = zone_mappings
184
189
 
190
+ @property
191
+ def access_log(self):
192
+ """Gets the access_log of this DescribeNetworkLoadBalancerAttributesResponse. # noqa: E501
193
+
194
+
195
+ :return: The access_log of this DescribeNetworkLoadBalancerAttributesResponse. # noqa: E501
196
+ :rtype: AccessLogForDescribeNetworkLoadBalancerAttributesOutput
197
+ """
198
+ return self._access_log
199
+
200
+ @access_log.setter
201
+ def access_log(self, access_log):
202
+ """Sets the access_log of this DescribeNetworkLoadBalancerAttributesResponse.
203
+
204
+
205
+ :param access_log: The access_log of this DescribeNetworkLoadBalancerAttributesResponse. # noqa: E501
206
+ :type: AccessLogForDescribeNetworkLoadBalancerAttributesOutput
207
+ """
208
+
209
+ self._access_log = access_log
210
+
185
211
  @property
186
212
  def account_id(self):
187
213
  """Gets the account_id of this DescribeNetworkLoadBalancerAttributesResponse. # noqa: E501
@@ -33,43 +33,51 @@ class DescribeNLBServerGroupsRequest(object):
33
33
  and the value is json key in definition.
34
34
  """
35
35
  swagger_types = {
36
+ 'instance_ids': 'list[str]',
36
37
  'max_results': 'int',
37
38
  'next_token': 'str',
38
39
  'project_name': 'str',
39
40
  'server_group_ids': 'list[str]',
40
41
  'server_group_name': 'str',
42
+ 'server_ips': 'list[str]',
41
43
  'tag_filters': 'list[TagFilterForDescribeNLBServerGroupsInput]',
42
44
  'type': 'str',
43
45
  'vpc_id': 'str'
44
46
  }
45
47
 
46
48
  attribute_map = {
49
+ 'instance_ids': 'InstanceIds',
47
50
  'max_results': 'MaxResults',
48
51
  'next_token': 'NextToken',
49
52
  'project_name': 'ProjectName',
50
53
  'server_group_ids': 'ServerGroupIds',
51
54
  'server_group_name': 'ServerGroupName',
55
+ 'server_ips': 'ServerIps',
52
56
  'tag_filters': 'TagFilters',
53
57
  'type': 'Type',
54
58
  'vpc_id': 'VpcId'
55
59
  }
56
60
 
57
- def __init__(self, max_results=None, next_token=None, project_name=None, server_group_ids=None, server_group_name=None, tag_filters=None, type=None, vpc_id=None, _configuration=None): # noqa: E501
61
+ def __init__(self, instance_ids=None, max_results=None, next_token=None, project_name=None, server_group_ids=None, server_group_name=None, server_ips=None, tag_filters=None, type=None, vpc_id=None, _configuration=None): # noqa: E501
58
62
  """DescribeNLBServerGroupsRequest - a model defined in Swagger""" # noqa: E501
59
63
  if _configuration is None:
60
64
  _configuration = Configuration()
61
65
  self._configuration = _configuration
62
66
 
67
+ self._instance_ids = None
63
68
  self._max_results = None
64
69
  self._next_token = None
65
70
  self._project_name = None
66
71
  self._server_group_ids = None
67
72
  self._server_group_name = None
73
+ self._server_ips = None
68
74
  self._tag_filters = None
69
75
  self._type = None
70
76
  self._vpc_id = None
71
77
  self.discriminator = None
72
78
 
79
+ if instance_ids is not None:
80
+ self.instance_ids = instance_ids
73
81
  if max_results is not None:
74
82
  self.max_results = max_results
75
83
  if next_token is not None:
@@ -80,6 +88,8 @@ class DescribeNLBServerGroupsRequest(object):
80
88
  self.server_group_ids = server_group_ids
81
89
  if server_group_name is not None:
82
90
  self.server_group_name = server_group_name
91
+ if server_ips is not None:
92
+ self.server_ips = server_ips
83
93
  if tag_filters is not None:
84
94
  self.tag_filters = tag_filters
85
95
  if type is not None:
@@ -87,6 +97,27 @@ class DescribeNLBServerGroupsRequest(object):
87
97
  if vpc_id is not None:
88
98
  self.vpc_id = vpc_id
89
99
 
100
+ @property
101
+ def instance_ids(self):
102
+ """Gets the instance_ids of this DescribeNLBServerGroupsRequest. # noqa: E501
103
+
104
+
105
+ :return: The instance_ids of this DescribeNLBServerGroupsRequest. # noqa: E501
106
+ :rtype: list[str]
107
+ """
108
+ return self._instance_ids
109
+
110
+ @instance_ids.setter
111
+ def instance_ids(self, instance_ids):
112
+ """Sets the instance_ids of this DescribeNLBServerGroupsRequest.
113
+
114
+
115
+ :param instance_ids: The instance_ids of this DescribeNLBServerGroupsRequest. # noqa: E501
116
+ :type: list[str]
117
+ """
118
+
119
+ self._instance_ids = instance_ids
120
+
90
121
  @property
91
122
  def max_results(self):
92
123
  """Gets the max_results of this DescribeNLBServerGroupsRequest. # noqa: E501
@@ -192,6 +223,27 @@ class DescribeNLBServerGroupsRequest(object):
192
223
 
193
224
  self._server_group_name = server_group_name
194
225
 
226
+ @property
227
+ def server_ips(self):
228
+ """Gets the server_ips of this DescribeNLBServerGroupsRequest. # noqa: E501
229
+
230
+
231
+ :return: The server_ips of this DescribeNLBServerGroupsRequest. # noqa: E501
232
+ :rtype: list[str]
233
+ """
234
+ return self._server_ips
235
+
236
+ @server_ips.setter
237
+ def server_ips(self, server_ips):
238
+ """Sets the server_ips of this DescribeNLBServerGroupsRequest.
239
+
240
+
241
+ :param server_ips: The server_ips of this DescribeNLBServerGroupsRequest. # noqa: E501
242
+ :type: list[str]
243
+ """
244
+
245
+ self._server_ips = server_ips
246
+
195
247
  @property
196
248
  def tag_filters(self):
197
249
  """Gets the tag_filters of this DescribeNLBServerGroupsRequest. # noqa: E501
@@ -0,0 +1,201 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ clb
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 DomainExtensionForDescribeListenerAttributesOutput(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
+ 'cert_center_certificate_id': 'str',
37
+ 'certificate_source': 'str',
38
+ 'domain': 'str',
39
+ 'domain_extension_id': 'str'
40
+ }
41
+
42
+ attribute_map = {
43
+ 'cert_center_certificate_id': 'CertCenterCertificateId',
44
+ 'certificate_source': 'CertificateSource',
45
+ 'domain': 'Domain',
46
+ 'domain_extension_id': 'DomainExtensionId'
47
+ }
48
+
49
+ def __init__(self, cert_center_certificate_id=None, certificate_source=None, domain=None, domain_extension_id=None, _configuration=None): # noqa: E501
50
+ """DomainExtensionForDescribeListenerAttributesOutput - a model defined in Swagger""" # noqa: E501
51
+ if _configuration is None:
52
+ _configuration = Configuration()
53
+ self._configuration = _configuration
54
+
55
+ self._cert_center_certificate_id = None
56
+ self._certificate_source = None
57
+ self._domain = None
58
+ self._domain_extension_id = None
59
+ self.discriminator = None
60
+
61
+ if cert_center_certificate_id is not None:
62
+ self.cert_center_certificate_id = cert_center_certificate_id
63
+ if certificate_source is not None:
64
+ self.certificate_source = certificate_source
65
+ if domain is not None:
66
+ self.domain = domain
67
+ if domain_extension_id is not None:
68
+ self.domain_extension_id = domain_extension_id
69
+
70
+ @property
71
+ def cert_center_certificate_id(self):
72
+ """Gets the cert_center_certificate_id of this DomainExtensionForDescribeListenerAttributesOutput. # noqa: E501
73
+
74
+
75
+ :return: The cert_center_certificate_id of this DomainExtensionForDescribeListenerAttributesOutput. # noqa: E501
76
+ :rtype: str
77
+ """
78
+ return self._cert_center_certificate_id
79
+
80
+ @cert_center_certificate_id.setter
81
+ def cert_center_certificate_id(self, cert_center_certificate_id):
82
+ """Sets the cert_center_certificate_id of this DomainExtensionForDescribeListenerAttributesOutput.
83
+
84
+
85
+ :param cert_center_certificate_id: The cert_center_certificate_id of this DomainExtensionForDescribeListenerAttributesOutput. # noqa: E501
86
+ :type: str
87
+ """
88
+
89
+ self._cert_center_certificate_id = cert_center_certificate_id
90
+
91
+ @property
92
+ def certificate_source(self):
93
+ """Gets the certificate_source of this DomainExtensionForDescribeListenerAttributesOutput. # noqa: E501
94
+
95
+
96
+ :return: The certificate_source of this DomainExtensionForDescribeListenerAttributesOutput. # noqa: E501
97
+ :rtype: str
98
+ """
99
+ return self._certificate_source
100
+
101
+ @certificate_source.setter
102
+ def certificate_source(self, certificate_source):
103
+ """Sets the certificate_source of this DomainExtensionForDescribeListenerAttributesOutput.
104
+
105
+
106
+ :param certificate_source: The certificate_source of this DomainExtensionForDescribeListenerAttributesOutput. # noqa: E501
107
+ :type: str
108
+ """
109
+
110
+ self._certificate_source = certificate_source
111
+
112
+ @property
113
+ def domain(self):
114
+ """Gets the domain of this DomainExtensionForDescribeListenerAttributesOutput. # noqa: E501
115
+
116
+
117
+ :return: The domain of this DomainExtensionForDescribeListenerAttributesOutput. # noqa: E501
118
+ :rtype: str
119
+ """
120
+ return self._domain
121
+
122
+ @domain.setter
123
+ def domain(self, domain):
124
+ """Sets the domain of this DomainExtensionForDescribeListenerAttributesOutput.
125
+
126
+
127
+ :param domain: The domain of this DomainExtensionForDescribeListenerAttributesOutput. # noqa: E501
128
+ :type: str
129
+ """
130
+
131
+ self._domain = domain
132
+
133
+ @property
134
+ def domain_extension_id(self):
135
+ """Gets the domain_extension_id of this DomainExtensionForDescribeListenerAttributesOutput. # noqa: E501
136
+
137
+
138
+ :return: The domain_extension_id of this DomainExtensionForDescribeListenerAttributesOutput. # noqa: E501
139
+ :rtype: str
140
+ """
141
+ return self._domain_extension_id
142
+
143
+ @domain_extension_id.setter
144
+ def domain_extension_id(self, domain_extension_id):
145
+ """Sets the domain_extension_id of this DomainExtensionForDescribeListenerAttributesOutput.
146
+
147
+
148
+ :param domain_extension_id: The domain_extension_id of this DomainExtensionForDescribeListenerAttributesOutput. # noqa: E501
149
+ :type: str
150
+ """
151
+
152
+ self._domain_extension_id = domain_extension_id
153
+
154
+ def to_dict(self):
155
+ """Returns the model properties as a dict"""
156
+ result = {}
157
+
158
+ for attr, _ in six.iteritems(self.swagger_types):
159
+ value = getattr(self, attr)
160
+ if isinstance(value, list):
161
+ result[attr] = list(map(
162
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
163
+ value
164
+ ))
165
+ elif hasattr(value, "to_dict"):
166
+ result[attr] = value.to_dict()
167
+ elif isinstance(value, dict):
168
+ result[attr] = dict(map(
169
+ lambda item: (item[0], item[1].to_dict())
170
+ if hasattr(item[1], "to_dict") else item,
171
+ value.items()
172
+ ))
173
+ else:
174
+ result[attr] = value
175
+ if issubclass(DomainExtensionForDescribeListenerAttributesOutput, dict):
176
+ for key, value in self.items():
177
+ result[key] = value
178
+
179
+ return result
180
+
181
+ def to_str(self):
182
+ """Returns the string representation of the model"""
183
+ return pprint.pformat(self.to_dict())
184
+
185
+ def __repr__(self):
186
+ """For `print` and `pprint`"""
187
+ return self.to_str()
188
+
189
+ def __eq__(self, other):
190
+ """Returns true if both objects are equal"""
191
+ if not isinstance(other, DomainExtensionForDescribeListenerAttributesOutput):
192
+ return False
193
+
194
+ return self.to_dict() == other.to_dict()
195
+
196
+ def __ne__(self, other):
197
+ """Returns true if both objects are not equal"""
198
+ if not isinstance(other, DomainExtensionForDescribeListenerAttributesOutput):
199
+ return True
200
+
201
+ return self.to_dict() != other.to_dict()