byteplus-python-sdk-v2 3.0.52__py2.py3-none-any.whl → 3.0.53__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.
- {byteplus_python_sdk_v2-3.0.52.dist-info → byteplus_python_sdk_v2-3.0.53.dist-info}/METADATA +1 -1
- {byteplus_python_sdk_v2-3.0.52.dist-info → byteplus_python_sdk_v2-3.0.53.dist-info}/RECORD +184 -43
- {byteplus_python_sdk_v2-3.0.52.dist-info → byteplus_python_sdk_v2-3.0.53.dist-info}/WHEEL +1 -1
- {byteplus_python_sdk_v2-3.0.52.dist-info → byteplus_python_sdk_v2-3.0.53.dist-info}/top_level.txt +1 -0
- byteplussdkarkruntime/resources/content_generation/tasks.py +4 -0
- byteplussdkarkruntime/types/content_generation/content_generation_task.py +3 -0
- byteplussdkarkruntime/types/content_generation/create_task_content_param.py +31 -1
- byteplussdkcen/__init__.py +133 -0
- byteplussdkcen/api/__init__.py +6 -0
- byteplussdkcen/api/cen_api.py +4205 -0
- byteplussdkcen/models/__init__.py +129 -0
- byteplussdkcen/models/associate_cen_bandwidth_package_request.py +151 -0
- byteplussdkcen/models/associate_cen_bandwidth_package_response.py +95 -0
- byteplussdkcen/models/attach_instance_to_cen_request.py +231 -0
- byteplussdkcen/models/attach_instance_to_cen_response.py +95 -0
- byteplussdkcen/models/attached_instance_for_describe_cen_attached_instances_output.py +279 -0
- byteplussdkcen/models/cen_bandwidth_package_for_describe_cen_bandwidth_packages_billing_output.py +279 -0
- byteplussdkcen/models/cen_bandwidth_package_for_describe_cen_bandwidth_packages_output.py +617 -0
- byteplussdkcen/models/cen_for_describe_cens_output.py +357 -0
- byteplussdkcen/models/cen_grant_rule_for_describe_grant_rules_to_cen_output.py +253 -0
- byteplussdkcen/models/cen_grant_rule_for_describe_instance_granted_rules_output.py +253 -0
- byteplussdkcen/models/cen_route_entry_for_describe_cen_route_entries_output.py +331 -0
- byteplussdkcen/models/cen_summary_route_entry_for_describe_cen_summary_route_entries_output.py +253 -0
- byteplussdkcen/models/create_cen_bandwidth_package_request.py +462 -0
- byteplussdkcen/models/create_cen_bandwidth_package_response.py +123 -0
- byteplussdkcen/models/create_cen_inter_region_bandwidth_request.py +231 -0
- byteplussdkcen/models/create_cen_inter_region_bandwidth_response.py +123 -0
- byteplussdkcen/models/create_cen_request.py +230 -0
- byteplussdkcen/models/create_cen_response.py +123 -0
- byteplussdkcen/models/create_cen_service_route_entry_request.py +283 -0
- byteplussdkcen/models/create_cen_service_route_entry_response.py +95 -0
- byteplussdkcen/models/create_cen_summary_route_entry_request.py +177 -0
- byteplussdkcen/models/create_cen_summary_route_entry_response.py +95 -0
- byteplussdkcen/models/delete_cen_bandwidth_package_request.py +124 -0
- byteplussdkcen/models/delete_cen_bandwidth_package_response.py +95 -0
- byteplussdkcen/models/delete_cen_inter_region_bandwidth_request.py +124 -0
- byteplussdkcen/models/delete_cen_inter_region_bandwidth_response.py +95 -0
- byteplussdkcen/models/delete_cen_request.py +124 -0
- byteplussdkcen/models/delete_cen_response.py +95 -0
- byteplussdkcen/models/delete_cen_service_route_entry_request.py +178 -0
- byteplussdkcen/models/delete_cen_service_route_entry_response.py +95 -0
- byteplussdkcen/models/delete_cen_summary_route_entry_request.py +151 -0
- byteplussdkcen/models/delete_cen_summary_route_entry_response.py +95 -0
- byteplussdkcen/models/describe95_traffic_request.py +178 -0
- byteplussdkcen/models/describe95_traffic_response.py +123 -0
- byteplussdkcen/models/describe_cen_attached_instance_attributes_request.py +205 -0
- byteplussdkcen/models/describe_cen_attached_instance_attributes_response.py +279 -0
- byteplussdkcen/models/describe_cen_attached_instances_request.py +253 -0
- byteplussdkcen/models/describe_cen_attached_instances_response.py +201 -0
- byteplussdkcen/models/describe_cen_attributes_request.py +124 -0
- byteplussdkcen/models/describe_cen_attributes_response.py +357 -0
- byteplussdkcen/models/describe_cen_bandwidth_package_attributes_request.py +124 -0
- byteplussdkcen/models/describe_cen_bandwidth_package_attributes_response.py +591 -0
- byteplussdkcen/models/describe_cen_bandwidth_packages_billing_request.py +175 -0
- byteplussdkcen/models/describe_cen_bandwidth_packages_billing_response.py +201 -0
- byteplussdkcen/models/describe_cen_bandwidth_packages_request.py +331 -0
- byteplussdkcen/models/describe_cen_bandwidth_packages_response.py +201 -0
- byteplussdkcen/models/describe_cen_inter_region_bandwidth_attributes_request.py +124 -0
- byteplussdkcen/models/describe_cen_inter_region_bandwidth_attributes_response.py +331 -0
- byteplussdkcen/models/describe_cen_inter_region_bandwidths_request.py +201 -0
- byteplussdkcen/models/describe_cen_inter_region_bandwidths_response.py +201 -0
- byteplussdkcen/models/describe_cen_route_entries_request.py +279 -0
- byteplussdkcen/models/describe_cen_route_entries_response.py +201 -0
- byteplussdkcen/models/describe_cen_service_route_entries_request.py +279 -0
- byteplussdkcen/models/describe_cen_service_route_entries_response.py +201 -0
- byteplussdkcen/models/describe_cen_summary_route_entries_request.py +202 -0
- byteplussdkcen/models/describe_cen_summary_route_entries_response.py +201 -0
- byteplussdkcen/models/describe_cens_request.py +253 -0
- byteplussdkcen/models/describe_cens_response.py +201 -0
- byteplussdkcen/models/describe_grant_rules_to_cen_request.py +260 -0
- byteplussdkcen/models/describe_grant_rules_to_cen_response.py +201 -0
- byteplussdkcen/models/describe_instance_granted_rules_request.py +234 -0
- byteplussdkcen/models/describe_instance_granted_rules_response.py +201 -0
- byteplussdkcen/models/detach_instance_from_cen_request.py +205 -0
- byteplussdkcen/models/detach_instance_from_cen_response.py +95 -0
- byteplussdkcen/models/disassociate_cen_bandwidth_package_request.py +151 -0
- byteplussdkcen/models/disassociate_cen_bandwidth_package_response.py +95 -0
- byteplussdkcen/models/grant_instance_to_cen_request.py +239 -0
- byteplussdkcen/models/grant_instance_to_cen_response.py +95 -0
- byteplussdkcen/models/inter_region_bandwidth_for_describe_cen_inter_region_bandwidths_output.py +331 -0
- byteplussdkcen/models/list_tags_for_resources_request.py +264 -0
- byteplussdkcen/models/list_tags_for_resources_response.py +149 -0
- byteplussdkcen/models/modify_cen_attributes_request.py +176 -0
- byteplussdkcen/models/modify_cen_attributes_response.py +95 -0
- byteplussdkcen/models/modify_cen_bandwidth_package_association_request.py +151 -0
- byteplussdkcen/models/modify_cen_bandwidth_package_association_response.py +95 -0
- byteplussdkcen/models/modify_cen_bandwidth_package_attributes_request.py +214 -0
- byteplussdkcen/models/modify_cen_bandwidth_package_attributes_response.py +95 -0
- byteplussdkcen/models/modify_cen_inter_region_bandwidth_attributes_request.py +176 -0
- byteplussdkcen/models/modify_cen_inter_region_bandwidth_attributes_response.py +95 -0
- byteplussdkcen/models/modify_cen_service_route_entry_attributes_request.py +256 -0
- byteplussdkcen/models/modify_cen_service_route_entry_attributes_response.py +95 -0
- byteplussdkcen/models/publish_cen_route_entry_request.py +232 -0
- byteplussdkcen/models/publish_cen_route_entry_response.py +95 -0
- byteplussdkcen/models/publish_to_instance_for_create_cen_service_route_entry_input.py +175 -0
- byteplussdkcen/models/publish_to_instance_for_describe_cen_service_route_entries_output.py +175 -0
- byteplussdkcen/models/publish_to_instance_for_modify_cen_service_route_entry_attributes_input.py +175 -0
- byteplussdkcen/models/renew_cen_bandwidth_package_request.py +176 -0
- byteplussdkcen/models/renew_cen_bandwidth_package_response.py +95 -0
- byteplussdkcen/models/resource_tag_for_list_tags_for_resources_output.py +201 -0
- byteplussdkcen/models/revoke_instance_from_cen_request.py +239 -0
- byteplussdkcen/models/revoke_instance_from_cen_response.py +95 -0
- byteplussdkcen/models/service_route_entry_for_describe_cen_service_route_entries_output.py +331 -0
- byteplussdkcen/models/set_cen_bandwidth_package_renewal_request.py +203 -0
- byteplussdkcen/models/set_cen_bandwidth_package_renewal_response.py +95 -0
- byteplussdkcen/models/tag_filter_for_describe_cen_bandwidth_packages_input.py +149 -0
- byteplussdkcen/models/tag_filter_for_describe_cens_input.py +149 -0
- byteplussdkcen/models/tag_filter_for_list_tags_for_resources_input.py +149 -0
- byteplussdkcen/models/tag_for_create_cen_bandwidth_package_input.py +149 -0
- byteplussdkcen/models/tag_for_create_cen_input.py +149 -0
- byteplussdkcen/models/tag_for_describe_cen_attributes_output.py +149 -0
- byteplussdkcen/models/tag_for_describe_cen_bandwidth_package_attributes_output.py +149 -0
- byteplussdkcen/models/tag_for_describe_cen_bandwidth_packages_output.py +149 -0
- byteplussdkcen/models/tag_for_describe_cens_output.py +149 -0
- byteplussdkcen/models/tag_for_tag_resources_input.py +150 -0
- byteplussdkcen/models/tag_resources_request.py +183 -0
- byteplussdkcen/models/tag_resources_response.py +95 -0
- byteplussdkcen/models/traffic_data_for_describe95_traffic_output.py +201 -0
- byteplussdkcen/models/traffic_detail_data_for_describe95_traffic_output.py +175 -0
- byteplussdkcen/models/untag_resources_request.py +183 -0
- byteplussdkcen/models/untag_resources_response.py +95 -0
- byteplussdkcen/models/withdraw_cen_route_entry_request.py +232 -0
- byteplussdkcen/models/withdraw_cen_route_entry_response.py +95 -0
- byteplussdkcore/api_client.py +1 -1
- byteplussdkcore/configuration.py +1 -1
- byteplussdkcore/endpoint/providers/default_provider.py +14 -0
- byteplussdkexamples/byteplussdkarkruntime/content_generation_tasks.py +8 -0
- byteplussdktransitrouter/__init__.py +24 -1
- byteplussdktransitrouter/api/transitrouter_api.py +983 -13
- byteplussdktransitrouter/models/__init__.py +24 -1
- byteplussdktransitrouter/models/accept_shared_transit_router_request.py +124 -0
- byteplussdktransitrouter/models/accept_shared_transit_router_response.py +95 -0
- byteplussdktransitrouter/models/accept_transit_router_peer_attachment_request.py +124 -0
- byteplussdktransitrouter/models/accept_transit_router_peer_attachment_response.py +95 -0
- byteplussdktransitrouter/models/create_transit_router_grant_rule_request.py +177 -0
- byteplussdktransitrouter/models/create_transit_router_grant_rule_response.py +95 -0
- byteplussdktransitrouter/models/create_transit_router_peer_attachment_request.py +79 -1
- byteplussdktransitrouter/models/create_transit_router_route_entry_request.py +29 -4
- byteplussdktransitrouter/models/create_transit_router_route_policy_entry_request.py +33 -1
- byteplussdktransitrouter/models/create_transit_router_traffic_qos_queue_entry_request.py +39 -4
- byteplussdktransitrouter/models/create_transit_router_vpn_attachment_request.py +27 -1
- byteplussdktransitrouter/models/delete_transit_router_grant_rule_request.py +151 -0
- byteplussdktransitrouter/models/delete_transit_router_grant_rule_response.py +95 -0
- byteplussdktransitrouter/models/describe95_traffic_request.py +185 -0
- byteplussdktransitrouter/models/describe95_traffic_response.py +123 -0
- byteplussdktransitrouter/models/describe_transit_router_attachments_request.py +3 -0
- byteplussdktransitrouter/models/describe_transit_router_grant_rules_request.py +202 -0
- byteplussdktransitrouter/models/describe_transit_router_grant_rules_response.py +201 -0
- byteplussdktransitrouter/models/describe_transit_router_multicast_domains_response.py +3 -3
- byteplussdktransitrouter/models/describe_transit_router_route_entries_request.py +3 -0
- byteplussdktransitrouter/models/describe_transit_router_route_policy_entries_request.py +3 -0
- byteplussdktransitrouter/models/describe_transit_router_traffic_qos_queue_entries_request.py +3 -0
- byteplussdktransitrouter/models/describe_transit_router_vpn_attachments_request.py +3 -0
- byteplussdktransitrouter/models/describe_transit_routers_request.py +3 -0
- byteplussdktransitrouter/models/enable_transit_router_route_table_propagation_request.py +27 -1
- byteplussdktransitrouter/models/models.py +1522 -1447
- byteplussdktransitrouter/models/modify_transit_router_attributes_request.py +34 -1
- byteplussdktransitrouter/models/modify_transit_router_grant_rule_attributes_request.py +177 -0
- byteplussdktransitrouter/models/modify_transit_router_grant_rule_attributes_response.py +95 -0
- byteplussdktransitrouter/models/modify_transit_router_peer_attachment_attributes_request.py +53 -1
- byteplussdktransitrouter/models/modify_transit_router_route_policy_entry_attributes_request.py +33 -1
- byteplussdktransitrouter/models/modify_transit_router_traffic_qos_queue_entry_attributes_request.py +208 -0
- byteplussdktransitrouter/models/modify_transit_router_traffic_qos_queue_entry_attributes_response.py +95 -0
- byteplussdktransitrouter/models/reject_shared_transit_router_request.py +124 -0
- byteplussdktransitrouter/models/reject_shared_transit_router_response.py +95 -0
- byteplussdktransitrouter/models/reject_transit_router_peer_attachment_request.py +124 -0
- byteplussdktransitrouter/models/reject_transit_router_peer_attachment_response.py +95 -0
- byteplussdktransitrouter/models/traffic_data_for_describe95_traffic_output.py +201 -0
- byteplussdktransitrouter/models/traffic_detail_data_for_describe95_traffic_output.py +175 -0
- byteplussdktransitrouter/models/transit_router_attachment_for_describe_transit_router_attachments_output.py +27 -1
- byteplussdktransitrouter/models/transit_router_attachment_for_describe_transit_router_peer_attachments_output.py +105 -1
- byteplussdktransitrouter/models/transit_router_attachment_for_describe_transit_router_vpn_attachments_output.py +27 -1
- byteplussdktransitrouter/models/transit_router_for_describe_transit_routers_output.py +27 -1
- byteplussdktransitrouter/models/transit_router_grant_rule_for_describe_transit_router_grant_rules_output.py +253 -0
- byteplussdktransitrouter/models/{transit_router_multicast_domains_for_describe_transit_router_multicast_domains_output.py → transit_router_multicast_domain_for_describe_transit_router_multicast_domains_output.py} +33 -33
- byteplussdktransitrouter/models/transit_router_route_entry_for_describe_transit_router_route_entries_output.py +53 -1
- byteplussdkvke/__init__.py +2 -0
- byteplussdkvke/api/vke_api.py +97 -0
- byteplussdkvke/models/__init__.py +2 -0
- byteplussdkvke/models/item_for_list_scaling_policies_output.py +27 -1
- byteplussdkvke/models/scale_node_pool_request.py +204 -0
- byteplussdkvke/models/scale_node_pool_response.py +95 -0
- {byteplus_python_sdk_v2-3.0.52.dist-info → byteplus_python_sdk_v2-3.0.53.dist-info}/licenses/LICENSE.txt +0 -0
- {byteplus_python_sdk_v2-3.0.52.dist-info → byteplus_python_sdk_v2-3.0.53.dist-info}/licenses/NOTICE.md +0 -0
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
cen
|
|
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 byteplussdkcore.configuration import Configuration
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class CreateCenServiceRouteEntryRequest(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
|
+
'cen_id': 'str',
|
|
37
|
+
'description': 'str',
|
|
38
|
+
'destination_cidr_block': 'str',
|
|
39
|
+
'publish_mode': 'str',
|
|
40
|
+
'publish_to_instances': 'list[PublishToInstanceForCreateCenServiceRouteEntryInput]',
|
|
41
|
+
'service_region_id': 'str',
|
|
42
|
+
'service_vpc_id': 'str'
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
attribute_map = {
|
|
46
|
+
'cen_id': 'CenId',
|
|
47
|
+
'description': 'Description',
|
|
48
|
+
'destination_cidr_block': 'DestinationCidrBlock',
|
|
49
|
+
'publish_mode': 'PublishMode',
|
|
50
|
+
'publish_to_instances': 'PublishToInstances',
|
|
51
|
+
'service_region_id': 'ServiceRegionId',
|
|
52
|
+
'service_vpc_id': 'ServiceVpcId'
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
def __init__(self, cen_id=None, description=None, destination_cidr_block=None, publish_mode=None, publish_to_instances=None, service_region_id=None, service_vpc_id=None, _configuration=None): # noqa: E501
|
|
56
|
+
"""CreateCenServiceRouteEntryRequest - a model defined in Swagger""" # noqa: E501
|
|
57
|
+
if _configuration is None:
|
|
58
|
+
_configuration = Configuration()
|
|
59
|
+
self._configuration = _configuration
|
|
60
|
+
|
|
61
|
+
self._cen_id = None
|
|
62
|
+
self._description = None
|
|
63
|
+
self._destination_cidr_block = None
|
|
64
|
+
self._publish_mode = None
|
|
65
|
+
self._publish_to_instances = None
|
|
66
|
+
self._service_region_id = None
|
|
67
|
+
self._service_vpc_id = None
|
|
68
|
+
self.discriminator = None
|
|
69
|
+
|
|
70
|
+
self.cen_id = cen_id
|
|
71
|
+
if description is not None:
|
|
72
|
+
self.description = description
|
|
73
|
+
self.destination_cidr_block = destination_cidr_block
|
|
74
|
+
if publish_mode is not None:
|
|
75
|
+
self.publish_mode = publish_mode
|
|
76
|
+
if publish_to_instances is not None:
|
|
77
|
+
self.publish_to_instances = publish_to_instances
|
|
78
|
+
self.service_region_id = service_region_id
|
|
79
|
+
self.service_vpc_id = service_vpc_id
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
def cen_id(self):
|
|
83
|
+
"""Gets the cen_id of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
:return: The cen_id of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
87
|
+
:rtype: str
|
|
88
|
+
"""
|
|
89
|
+
return self._cen_id
|
|
90
|
+
|
|
91
|
+
@cen_id.setter
|
|
92
|
+
def cen_id(self, cen_id):
|
|
93
|
+
"""Sets the cen_id of this CreateCenServiceRouteEntryRequest.
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
:param cen_id: The cen_id of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
97
|
+
:type: str
|
|
98
|
+
"""
|
|
99
|
+
if self._configuration.client_side_validation and cen_id is None:
|
|
100
|
+
raise ValueError("Invalid value for `cen_id`, must not be `None`") # noqa: E501
|
|
101
|
+
|
|
102
|
+
self._cen_id = cen_id
|
|
103
|
+
|
|
104
|
+
@property
|
|
105
|
+
def description(self):
|
|
106
|
+
"""Gets the description of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
:return: The description of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
110
|
+
:rtype: str
|
|
111
|
+
"""
|
|
112
|
+
return self._description
|
|
113
|
+
|
|
114
|
+
@description.setter
|
|
115
|
+
def description(self, description):
|
|
116
|
+
"""Sets the description of this CreateCenServiceRouteEntryRequest.
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
:param description: The description of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
120
|
+
:type: str
|
|
121
|
+
"""
|
|
122
|
+
|
|
123
|
+
self._description = description
|
|
124
|
+
|
|
125
|
+
@property
|
|
126
|
+
def destination_cidr_block(self):
|
|
127
|
+
"""Gets the destination_cidr_block of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
:return: The destination_cidr_block of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
131
|
+
:rtype: str
|
|
132
|
+
"""
|
|
133
|
+
return self._destination_cidr_block
|
|
134
|
+
|
|
135
|
+
@destination_cidr_block.setter
|
|
136
|
+
def destination_cidr_block(self, destination_cidr_block):
|
|
137
|
+
"""Sets the destination_cidr_block of this CreateCenServiceRouteEntryRequest.
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
:param destination_cidr_block: The destination_cidr_block of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
141
|
+
:type: str
|
|
142
|
+
"""
|
|
143
|
+
if self._configuration.client_side_validation and destination_cidr_block is None:
|
|
144
|
+
raise ValueError("Invalid value for `destination_cidr_block`, must not be `None`") # noqa: E501
|
|
145
|
+
|
|
146
|
+
self._destination_cidr_block = destination_cidr_block
|
|
147
|
+
|
|
148
|
+
@property
|
|
149
|
+
def publish_mode(self):
|
|
150
|
+
"""Gets the publish_mode of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
:return: The publish_mode of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
154
|
+
:rtype: str
|
|
155
|
+
"""
|
|
156
|
+
return self._publish_mode
|
|
157
|
+
|
|
158
|
+
@publish_mode.setter
|
|
159
|
+
def publish_mode(self, publish_mode):
|
|
160
|
+
"""Sets the publish_mode of this CreateCenServiceRouteEntryRequest.
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
:param publish_mode: The publish_mode of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
164
|
+
:type: str
|
|
165
|
+
"""
|
|
166
|
+
|
|
167
|
+
self._publish_mode = publish_mode
|
|
168
|
+
|
|
169
|
+
@property
|
|
170
|
+
def publish_to_instances(self):
|
|
171
|
+
"""Gets the publish_to_instances of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
:return: The publish_to_instances of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
175
|
+
:rtype: list[PublishToInstanceForCreateCenServiceRouteEntryInput]
|
|
176
|
+
"""
|
|
177
|
+
return self._publish_to_instances
|
|
178
|
+
|
|
179
|
+
@publish_to_instances.setter
|
|
180
|
+
def publish_to_instances(self, publish_to_instances):
|
|
181
|
+
"""Sets the publish_to_instances of this CreateCenServiceRouteEntryRequest.
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
:param publish_to_instances: The publish_to_instances of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
185
|
+
:type: list[PublishToInstanceForCreateCenServiceRouteEntryInput]
|
|
186
|
+
"""
|
|
187
|
+
|
|
188
|
+
self._publish_to_instances = publish_to_instances
|
|
189
|
+
|
|
190
|
+
@property
|
|
191
|
+
def service_region_id(self):
|
|
192
|
+
"""Gets the service_region_id of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
:return: The service_region_id of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
196
|
+
:rtype: str
|
|
197
|
+
"""
|
|
198
|
+
return self._service_region_id
|
|
199
|
+
|
|
200
|
+
@service_region_id.setter
|
|
201
|
+
def service_region_id(self, service_region_id):
|
|
202
|
+
"""Sets the service_region_id of this CreateCenServiceRouteEntryRequest.
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
:param service_region_id: The service_region_id of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
206
|
+
:type: str
|
|
207
|
+
"""
|
|
208
|
+
if self._configuration.client_side_validation and service_region_id is None:
|
|
209
|
+
raise ValueError("Invalid value for `service_region_id`, must not be `None`") # noqa: E501
|
|
210
|
+
|
|
211
|
+
self._service_region_id = service_region_id
|
|
212
|
+
|
|
213
|
+
@property
|
|
214
|
+
def service_vpc_id(self):
|
|
215
|
+
"""Gets the service_vpc_id of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
:return: The service_vpc_id of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
219
|
+
:rtype: str
|
|
220
|
+
"""
|
|
221
|
+
return self._service_vpc_id
|
|
222
|
+
|
|
223
|
+
@service_vpc_id.setter
|
|
224
|
+
def service_vpc_id(self, service_vpc_id):
|
|
225
|
+
"""Sets the service_vpc_id of this CreateCenServiceRouteEntryRequest.
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
:param service_vpc_id: The service_vpc_id of this CreateCenServiceRouteEntryRequest. # noqa: E501
|
|
229
|
+
:type: str
|
|
230
|
+
"""
|
|
231
|
+
if self._configuration.client_side_validation and service_vpc_id is None:
|
|
232
|
+
raise ValueError("Invalid value for `service_vpc_id`, must not be `None`") # noqa: E501
|
|
233
|
+
|
|
234
|
+
self._service_vpc_id = service_vpc_id
|
|
235
|
+
|
|
236
|
+
def to_dict(self):
|
|
237
|
+
"""Returns the model properties as a dict"""
|
|
238
|
+
result = {}
|
|
239
|
+
|
|
240
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
241
|
+
value = getattr(self, attr)
|
|
242
|
+
if isinstance(value, list):
|
|
243
|
+
result[attr] = list(map(
|
|
244
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
245
|
+
value
|
|
246
|
+
))
|
|
247
|
+
elif hasattr(value, "to_dict"):
|
|
248
|
+
result[attr] = value.to_dict()
|
|
249
|
+
elif isinstance(value, dict):
|
|
250
|
+
result[attr] = dict(map(
|
|
251
|
+
lambda item: (item[0], item[1].to_dict())
|
|
252
|
+
if hasattr(item[1], "to_dict") else item,
|
|
253
|
+
value.items()
|
|
254
|
+
))
|
|
255
|
+
else:
|
|
256
|
+
result[attr] = value
|
|
257
|
+
if issubclass(CreateCenServiceRouteEntryRequest, dict):
|
|
258
|
+
for key, value in self.items():
|
|
259
|
+
result[key] = value
|
|
260
|
+
|
|
261
|
+
return result
|
|
262
|
+
|
|
263
|
+
def to_str(self):
|
|
264
|
+
"""Returns the string representation of the model"""
|
|
265
|
+
return pprint.pformat(self.to_dict())
|
|
266
|
+
|
|
267
|
+
def __repr__(self):
|
|
268
|
+
"""For `print` and `pprint`"""
|
|
269
|
+
return self.to_str()
|
|
270
|
+
|
|
271
|
+
def __eq__(self, other):
|
|
272
|
+
"""Returns true if both objects are equal"""
|
|
273
|
+
if not isinstance(other, CreateCenServiceRouteEntryRequest):
|
|
274
|
+
return False
|
|
275
|
+
|
|
276
|
+
return self.to_dict() == other.to_dict()
|
|
277
|
+
|
|
278
|
+
def __ne__(self, other):
|
|
279
|
+
"""Returns true if both objects are not equal"""
|
|
280
|
+
if not isinstance(other, CreateCenServiceRouteEntryRequest):
|
|
281
|
+
return True
|
|
282
|
+
|
|
283
|
+
return self.to_dict() != other.to_dict()
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
cen
|
|
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 byteplussdkcore.configuration import Configuration
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class CreateCenServiceRouteEntryResponse(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
|
+
"""CreateCenServiceRouteEntryResponse - 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(CreateCenServiceRouteEntryResponse, 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, CreateCenServiceRouteEntryResponse):
|
|
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, CreateCenServiceRouteEntryResponse):
|
|
93
|
+
return True
|
|
94
|
+
|
|
95
|
+
return self.to_dict() != other.to_dict()
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
cen
|
|
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 byteplussdkcore.configuration import Configuration
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class CreateCenSummaryRouteEntryRequest(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
|
+
'cen_id': 'str',
|
|
37
|
+
'description': 'str',
|
|
38
|
+
'destination_cidr_block': 'str'
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
attribute_map = {
|
|
42
|
+
'cen_id': 'CenId',
|
|
43
|
+
'description': 'Description',
|
|
44
|
+
'destination_cidr_block': 'DestinationCidrBlock'
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
def __init__(self, cen_id=None, description=None, destination_cidr_block=None, _configuration=None): # noqa: E501
|
|
48
|
+
"""CreateCenSummaryRouteEntryRequest - a model defined in Swagger""" # noqa: E501
|
|
49
|
+
if _configuration is None:
|
|
50
|
+
_configuration = Configuration()
|
|
51
|
+
self._configuration = _configuration
|
|
52
|
+
|
|
53
|
+
self._cen_id = None
|
|
54
|
+
self._description = None
|
|
55
|
+
self._destination_cidr_block = None
|
|
56
|
+
self.discriminator = None
|
|
57
|
+
|
|
58
|
+
self.cen_id = cen_id
|
|
59
|
+
if description is not None:
|
|
60
|
+
self.description = description
|
|
61
|
+
self.destination_cidr_block = destination_cidr_block
|
|
62
|
+
|
|
63
|
+
@property
|
|
64
|
+
def cen_id(self):
|
|
65
|
+
"""Gets the cen_id of this CreateCenSummaryRouteEntryRequest. # noqa: E501
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
:return: The cen_id of this CreateCenSummaryRouteEntryRequest. # noqa: E501
|
|
69
|
+
:rtype: str
|
|
70
|
+
"""
|
|
71
|
+
return self._cen_id
|
|
72
|
+
|
|
73
|
+
@cen_id.setter
|
|
74
|
+
def cen_id(self, cen_id):
|
|
75
|
+
"""Sets the cen_id of this CreateCenSummaryRouteEntryRequest.
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
:param cen_id: The cen_id of this CreateCenSummaryRouteEntryRequest. # noqa: E501
|
|
79
|
+
:type: str
|
|
80
|
+
"""
|
|
81
|
+
if self._configuration.client_side_validation and cen_id is None:
|
|
82
|
+
raise ValueError("Invalid value for `cen_id`, must not be `None`") # noqa: E501
|
|
83
|
+
|
|
84
|
+
self._cen_id = cen_id
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
def description(self):
|
|
88
|
+
"""Gets the description of this CreateCenSummaryRouteEntryRequest. # noqa: E501
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
:return: The description of this CreateCenSummaryRouteEntryRequest. # noqa: E501
|
|
92
|
+
:rtype: str
|
|
93
|
+
"""
|
|
94
|
+
return self._description
|
|
95
|
+
|
|
96
|
+
@description.setter
|
|
97
|
+
def description(self, description):
|
|
98
|
+
"""Sets the description of this CreateCenSummaryRouteEntryRequest.
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
:param description: The description of this CreateCenSummaryRouteEntryRequest. # noqa: E501
|
|
102
|
+
:type: str
|
|
103
|
+
"""
|
|
104
|
+
|
|
105
|
+
self._description = description
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
def destination_cidr_block(self):
|
|
109
|
+
"""Gets the destination_cidr_block of this CreateCenSummaryRouteEntryRequest. # noqa: E501
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
:return: The destination_cidr_block of this CreateCenSummaryRouteEntryRequest. # noqa: E501
|
|
113
|
+
:rtype: str
|
|
114
|
+
"""
|
|
115
|
+
return self._destination_cidr_block
|
|
116
|
+
|
|
117
|
+
@destination_cidr_block.setter
|
|
118
|
+
def destination_cidr_block(self, destination_cidr_block):
|
|
119
|
+
"""Sets the destination_cidr_block of this CreateCenSummaryRouteEntryRequest.
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
:param destination_cidr_block: The destination_cidr_block of this CreateCenSummaryRouteEntryRequest. # noqa: E501
|
|
123
|
+
:type: str
|
|
124
|
+
"""
|
|
125
|
+
if self._configuration.client_side_validation and destination_cidr_block is None:
|
|
126
|
+
raise ValueError("Invalid value for `destination_cidr_block`, must not be `None`") # noqa: E501
|
|
127
|
+
|
|
128
|
+
self._destination_cidr_block = destination_cidr_block
|
|
129
|
+
|
|
130
|
+
def to_dict(self):
|
|
131
|
+
"""Returns the model properties as a dict"""
|
|
132
|
+
result = {}
|
|
133
|
+
|
|
134
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
135
|
+
value = getattr(self, attr)
|
|
136
|
+
if isinstance(value, list):
|
|
137
|
+
result[attr] = list(map(
|
|
138
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
139
|
+
value
|
|
140
|
+
))
|
|
141
|
+
elif hasattr(value, "to_dict"):
|
|
142
|
+
result[attr] = value.to_dict()
|
|
143
|
+
elif isinstance(value, dict):
|
|
144
|
+
result[attr] = dict(map(
|
|
145
|
+
lambda item: (item[0], item[1].to_dict())
|
|
146
|
+
if hasattr(item[1], "to_dict") else item,
|
|
147
|
+
value.items()
|
|
148
|
+
))
|
|
149
|
+
else:
|
|
150
|
+
result[attr] = value
|
|
151
|
+
if issubclass(CreateCenSummaryRouteEntryRequest, dict):
|
|
152
|
+
for key, value in self.items():
|
|
153
|
+
result[key] = value
|
|
154
|
+
|
|
155
|
+
return result
|
|
156
|
+
|
|
157
|
+
def to_str(self):
|
|
158
|
+
"""Returns the string representation of the model"""
|
|
159
|
+
return pprint.pformat(self.to_dict())
|
|
160
|
+
|
|
161
|
+
def __repr__(self):
|
|
162
|
+
"""For `print` and `pprint`"""
|
|
163
|
+
return self.to_str()
|
|
164
|
+
|
|
165
|
+
def __eq__(self, other):
|
|
166
|
+
"""Returns true if both objects are equal"""
|
|
167
|
+
if not isinstance(other, CreateCenSummaryRouteEntryRequest):
|
|
168
|
+
return False
|
|
169
|
+
|
|
170
|
+
return self.to_dict() == other.to_dict()
|
|
171
|
+
|
|
172
|
+
def __ne__(self, other):
|
|
173
|
+
"""Returns true if both objects are not equal"""
|
|
174
|
+
if not isinstance(other, CreateCenSummaryRouteEntryRequest):
|
|
175
|
+
return True
|
|
176
|
+
|
|
177
|
+
return self.to_dict() != other.to_dict()
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
cen
|
|
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 byteplussdkcore.configuration import Configuration
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class CreateCenSummaryRouteEntryResponse(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
|
+
"""CreateCenSummaryRouteEntryResponse - 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(CreateCenSummaryRouteEntryResponse, 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, CreateCenSummaryRouteEntryResponse):
|
|
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, CreateCenSummaryRouteEntryResponse):
|
|
93
|
+
return True
|
|
94
|
+
|
|
95
|
+
return self.to_dict() != other.to_dict()
|