huaweicloudsdkdcs 3.1.91__py2.py3-none-any.whl → 3.1.93__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 huaweicloudsdkdcs might be problematic. Click here for more details.
- huaweicloudsdkdcs/v2/model/details_body.py +549 -27
- huaweicloudsdkdcs/v2/model/migration_task_list.py +366 -18
- huaweicloudsdkdcs/v2/model/show_migration_task_response.py +264 -3
- huaweicloudsdkdcs/v2/model/source_instance_body.py +206 -3
- huaweicloudsdkdcs/v2/model/stop_migration_task_response.py +264 -3
- huaweicloudsdkdcs/v2/model/target_instance_body.py +148 -3
- {huaweicloudsdkdcs-3.1.91.dist-info → huaweicloudsdkdcs-3.1.93.dist-info}/METADATA +2 -2
- {huaweicloudsdkdcs-3.1.91.dist-info → huaweicloudsdkdcs-3.1.93.dist-info}/RECORD +11 -11
- {huaweicloudsdkdcs-3.1.91.dist-info → huaweicloudsdkdcs-3.1.93.dist-info}/LICENSE +0 -0
- {huaweicloudsdkdcs-3.1.91.dist-info → huaweicloudsdkdcs-3.1.93.dist-info}/WHEEL +0 -0
- {huaweicloudsdkdcs-3.1.91.dist-info → huaweicloudsdkdcs-3.1.93.dist-info}/top_level.txt +0 -0
|
@@ -30,7 +30,16 @@ class StopMigrationTaskResponse(SdkResponse):
|
|
|
30
30
|
'source_instance': 'SourceInstanceBody',
|
|
31
31
|
'target_instance': 'TargetInstanceBody',
|
|
32
32
|
'created_at': 'str',
|
|
33
|
-
'updated_at': 'str'
|
|
33
|
+
'updated_at': 'str',
|
|
34
|
+
'released_at': 'str',
|
|
35
|
+
'version': 'str',
|
|
36
|
+
'resume_mode': 'str',
|
|
37
|
+
'supported_features': 'list[str]',
|
|
38
|
+
'tenant_vpc_id': 'str',
|
|
39
|
+
'tenant_subnet_id': 'str',
|
|
40
|
+
'tenant_security_group_id': 'str',
|
|
41
|
+
'bandwidth_limit_mb': 'str',
|
|
42
|
+
'task_status': 'str'
|
|
34
43
|
}
|
|
35
44
|
|
|
36
45
|
attribute_map = {
|
|
@@ -46,10 +55,19 @@ class StopMigrationTaskResponse(SdkResponse):
|
|
|
46
55
|
'source_instance': 'source_instance',
|
|
47
56
|
'target_instance': 'target_instance',
|
|
48
57
|
'created_at': 'created_at',
|
|
49
|
-
'updated_at': 'updated_at'
|
|
58
|
+
'updated_at': 'updated_at',
|
|
59
|
+
'released_at': 'released_at',
|
|
60
|
+
'version': 'version',
|
|
61
|
+
'resume_mode': 'resume_mode',
|
|
62
|
+
'supported_features': 'supported_features',
|
|
63
|
+
'tenant_vpc_id': 'tenant_vpc_id',
|
|
64
|
+
'tenant_subnet_id': 'tenant_subnet_id',
|
|
65
|
+
'tenant_security_group_id': 'tenant_security_group_id',
|
|
66
|
+
'bandwidth_limit_mb': 'bandwidth_limit_mb',
|
|
67
|
+
'task_status': 'task_status'
|
|
50
68
|
}
|
|
51
69
|
|
|
52
|
-
def __init__(self, task_id=None, task_name=None, description=None, status=None, migration_type=None, migration_method=None, ecs_tenant_private_ip=None, backup_files=None, network_type=None, source_instance=None, target_instance=None, created_at=None, updated_at=None):
|
|
70
|
+
def __init__(self, task_id=None, task_name=None, description=None, status=None, migration_type=None, migration_method=None, ecs_tenant_private_ip=None, backup_files=None, network_type=None, source_instance=None, target_instance=None, created_at=None, updated_at=None, released_at=None, version=None, resume_mode=None, supported_features=None, tenant_vpc_id=None, tenant_subnet_id=None, tenant_security_group_id=None, bandwidth_limit_mb=None, task_status=None):
|
|
53
71
|
"""StopMigrationTaskResponse
|
|
54
72
|
|
|
55
73
|
The model defined in huaweicloud sdk
|
|
@@ -80,6 +98,24 @@ class StopMigrationTaskResponse(SdkResponse):
|
|
|
80
98
|
:type created_at: str
|
|
81
99
|
:param updated_at: 迁移任务完成时间。
|
|
82
100
|
:type updated_at: str
|
|
101
|
+
:param released_at: 迁移机释放时间。
|
|
102
|
+
:type released_at: str
|
|
103
|
+
:param version: 版本。
|
|
104
|
+
:type version: str
|
|
105
|
+
:param resume_mode: 操作模式,分为auto和manual。
|
|
106
|
+
:type resume_mode: str
|
|
107
|
+
:param supported_features: 支持的特性。
|
|
108
|
+
:type supported_features: list[str]
|
|
109
|
+
:param tenant_vpc_id: 租户VPC ID。
|
|
110
|
+
:type tenant_vpc_id: str
|
|
111
|
+
:param tenant_subnet_id: 租户子网ID。
|
|
112
|
+
:type tenant_subnet_id: str
|
|
113
|
+
:param tenant_security_group_id: 租户安全组ID。
|
|
114
|
+
:type tenant_security_group_id: str
|
|
115
|
+
:param bandwidth_limit_mb: 带宽限制速度。
|
|
116
|
+
:type bandwidth_limit_mb: str
|
|
117
|
+
:param task_status: 任务状态。
|
|
118
|
+
:type task_status: str
|
|
83
119
|
"""
|
|
84
120
|
|
|
85
121
|
super(StopMigrationTaskResponse, self).__init__()
|
|
@@ -97,6 +133,15 @@ class StopMigrationTaskResponse(SdkResponse):
|
|
|
97
133
|
self._target_instance = None
|
|
98
134
|
self._created_at = None
|
|
99
135
|
self._updated_at = None
|
|
136
|
+
self._released_at = None
|
|
137
|
+
self._version = None
|
|
138
|
+
self._resume_mode = None
|
|
139
|
+
self._supported_features = None
|
|
140
|
+
self._tenant_vpc_id = None
|
|
141
|
+
self._tenant_subnet_id = None
|
|
142
|
+
self._tenant_security_group_id = None
|
|
143
|
+
self._bandwidth_limit_mb = None
|
|
144
|
+
self._task_status = None
|
|
100
145
|
self.discriminator = None
|
|
101
146
|
|
|
102
147
|
if task_id is not None:
|
|
@@ -125,6 +170,24 @@ class StopMigrationTaskResponse(SdkResponse):
|
|
|
125
170
|
self.created_at = created_at
|
|
126
171
|
if updated_at is not None:
|
|
127
172
|
self.updated_at = updated_at
|
|
173
|
+
if released_at is not None:
|
|
174
|
+
self.released_at = released_at
|
|
175
|
+
if version is not None:
|
|
176
|
+
self.version = version
|
|
177
|
+
if resume_mode is not None:
|
|
178
|
+
self.resume_mode = resume_mode
|
|
179
|
+
if supported_features is not None:
|
|
180
|
+
self.supported_features = supported_features
|
|
181
|
+
if tenant_vpc_id is not None:
|
|
182
|
+
self.tenant_vpc_id = tenant_vpc_id
|
|
183
|
+
if tenant_subnet_id is not None:
|
|
184
|
+
self.tenant_subnet_id = tenant_subnet_id
|
|
185
|
+
if tenant_security_group_id is not None:
|
|
186
|
+
self.tenant_security_group_id = tenant_security_group_id
|
|
187
|
+
if bandwidth_limit_mb is not None:
|
|
188
|
+
self.bandwidth_limit_mb = bandwidth_limit_mb
|
|
189
|
+
if task_status is not None:
|
|
190
|
+
self.task_status = task_status
|
|
128
191
|
|
|
129
192
|
@property
|
|
130
193
|
def task_id(self):
|
|
@@ -400,6 +463,204 @@ class StopMigrationTaskResponse(SdkResponse):
|
|
|
400
463
|
"""
|
|
401
464
|
self._updated_at = updated_at
|
|
402
465
|
|
|
466
|
+
@property
|
|
467
|
+
def released_at(self):
|
|
468
|
+
"""Gets the released_at of this StopMigrationTaskResponse.
|
|
469
|
+
|
|
470
|
+
迁移机释放时间。
|
|
471
|
+
|
|
472
|
+
:return: The released_at of this StopMigrationTaskResponse.
|
|
473
|
+
:rtype: str
|
|
474
|
+
"""
|
|
475
|
+
return self._released_at
|
|
476
|
+
|
|
477
|
+
@released_at.setter
|
|
478
|
+
def released_at(self, released_at):
|
|
479
|
+
"""Sets the released_at of this StopMigrationTaskResponse.
|
|
480
|
+
|
|
481
|
+
迁移机释放时间。
|
|
482
|
+
|
|
483
|
+
:param released_at: The released_at of this StopMigrationTaskResponse.
|
|
484
|
+
:type released_at: str
|
|
485
|
+
"""
|
|
486
|
+
self._released_at = released_at
|
|
487
|
+
|
|
488
|
+
@property
|
|
489
|
+
def version(self):
|
|
490
|
+
"""Gets the version of this StopMigrationTaskResponse.
|
|
491
|
+
|
|
492
|
+
版本。
|
|
493
|
+
|
|
494
|
+
:return: The version of this StopMigrationTaskResponse.
|
|
495
|
+
:rtype: str
|
|
496
|
+
"""
|
|
497
|
+
return self._version
|
|
498
|
+
|
|
499
|
+
@version.setter
|
|
500
|
+
def version(self, version):
|
|
501
|
+
"""Sets the version of this StopMigrationTaskResponse.
|
|
502
|
+
|
|
503
|
+
版本。
|
|
504
|
+
|
|
505
|
+
:param version: The version of this StopMigrationTaskResponse.
|
|
506
|
+
:type version: str
|
|
507
|
+
"""
|
|
508
|
+
self._version = version
|
|
509
|
+
|
|
510
|
+
@property
|
|
511
|
+
def resume_mode(self):
|
|
512
|
+
"""Gets the resume_mode of this StopMigrationTaskResponse.
|
|
513
|
+
|
|
514
|
+
操作模式,分为auto和manual。
|
|
515
|
+
|
|
516
|
+
:return: The resume_mode of this StopMigrationTaskResponse.
|
|
517
|
+
:rtype: str
|
|
518
|
+
"""
|
|
519
|
+
return self._resume_mode
|
|
520
|
+
|
|
521
|
+
@resume_mode.setter
|
|
522
|
+
def resume_mode(self, resume_mode):
|
|
523
|
+
"""Sets the resume_mode of this StopMigrationTaskResponse.
|
|
524
|
+
|
|
525
|
+
操作模式,分为auto和manual。
|
|
526
|
+
|
|
527
|
+
:param resume_mode: The resume_mode of this StopMigrationTaskResponse.
|
|
528
|
+
:type resume_mode: str
|
|
529
|
+
"""
|
|
530
|
+
self._resume_mode = resume_mode
|
|
531
|
+
|
|
532
|
+
@property
|
|
533
|
+
def supported_features(self):
|
|
534
|
+
"""Gets the supported_features of this StopMigrationTaskResponse.
|
|
535
|
+
|
|
536
|
+
支持的特性。
|
|
537
|
+
|
|
538
|
+
:return: The supported_features of this StopMigrationTaskResponse.
|
|
539
|
+
:rtype: list[str]
|
|
540
|
+
"""
|
|
541
|
+
return self._supported_features
|
|
542
|
+
|
|
543
|
+
@supported_features.setter
|
|
544
|
+
def supported_features(self, supported_features):
|
|
545
|
+
"""Sets the supported_features of this StopMigrationTaskResponse.
|
|
546
|
+
|
|
547
|
+
支持的特性。
|
|
548
|
+
|
|
549
|
+
:param supported_features: The supported_features of this StopMigrationTaskResponse.
|
|
550
|
+
:type supported_features: list[str]
|
|
551
|
+
"""
|
|
552
|
+
self._supported_features = supported_features
|
|
553
|
+
|
|
554
|
+
@property
|
|
555
|
+
def tenant_vpc_id(self):
|
|
556
|
+
"""Gets the tenant_vpc_id of this StopMigrationTaskResponse.
|
|
557
|
+
|
|
558
|
+
租户VPC ID。
|
|
559
|
+
|
|
560
|
+
:return: The tenant_vpc_id of this StopMigrationTaskResponse.
|
|
561
|
+
:rtype: str
|
|
562
|
+
"""
|
|
563
|
+
return self._tenant_vpc_id
|
|
564
|
+
|
|
565
|
+
@tenant_vpc_id.setter
|
|
566
|
+
def tenant_vpc_id(self, tenant_vpc_id):
|
|
567
|
+
"""Sets the tenant_vpc_id of this StopMigrationTaskResponse.
|
|
568
|
+
|
|
569
|
+
租户VPC ID。
|
|
570
|
+
|
|
571
|
+
:param tenant_vpc_id: The tenant_vpc_id of this StopMigrationTaskResponse.
|
|
572
|
+
:type tenant_vpc_id: str
|
|
573
|
+
"""
|
|
574
|
+
self._tenant_vpc_id = tenant_vpc_id
|
|
575
|
+
|
|
576
|
+
@property
|
|
577
|
+
def tenant_subnet_id(self):
|
|
578
|
+
"""Gets the tenant_subnet_id of this StopMigrationTaskResponse.
|
|
579
|
+
|
|
580
|
+
租户子网ID。
|
|
581
|
+
|
|
582
|
+
:return: The tenant_subnet_id of this StopMigrationTaskResponse.
|
|
583
|
+
:rtype: str
|
|
584
|
+
"""
|
|
585
|
+
return self._tenant_subnet_id
|
|
586
|
+
|
|
587
|
+
@tenant_subnet_id.setter
|
|
588
|
+
def tenant_subnet_id(self, tenant_subnet_id):
|
|
589
|
+
"""Sets the tenant_subnet_id of this StopMigrationTaskResponse.
|
|
590
|
+
|
|
591
|
+
租户子网ID。
|
|
592
|
+
|
|
593
|
+
:param tenant_subnet_id: The tenant_subnet_id of this StopMigrationTaskResponse.
|
|
594
|
+
:type tenant_subnet_id: str
|
|
595
|
+
"""
|
|
596
|
+
self._tenant_subnet_id = tenant_subnet_id
|
|
597
|
+
|
|
598
|
+
@property
|
|
599
|
+
def tenant_security_group_id(self):
|
|
600
|
+
"""Gets the tenant_security_group_id of this StopMigrationTaskResponse.
|
|
601
|
+
|
|
602
|
+
租户安全组ID。
|
|
603
|
+
|
|
604
|
+
:return: The tenant_security_group_id of this StopMigrationTaskResponse.
|
|
605
|
+
:rtype: str
|
|
606
|
+
"""
|
|
607
|
+
return self._tenant_security_group_id
|
|
608
|
+
|
|
609
|
+
@tenant_security_group_id.setter
|
|
610
|
+
def tenant_security_group_id(self, tenant_security_group_id):
|
|
611
|
+
"""Sets the tenant_security_group_id of this StopMigrationTaskResponse.
|
|
612
|
+
|
|
613
|
+
租户安全组ID。
|
|
614
|
+
|
|
615
|
+
:param tenant_security_group_id: The tenant_security_group_id of this StopMigrationTaskResponse.
|
|
616
|
+
:type tenant_security_group_id: str
|
|
617
|
+
"""
|
|
618
|
+
self._tenant_security_group_id = tenant_security_group_id
|
|
619
|
+
|
|
620
|
+
@property
|
|
621
|
+
def bandwidth_limit_mb(self):
|
|
622
|
+
"""Gets the bandwidth_limit_mb of this StopMigrationTaskResponse.
|
|
623
|
+
|
|
624
|
+
带宽限制速度。
|
|
625
|
+
|
|
626
|
+
:return: The bandwidth_limit_mb of this StopMigrationTaskResponse.
|
|
627
|
+
:rtype: str
|
|
628
|
+
"""
|
|
629
|
+
return self._bandwidth_limit_mb
|
|
630
|
+
|
|
631
|
+
@bandwidth_limit_mb.setter
|
|
632
|
+
def bandwidth_limit_mb(self, bandwidth_limit_mb):
|
|
633
|
+
"""Sets the bandwidth_limit_mb of this StopMigrationTaskResponse.
|
|
634
|
+
|
|
635
|
+
带宽限制速度。
|
|
636
|
+
|
|
637
|
+
:param bandwidth_limit_mb: The bandwidth_limit_mb of this StopMigrationTaskResponse.
|
|
638
|
+
:type bandwidth_limit_mb: str
|
|
639
|
+
"""
|
|
640
|
+
self._bandwidth_limit_mb = bandwidth_limit_mb
|
|
641
|
+
|
|
642
|
+
@property
|
|
643
|
+
def task_status(self):
|
|
644
|
+
"""Gets the task_status of this StopMigrationTaskResponse.
|
|
645
|
+
|
|
646
|
+
任务状态。
|
|
647
|
+
|
|
648
|
+
:return: The task_status of this StopMigrationTaskResponse.
|
|
649
|
+
:rtype: str
|
|
650
|
+
"""
|
|
651
|
+
return self._task_status
|
|
652
|
+
|
|
653
|
+
@task_status.setter
|
|
654
|
+
def task_status(self, task_status):
|
|
655
|
+
"""Sets the task_status of this StopMigrationTaskResponse.
|
|
656
|
+
|
|
657
|
+
任务状态。
|
|
658
|
+
|
|
659
|
+
:param task_status: The task_status of this StopMigrationTaskResponse.
|
|
660
|
+
:type task_status: str
|
|
661
|
+
"""
|
|
662
|
+
self._task_status = task_status
|
|
663
|
+
|
|
403
664
|
def to_dict(self):
|
|
404
665
|
"""Returns the model properties as a dict"""
|
|
405
666
|
result = {}
|
|
@@ -19,16 +19,26 @@ class TargetInstanceBody:
|
|
|
19
19
|
openapi_types = {
|
|
20
20
|
'id': 'str',
|
|
21
21
|
'name': 'str',
|
|
22
|
-
'password': 'str'
|
|
22
|
+
'password': 'str',
|
|
23
|
+
'ip': 'str',
|
|
24
|
+
'port': 'str',
|
|
25
|
+
'addrs': 'str',
|
|
26
|
+
'proxy_multi_db': 'bool',
|
|
27
|
+
'db': 'str'
|
|
23
28
|
}
|
|
24
29
|
|
|
25
30
|
attribute_map = {
|
|
26
31
|
'id': 'id',
|
|
27
32
|
'name': 'name',
|
|
28
|
-
'password': 'password'
|
|
33
|
+
'password': 'password',
|
|
34
|
+
'ip': 'ip',
|
|
35
|
+
'port': 'port',
|
|
36
|
+
'addrs': 'addrs',
|
|
37
|
+
'proxy_multi_db': 'proxy_multi_db',
|
|
38
|
+
'db': 'db'
|
|
29
39
|
}
|
|
30
40
|
|
|
31
|
-
def __init__(self, id=None, name=None, password=None):
|
|
41
|
+
def __init__(self, id=None, name=None, password=None, ip=None, port=None, addrs=None, proxy_multi_db=None, db=None):
|
|
32
42
|
"""TargetInstanceBody
|
|
33
43
|
|
|
34
44
|
The model defined in huaweicloud sdk
|
|
@@ -39,6 +49,16 @@ class TargetInstanceBody:
|
|
|
39
49
|
:type name: str
|
|
40
50
|
:param password: Redis密码,如果设置了密码,则必须填写。
|
|
41
51
|
:type password: str
|
|
52
|
+
:param ip: Redis IP地址。
|
|
53
|
+
:type ip: str
|
|
54
|
+
:param port: Redis端口。
|
|
55
|
+
:type port: str
|
|
56
|
+
:param addrs: Redis实例地址。
|
|
57
|
+
:type addrs: str
|
|
58
|
+
:param proxy_multi_db: proxy实例是否开启了多DB。
|
|
59
|
+
:type proxy_multi_db: bool
|
|
60
|
+
:param db: Redis数据库。
|
|
61
|
+
:type db: str
|
|
42
62
|
"""
|
|
43
63
|
|
|
44
64
|
|
|
@@ -46,6 +66,11 @@ class TargetInstanceBody:
|
|
|
46
66
|
self._id = None
|
|
47
67
|
self._name = None
|
|
48
68
|
self._password = None
|
|
69
|
+
self._ip = None
|
|
70
|
+
self._port = None
|
|
71
|
+
self._addrs = None
|
|
72
|
+
self._proxy_multi_db = None
|
|
73
|
+
self._db = None
|
|
49
74
|
self.discriminator = None
|
|
50
75
|
|
|
51
76
|
self.id = id
|
|
@@ -53,6 +78,16 @@ class TargetInstanceBody:
|
|
|
53
78
|
self.name = name
|
|
54
79
|
if password is not None:
|
|
55
80
|
self.password = password
|
|
81
|
+
if ip is not None:
|
|
82
|
+
self.ip = ip
|
|
83
|
+
if port is not None:
|
|
84
|
+
self.port = port
|
|
85
|
+
if addrs is not None:
|
|
86
|
+
self.addrs = addrs
|
|
87
|
+
if proxy_multi_db is not None:
|
|
88
|
+
self.proxy_multi_db = proxy_multi_db
|
|
89
|
+
if db is not None:
|
|
90
|
+
self.db = db
|
|
56
91
|
|
|
57
92
|
@property
|
|
58
93
|
def id(self):
|
|
@@ -120,6 +155,116 @@ class TargetInstanceBody:
|
|
|
120
155
|
"""
|
|
121
156
|
self._password = password
|
|
122
157
|
|
|
158
|
+
@property
|
|
159
|
+
def ip(self):
|
|
160
|
+
"""Gets the ip of this TargetInstanceBody.
|
|
161
|
+
|
|
162
|
+
Redis IP地址。
|
|
163
|
+
|
|
164
|
+
:return: The ip of this TargetInstanceBody.
|
|
165
|
+
:rtype: str
|
|
166
|
+
"""
|
|
167
|
+
return self._ip
|
|
168
|
+
|
|
169
|
+
@ip.setter
|
|
170
|
+
def ip(self, ip):
|
|
171
|
+
"""Sets the ip of this TargetInstanceBody.
|
|
172
|
+
|
|
173
|
+
Redis IP地址。
|
|
174
|
+
|
|
175
|
+
:param ip: The ip of this TargetInstanceBody.
|
|
176
|
+
:type ip: str
|
|
177
|
+
"""
|
|
178
|
+
self._ip = ip
|
|
179
|
+
|
|
180
|
+
@property
|
|
181
|
+
def port(self):
|
|
182
|
+
"""Gets the port of this TargetInstanceBody.
|
|
183
|
+
|
|
184
|
+
Redis端口。
|
|
185
|
+
|
|
186
|
+
:return: The port of this TargetInstanceBody.
|
|
187
|
+
:rtype: str
|
|
188
|
+
"""
|
|
189
|
+
return self._port
|
|
190
|
+
|
|
191
|
+
@port.setter
|
|
192
|
+
def port(self, port):
|
|
193
|
+
"""Sets the port of this TargetInstanceBody.
|
|
194
|
+
|
|
195
|
+
Redis端口。
|
|
196
|
+
|
|
197
|
+
:param port: The port of this TargetInstanceBody.
|
|
198
|
+
:type port: str
|
|
199
|
+
"""
|
|
200
|
+
self._port = port
|
|
201
|
+
|
|
202
|
+
@property
|
|
203
|
+
def addrs(self):
|
|
204
|
+
"""Gets the addrs of this TargetInstanceBody.
|
|
205
|
+
|
|
206
|
+
Redis实例地址。
|
|
207
|
+
|
|
208
|
+
:return: The addrs of this TargetInstanceBody.
|
|
209
|
+
:rtype: str
|
|
210
|
+
"""
|
|
211
|
+
return self._addrs
|
|
212
|
+
|
|
213
|
+
@addrs.setter
|
|
214
|
+
def addrs(self, addrs):
|
|
215
|
+
"""Sets the addrs of this TargetInstanceBody.
|
|
216
|
+
|
|
217
|
+
Redis实例地址。
|
|
218
|
+
|
|
219
|
+
:param addrs: The addrs of this TargetInstanceBody.
|
|
220
|
+
:type addrs: str
|
|
221
|
+
"""
|
|
222
|
+
self._addrs = addrs
|
|
223
|
+
|
|
224
|
+
@property
|
|
225
|
+
def proxy_multi_db(self):
|
|
226
|
+
"""Gets the proxy_multi_db of this TargetInstanceBody.
|
|
227
|
+
|
|
228
|
+
proxy实例是否开启了多DB。
|
|
229
|
+
|
|
230
|
+
:return: The proxy_multi_db of this TargetInstanceBody.
|
|
231
|
+
:rtype: bool
|
|
232
|
+
"""
|
|
233
|
+
return self._proxy_multi_db
|
|
234
|
+
|
|
235
|
+
@proxy_multi_db.setter
|
|
236
|
+
def proxy_multi_db(self, proxy_multi_db):
|
|
237
|
+
"""Sets the proxy_multi_db of this TargetInstanceBody.
|
|
238
|
+
|
|
239
|
+
proxy实例是否开启了多DB。
|
|
240
|
+
|
|
241
|
+
:param proxy_multi_db: The proxy_multi_db of this TargetInstanceBody.
|
|
242
|
+
:type proxy_multi_db: bool
|
|
243
|
+
"""
|
|
244
|
+
self._proxy_multi_db = proxy_multi_db
|
|
245
|
+
|
|
246
|
+
@property
|
|
247
|
+
def db(self):
|
|
248
|
+
"""Gets the db of this TargetInstanceBody.
|
|
249
|
+
|
|
250
|
+
Redis数据库。
|
|
251
|
+
|
|
252
|
+
:return: The db of this TargetInstanceBody.
|
|
253
|
+
:rtype: str
|
|
254
|
+
"""
|
|
255
|
+
return self._db
|
|
256
|
+
|
|
257
|
+
@db.setter
|
|
258
|
+
def db(self, db):
|
|
259
|
+
"""Sets the db of this TargetInstanceBody.
|
|
260
|
+
|
|
261
|
+
Redis数据库。
|
|
262
|
+
|
|
263
|
+
:param db: The db of this TargetInstanceBody.
|
|
264
|
+
:type db: str
|
|
265
|
+
"""
|
|
266
|
+
self._db = db
|
|
267
|
+
|
|
123
268
|
def to_dict(self):
|
|
124
269
|
"""Returns the model properties as a dict"""
|
|
125
270
|
result = {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: huaweicloudsdkdcs
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.93
|
|
4
4
|
Summary: DCS
|
|
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.93
|
|
26
26
|
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
|
@@ -101,7 +101,7 @@ huaweicloudsdkdcs/v2/model/delete_migration_task_request.py,sha256=q-SAeLFYjwrG_
|
|
|
101
101
|
huaweicloudsdkdcs/v2/model/delete_migration_task_response.py,sha256=TXxQB02g9iHNazS9kn-LwpnXiQgRlLT2951XfZMtEmc,3426
|
|
102
102
|
huaweicloudsdkdcs/v2/model/delete_single_instance_request.py,sha256=oWULoIgjJPK0HQJqms5mQpCCyzHl7lSZ_AD3pVMuqUI,3156
|
|
103
103
|
huaweicloudsdkdcs/v2/model/delete_single_instance_response.py,sha256=DDwVPSOFsLdpMIGUS018c3j54hNFVM-6XNC2YzyVkT4,2463
|
|
104
|
-
huaweicloudsdkdcs/v2/model/details_body.py,sha256=
|
|
104
|
+
huaweicloudsdkdcs/v2/model/details_body.py,sha256=0oowzpAjseVkDiD4mvqcpLYuF6U8MLCwlWNQcSu4mTY,26535
|
|
105
105
|
huaweicloudsdkdcs/v2/model/diagnosis_dimension.py,sha256=a9sGVpJy0HqGNXcjjQSLnK7wPsngHJ0E7Vy7dLBmmQg,5786
|
|
106
106
|
huaweicloudsdkdcs/v2/model/diagnosis_item.py,sha256=vfG4DJxkhgomyBHxwN9eUVu6bGjm21V4lNEgxrVZq5E,6382
|
|
107
107
|
huaweicloudsdkdcs/v2/model/diagnosis_node_report.py,sha256=OVewY6asDY9TIVIPeMFh9hSlClaKhy2h9wNlt0_efGo,9408
|
|
@@ -214,7 +214,7 @@ huaweicloudsdkdcs/v2/model/logoff_web_cli_response.py,sha256=_rd6pLm_FRsNVwLWuQl
|
|
|
214
214
|
huaweicloudsdkdcs/v2/model/logout_web_cli_body.py,sha256=svjAG6Sv5ThzZA3w8CPP5iW4KUlupVYkU-CzREEiaWY,3073
|
|
215
215
|
huaweicloudsdkdcs/v2/model/maintain_windows_entity.py,sha256=eX2oskGoCShReF5S00vVgIoZM8wlzyWVEs7dLoTJPq0,5206
|
|
216
216
|
huaweicloudsdkdcs/v2/model/migration_log.py,sha256=HLl68FJx6AE2EU7pASLzdLhyN5M9X6saO4U40rRyIxk,6176
|
|
217
|
-
huaweicloudsdkdcs/v2/model/migration_task_list.py,sha256=
|
|
217
|
+
huaweicloudsdkdcs/v2/model/migration_task_list.py,sha256=3VCvQhF9hdlzyodNbsv0ka6nLjvcoeD4k87rvvP-PaQ,27916
|
|
218
218
|
huaweicloudsdkdcs/v2/model/migration_update_request_entity.py,sha256=ulpcLv882GYkKunX4XG6k8nDtgL8iD-M_eCC3C0J888,3188
|
|
219
219
|
huaweicloudsdkdcs/v2/model/modify_instance_body.py,sha256=ZJqtXJlLYDrdvOGaAMDyKCJpPlp9M_WV65cfkUhG_xo,14967
|
|
220
220
|
huaweicloudsdkdcs/v2/model/modify_instance_password_body.py,sha256=L3HoHeeEhHCTci464sxDKNGxqpukoVM2WQonJg5lbhA,3994
|
|
@@ -284,7 +284,7 @@ huaweicloudsdkdcs/v2/model/show_ip_whitelist_response.py,sha256=LeToT-ziIdX_C8yL
|
|
|
284
284
|
huaweicloudsdkdcs/v2/model/show_job_info_request.py,sha256=JNqrXxAMrVdreuPcaiZvRCXWe9Q9wjPfEdljz3ODBJk,2992
|
|
285
285
|
huaweicloudsdkdcs/v2/model/show_job_info_response.py,sha256=F2cdmMBCM3OWQr79LsX9Ipx21D3OnSzRllH6Omc0A3A,7583
|
|
286
286
|
huaweicloudsdkdcs/v2/model/show_migration_task_request.py,sha256=JovwLAaMrCHxKeGrX2Bh_vgecw_wdgdTXmEHfHjt_FI,3047
|
|
287
|
-
huaweicloudsdkdcs/v2/model/show_migration_task_response.py,sha256=
|
|
287
|
+
huaweicloudsdkdcs/v2/model/show_migration_task_response.py,sha256=ZeElnY7dvofNZF6cC9NMwdxoxZxhhLFgpVfJVYwRgvw,23808
|
|
288
288
|
huaweicloudsdkdcs/v2/model/show_migration_task_stats_request.py,sha256=h29wjiVPBEyrC-y6M8NE1E3Dp9SYUFwDVIoG19mxVq4,3082
|
|
289
289
|
huaweicloudsdkdcs/v2/model/show_migration_task_stats_response.py,sha256=dEYXO272-DmAlFf07a1ZTEqjlZOItneP0fWb_y8I_uc,9285
|
|
290
290
|
huaweicloudsdkdcs/v2/model/show_nodes_information_request.py,sha256=JLdl8v0OH-kFYzvHm5WdS_T62X-izq8UbKW6b3-aPao,3156
|
|
@@ -298,20 +298,20 @@ huaweicloudsdkdcs/v2/model/show_tags_response.py,sha256=pxklDJZOHyqeMkGpWrOjWVs4
|
|
|
298
298
|
huaweicloudsdkdcs/v2/model/simple_key_scan_record.py,sha256=nKr_8msHpgkQMhck5vH2v_2S10kStAbazF-CL8gIsr8,8617
|
|
299
299
|
huaweicloudsdkdcs/v2/model/single_background_task.py,sha256=TBXQIDM5kslYHNCNV6Tv4Gx47Z-EgLWEX7ml_xP8UtA,11037
|
|
300
300
|
huaweicloudsdkdcs/v2/model/slowlog_item.py,sha256=cRn4eJQOfPunlHDi1nrsK5R4GX3xWSFojT1sgj99uqA,7995
|
|
301
|
-
huaweicloudsdkdcs/v2/model/source_instance_body.py,sha256=
|
|
301
|
+
huaweicloudsdkdcs/v2/model/source_instance_body.py,sha256=uXw6klP_K9Dcp-VHE8FZecg1tAFXQDfsuF-EwvtSDKo,8998
|
|
302
302
|
huaweicloudsdkdcs/v2/model/start_instance_resize_check_job_request.py,sha256=iIQqJ6JCNgi8y-CUBjw-D3Ac493TU0GGYezwd7zrClU,4143
|
|
303
303
|
huaweicloudsdkdcs/v2/model/start_instance_resize_check_job_request_body.py,sha256=nh8mcIAod5dbocrZYk4Fx4SqmBirOjyYSRnZnvTl1Ro,4226
|
|
304
304
|
huaweicloudsdkdcs/v2/model/start_instance_resize_check_job_response.py,sha256=NbEBoThjFChGTlfJL_BhYSlostV3J_J5dSBnRcUhRQ4,3256
|
|
305
305
|
huaweicloudsdkdcs/v2/model/status_statistic.py,sha256=wW15-W4XbIY9STeAMDGN-CJG0456vI6gd1wQ-FeOSEk,14297
|
|
306
306
|
huaweicloudsdkdcs/v2/model/step_detail.py,sha256=CrxhwBTmbtjfEHl5IYBfIJCcxQSp-yLVVXSEczmUpKw,8097
|
|
307
307
|
huaweicloudsdkdcs/v2/model/stop_migration_task_request.py,sha256=tADzD5xKV7ioBrcRIaVeiSX7WgtY6zqMhKGV1aKXwrk,3038
|
|
308
|
-
huaweicloudsdkdcs/v2/model/stop_migration_task_response.py,sha256=
|
|
308
|
+
huaweicloudsdkdcs/v2/model/stop_migration_task_response.py,sha256=PsK6rtPAnkZld9WCTRFhczHrcqz9YtQFE4348Wa-H2A,23808
|
|
309
309
|
huaweicloudsdkdcs/v2/model/stop_migration_task_result.py,sha256=EGxqcjLoxS4_QPnRK1ia7y8vF8DIP9rhooV6-kax1z0,3922
|
|
310
310
|
huaweicloudsdkdcs/v2/model/stop_migration_task_sync_request.py,sha256=1IwLp2Baz4Zar0NC1e6tpLFgJAJrYnjCwLp_njcVUgg,3066
|
|
311
311
|
huaweicloudsdkdcs/v2/model/stop_migration_task_sync_response.py,sha256=dCt22ma-gT9BSEI0TvQ9eZAQ7b9bWokBdaBmFJFLxAM,2467
|
|
312
312
|
huaweicloudsdkdcs/v2/model/sub_step_detail.py,sha256=UNkY2u7G4A5sqdL0XX3m8JUJQU2Ml9jNoppTUP1gGsg,8109
|
|
313
313
|
huaweicloudsdkdcs/v2/model/tag.py,sha256=iQuhCI45N1Cdk7R8IKbICnDuRx1ztU5KdeLZCTEbtoQ,3613
|
|
314
|
-
huaweicloudsdkdcs/v2/model/target_instance_body.py,sha256=
|
|
314
|
+
huaweicloudsdkdcs/v2/model/target_instance_body.py,sha256=1PGBKjC67cqJgHZppkBiZUk0dH_zQTLYXSguWaZYZMQ,8312
|
|
315
315
|
huaweicloudsdkdcs/v2/model/update_acl_account_pass_word_request.py,sha256=Jjl_biu1a0HgdXxUiqfO3BbxKXXMsmxh2sQL6NC_MiQ,4896
|
|
316
316
|
huaweicloudsdkdcs/v2/model/update_acl_account_pass_word_response.py,sha256=efROicslXEQZQWWhwoJZ9MTJCxcRz81MEtChrpJmBes,7632
|
|
317
317
|
huaweicloudsdkdcs/v2/model/update_acl_account_remark_request.py,sha256=BH5pvW4gX8MozbsH0u-p3PBzEoY49bycDCiIBeNIGcY,4884
|
|
@@ -356,8 +356,8 @@ huaweicloudsdkdcs/v2/model/validate_deletable_replica_response.py,sha256=kadAH-P
|
|
|
356
356
|
huaweicloudsdkdcs/v2/model/whitelist.py,sha256=o3qGT2_1ARJ2RG6mEKaqXJHAT4eY9nTa6X_yLMzXdqQ,4334
|
|
357
357
|
huaweicloudsdkdcs/v2/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
358
|
huaweicloudsdkdcs/v2/region/dcs_region.py,sha256=lMZHDmJnefb0rYZTe0qKQe6VbnyXI6ISNY_rauSWpeE,4726
|
|
359
|
-
huaweicloudsdkdcs-3.1.
|
|
360
|
-
huaweicloudsdkdcs-3.1.
|
|
361
|
-
huaweicloudsdkdcs-3.1.
|
|
362
|
-
huaweicloudsdkdcs-3.1.
|
|
363
|
-
huaweicloudsdkdcs-3.1.
|
|
359
|
+
huaweicloudsdkdcs-3.1.93.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
|
360
|
+
huaweicloudsdkdcs-3.1.93.dist-info/METADATA,sha256=ku1Z8ig7YtjsdbnoN8ydZxJYY93obHBUcg2rPKETMHk,1134
|
|
361
|
+
huaweicloudsdkdcs-3.1.93.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
|
362
|
+
huaweicloudsdkdcs-3.1.93.dist-info/top_level.txt,sha256=_O-5__fP_OBumTm1dj6NCIbz4-U1qSrYHpdKCWm6Tu8,18
|
|
363
|
+
huaweicloudsdkdcs-3.1.93.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|