huaweicloudsdkrocketmq 3.1.150__py2.py3-none-any.whl → 3.1.151__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.
- huaweicloudsdkrocketmq/v2/model/create_post_paid_instance_req.py +90 -3
- {huaweicloudsdkrocketmq-3.1.150.dist-info → huaweicloudsdkrocketmq-3.1.151.dist-info}/METADATA +2 -2
- {huaweicloudsdkrocketmq-3.1.150.dist-info → huaweicloudsdkrocketmq-3.1.151.dist-info}/RECORD +6 -6
- {huaweicloudsdkrocketmq-3.1.150.dist-info → huaweicloudsdkrocketmq-3.1.151.dist-info}/LICENSE +0 -0
- {huaweicloudsdkrocketmq-3.1.150.dist-info → huaweicloudsdkrocketmq-3.1.151.dist-info}/WHEEL +0 -0
- {huaweicloudsdkrocketmq-3.1.150.dist-info → huaweicloudsdkrocketmq-3.1.151.dist-info}/top_level.txt +0 -0
@@ -32,9 +32,12 @@ class CreatePostPaidInstanceReq:
|
|
32
32
|
'enterprise_project_id': 'str',
|
33
33
|
'enable_acl': 'bool',
|
34
34
|
'ipv6_enable': 'bool',
|
35
|
+
'proxy_enable': 'bool',
|
35
36
|
'enable_publicip': 'bool',
|
36
37
|
'publicip_id': 'str',
|
37
|
-
'broker_num': 'int'
|
38
|
+
'broker_num': 'int',
|
39
|
+
'arch_type': 'str',
|
40
|
+
'tls_mode': 'str'
|
38
41
|
}
|
39
42
|
|
40
43
|
attribute_map = {
|
@@ -53,12 +56,15 @@ class CreatePostPaidInstanceReq:
|
|
53
56
|
'enterprise_project_id': 'enterprise_project_id',
|
54
57
|
'enable_acl': 'enable_acl',
|
55
58
|
'ipv6_enable': 'ipv6_enable',
|
59
|
+
'proxy_enable': 'proxy_enable',
|
56
60
|
'enable_publicip': 'enable_publicip',
|
57
61
|
'publicip_id': 'publicip_id',
|
58
|
-
'broker_num': 'broker_num'
|
62
|
+
'broker_num': 'broker_num',
|
63
|
+
'arch_type': 'arch_type',
|
64
|
+
'tls_mode': 'tls_mode'
|
59
65
|
}
|
60
66
|
|
61
|
-
def __init__(self, name=None, description=None, engine=None, engine_version=None, storage_space=None, vpc_id=None, subnet_id=None, security_group_id=None, available_zones=None, product_id=None, ssl_enable=None, storage_spec_code=None, enterprise_project_id=None, enable_acl=None, ipv6_enable=None, enable_publicip=None, publicip_id=None, broker_num=None):
|
67
|
+
def __init__(self, name=None, description=None, engine=None, engine_version=None, storage_space=None, vpc_id=None, subnet_id=None, security_group_id=None, available_zones=None, product_id=None, ssl_enable=None, storage_spec_code=None, enterprise_project_id=None, enable_acl=None, ipv6_enable=None, proxy_enable=None, enable_publicip=None, publicip_id=None, broker_num=None, arch_type=None, tls_mode=None):
|
62
68
|
r"""CreatePostPaidInstanceReq
|
63
69
|
|
64
70
|
The model defined in huaweicloud sdk
|
@@ -93,12 +99,18 @@ class CreatePostPaidInstanceReq:
|
|
93
99
|
:type enable_acl: bool
|
94
100
|
:param ipv6_enable: 是否支持IPv6。 - true:支持 - false:不支持
|
95
101
|
:type ipv6_enable: bool
|
102
|
+
:param proxy_enable: 是否开启Proxy功能。 - true:支持 - false:不支持
|
103
|
+
:type proxy_enable: bool
|
96
104
|
:param enable_publicip: 是否开启公网访问功能。默认不开启公网。 - true:开启 - false:不开启
|
97
105
|
:type enable_publicip: bool
|
98
106
|
:param publicip_id: 实例绑定的弹性IP地址的ID。 以英文逗号隔开多个弹性IP地址的ID。 如果开启了公网访问功能(即enable_publicip为true),该字段为必选。
|
99
107
|
:type publicip_id: str
|
100
108
|
:param broker_num: 代理个数。
|
101
109
|
:type broker_num: int
|
110
|
+
:param arch_type: 架构类型。
|
111
|
+
:type arch_type: str
|
112
|
+
:param tls_mode: 实例使用的安全协议。
|
113
|
+
:type tls_mode: str
|
102
114
|
"""
|
103
115
|
|
104
116
|
|
@@ -118,9 +130,12 @@ class CreatePostPaidInstanceReq:
|
|
118
130
|
self._enterprise_project_id = None
|
119
131
|
self._enable_acl = None
|
120
132
|
self._ipv6_enable = None
|
133
|
+
self._proxy_enable = None
|
121
134
|
self._enable_publicip = None
|
122
135
|
self._publicip_id = None
|
123
136
|
self._broker_num = None
|
137
|
+
self._arch_type = None
|
138
|
+
self._tls_mode = None
|
124
139
|
self.discriminator = None
|
125
140
|
|
126
141
|
self.name = name
|
@@ -143,11 +158,17 @@ class CreatePostPaidInstanceReq:
|
|
143
158
|
self.enable_acl = enable_acl
|
144
159
|
if ipv6_enable is not None:
|
145
160
|
self.ipv6_enable = ipv6_enable
|
161
|
+
if proxy_enable is not None:
|
162
|
+
self.proxy_enable = proxy_enable
|
146
163
|
if enable_publicip is not None:
|
147
164
|
self.enable_publicip = enable_publicip
|
148
165
|
if publicip_id is not None:
|
149
166
|
self.publicip_id = publicip_id
|
150
167
|
self.broker_num = broker_num
|
168
|
+
if arch_type is not None:
|
169
|
+
self.arch_type = arch_type
|
170
|
+
if tls_mode is not None:
|
171
|
+
self.tls_mode = tls_mode
|
151
172
|
|
152
173
|
@property
|
153
174
|
def name(self):
|
@@ -479,6 +500,28 @@ class CreatePostPaidInstanceReq:
|
|
479
500
|
"""
|
480
501
|
self._ipv6_enable = ipv6_enable
|
481
502
|
|
503
|
+
@property
|
504
|
+
def proxy_enable(self):
|
505
|
+
r"""Gets the proxy_enable of this CreatePostPaidInstanceReq.
|
506
|
+
|
507
|
+
是否开启Proxy功能。 - true:支持 - false:不支持
|
508
|
+
|
509
|
+
:return: The proxy_enable of this CreatePostPaidInstanceReq.
|
510
|
+
:rtype: bool
|
511
|
+
"""
|
512
|
+
return self._proxy_enable
|
513
|
+
|
514
|
+
@proxy_enable.setter
|
515
|
+
def proxy_enable(self, proxy_enable):
|
516
|
+
r"""Sets the proxy_enable of this CreatePostPaidInstanceReq.
|
517
|
+
|
518
|
+
是否开启Proxy功能。 - true:支持 - false:不支持
|
519
|
+
|
520
|
+
:param proxy_enable: The proxy_enable of this CreatePostPaidInstanceReq.
|
521
|
+
:type proxy_enable: bool
|
522
|
+
"""
|
523
|
+
self._proxy_enable = proxy_enable
|
524
|
+
|
482
525
|
@property
|
483
526
|
def enable_publicip(self):
|
484
527
|
r"""Gets the enable_publicip of this CreatePostPaidInstanceReq.
|
@@ -545,6 +588,50 @@ class CreatePostPaidInstanceReq:
|
|
545
588
|
"""
|
546
589
|
self._broker_num = broker_num
|
547
590
|
|
591
|
+
@property
|
592
|
+
def arch_type(self):
|
593
|
+
r"""Gets the arch_type of this CreatePostPaidInstanceReq.
|
594
|
+
|
595
|
+
架构类型。
|
596
|
+
|
597
|
+
:return: The arch_type of this CreatePostPaidInstanceReq.
|
598
|
+
:rtype: str
|
599
|
+
"""
|
600
|
+
return self._arch_type
|
601
|
+
|
602
|
+
@arch_type.setter
|
603
|
+
def arch_type(self, arch_type):
|
604
|
+
r"""Sets the arch_type of this CreatePostPaidInstanceReq.
|
605
|
+
|
606
|
+
架构类型。
|
607
|
+
|
608
|
+
:param arch_type: The arch_type of this CreatePostPaidInstanceReq.
|
609
|
+
:type arch_type: str
|
610
|
+
"""
|
611
|
+
self._arch_type = arch_type
|
612
|
+
|
613
|
+
@property
|
614
|
+
def tls_mode(self):
|
615
|
+
r"""Gets the tls_mode of this CreatePostPaidInstanceReq.
|
616
|
+
|
617
|
+
实例使用的安全协议。
|
618
|
+
|
619
|
+
:return: The tls_mode of this CreatePostPaidInstanceReq.
|
620
|
+
:rtype: str
|
621
|
+
"""
|
622
|
+
return self._tls_mode
|
623
|
+
|
624
|
+
@tls_mode.setter
|
625
|
+
def tls_mode(self, tls_mode):
|
626
|
+
r"""Sets the tls_mode of this CreatePostPaidInstanceReq.
|
627
|
+
|
628
|
+
实例使用的安全协议。
|
629
|
+
|
630
|
+
:param tls_mode: The tls_mode of this CreatePostPaidInstanceReq.
|
631
|
+
:type tls_mode: str
|
632
|
+
"""
|
633
|
+
self._tls_mode = tls_mode
|
634
|
+
|
548
635
|
def to_dict(self):
|
549
636
|
"""Returns the model properties as a dict"""
|
550
637
|
result = {}
|
{huaweicloudsdkrocketmq-3.1.150.dist-info → huaweicloudsdkrocketmq-3.1.151.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkrocketmq
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.151
|
4
4
|
Summary: RocketMQ
|
5
5
|
Home-page: https://github.com/huaweicloud/huaweicloud-sdk-python-v3
|
6
6
|
Author: HuaweiCloud SDK
|
@@ -22,6 +22,6 @@ Classifier: Topic :: Software Development
|
|
22
22
|
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
License-File: LICENSE
|
25
|
-
Requires-Dist: huaweicloudsdkcore>=3.1.
|
25
|
+
Requires-Dist: huaweicloudsdkcore>=3.1.151
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
{huaweicloudsdkrocketmq-3.1.150.dist-info → huaweicloudsdkrocketmq-3.1.151.dist-info}/RECORD
RENAMED
@@ -32,7 +32,7 @@ huaweicloudsdkrocketmq/v2/model/create_instance_by_engine_req.py,sha256=UxmdFpVe
|
|
32
32
|
huaweicloudsdkrocketmq/v2/model/create_instance_by_engine_request.py,sha256=X0yAnFBLN_QOs3rkYFoSDW_mONsjNL0uztOOhF7HGMs,3962
|
33
33
|
huaweicloudsdkrocketmq/v2/model/create_instance_by_engine_response.py,sha256=Rsv7hB-AJ9MVZbK_Nhqt7OGu4S-xM6DU2hNYaJ4qmgE,3343
|
34
34
|
huaweicloudsdkrocketmq/v2/model/create_or_update_consumer_group.py,sha256=vQoEM5VQCcoPuZaMxqyKELx_CIpy6uHkrOeh8xkZju4,9105
|
35
|
-
huaweicloudsdkrocketmq/v2/model/create_post_paid_instance_req.py,sha256=
|
35
|
+
huaweicloudsdkrocketmq/v2/model/create_post_paid_instance_req.py,sha256=YyyDaltunFKbdrw8GES61c2rrJVVcJ0Yxufc46u1bww,30648
|
36
36
|
huaweicloudsdkrocketmq/v2/model/create_post_paid_instance_request.py,sha256=XwTzQLbtewkIR7LxAJa3U-h6gWR5Ydr3T5p85h5Lzl4,3233
|
37
37
|
huaweicloudsdkrocketmq/v2/model/create_post_paid_instance_response.py,sha256=ukVPThv6hH6R2lEGHzt-XCCPJx8mIb5pBd0P7uMuJBI,3343
|
38
38
|
huaweicloudsdkrocketmq/v2/model/create_rocket_mq_migration_task_req.py,sha256=a0faHCh4VzNWsA1y4fB83RyO1T6L760nf1ktggrZYi4,10755
|
@@ -178,8 +178,8 @@ huaweicloudsdkrocketmq/v2/model/validate_consumed_message_request.py,sha256=5uFH
|
|
178
178
|
huaweicloudsdkrocketmq/v2/model/validate_consumed_message_response.py,sha256=OZGb6ATbf5BMDRuRXdyfVQ9sxEqjvHDATCoSXng-ww0,3699
|
179
179
|
huaweicloudsdkrocketmq/v2/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
180
180
|
huaweicloudsdkrocketmq/v2/region/rocketmq_region.py,sha256=hbsLPzQiNXEFaAtfMIPmXPZ4BMfrVkFc6timNZHZe4M,5175
|
181
|
-
huaweicloudsdkrocketmq-3.1.
|
182
|
-
huaweicloudsdkrocketmq-3.1.
|
183
|
-
huaweicloudsdkrocketmq-3.1.
|
184
|
-
huaweicloudsdkrocketmq-3.1.
|
185
|
-
huaweicloudsdkrocketmq-3.1.
|
181
|
+
huaweicloudsdkrocketmq-3.1.151.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
182
|
+
huaweicloudsdkrocketmq-3.1.151.dist-info/METADATA,sha256=rS2DJAaHMoMxpLy_c3pazjzKFqWEcjM9Ub2d9UcSESA,1150
|
183
|
+
huaweicloudsdkrocketmq-3.1.151.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
|
184
|
+
huaweicloudsdkrocketmq-3.1.151.dist-info/top_level.txt,sha256=eCwsKgy2VRwJ1iDx8iFpYijz9dNun4HRSYfo1QXPEAU,23
|
185
|
+
huaweicloudsdkrocketmq-3.1.151.dist-info/RECORD,,
|
{huaweicloudsdkrocketmq-3.1.150.dist-info → huaweicloudsdkrocketmq-3.1.151.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|
{huaweicloudsdkrocketmq-3.1.150.dist-info → huaweicloudsdkrocketmq-3.1.151.dist-info}/top_level.txt
RENAMED
File without changes
|