huaweicloudsdkdcs 3.1.90__py2.py3-none-any.whl → 3.1.92__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.

@@ -30,7 +30,16 @@ class ShowMigrationTaskResponse(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 ShowMigrationTaskResponse(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
  """ShowMigrationTaskResponse
54
72
 
55
73
  The model defined in huaweicloud sdk
@@ -80,6 +98,24 @@ class ShowMigrationTaskResponse(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(ShowMigrationTaskResponse, self).__init__()
@@ -97,6 +133,15 @@ class ShowMigrationTaskResponse(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 ShowMigrationTaskResponse(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 ShowMigrationTaskResponse(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 ShowMigrationTaskResponse.
469
+
470
+ 迁移机释放时间。
471
+
472
+ :return: The released_at of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
480
+
481
+ 迁移机释放时间。
482
+
483
+ :param released_at: The released_at of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
491
+
492
+ 版本。
493
+
494
+ :return: The version of this ShowMigrationTaskResponse.
495
+ :rtype: str
496
+ """
497
+ return self._version
498
+
499
+ @version.setter
500
+ def version(self, version):
501
+ """Sets the version of this ShowMigrationTaskResponse.
502
+
503
+ 版本。
504
+
505
+ :param version: The version of this ShowMigrationTaskResponse.
506
+ :type version: str
507
+ """
508
+ self._version = version
509
+
510
+ @property
511
+ def resume_mode(self):
512
+ """Gets the resume_mode of this ShowMigrationTaskResponse.
513
+
514
+ 操作模式,分为auto和manual。
515
+
516
+ :return: The resume_mode of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
524
+
525
+ 操作模式,分为auto和manual。
526
+
527
+ :param resume_mode: The resume_mode of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
535
+
536
+ 支持的特性。
537
+
538
+ :return: The supported_features of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
546
+
547
+ 支持的特性。
548
+
549
+ :param supported_features: The supported_features of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
557
+
558
+ 租户VPC ID。
559
+
560
+ :return: The tenant_vpc_id of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
568
+
569
+ 租户VPC ID。
570
+
571
+ :param tenant_vpc_id: The tenant_vpc_id of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
579
+
580
+ 租户子网ID。
581
+
582
+ :return: The tenant_subnet_id of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
590
+
591
+ 租户子网ID。
592
+
593
+ :param tenant_subnet_id: The tenant_subnet_id of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
601
+
602
+ 租户安全组ID。
603
+
604
+ :return: The tenant_security_group_id of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
612
+
613
+ 租户安全组ID。
614
+
615
+ :param tenant_security_group_id: The tenant_security_group_id of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
623
+
624
+ 带宽限制速度。
625
+
626
+ :return: The bandwidth_limit_mb of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
634
+
635
+ 带宽限制速度。
636
+
637
+ :param bandwidth_limit_mb: The bandwidth_limit_mb of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
645
+
646
+ 任务状态。
647
+
648
+ :return: The task_status of this ShowMigrationTaskResponse.
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 ShowMigrationTaskResponse.
656
+
657
+ 任务状态。
658
+
659
+ :param task_status: The task_status of this ShowMigrationTaskResponse.
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 = {}
@@ -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 = {}
@@ -58,6 +58,8 @@ class DcsRegion:
58
58
  "https://dcs.cn-east-5.myhuaweicloud.com")
59
59
  MY_KUALALUMPUR_1 = Region("my-kualalumpur-1",
60
60
  "https://dcs.my-kualalumpur-1.myhuaweicloud.com")
61
+ RU_MOSCOW_1 = Region("ru-moscow-1",
62
+ "https://dcs.ru-moscow-1.myhuaweicloud.com")
61
63
 
62
64
  static_fields = {
63
65
  "af-south-1": AF_SOUTH_1,
@@ -86,6 +88,7 @@ class DcsRegion:
86
88
  "eu-west-0": EU_WEST_0,
87
89
  "cn-east-5": CN_EAST_5,
88
90
  "my-kualalumpur-1": MY_KUALALUMPUR_1,
91
+ "ru-moscow-1": RU_MOSCOW_1,
89
92
  }
90
93
 
91
94
  @classmethod
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huaweicloudsdkdcs
3
- Version: 3.1.90
3
+ Version: 3.1.92
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.90
25
+ Requires-Dist: huaweicloudsdkcore >=3.1.92
26
26
 
27
27
  See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).