tencentcloud-sdk-python 3.0.1395__py2.py3-none-any.whl → 3.0.1396__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.
Files changed (28) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/apm/v20210622/models.py +17 -2
  3. tencentcloud/cbs/v20170312/cbs_client.py +3 -1
  4. tencentcloud/cdb/v20170320/models.py +6 -6
  5. tencentcloud/cfs/v20190719/models.py +2 -2
  6. tencentcloud/dbbrain/v20210527/dbbrain_client.py +1 -1
  7. tencentcloud/dbbrain/v20210527/models.py +4 -4
  8. tencentcloud/emr/v20190103/models.py +304 -4
  9. tencentcloud/ess/v20201111/ess_client.py +56 -0
  10. tencentcloud/ess/v20201111/models.py +255 -0
  11. tencentcloud/gs/v20191118/gs_client.py +161 -0
  12. tencentcloud/gs/v20191118/models.py +877 -23
  13. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +2 -2
  14. tencentcloud/ocr/v20181119/models.py +131 -18
  15. tencentcloud/ocr/v20181119/ocr_client.py +1 -1
  16. tencentcloud/tem/v20210701/errorcodes.py +6 -0
  17. tencentcloud/tem/v20210701/models.py +200 -0
  18. tencentcloud/tem/v20210701/tem_client.py +23 -0
  19. tencentcloud/teo/v20220901/models.py +1417 -117
  20. tencentcloud/vod/v20180717/models.py +4 -0
  21. tencentcloud/waf/v20180125/models.py +0 -2
  22. tencentcloud/wedata/v20210820/models.py +1902 -0
  23. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  24. {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/METADATA +1 -1
  25. {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/RECORD +28 -28
  26. {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/LICENSE +0 -0
  27. {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/WHEEL +0 -0
  28. {tencentcloud_sdk_python-3.0.1395.dist-info → tencentcloud_sdk_python-3.0.1396.dist-info}/top_level.txt +0 -0
@@ -27127,6 +27127,194 @@ class DescribeExecStrategyResponse(AbstractModel):
27127
27127
  self._RequestId = params.get("RequestId")
27128
27128
 
27129
27129
 
27130
+ class DescribeExecutorGroupMetricRequest(AbstractModel):
27131
+ """DescribeExecutorGroupMetric请求参数结构体
27132
+
27133
+ """
27134
+
27135
+ def __init__(self):
27136
+ r"""
27137
+ :param _ExecutorGroupId: 执行资源组id
27138
+ :type ExecutorGroupId: str
27139
+ :param _TrendStartTime: 使用趋势开始时间(毫秒)
27140
+ :type TrendStartTime: int
27141
+ :param _TrendEndTime: 使用趋势结束时间(毫秒)
27142
+ :type TrendEndTime: int
27143
+ :param _ExecutorGroupType: 执行资源组类型
27144
+ :type ExecutorGroupType: str
27145
+ :param _ExecutorResourceType: 执行资源类型
27146
+ :type ExecutorResourceType: str
27147
+ :param _LoaderId: 执行机ID
27148
+ :type LoaderId: str
27149
+ :param _MetricType: 指标维度
27150
+ :type MetricType: str
27151
+ :param _Granularity: 指标采集粒度
27152
+ :type Granularity: int
27153
+ """
27154
+ self._ExecutorGroupId = None
27155
+ self._TrendStartTime = None
27156
+ self._TrendEndTime = None
27157
+ self._ExecutorGroupType = None
27158
+ self._ExecutorResourceType = None
27159
+ self._LoaderId = None
27160
+ self._MetricType = None
27161
+ self._Granularity = None
27162
+
27163
+ @property
27164
+ def ExecutorGroupId(self):
27165
+ """执行资源组id
27166
+ :rtype: str
27167
+ """
27168
+ return self._ExecutorGroupId
27169
+
27170
+ @ExecutorGroupId.setter
27171
+ def ExecutorGroupId(self, ExecutorGroupId):
27172
+ self._ExecutorGroupId = ExecutorGroupId
27173
+
27174
+ @property
27175
+ def TrendStartTime(self):
27176
+ """使用趋势开始时间(毫秒)
27177
+ :rtype: int
27178
+ """
27179
+ return self._TrendStartTime
27180
+
27181
+ @TrendStartTime.setter
27182
+ def TrendStartTime(self, TrendStartTime):
27183
+ self._TrendStartTime = TrendStartTime
27184
+
27185
+ @property
27186
+ def TrendEndTime(self):
27187
+ """使用趋势结束时间(毫秒)
27188
+ :rtype: int
27189
+ """
27190
+ return self._TrendEndTime
27191
+
27192
+ @TrendEndTime.setter
27193
+ def TrendEndTime(self, TrendEndTime):
27194
+ self._TrendEndTime = TrendEndTime
27195
+
27196
+ @property
27197
+ def ExecutorGroupType(self):
27198
+ """执行资源组类型
27199
+ :rtype: str
27200
+ """
27201
+ return self._ExecutorGroupType
27202
+
27203
+ @ExecutorGroupType.setter
27204
+ def ExecutorGroupType(self, ExecutorGroupType):
27205
+ self._ExecutorGroupType = ExecutorGroupType
27206
+
27207
+ @property
27208
+ def ExecutorResourceType(self):
27209
+ """执行资源类型
27210
+ :rtype: str
27211
+ """
27212
+ return self._ExecutorResourceType
27213
+
27214
+ @ExecutorResourceType.setter
27215
+ def ExecutorResourceType(self, ExecutorResourceType):
27216
+ self._ExecutorResourceType = ExecutorResourceType
27217
+
27218
+ @property
27219
+ def LoaderId(self):
27220
+ """执行机ID
27221
+ :rtype: str
27222
+ """
27223
+ return self._LoaderId
27224
+
27225
+ @LoaderId.setter
27226
+ def LoaderId(self, LoaderId):
27227
+ self._LoaderId = LoaderId
27228
+
27229
+ @property
27230
+ def MetricType(self):
27231
+ """指标维度
27232
+ :rtype: str
27233
+ """
27234
+ return self._MetricType
27235
+
27236
+ @MetricType.setter
27237
+ def MetricType(self, MetricType):
27238
+ self._MetricType = MetricType
27239
+
27240
+ @property
27241
+ def Granularity(self):
27242
+ """指标采集粒度
27243
+ :rtype: int
27244
+ """
27245
+ return self._Granularity
27246
+
27247
+ @Granularity.setter
27248
+ def Granularity(self, Granularity):
27249
+ self._Granularity = Granularity
27250
+
27251
+
27252
+ def _deserialize(self, params):
27253
+ self._ExecutorGroupId = params.get("ExecutorGroupId")
27254
+ self._TrendStartTime = params.get("TrendStartTime")
27255
+ self._TrendEndTime = params.get("TrendEndTime")
27256
+ self._ExecutorGroupType = params.get("ExecutorGroupType")
27257
+ self._ExecutorResourceType = params.get("ExecutorResourceType")
27258
+ self._LoaderId = params.get("LoaderId")
27259
+ self._MetricType = params.get("MetricType")
27260
+ self._Granularity = params.get("Granularity")
27261
+ memeber_set = set(params.keys())
27262
+ for name, value in vars(self).items():
27263
+ property_name = name[1:]
27264
+ if property_name in memeber_set:
27265
+ memeber_set.remove(property_name)
27266
+ if len(memeber_set) > 0:
27267
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
27268
+
27269
+
27270
+
27271
+ class DescribeExecutorGroupMetricResponse(AbstractModel):
27272
+ """DescribeExecutorGroupMetric返回参数结构体
27273
+
27274
+ """
27275
+
27276
+ def __init__(self):
27277
+ r"""
27278
+ :param _Data: 执行组指标信息
27279
+ 注意:此字段可能返回 null,表示取不到有效值。
27280
+ :type Data: :class:`tencentcloud.wedata.v20210820.models.ExecutorResourceGroupInfo`
27281
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
27282
+ :type RequestId: str
27283
+ """
27284
+ self._Data = None
27285
+ self._RequestId = None
27286
+
27287
+ @property
27288
+ def Data(self):
27289
+ """执行组指标信息
27290
+ 注意:此字段可能返回 null,表示取不到有效值。
27291
+ :rtype: :class:`tencentcloud.wedata.v20210820.models.ExecutorResourceGroupInfo`
27292
+ """
27293
+ return self._Data
27294
+
27295
+ @Data.setter
27296
+ def Data(self, Data):
27297
+ self._Data = Data
27298
+
27299
+ @property
27300
+ def RequestId(self):
27301
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
27302
+ :rtype: str
27303
+ """
27304
+ return self._RequestId
27305
+
27306
+ @RequestId.setter
27307
+ def RequestId(self, RequestId):
27308
+ self._RequestId = RequestId
27309
+
27310
+
27311
+ def _deserialize(self, params):
27312
+ if params.get("Data") is not None:
27313
+ self._Data = ExecutorResourceGroupInfo()
27314
+ self._Data._deserialize(params.get("Data"))
27315
+ self._RequestId = params.get("RequestId")
27316
+
27317
+
27130
27318
  class DescribeFieldBasicInfoRequest(AbstractModel):
27131
27319
  """DescribeFieldBasicInfo请求参数结构体
27132
27320
 
@@ -48271,6 +48459,1461 @@ class EventOpsDto(AbstractModel):
48271
48459
 
48272
48460
 
48273
48461
 
48462
+ class ExecutorResourceGroupInfo(AbstractModel):
48463
+ """资源组详情
48464
+
48465
+ """
48466
+
48467
+ def __init__(self):
48468
+ r"""
48469
+ :param _ExecutorGroupId: 执行组id, 仅更新资源时需要传
48470
+ 注意:此字段可能返回 null,表示取不到有效值。
48471
+ :type ExecutorGroupId: str
48472
+ :param _ExecutorGroupName: 执行组名称
48473
+ 注意:此字段可能返回 null,表示取不到有效值。
48474
+ :type ExecutorGroupName: str
48475
+ :param _ExecutorGroupDesc: 执行组描述
48476
+ 注意:此字段可能返回 null,表示取不到有效值。
48477
+ :type ExecutorGroupDesc: str
48478
+ :param _ExecutorResourceType: SCHEDULER (标准调度资源组),CUSTOM_SCHEDULER (自定义调度资源),INTEGRATION(集成资源组),DATA_SERVICE(数据服务资源组)
48479
+ 注意:此字段可能返回 null,表示取不到有效值。
48480
+ :type ExecutorResourceType: int
48481
+ :param _Region: 区域中文
48482
+ 注意:此字段可能返回 null,表示取不到有效值。
48483
+ :type Region: str
48484
+ :param _VpcId: vpcId, 托管服务时需要传递
48485
+ 注意:此字段可能返回 null,表示取不到有效值。
48486
+ :type VpcId: str
48487
+ :param _SubnetId: subnetId, 托管服务时需要传递
48488
+ 注意:此字段可能返回 null,表示取不到有效值。
48489
+ :type SubnetId: str
48490
+ :param _ProjectId: 项目id
48491
+ 注意:此字段可能返回 null,表示取不到有效值。
48492
+ :type ProjectId: str
48493
+ :param _BasicResourcePackage: 基础资源包,资源组至少包含一个基础资源包
48494
+ 注意:此字段可能返回 null,表示取不到有效值。
48495
+ :type BasicResourcePackage: :class:`tencentcloud.wedata.v20210820.models.ExecutorResourcePackageInfo`
48496
+ :param _AdvanceResourcePackage: 增强资源包
48497
+ 注意:此字段可能返回 null,表示取不到有效值。
48498
+ :type AdvanceResourcePackage: :class:`tencentcloud.wedata.v20210820.models.ExecutorResourcePackageInfo`
48499
+ :param _AutoRenewFlag: 是否自动续费
48500
+ 注意:此字段可能返回 null,表示取不到有效值。
48501
+ :type AutoRenewFlag: int
48502
+ :param _RegionEn: 区域英文
48503
+ 注意:此字段可能返回 null,表示取不到有效值。
48504
+ :type RegionEn: str
48505
+ :param _RegionId: 区域Id
48506
+ 注意:此字段可能返回 null,表示取不到有效值。
48507
+ :type RegionId: int
48508
+ :param _ProjectName: 项目名称
48509
+ 注意:此字段可能返回 null,表示取不到有效值。
48510
+ :type ProjectName: str
48511
+ :param _ProjectDisplayName: 项目展示名称
48512
+ 注意:此字段可能返回 null,表示取不到有效值。
48513
+ :type ProjectDisplayName: str
48514
+ :param _AssociateProjectNums: 资源组关联项目数
48515
+ 注意:此字段可能返回 null,表示取不到有效值。
48516
+ :type AssociateProjectNums: int
48517
+ :param _IsLocked: 是否锁定,false为未锁定,true为锁定
48518
+ 注意:此字段可能返回 null,表示取不到有效值。
48519
+ :type IsLocked: bool
48520
+ :param _SourceType: 来源类型,0为系统默认,1为自定义
48521
+ 注意:此字段可能返回 null,表示取不到有效值。
48522
+ :type SourceType: int
48523
+ :param _MQPackageVO: 队列资源包
48524
+ 注意:此字段可能返回 null,表示取不到有效值。
48525
+ :type MQPackageVO: :class:`tencentcloud.wedata.v20210820.models.MQPackageVO`
48526
+ :param _FirstChoice: 是否首选
48527
+ 注意:此字段可能返回 null,表示取不到有效值。
48528
+ :type FirstChoice: bool
48529
+ :param _PythonSubVersions: 资源组python版本绑定详情
48530
+ :type PythonSubVersions: list of str
48531
+ """
48532
+ self._ExecutorGroupId = None
48533
+ self._ExecutorGroupName = None
48534
+ self._ExecutorGroupDesc = None
48535
+ self._ExecutorResourceType = None
48536
+ self._Region = None
48537
+ self._VpcId = None
48538
+ self._SubnetId = None
48539
+ self._ProjectId = None
48540
+ self._BasicResourcePackage = None
48541
+ self._AdvanceResourcePackage = None
48542
+ self._AutoRenewFlag = None
48543
+ self._RegionEn = None
48544
+ self._RegionId = None
48545
+ self._ProjectName = None
48546
+ self._ProjectDisplayName = None
48547
+ self._AssociateProjectNums = None
48548
+ self._IsLocked = None
48549
+ self._SourceType = None
48550
+ self._MQPackageVO = None
48551
+ self._FirstChoice = None
48552
+ self._PythonSubVersions = None
48553
+
48554
+ @property
48555
+ def ExecutorGroupId(self):
48556
+ """执行组id, 仅更新资源时需要传
48557
+ 注意:此字段可能返回 null,表示取不到有效值。
48558
+ :rtype: str
48559
+ """
48560
+ return self._ExecutorGroupId
48561
+
48562
+ @ExecutorGroupId.setter
48563
+ def ExecutorGroupId(self, ExecutorGroupId):
48564
+ self._ExecutorGroupId = ExecutorGroupId
48565
+
48566
+ @property
48567
+ def ExecutorGroupName(self):
48568
+ """执行组名称
48569
+ 注意:此字段可能返回 null,表示取不到有效值。
48570
+ :rtype: str
48571
+ """
48572
+ return self._ExecutorGroupName
48573
+
48574
+ @ExecutorGroupName.setter
48575
+ def ExecutorGroupName(self, ExecutorGroupName):
48576
+ self._ExecutorGroupName = ExecutorGroupName
48577
+
48578
+ @property
48579
+ def ExecutorGroupDesc(self):
48580
+ """执行组描述
48581
+ 注意:此字段可能返回 null,表示取不到有效值。
48582
+ :rtype: str
48583
+ """
48584
+ return self._ExecutorGroupDesc
48585
+
48586
+ @ExecutorGroupDesc.setter
48587
+ def ExecutorGroupDesc(self, ExecutorGroupDesc):
48588
+ self._ExecutorGroupDesc = ExecutorGroupDesc
48589
+
48590
+ @property
48591
+ def ExecutorResourceType(self):
48592
+ """SCHEDULER (标准调度资源组),CUSTOM_SCHEDULER (自定义调度资源),INTEGRATION(集成资源组),DATA_SERVICE(数据服务资源组)
48593
+ 注意:此字段可能返回 null,表示取不到有效值。
48594
+ :rtype: int
48595
+ """
48596
+ return self._ExecutorResourceType
48597
+
48598
+ @ExecutorResourceType.setter
48599
+ def ExecutorResourceType(self, ExecutorResourceType):
48600
+ self._ExecutorResourceType = ExecutorResourceType
48601
+
48602
+ @property
48603
+ def Region(self):
48604
+ """区域中文
48605
+ 注意:此字段可能返回 null,表示取不到有效值。
48606
+ :rtype: str
48607
+ """
48608
+ return self._Region
48609
+
48610
+ @Region.setter
48611
+ def Region(self, Region):
48612
+ self._Region = Region
48613
+
48614
+ @property
48615
+ def VpcId(self):
48616
+ """vpcId, 托管服务时需要传递
48617
+ 注意:此字段可能返回 null,表示取不到有效值。
48618
+ :rtype: str
48619
+ """
48620
+ return self._VpcId
48621
+
48622
+ @VpcId.setter
48623
+ def VpcId(self, VpcId):
48624
+ self._VpcId = VpcId
48625
+
48626
+ @property
48627
+ def SubnetId(self):
48628
+ """subnetId, 托管服务时需要传递
48629
+ 注意:此字段可能返回 null,表示取不到有效值。
48630
+ :rtype: str
48631
+ """
48632
+ return self._SubnetId
48633
+
48634
+ @SubnetId.setter
48635
+ def SubnetId(self, SubnetId):
48636
+ self._SubnetId = SubnetId
48637
+
48638
+ @property
48639
+ def ProjectId(self):
48640
+ """项目id
48641
+ 注意:此字段可能返回 null,表示取不到有效值。
48642
+ :rtype: str
48643
+ """
48644
+ return self._ProjectId
48645
+
48646
+ @ProjectId.setter
48647
+ def ProjectId(self, ProjectId):
48648
+ self._ProjectId = ProjectId
48649
+
48650
+ @property
48651
+ def BasicResourcePackage(self):
48652
+ """基础资源包,资源组至少包含一个基础资源包
48653
+ 注意:此字段可能返回 null,表示取不到有效值。
48654
+ :rtype: :class:`tencentcloud.wedata.v20210820.models.ExecutorResourcePackageInfo`
48655
+ """
48656
+ return self._BasicResourcePackage
48657
+
48658
+ @BasicResourcePackage.setter
48659
+ def BasicResourcePackage(self, BasicResourcePackage):
48660
+ self._BasicResourcePackage = BasicResourcePackage
48661
+
48662
+ @property
48663
+ def AdvanceResourcePackage(self):
48664
+ """增强资源包
48665
+ 注意:此字段可能返回 null,表示取不到有效值。
48666
+ :rtype: :class:`tencentcloud.wedata.v20210820.models.ExecutorResourcePackageInfo`
48667
+ """
48668
+ return self._AdvanceResourcePackage
48669
+
48670
+ @AdvanceResourcePackage.setter
48671
+ def AdvanceResourcePackage(self, AdvanceResourcePackage):
48672
+ self._AdvanceResourcePackage = AdvanceResourcePackage
48673
+
48674
+ @property
48675
+ def AutoRenewFlag(self):
48676
+ """是否自动续费
48677
+ 注意:此字段可能返回 null,表示取不到有效值。
48678
+ :rtype: int
48679
+ """
48680
+ return self._AutoRenewFlag
48681
+
48682
+ @AutoRenewFlag.setter
48683
+ def AutoRenewFlag(self, AutoRenewFlag):
48684
+ self._AutoRenewFlag = AutoRenewFlag
48685
+
48686
+ @property
48687
+ def RegionEn(self):
48688
+ """区域英文
48689
+ 注意:此字段可能返回 null,表示取不到有效值。
48690
+ :rtype: str
48691
+ """
48692
+ return self._RegionEn
48693
+
48694
+ @RegionEn.setter
48695
+ def RegionEn(self, RegionEn):
48696
+ self._RegionEn = RegionEn
48697
+
48698
+ @property
48699
+ def RegionId(self):
48700
+ """区域Id
48701
+ 注意:此字段可能返回 null,表示取不到有效值。
48702
+ :rtype: int
48703
+ """
48704
+ return self._RegionId
48705
+
48706
+ @RegionId.setter
48707
+ def RegionId(self, RegionId):
48708
+ self._RegionId = RegionId
48709
+
48710
+ @property
48711
+ def ProjectName(self):
48712
+ """项目名称
48713
+ 注意:此字段可能返回 null,表示取不到有效值。
48714
+ :rtype: str
48715
+ """
48716
+ return self._ProjectName
48717
+
48718
+ @ProjectName.setter
48719
+ def ProjectName(self, ProjectName):
48720
+ self._ProjectName = ProjectName
48721
+
48722
+ @property
48723
+ def ProjectDisplayName(self):
48724
+ """项目展示名称
48725
+ 注意:此字段可能返回 null,表示取不到有效值。
48726
+ :rtype: str
48727
+ """
48728
+ return self._ProjectDisplayName
48729
+
48730
+ @ProjectDisplayName.setter
48731
+ def ProjectDisplayName(self, ProjectDisplayName):
48732
+ self._ProjectDisplayName = ProjectDisplayName
48733
+
48734
+ @property
48735
+ def AssociateProjectNums(self):
48736
+ """资源组关联项目数
48737
+ 注意:此字段可能返回 null,表示取不到有效值。
48738
+ :rtype: int
48739
+ """
48740
+ return self._AssociateProjectNums
48741
+
48742
+ @AssociateProjectNums.setter
48743
+ def AssociateProjectNums(self, AssociateProjectNums):
48744
+ self._AssociateProjectNums = AssociateProjectNums
48745
+
48746
+ @property
48747
+ def IsLocked(self):
48748
+ """是否锁定,false为未锁定,true为锁定
48749
+ 注意:此字段可能返回 null,表示取不到有效值。
48750
+ :rtype: bool
48751
+ """
48752
+ return self._IsLocked
48753
+
48754
+ @IsLocked.setter
48755
+ def IsLocked(self, IsLocked):
48756
+ self._IsLocked = IsLocked
48757
+
48758
+ @property
48759
+ def SourceType(self):
48760
+ """来源类型,0为系统默认,1为自定义
48761
+ 注意:此字段可能返回 null,表示取不到有效值。
48762
+ :rtype: int
48763
+ """
48764
+ return self._SourceType
48765
+
48766
+ @SourceType.setter
48767
+ def SourceType(self, SourceType):
48768
+ self._SourceType = SourceType
48769
+
48770
+ @property
48771
+ def MQPackageVO(self):
48772
+ """队列资源包
48773
+ 注意:此字段可能返回 null,表示取不到有效值。
48774
+ :rtype: :class:`tencentcloud.wedata.v20210820.models.MQPackageVO`
48775
+ """
48776
+ return self._MQPackageVO
48777
+
48778
+ @MQPackageVO.setter
48779
+ def MQPackageVO(self, MQPackageVO):
48780
+ self._MQPackageVO = MQPackageVO
48781
+
48782
+ @property
48783
+ def FirstChoice(self):
48784
+ """是否首选
48785
+ 注意:此字段可能返回 null,表示取不到有效值。
48786
+ :rtype: bool
48787
+ """
48788
+ return self._FirstChoice
48789
+
48790
+ @FirstChoice.setter
48791
+ def FirstChoice(self, FirstChoice):
48792
+ self._FirstChoice = FirstChoice
48793
+
48794
+ @property
48795
+ def PythonSubVersions(self):
48796
+ """资源组python版本绑定详情
48797
+ :rtype: list of str
48798
+ """
48799
+ return self._PythonSubVersions
48800
+
48801
+ @PythonSubVersions.setter
48802
+ def PythonSubVersions(self, PythonSubVersions):
48803
+ self._PythonSubVersions = PythonSubVersions
48804
+
48805
+
48806
+ def _deserialize(self, params):
48807
+ self._ExecutorGroupId = params.get("ExecutorGroupId")
48808
+ self._ExecutorGroupName = params.get("ExecutorGroupName")
48809
+ self._ExecutorGroupDesc = params.get("ExecutorGroupDesc")
48810
+ self._ExecutorResourceType = params.get("ExecutorResourceType")
48811
+ self._Region = params.get("Region")
48812
+ self._VpcId = params.get("VpcId")
48813
+ self._SubnetId = params.get("SubnetId")
48814
+ self._ProjectId = params.get("ProjectId")
48815
+ if params.get("BasicResourcePackage") is not None:
48816
+ self._BasicResourcePackage = ExecutorResourcePackageInfo()
48817
+ self._BasicResourcePackage._deserialize(params.get("BasicResourcePackage"))
48818
+ if params.get("AdvanceResourcePackage") is not None:
48819
+ self._AdvanceResourcePackage = ExecutorResourcePackageInfo()
48820
+ self._AdvanceResourcePackage._deserialize(params.get("AdvanceResourcePackage"))
48821
+ self._AutoRenewFlag = params.get("AutoRenewFlag")
48822
+ self._RegionEn = params.get("RegionEn")
48823
+ self._RegionId = params.get("RegionId")
48824
+ self._ProjectName = params.get("ProjectName")
48825
+ self._ProjectDisplayName = params.get("ProjectDisplayName")
48826
+ self._AssociateProjectNums = params.get("AssociateProjectNums")
48827
+ self._IsLocked = params.get("IsLocked")
48828
+ self._SourceType = params.get("SourceType")
48829
+ if params.get("MQPackageVO") is not None:
48830
+ self._MQPackageVO = MQPackageVO()
48831
+ self._MQPackageVO._deserialize(params.get("MQPackageVO"))
48832
+ self._FirstChoice = params.get("FirstChoice")
48833
+ self._PythonSubVersions = params.get("PythonSubVersions")
48834
+ memeber_set = set(params.keys())
48835
+ for name, value in vars(self).items():
48836
+ property_name = name[1:]
48837
+ if property_name in memeber_set:
48838
+ memeber_set.remove(property_name)
48839
+ if len(memeber_set) > 0:
48840
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
48841
+
48842
+
48843
+
48844
+ class ExecutorResourcePackageExtInfo(AbstractModel):
48845
+ """执行资源包额外信息
48846
+
48847
+ """
48848
+
48849
+ def __init__(self):
48850
+ r"""
48851
+ :param _InlongGroupId: 集成资源组:InLong集群id
48852
+ 注意:此字段可能返回 null,表示取不到有效值。
48853
+ :type InlongGroupId: str
48854
+ :param _OceanusClusterId: 集成资源组:oceanus集群id
48855
+ 注意:此字段可能返回 null,表示取不到有效值。
48856
+ :type OceanusClusterId: str
48857
+ :param _ProductResourceIdList: 计费相关:产品资源id列表
48858
+ 注意:此字段可能返回 null,表示取不到有效值。
48859
+ :type ProductResourceIdList: list of str
48860
+ :param _BillingSuccess: 当前资源包对应订单是否发货成功
48861
+ 注意:此字段可能返回 null,表示取不到有效值。
48862
+ :type BillingSuccess: bool
48863
+ :param _ApigwServiceId: apigw服务id
48864
+ 注意:此字段可能返回 null,表示取不到有效值。
48865
+ :type ApigwServiceId: str
48866
+ :param _ApigwServiceName: apigw服务名称
48867
+ 注意:此字段可能返回 null,表示取不到有效值。
48868
+ :type ApigwServiceName: str
48869
+ :param _DataProxySpec: 数据集成相关:dataProxy配置规格
48870
+ 注意:此字段可能返回 null,表示取不到有效值。
48871
+ :type DataProxySpec: int
48872
+ :param _DataProxyNum: dataProxy数量
48873
+ 注意:此字段可能返回 null,表示取不到有效值。
48874
+ :type DataProxyNum: int
48875
+ :param _DataProxyStatus: dataProxy状态,同ExecutorGroupStatus
48876
+ 注意:此字段可能返回 null,表示取不到有效值。
48877
+ :type DataProxyStatus: int
48878
+ :param _InLongManagerUrl: inlongManager地址
48879
+ 注意:此字段可能返回 null,表示取不到有效值。
48880
+ :type InLongManagerUrl: str
48881
+ :param _InLongVersion: inlong版本
48882
+ 注意:此字段可能返回 null,表示取不到有效值。
48883
+ :type InLongVersion: str
48884
+ :param _ExecutorMachineIpList: 私有化资源组相关: 执行及机器ip列表
48885
+ 注意:此字段可能返回 null,表示取不到有效值。
48886
+ :type ExecutorMachineIpList: str
48887
+ """
48888
+ self._InlongGroupId = None
48889
+ self._OceanusClusterId = None
48890
+ self._ProductResourceIdList = None
48891
+ self._BillingSuccess = None
48892
+ self._ApigwServiceId = None
48893
+ self._ApigwServiceName = None
48894
+ self._DataProxySpec = None
48895
+ self._DataProxyNum = None
48896
+ self._DataProxyStatus = None
48897
+ self._InLongManagerUrl = None
48898
+ self._InLongVersion = None
48899
+ self._ExecutorMachineIpList = None
48900
+
48901
+ @property
48902
+ def InlongGroupId(self):
48903
+ """集成资源组:InLong集群id
48904
+ 注意:此字段可能返回 null,表示取不到有效值。
48905
+ :rtype: str
48906
+ """
48907
+ return self._InlongGroupId
48908
+
48909
+ @InlongGroupId.setter
48910
+ def InlongGroupId(self, InlongGroupId):
48911
+ self._InlongGroupId = InlongGroupId
48912
+
48913
+ @property
48914
+ def OceanusClusterId(self):
48915
+ """集成资源组:oceanus集群id
48916
+ 注意:此字段可能返回 null,表示取不到有效值。
48917
+ :rtype: str
48918
+ """
48919
+ return self._OceanusClusterId
48920
+
48921
+ @OceanusClusterId.setter
48922
+ def OceanusClusterId(self, OceanusClusterId):
48923
+ self._OceanusClusterId = OceanusClusterId
48924
+
48925
+ @property
48926
+ def ProductResourceIdList(self):
48927
+ """计费相关:产品资源id列表
48928
+ 注意:此字段可能返回 null,表示取不到有效值。
48929
+ :rtype: list of str
48930
+ """
48931
+ return self._ProductResourceIdList
48932
+
48933
+ @ProductResourceIdList.setter
48934
+ def ProductResourceIdList(self, ProductResourceIdList):
48935
+ self._ProductResourceIdList = ProductResourceIdList
48936
+
48937
+ @property
48938
+ def BillingSuccess(self):
48939
+ """当前资源包对应订单是否发货成功
48940
+ 注意:此字段可能返回 null,表示取不到有效值。
48941
+ :rtype: bool
48942
+ """
48943
+ return self._BillingSuccess
48944
+
48945
+ @BillingSuccess.setter
48946
+ def BillingSuccess(self, BillingSuccess):
48947
+ self._BillingSuccess = BillingSuccess
48948
+
48949
+ @property
48950
+ def ApigwServiceId(self):
48951
+ """apigw服务id
48952
+ 注意:此字段可能返回 null,表示取不到有效值。
48953
+ :rtype: str
48954
+ """
48955
+ return self._ApigwServiceId
48956
+
48957
+ @ApigwServiceId.setter
48958
+ def ApigwServiceId(self, ApigwServiceId):
48959
+ self._ApigwServiceId = ApigwServiceId
48960
+
48961
+ @property
48962
+ def ApigwServiceName(self):
48963
+ """apigw服务名称
48964
+ 注意:此字段可能返回 null,表示取不到有效值。
48965
+ :rtype: str
48966
+ """
48967
+ return self._ApigwServiceName
48968
+
48969
+ @ApigwServiceName.setter
48970
+ def ApigwServiceName(self, ApigwServiceName):
48971
+ self._ApigwServiceName = ApigwServiceName
48972
+
48973
+ @property
48974
+ def DataProxySpec(self):
48975
+ """数据集成相关:dataProxy配置规格
48976
+ 注意:此字段可能返回 null,表示取不到有效值。
48977
+ :rtype: int
48978
+ """
48979
+ return self._DataProxySpec
48980
+
48981
+ @DataProxySpec.setter
48982
+ def DataProxySpec(self, DataProxySpec):
48983
+ self._DataProxySpec = DataProxySpec
48984
+
48985
+ @property
48986
+ def DataProxyNum(self):
48987
+ """dataProxy数量
48988
+ 注意:此字段可能返回 null,表示取不到有效值。
48989
+ :rtype: int
48990
+ """
48991
+ return self._DataProxyNum
48992
+
48993
+ @DataProxyNum.setter
48994
+ def DataProxyNum(self, DataProxyNum):
48995
+ self._DataProxyNum = DataProxyNum
48996
+
48997
+ @property
48998
+ def DataProxyStatus(self):
48999
+ """dataProxy状态,同ExecutorGroupStatus
49000
+ 注意:此字段可能返回 null,表示取不到有效值。
49001
+ :rtype: int
49002
+ """
49003
+ return self._DataProxyStatus
49004
+
49005
+ @DataProxyStatus.setter
49006
+ def DataProxyStatus(self, DataProxyStatus):
49007
+ self._DataProxyStatus = DataProxyStatus
49008
+
49009
+ @property
49010
+ def InLongManagerUrl(self):
49011
+ """inlongManager地址
49012
+ 注意:此字段可能返回 null,表示取不到有效值。
49013
+ :rtype: str
49014
+ """
49015
+ return self._InLongManagerUrl
49016
+
49017
+ @InLongManagerUrl.setter
49018
+ def InLongManagerUrl(self, InLongManagerUrl):
49019
+ self._InLongManagerUrl = InLongManagerUrl
49020
+
49021
+ @property
49022
+ def InLongVersion(self):
49023
+ """inlong版本
49024
+ 注意:此字段可能返回 null,表示取不到有效值。
49025
+ :rtype: str
49026
+ """
49027
+ return self._InLongVersion
49028
+
49029
+ @InLongVersion.setter
49030
+ def InLongVersion(self, InLongVersion):
49031
+ self._InLongVersion = InLongVersion
49032
+
49033
+ @property
49034
+ def ExecutorMachineIpList(self):
49035
+ """私有化资源组相关: 执行及机器ip列表
49036
+ 注意:此字段可能返回 null,表示取不到有效值。
49037
+ :rtype: str
49038
+ """
49039
+ return self._ExecutorMachineIpList
49040
+
49041
+ @ExecutorMachineIpList.setter
49042
+ def ExecutorMachineIpList(self, ExecutorMachineIpList):
49043
+ self._ExecutorMachineIpList = ExecutorMachineIpList
49044
+
49045
+
49046
+ def _deserialize(self, params):
49047
+ self._InlongGroupId = params.get("InlongGroupId")
49048
+ self._OceanusClusterId = params.get("OceanusClusterId")
49049
+ self._ProductResourceIdList = params.get("ProductResourceIdList")
49050
+ self._BillingSuccess = params.get("BillingSuccess")
49051
+ self._ApigwServiceId = params.get("ApigwServiceId")
49052
+ self._ApigwServiceName = params.get("ApigwServiceName")
49053
+ self._DataProxySpec = params.get("DataProxySpec")
49054
+ self._DataProxyNum = params.get("DataProxyNum")
49055
+ self._DataProxyStatus = params.get("DataProxyStatus")
49056
+ self._InLongManagerUrl = params.get("InLongManagerUrl")
49057
+ self._InLongVersion = params.get("InLongVersion")
49058
+ self._ExecutorMachineIpList = params.get("ExecutorMachineIpList")
49059
+ memeber_set = set(params.keys())
49060
+ for name, value in vars(self).items():
49061
+ property_name = name[1:]
49062
+ if property_name in memeber_set:
49063
+ memeber_set.remove(property_name)
49064
+ if len(memeber_set) > 0:
49065
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
49066
+
49067
+
49068
+
49069
+ class ExecutorResourcePackageInfo(AbstractModel):
49070
+ """执行资源包
49071
+
49072
+ """
49073
+
49074
+ def __init__(self):
49075
+ r"""
49076
+ :param _ResourcePackageNum: 资源包规格相关:资源包个数
49077
+ 注意:此字段可能返回 null,表示取不到有效值。
49078
+ :type ResourcePackageNum: int
49079
+ :param _CpuNum: 资源包规格相关:cpu个数
49080
+ 注意:此字段可能返回 null,表示取不到有效值。
49081
+ :type CpuNum: int
49082
+ :param _ExecutorResourcePackageId: 资源包id
49083
+ 注意:此字段可能返回 null,表示取不到有效值。
49084
+ :type ExecutorResourcePackageId: str
49085
+ :param _MemSize: 资源包规格相关:内存大小,单位:G
49086
+ 注意:此字段可能返回 null,表示取不到有效值。
49087
+ :type MemSize: int
49088
+ :param _Status: 资源包状态, /**
49089
+ * 初始化中
49090
+ */
49091
+ INIT(0),
49092
+ /**
49093
+ * 运行中
49094
+ */
49095
+ RUNNING(1),
49096
+ /**
49097
+ * 运行异常
49098
+ */
49099
+ RUNNING_FAILED(2),
49100
+ /**
49101
+ * 释放中
49102
+ */
49103
+ DELETEING(3),
49104
+ /**
49105
+ * 已释放
49106
+ */
49107
+ DELETED(4),
49108
+ /**
49109
+ * 创建中
49110
+ */
49111
+ CREATING(5),
49112
+ /**
49113
+ * 创建失败
49114
+ */
49115
+ CREATE_FAILED(6),
49116
+ /**
49117
+ * 更新中
49118
+ */
49119
+ UPDATING(7),
49120
+ /**
49121
+ * 更新失败
49122
+ */
49123
+ UPDATE_FAILED(8),
49124
+ /**
49125
+ * 已到期
49126
+ */
49127
+ EXPIRED(9);
49128
+ 注意:此字段可能返回 null,表示取不到有效值。
49129
+ :type Status: int
49130
+ :param _StatusDescription: 资源包状态描述:保存创建失败,运行异常和更新失败的原因
49131
+ 注意:此字段可能返回 null,表示取不到有效值。
49132
+ :type StatusDescription: str
49133
+ :param _ExpireTime: 资源包到期时间,时间戳毫秒
49134
+ 注意:此字段可能返回 null,表示取不到有效值。
49135
+ :type ExpireTime: int
49136
+ :param _ExtInfo: 资源包额外属性
49137
+ 注意:此字段可能返回 null,表示取不到有效值。
49138
+ :type ExtInfo: :class:`tencentcloud.wedata.v20210820.models.ExecutorResourcePackageExtInfo`
49139
+ :param _ProjectId: 绑定的项目id,可为空
49140
+ 注意:此字段可能返回 null,表示取不到有效值。
49141
+ :type ProjectId: str
49142
+ :param _ProjectBindTime: 资源组绑定的时间,时间戳毫秒
49143
+ 注意:此字段可能返回 null,表示取不到有效值。
49144
+ :type ProjectBindTime: int
49145
+ :param _ResourcePackageUsage: 资源包使用状态: cpu使用,内存使用及趋势
49146
+ 注意:此字段可能返回 null,表示取不到有效值。
49147
+ :type ResourcePackageUsage: :class:`tencentcloud.wedata.v20210820.models.ExecutorResourcePackageUsageInfo`
49148
+ :param _ProductResourceIdList: 计费相关:产品资源id列表
49149
+ 注意:此字段可能返回 null,表示取不到有效值。
49150
+ :type ProductResourceIdList: list of int
49151
+ :param _LifeTime: 生命周期
49152
+ 注意:此字段可能返回 null,表示取不到有效值。
49153
+ :type LifeTime: int
49154
+ :param _VpcId: 私有网络Id
49155
+ 注意:此字段可能返回 null,表示取不到有效值。
49156
+ :type VpcId: str
49157
+ :param _VpcName: 私有网络名称
49158
+ 注意:此字段可能返回 null,表示取不到有效值。
49159
+ :type VpcName: str
49160
+ :param _SubnetId: 子网Id
49161
+ 注意:此字段可能返回 null,表示取不到有效值。
49162
+ :type SubnetId: str
49163
+ :param _SubnetName: 子网名称
49164
+ 注意:此字段可能返回 null,表示取不到有效值。
49165
+ :type SubnetName: str
49166
+ :param _ResourceStandard: 执行资源相关:资源规格描述
49167
+ 注意:此字段可能返回 null,表示取不到有效值。
49168
+ :type ResourceStandard: str
49169
+ :param _TotalMemory: 内存总数
49170
+ :type TotalMemory: int
49171
+ """
49172
+ self._ResourcePackageNum = None
49173
+ self._CpuNum = None
49174
+ self._ExecutorResourcePackageId = None
49175
+ self._MemSize = None
49176
+ self._Status = None
49177
+ self._StatusDescription = None
49178
+ self._ExpireTime = None
49179
+ self._ExtInfo = None
49180
+ self._ProjectId = None
49181
+ self._ProjectBindTime = None
49182
+ self._ResourcePackageUsage = None
49183
+ self._ProductResourceIdList = None
49184
+ self._LifeTime = None
49185
+ self._VpcId = None
49186
+ self._VpcName = None
49187
+ self._SubnetId = None
49188
+ self._SubnetName = None
49189
+ self._ResourceStandard = None
49190
+ self._TotalMemory = None
49191
+
49192
+ @property
49193
+ def ResourcePackageNum(self):
49194
+ """资源包规格相关:资源包个数
49195
+ 注意:此字段可能返回 null,表示取不到有效值。
49196
+ :rtype: int
49197
+ """
49198
+ return self._ResourcePackageNum
49199
+
49200
+ @ResourcePackageNum.setter
49201
+ def ResourcePackageNum(self, ResourcePackageNum):
49202
+ self._ResourcePackageNum = ResourcePackageNum
49203
+
49204
+ @property
49205
+ def CpuNum(self):
49206
+ """资源包规格相关:cpu个数
49207
+ 注意:此字段可能返回 null,表示取不到有效值。
49208
+ :rtype: int
49209
+ """
49210
+ return self._CpuNum
49211
+
49212
+ @CpuNum.setter
49213
+ def CpuNum(self, CpuNum):
49214
+ self._CpuNum = CpuNum
49215
+
49216
+ @property
49217
+ def ExecutorResourcePackageId(self):
49218
+ """资源包id
49219
+ 注意:此字段可能返回 null,表示取不到有效值。
49220
+ :rtype: str
49221
+ """
49222
+ return self._ExecutorResourcePackageId
49223
+
49224
+ @ExecutorResourcePackageId.setter
49225
+ def ExecutorResourcePackageId(self, ExecutorResourcePackageId):
49226
+ self._ExecutorResourcePackageId = ExecutorResourcePackageId
49227
+
49228
+ @property
49229
+ def MemSize(self):
49230
+ """资源包规格相关:内存大小,单位:G
49231
+ 注意:此字段可能返回 null,表示取不到有效值。
49232
+ :rtype: int
49233
+ """
49234
+ return self._MemSize
49235
+
49236
+ @MemSize.setter
49237
+ def MemSize(self, MemSize):
49238
+ self._MemSize = MemSize
49239
+
49240
+ @property
49241
+ def Status(self):
49242
+ """资源包状态, /**
49243
+ * 初始化中
49244
+ */
49245
+ INIT(0),
49246
+ /**
49247
+ * 运行中
49248
+ */
49249
+ RUNNING(1),
49250
+ /**
49251
+ * 运行异常
49252
+ */
49253
+ RUNNING_FAILED(2),
49254
+ /**
49255
+ * 释放中
49256
+ */
49257
+ DELETEING(3),
49258
+ /**
49259
+ * 已释放
49260
+ */
49261
+ DELETED(4),
49262
+ /**
49263
+ * 创建中
49264
+ */
49265
+ CREATING(5),
49266
+ /**
49267
+ * 创建失败
49268
+ */
49269
+ CREATE_FAILED(6),
49270
+ /**
49271
+ * 更新中
49272
+ */
49273
+ UPDATING(7),
49274
+ /**
49275
+ * 更新失败
49276
+ */
49277
+ UPDATE_FAILED(8),
49278
+ /**
49279
+ * 已到期
49280
+ */
49281
+ EXPIRED(9);
49282
+ 注意:此字段可能返回 null,表示取不到有效值。
49283
+ :rtype: int
49284
+ """
49285
+ return self._Status
49286
+
49287
+ @Status.setter
49288
+ def Status(self, Status):
49289
+ self._Status = Status
49290
+
49291
+ @property
49292
+ def StatusDescription(self):
49293
+ """资源包状态描述:保存创建失败,运行异常和更新失败的原因
49294
+ 注意:此字段可能返回 null,表示取不到有效值。
49295
+ :rtype: str
49296
+ """
49297
+ return self._StatusDescription
49298
+
49299
+ @StatusDescription.setter
49300
+ def StatusDescription(self, StatusDescription):
49301
+ self._StatusDescription = StatusDescription
49302
+
49303
+ @property
49304
+ def ExpireTime(self):
49305
+ """资源包到期时间,时间戳毫秒
49306
+ 注意:此字段可能返回 null,表示取不到有效值。
49307
+ :rtype: int
49308
+ """
49309
+ return self._ExpireTime
49310
+
49311
+ @ExpireTime.setter
49312
+ def ExpireTime(self, ExpireTime):
49313
+ self._ExpireTime = ExpireTime
49314
+
49315
+ @property
49316
+ def ExtInfo(self):
49317
+ """资源包额外属性
49318
+ 注意:此字段可能返回 null,表示取不到有效值。
49319
+ :rtype: :class:`tencentcloud.wedata.v20210820.models.ExecutorResourcePackageExtInfo`
49320
+ """
49321
+ return self._ExtInfo
49322
+
49323
+ @ExtInfo.setter
49324
+ def ExtInfo(self, ExtInfo):
49325
+ self._ExtInfo = ExtInfo
49326
+
49327
+ @property
49328
+ def ProjectId(self):
49329
+ """绑定的项目id,可为空
49330
+ 注意:此字段可能返回 null,表示取不到有效值。
49331
+ :rtype: str
49332
+ """
49333
+ return self._ProjectId
49334
+
49335
+ @ProjectId.setter
49336
+ def ProjectId(self, ProjectId):
49337
+ self._ProjectId = ProjectId
49338
+
49339
+ @property
49340
+ def ProjectBindTime(self):
49341
+ """资源组绑定的时间,时间戳毫秒
49342
+ 注意:此字段可能返回 null,表示取不到有效值。
49343
+ :rtype: int
49344
+ """
49345
+ return self._ProjectBindTime
49346
+
49347
+ @ProjectBindTime.setter
49348
+ def ProjectBindTime(self, ProjectBindTime):
49349
+ self._ProjectBindTime = ProjectBindTime
49350
+
49351
+ @property
49352
+ def ResourcePackageUsage(self):
49353
+ """资源包使用状态: cpu使用,内存使用及趋势
49354
+ 注意:此字段可能返回 null,表示取不到有效值。
49355
+ :rtype: :class:`tencentcloud.wedata.v20210820.models.ExecutorResourcePackageUsageInfo`
49356
+ """
49357
+ return self._ResourcePackageUsage
49358
+
49359
+ @ResourcePackageUsage.setter
49360
+ def ResourcePackageUsage(self, ResourcePackageUsage):
49361
+ self._ResourcePackageUsage = ResourcePackageUsage
49362
+
49363
+ @property
49364
+ def ProductResourceIdList(self):
49365
+ """计费相关:产品资源id列表
49366
+ 注意:此字段可能返回 null,表示取不到有效值。
49367
+ :rtype: list of int
49368
+ """
49369
+ return self._ProductResourceIdList
49370
+
49371
+ @ProductResourceIdList.setter
49372
+ def ProductResourceIdList(self, ProductResourceIdList):
49373
+ self._ProductResourceIdList = ProductResourceIdList
49374
+
49375
+ @property
49376
+ def LifeTime(self):
49377
+ """生命周期
49378
+ 注意:此字段可能返回 null,表示取不到有效值。
49379
+ :rtype: int
49380
+ """
49381
+ return self._LifeTime
49382
+
49383
+ @LifeTime.setter
49384
+ def LifeTime(self, LifeTime):
49385
+ self._LifeTime = LifeTime
49386
+
49387
+ @property
49388
+ def VpcId(self):
49389
+ """私有网络Id
49390
+ 注意:此字段可能返回 null,表示取不到有效值。
49391
+ :rtype: str
49392
+ """
49393
+ return self._VpcId
49394
+
49395
+ @VpcId.setter
49396
+ def VpcId(self, VpcId):
49397
+ self._VpcId = VpcId
49398
+
49399
+ @property
49400
+ def VpcName(self):
49401
+ """私有网络名称
49402
+ 注意:此字段可能返回 null,表示取不到有效值。
49403
+ :rtype: str
49404
+ """
49405
+ return self._VpcName
49406
+
49407
+ @VpcName.setter
49408
+ def VpcName(self, VpcName):
49409
+ self._VpcName = VpcName
49410
+
49411
+ @property
49412
+ def SubnetId(self):
49413
+ """子网Id
49414
+ 注意:此字段可能返回 null,表示取不到有效值。
49415
+ :rtype: str
49416
+ """
49417
+ return self._SubnetId
49418
+
49419
+ @SubnetId.setter
49420
+ def SubnetId(self, SubnetId):
49421
+ self._SubnetId = SubnetId
49422
+
49423
+ @property
49424
+ def SubnetName(self):
49425
+ """子网名称
49426
+ 注意:此字段可能返回 null,表示取不到有效值。
49427
+ :rtype: str
49428
+ """
49429
+ return self._SubnetName
49430
+
49431
+ @SubnetName.setter
49432
+ def SubnetName(self, SubnetName):
49433
+ self._SubnetName = SubnetName
49434
+
49435
+ @property
49436
+ def ResourceStandard(self):
49437
+ """执行资源相关:资源规格描述
49438
+ 注意:此字段可能返回 null,表示取不到有效值。
49439
+ :rtype: str
49440
+ """
49441
+ return self._ResourceStandard
49442
+
49443
+ @ResourceStandard.setter
49444
+ def ResourceStandard(self, ResourceStandard):
49445
+ self._ResourceStandard = ResourceStandard
49446
+
49447
+ @property
49448
+ def TotalMemory(self):
49449
+ """内存总数
49450
+ :rtype: int
49451
+ """
49452
+ return self._TotalMemory
49453
+
49454
+ @TotalMemory.setter
49455
+ def TotalMemory(self, TotalMemory):
49456
+ self._TotalMemory = TotalMemory
49457
+
49458
+
49459
+ def _deserialize(self, params):
49460
+ self._ResourcePackageNum = params.get("ResourcePackageNum")
49461
+ self._CpuNum = params.get("CpuNum")
49462
+ self._ExecutorResourcePackageId = params.get("ExecutorResourcePackageId")
49463
+ self._MemSize = params.get("MemSize")
49464
+ self._Status = params.get("Status")
49465
+ self._StatusDescription = params.get("StatusDescription")
49466
+ self._ExpireTime = params.get("ExpireTime")
49467
+ if params.get("ExtInfo") is not None:
49468
+ self._ExtInfo = ExecutorResourcePackageExtInfo()
49469
+ self._ExtInfo._deserialize(params.get("ExtInfo"))
49470
+ self._ProjectId = params.get("ProjectId")
49471
+ self._ProjectBindTime = params.get("ProjectBindTime")
49472
+ if params.get("ResourcePackageUsage") is not None:
49473
+ self._ResourcePackageUsage = ExecutorResourcePackageUsageInfo()
49474
+ self._ResourcePackageUsage._deserialize(params.get("ResourcePackageUsage"))
49475
+ self._ProductResourceIdList = params.get("ProductResourceIdList")
49476
+ self._LifeTime = params.get("LifeTime")
49477
+ self._VpcId = params.get("VpcId")
49478
+ self._VpcName = params.get("VpcName")
49479
+ self._SubnetId = params.get("SubnetId")
49480
+ self._SubnetName = params.get("SubnetName")
49481
+ self._ResourceStandard = params.get("ResourceStandard")
49482
+ self._TotalMemory = params.get("TotalMemory")
49483
+ memeber_set = set(params.keys())
49484
+ for name, value in vars(self).items():
49485
+ property_name = name[1:]
49486
+ if property_name in memeber_set:
49487
+ memeber_set.remove(property_name)
49488
+ if len(memeber_set) > 0:
49489
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
49490
+
49491
+
49492
+
49493
+ class ExecutorResourcePackageUsageInfo(AbstractModel):
49494
+ """执行资源包使用情况
49495
+
49496
+ """
49497
+
49498
+ def __init__(self):
49499
+ r"""
49500
+ :param _CpuUsagePercent: CPU占用百分比
49501
+ 注意:此字段可能返回 null,表示取不到有效值。
49502
+ :type CpuUsagePercent: float
49503
+ :param _MemUsagePercent: 内存占用百分比
49504
+ 注意:此字段可能返回 null,表示取不到有效值。
49505
+ :type MemUsagePercent: float
49506
+ :param _Status: 资源包状态, /**
49507
+ * 初始化中
49508
+ */
49509
+ INIT(0),
49510
+ /**
49511
+ * 运行中
49512
+ */
49513
+ RUNNING(1),
49514
+ /**
49515
+ * 运行异常
49516
+ */
49517
+ RUNNING_FAILED(2),
49518
+ /**
49519
+ * 释放中
49520
+ */
49521
+ DELETEING(3),
49522
+ /**
49523
+ * 已释放
49524
+ */
49525
+ DELETED(4),
49526
+ /**
49527
+ * 创建中
49528
+ */
49529
+ CREATING(5),
49530
+ /**
49531
+ * 创建失败
49532
+ */
49533
+ CREATE_FAILED(6),
49534
+ /**
49535
+ * 更新中
49536
+ */
49537
+ UPDATING(7),
49538
+ /**
49539
+ * 更新失败
49540
+ */
49541
+ UPDATE_FAILED(8),
49542
+ /**
49543
+ * 已到期
49544
+ */
49545
+ EXPIRED(9);
49546
+ 注意:此字段可能返回 null,表示取不到有效值。
49547
+ :type Status: float
49548
+ :param _RunningTaskNum: /**
49549
+ * 初始化中
49550
+ */
49551
+ INIT(0),
49552
+ /**
49553
+ * 运行中
49554
+ */
49555
+ RUNNING(1),
49556
+ /**
49557
+ * 运行异常
49558
+ */
49559
+ RUNNING_FAILED(2),
49560
+ /**
49561
+ * 释放中
49562
+ */
49563
+ DELETEING(3),
49564
+ /**
49565
+ * 已释放
49566
+ */
49567
+ DELETED(4),
49568
+ /**
49569
+ * 创建中
49570
+ */
49571
+ CREATING(5),
49572
+ /**
49573
+ * 创建失败
49574
+ */
49575
+ CREATE_FAILED(6),
49576
+ /**
49577
+ * 更新中
49578
+ */
49579
+ UPDATING(7),
49580
+ /**
49581
+ * 更新失败
49582
+ */
49583
+ UPDATE_FAILED(8),
49584
+ /**
49585
+ * 已到期
49586
+ */
49587
+ 运行中的任务数
49588
+ 注意:此字段可能返回 null,表示取不到有效值。
49589
+ :type RunningTaskNum: int
49590
+ :param _WaitingTaskNum: 等待中的任务数
49591
+ 注意:此字段可能返回 null,表示取不到有效值。
49592
+ :type WaitingTaskNum: int
49593
+ :param _UsageTrendStartTime: 资源使用趋势: 开始时间
49594
+ 注意:此字段可能返回 null,表示取不到有效值。
49595
+ :type UsageTrendStartTime: str
49596
+ :param _UsageTrendEndTime: 资源使用趋势: 结束时间
49597
+ 注意:此字段可能返回 null,表示取不到有效值。
49598
+ :type UsageTrendEndTime: str
49599
+ :param _UsageTrendList: 资源使用趋势列表
49600
+ 注意:此字段可能返回 null,表示取不到有效值。
49601
+ :type UsageTrendList: list of ExecutorUsageTrendInfo
49602
+ """
49603
+ self._CpuUsagePercent = None
49604
+ self._MemUsagePercent = None
49605
+ self._Status = None
49606
+ self._RunningTaskNum = None
49607
+ self._WaitingTaskNum = None
49608
+ self._UsageTrendStartTime = None
49609
+ self._UsageTrendEndTime = None
49610
+ self._UsageTrendList = None
49611
+
49612
+ @property
49613
+ def CpuUsagePercent(self):
49614
+ """CPU占用百分比
49615
+ 注意:此字段可能返回 null,表示取不到有效值。
49616
+ :rtype: float
49617
+ """
49618
+ return self._CpuUsagePercent
49619
+
49620
+ @CpuUsagePercent.setter
49621
+ def CpuUsagePercent(self, CpuUsagePercent):
49622
+ self._CpuUsagePercent = CpuUsagePercent
49623
+
49624
+ @property
49625
+ def MemUsagePercent(self):
49626
+ """内存占用百分比
49627
+ 注意:此字段可能返回 null,表示取不到有效值。
49628
+ :rtype: float
49629
+ """
49630
+ return self._MemUsagePercent
49631
+
49632
+ @MemUsagePercent.setter
49633
+ def MemUsagePercent(self, MemUsagePercent):
49634
+ self._MemUsagePercent = MemUsagePercent
49635
+
49636
+ @property
49637
+ def Status(self):
49638
+ """资源包状态, /**
49639
+ * 初始化中
49640
+ */
49641
+ INIT(0),
49642
+ /**
49643
+ * 运行中
49644
+ */
49645
+ RUNNING(1),
49646
+ /**
49647
+ * 运行异常
49648
+ */
49649
+ RUNNING_FAILED(2),
49650
+ /**
49651
+ * 释放中
49652
+ */
49653
+ DELETEING(3),
49654
+ /**
49655
+ * 已释放
49656
+ */
49657
+ DELETED(4),
49658
+ /**
49659
+ * 创建中
49660
+ */
49661
+ CREATING(5),
49662
+ /**
49663
+ * 创建失败
49664
+ */
49665
+ CREATE_FAILED(6),
49666
+ /**
49667
+ * 更新中
49668
+ */
49669
+ UPDATING(7),
49670
+ /**
49671
+ * 更新失败
49672
+ */
49673
+ UPDATE_FAILED(8),
49674
+ /**
49675
+ * 已到期
49676
+ */
49677
+ EXPIRED(9);
49678
+ 注意:此字段可能返回 null,表示取不到有效值。
49679
+ :rtype: float
49680
+ """
49681
+ return self._Status
49682
+
49683
+ @Status.setter
49684
+ def Status(self, Status):
49685
+ self._Status = Status
49686
+
49687
+ @property
49688
+ def RunningTaskNum(self):
49689
+ """/**
49690
+ * 初始化中
49691
+ */
49692
+ INIT(0),
49693
+ /**
49694
+ * 运行中
49695
+ */
49696
+ RUNNING(1),
49697
+ /**
49698
+ * 运行异常
49699
+ */
49700
+ RUNNING_FAILED(2),
49701
+ /**
49702
+ * 释放中
49703
+ */
49704
+ DELETEING(3),
49705
+ /**
49706
+ * 已释放
49707
+ */
49708
+ DELETED(4),
49709
+ /**
49710
+ * 创建中
49711
+ */
49712
+ CREATING(5),
49713
+ /**
49714
+ * 创建失败
49715
+ */
49716
+ CREATE_FAILED(6),
49717
+ /**
49718
+ * 更新中
49719
+ */
49720
+ UPDATING(7),
49721
+ /**
49722
+ * 更新失败
49723
+ */
49724
+ UPDATE_FAILED(8),
49725
+ /**
49726
+ * 已到期
49727
+ */
49728
+ 运行中的任务数
49729
+ 注意:此字段可能返回 null,表示取不到有效值。
49730
+ :rtype: int
49731
+ """
49732
+ return self._RunningTaskNum
49733
+
49734
+ @RunningTaskNum.setter
49735
+ def RunningTaskNum(self, RunningTaskNum):
49736
+ self._RunningTaskNum = RunningTaskNum
49737
+
49738
+ @property
49739
+ def WaitingTaskNum(self):
49740
+ """等待中的任务数
49741
+ 注意:此字段可能返回 null,表示取不到有效值。
49742
+ :rtype: int
49743
+ """
49744
+ return self._WaitingTaskNum
49745
+
49746
+ @WaitingTaskNum.setter
49747
+ def WaitingTaskNum(self, WaitingTaskNum):
49748
+ self._WaitingTaskNum = WaitingTaskNum
49749
+
49750
+ @property
49751
+ def UsageTrendStartTime(self):
49752
+ """资源使用趋势: 开始时间
49753
+ 注意:此字段可能返回 null,表示取不到有效值。
49754
+ :rtype: str
49755
+ """
49756
+ return self._UsageTrendStartTime
49757
+
49758
+ @UsageTrendStartTime.setter
49759
+ def UsageTrendStartTime(self, UsageTrendStartTime):
49760
+ self._UsageTrendStartTime = UsageTrendStartTime
49761
+
49762
+ @property
49763
+ def UsageTrendEndTime(self):
49764
+ """资源使用趋势: 结束时间
49765
+ 注意:此字段可能返回 null,表示取不到有效值。
49766
+ :rtype: str
49767
+ """
49768
+ return self._UsageTrendEndTime
49769
+
49770
+ @UsageTrendEndTime.setter
49771
+ def UsageTrendEndTime(self, UsageTrendEndTime):
49772
+ self._UsageTrendEndTime = UsageTrendEndTime
49773
+
49774
+ @property
49775
+ def UsageTrendList(self):
49776
+ """资源使用趋势列表
49777
+ 注意:此字段可能返回 null,表示取不到有效值。
49778
+ :rtype: list of ExecutorUsageTrendInfo
49779
+ """
49780
+ return self._UsageTrendList
49781
+
49782
+ @UsageTrendList.setter
49783
+ def UsageTrendList(self, UsageTrendList):
49784
+ self._UsageTrendList = UsageTrendList
49785
+
49786
+
49787
+ def _deserialize(self, params):
49788
+ self._CpuUsagePercent = params.get("CpuUsagePercent")
49789
+ self._MemUsagePercent = params.get("MemUsagePercent")
49790
+ self._Status = params.get("Status")
49791
+ self._RunningTaskNum = params.get("RunningTaskNum")
49792
+ self._WaitingTaskNum = params.get("WaitingTaskNum")
49793
+ self._UsageTrendStartTime = params.get("UsageTrendStartTime")
49794
+ self._UsageTrendEndTime = params.get("UsageTrendEndTime")
49795
+ if params.get("UsageTrendList") is not None:
49796
+ self._UsageTrendList = []
49797
+ for item in params.get("UsageTrendList"):
49798
+ obj = ExecutorUsageTrendInfo()
49799
+ obj._deserialize(item)
49800
+ self._UsageTrendList.append(obj)
49801
+ memeber_set = set(params.keys())
49802
+ for name, value in vars(self).items():
49803
+ property_name = name[1:]
49804
+ if property_name in memeber_set:
49805
+ memeber_set.remove(property_name)
49806
+ if len(memeber_set) > 0:
49807
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
49808
+
49809
+
49810
+
49811
+ class ExecutorUsageTrendInfo(AbstractModel):
49812
+ """资源组/资源包使用趋势
49813
+
49814
+ """
49815
+
49816
+ def __init__(self):
49817
+ r"""
49818
+ :param _Timestamp: 时间戳,单位:毫秒
49819
+ 注意:此字段可能返回 null,表示取不到有效值。
49820
+ :type Timestamp: int
49821
+ :param _CpuUsagePercent: CPU占用百分比
49822
+ 注意:此字段可能返回 null,表示取不到有效值。
49823
+ :type CpuUsagePercent: float
49824
+ :param _MemUsagePercent: 内存占用百分比
49825
+ 注意:此字段可能返回 null,表示取不到有效值。
49826
+ :type MemUsagePercent: float
49827
+ :param _ConcurrencyUsage: 当前并发度使用百分比
49828
+ 注意:此字段可能返回 null,表示取不到有效值。
49829
+ :type ConcurrencyUsage: float
49830
+ :param _OceanusCuUsage: oceanus CU使用百分比
49831
+ 注意:此字段可能返回 null,表示取不到有效值。
49832
+ :type OceanusCuUsage: float
49833
+ """
49834
+ self._Timestamp = None
49835
+ self._CpuUsagePercent = None
49836
+ self._MemUsagePercent = None
49837
+ self._ConcurrencyUsage = None
49838
+ self._OceanusCuUsage = None
49839
+
49840
+ @property
49841
+ def Timestamp(self):
49842
+ """时间戳,单位:毫秒
49843
+ 注意:此字段可能返回 null,表示取不到有效值。
49844
+ :rtype: int
49845
+ """
49846
+ return self._Timestamp
49847
+
49848
+ @Timestamp.setter
49849
+ def Timestamp(self, Timestamp):
49850
+ self._Timestamp = Timestamp
49851
+
49852
+ @property
49853
+ def CpuUsagePercent(self):
49854
+ """CPU占用百分比
49855
+ 注意:此字段可能返回 null,表示取不到有效值。
49856
+ :rtype: float
49857
+ """
49858
+ return self._CpuUsagePercent
49859
+
49860
+ @CpuUsagePercent.setter
49861
+ def CpuUsagePercent(self, CpuUsagePercent):
49862
+ self._CpuUsagePercent = CpuUsagePercent
49863
+
49864
+ @property
49865
+ def MemUsagePercent(self):
49866
+ """内存占用百分比
49867
+ 注意:此字段可能返回 null,表示取不到有效值。
49868
+ :rtype: float
49869
+ """
49870
+ return self._MemUsagePercent
49871
+
49872
+ @MemUsagePercent.setter
49873
+ def MemUsagePercent(self, MemUsagePercent):
49874
+ self._MemUsagePercent = MemUsagePercent
49875
+
49876
+ @property
49877
+ def ConcurrencyUsage(self):
49878
+ """当前并发度使用百分比
49879
+ 注意:此字段可能返回 null,表示取不到有效值。
49880
+ :rtype: float
49881
+ """
49882
+ return self._ConcurrencyUsage
49883
+
49884
+ @ConcurrencyUsage.setter
49885
+ def ConcurrencyUsage(self, ConcurrencyUsage):
49886
+ self._ConcurrencyUsage = ConcurrencyUsage
49887
+
49888
+ @property
49889
+ def OceanusCuUsage(self):
49890
+ """oceanus CU使用百分比
49891
+ 注意:此字段可能返回 null,表示取不到有效值。
49892
+ :rtype: float
49893
+ """
49894
+ return self._OceanusCuUsage
49895
+
49896
+ @OceanusCuUsage.setter
49897
+ def OceanusCuUsage(self, OceanusCuUsage):
49898
+ self._OceanusCuUsage = OceanusCuUsage
49899
+
49900
+
49901
+ def _deserialize(self, params):
49902
+ self._Timestamp = params.get("Timestamp")
49903
+ self._CpuUsagePercent = params.get("CpuUsagePercent")
49904
+ self._MemUsagePercent = params.get("MemUsagePercent")
49905
+ self._ConcurrencyUsage = params.get("ConcurrencyUsage")
49906
+ self._OceanusCuUsage = params.get("OceanusCuUsage")
49907
+ memeber_set = set(params.keys())
49908
+ for name, value in vars(self).items():
49909
+ property_name = name[1:]
49910
+ if property_name in memeber_set:
49911
+ memeber_set.remove(property_name)
49912
+ if len(memeber_set) > 0:
49913
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
49914
+
49915
+
49916
+
48274
49917
  class ExtParam(AbstractModel):
48275
49918
  """扩展参数
48276
49919
 
@@ -61164,6 +62807,265 @@ class LogContentInfo(AbstractModel):
61164
62807
 
61165
62808
 
61166
62809
 
62810
+ class MQPackageVO(AbstractModel):
62811
+ """MQPackageVO
62812
+
62813
+ """
62814
+
62815
+ def __init__(self):
62816
+ r"""
62817
+ :param _Type: ckafka消息队列
62818
+ 注意:此字段可能返回 null,表示取不到有效值。
62819
+ :type Type: str
62820
+ :param _InstanceId: 实例Id/集群Id
62821
+ 注意:此字段可能返回 null,表示取不到有效值。
62822
+ :type InstanceId: str
62823
+ :param _InstanceName: 实例名称/集群名称
62824
+ 注意:此字段可能返回 null,表示取不到有效值。
62825
+ :type InstanceName: str
62826
+ :param _VpcId: 局域网Id
62827
+ 注意:此字段可能返回 null,表示取不到有效值。
62828
+ :type VpcId: str
62829
+ :param _SubnetId: 子网Id
62830
+ 注意:此字段可能返回 null,表示取不到有效值。
62831
+ :type SubnetId: str
62832
+ :param _Status: 资源状态
62833
+ 注意:此字段可能返回 null,表示取不到有效值。
62834
+ :type Status: int
62835
+ :param _StatusDescription: 资源状态描述:保存创建失败,运行异常和更新失败的原因
62836
+ 注意:此字段可能返回 null,表示取不到有效值。
62837
+ :type StatusDescription: str
62838
+ :param _DataProxySpec: DataProxy规格
62839
+ 注意:此字段可能返回 null,表示取不到有效值。
62840
+ :type DataProxySpec: str
62841
+ :param _DataProxyNum: DataProxy数量
62842
+ 注意:此字段可能返回 null,表示取不到有效值。
62843
+ :type DataProxyNum: int
62844
+ :param _DataProxyStatus: DataProxy状态
62845
+ 注意:此字段可能返回 null,表示取不到有效值。
62846
+ :type DataProxyStatus: int
62847
+ :param _DataProxyStatusDescription: DataProxy状态描述:保存创建失败,运行异常和更新失败的原因
62848
+ 注意:此字段可能返回 null,表示取不到有效值。
62849
+ :type DataProxyStatusDescription: str
62850
+ :param _BillingType: 计费类型
62851
+ 注意:此字段可能返回 null,表示取不到有效值。
62852
+ :type BillingType: str
62853
+ :param _ExpireTime: 资源到期时间,时间戳毫秒
62854
+ 注意:此字段可能返回 null,表示取不到有效值。
62855
+ :type ExpireTime: int
62856
+ :param _LifeTime: 资源生命周期
62857
+ 注意:此字段可能返回 null,表示取不到有效值。
62858
+ :type LifeTime: int
62859
+ """
62860
+ self._Type = None
62861
+ self._InstanceId = None
62862
+ self._InstanceName = None
62863
+ self._VpcId = None
62864
+ self._SubnetId = None
62865
+ self._Status = None
62866
+ self._StatusDescription = None
62867
+ self._DataProxySpec = None
62868
+ self._DataProxyNum = None
62869
+ self._DataProxyStatus = None
62870
+ self._DataProxyStatusDescription = None
62871
+ self._BillingType = None
62872
+ self._ExpireTime = None
62873
+ self._LifeTime = None
62874
+
62875
+ @property
62876
+ def Type(self):
62877
+ """ckafka消息队列
62878
+ 注意:此字段可能返回 null,表示取不到有效值。
62879
+ :rtype: str
62880
+ """
62881
+ return self._Type
62882
+
62883
+ @Type.setter
62884
+ def Type(self, Type):
62885
+ self._Type = Type
62886
+
62887
+ @property
62888
+ def InstanceId(self):
62889
+ """实例Id/集群Id
62890
+ 注意:此字段可能返回 null,表示取不到有效值。
62891
+ :rtype: str
62892
+ """
62893
+ return self._InstanceId
62894
+
62895
+ @InstanceId.setter
62896
+ def InstanceId(self, InstanceId):
62897
+ self._InstanceId = InstanceId
62898
+
62899
+ @property
62900
+ def InstanceName(self):
62901
+ """实例名称/集群名称
62902
+ 注意:此字段可能返回 null,表示取不到有效值。
62903
+ :rtype: str
62904
+ """
62905
+ return self._InstanceName
62906
+
62907
+ @InstanceName.setter
62908
+ def InstanceName(self, InstanceName):
62909
+ self._InstanceName = InstanceName
62910
+
62911
+ @property
62912
+ def VpcId(self):
62913
+ """局域网Id
62914
+ 注意:此字段可能返回 null,表示取不到有效值。
62915
+ :rtype: str
62916
+ """
62917
+ return self._VpcId
62918
+
62919
+ @VpcId.setter
62920
+ def VpcId(self, VpcId):
62921
+ self._VpcId = VpcId
62922
+
62923
+ @property
62924
+ def SubnetId(self):
62925
+ """子网Id
62926
+ 注意:此字段可能返回 null,表示取不到有效值。
62927
+ :rtype: str
62928
+ """
62929
+ return self._SubnetId
62930
+
62931
+ @SubnetId.setter
62932
+ def SubnetId(self, SubnetId):
62933
+ self._SubnetId = SubnetId
62934
+
62935
+ @property
62936
+ def Status(self):
62937
+ """资源状态
62938
+ 注意:此字段可能返回 null,表示取不到有效值。
62939
+ :rtype: int
62940
+ """
62941
+ return self._Status
62942
+
62943
+ @Status.setter
62944
+ def Status(self, Status):
62945
+ self._Status = Status
62946
+
62947
+ @property
62948
+ def StatusDescription(self):
62949
+ """资源状态描述:保存创建失败,运行异常和更新失败的原因
62950
+ 注意:此字段可能返回 null,表示取不到有效值。
62951
+ :rtype: str
62952
+ """
62953
+ return self._StatusDescription
62954
+
62955
+ @StatusDescription.setter
62956
+ def StatusDescription(self, StatusDescription):
62957
+ self._StatusDescription = StatusDescription
62958
+
62959
+ @property
62960
+ def DataProxySpec(self):
62961
+ """DataProxy规格
62962
+ 注意:此字段可能返回 null,表示取不到有效值。
62963
+ :rtype: str
62964
+ """
62965
+ return self._DataProxySpec
62966
+
62967
+ @DataProxySpec.setter
62968
+ def DataProxySpec(self, DataProxySpec):
62969
+ self._DataProxySpec = DataProxySpec
62970
+
62971
+ @property
62972
+ def DataProxyNum(self):
62973
+ """DataProxy数量
62974
+ 注意:此字段可能返回 null,表示取不到有效值。
62975
+ :rtype: int
62976
+ """
62977
+ return self._DataProxyNum
62978
+
62979
+ @DataProxyNum.setter
62980
+ def DataProxyNum(self, DataProxyNum):
62981
+ self._DataProxyNum = DataProxyNum
62982
+
62983
+ @property
62984
+ def DataProxyStatus(self):
62985
+ """DataProxy状态
62986
+ 注意:此字段可能返回 null,表示取不到有效值。
62987
+ :rtype: int
62988
+ """
62989
+ return self._DataProxyStatus
62990
+
62991
+ @DataProxyStatus.setter
62992
+ def DataProxyStatus(self, DataProxyStatus):
62993
+ self._DataProxyStatus = DataProxyStatus
62994
+
62995
+ @property
62996
+ def DataProxyStatusDescription(self):
62997
+ """DataProxy状态描述:保存创建失败,运行异常和更新失败的原因
62998
+ 注意:此字段可能返回 null,表示取不到有效值。
62999
+ :rtype: str
63000
+ """
63001
+ return self._DataProxyStatusDescription
63002
+
63003
+ @DataProxyStatusDescription.setter
63004
+ def DataProxyStatusDescription(self, DataProxyStatusDescription):
63005
+ self._DataProxyStatusDescription = DataProxyStatusDescription
63006
+
63007
+ @property
63008
+ def BillingType(self):
63009
+ """计费类型
63010
+ 注意:此字段可能返回 null,表示取不到有效值。
63011
+ :rtype: str
63012
+ """
63013
+ return self._BillingType
63014
+
63015
+ @BillingType.setter
63016
+ def BillingType(self, BillingType):
63017
+ self._BillingType = BillingType
63018
+
63019
+ @property
63020
+ def ExpireTime(self):
63021
+ """资源到期时间,时间戳毫秒
63022
+ 注意:此字段可能返回 null,表示取不到有效值。
63023
+ :rtype: int
63024
+ """
63025
+ return self._ExpireTime
63026
+
63027
+ @ExpireTime.setter
63028
+ def ExpireTime(self, ExpireTime):
63029
+ self._ExpireTime = ExpireTime
63030
+
63031
+ @property
63032
+ def LifeTime(self):
63033
+ """资源生命周期
63034
+ 注意:此字段可能返回 null,表示取不到有效值。
63035
+ :rtype: int
63036
+ """
63037
+ return self._LifeTime
63038
+
63039
+ @LifeTime.setter
63040
+ def LifeTime(self, LifeTime):
63041
+ self._LifeTime = LifeTime
63042
+
63043
+
63044
+ def _deserialize(self, params):
63045
+ self._Type = params.get("Type")
63046
+ self._InstanceId = params.get("InstanceId")
63047
+ self._InstanceName = params.get("InstanceName")
63048
+ self._VpcId = params.get("VpcId")
63049
+ self._SubnetId = params.get("SubnetId")
63050
+ self._Status = params.get("Status")
63051
+ self._StatusDescription = params.get("StatusDescription")
63052
+ self._DataProxySpec = params.get("DataProxySpec")
63053
+ self._DataProxyNum = params.get("DataProxyNum")
63054
+ self._DataProxyStatus = params.get("DataProxyStatus")
63055
+ self._DataProxyStatusDescription = params.get("DataProxyStatusDescription")
63056
+ self._BillingType = params.get("BillingType")
63057
+ self._ExpireTime = params.get("ExpireTime")
63058
+ self._LifeTime = params.get("LifeTime")
63059
+ memeber_set = set(params.keys())
63060
+ for name, value in vars(self).items():
63061
+ property_name = name[1:]
63062
+ if property_name in memeber_set:
63063
+ memeber_set.remove(property_name)
63064
+ if len(memeber_set) > 0:
63065
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
63066
+
63067
+
63068
+
61167
63069
  class MakePlanInstanceOpsDtoCollection(AbstractModel):
61168
63070
  """补录计划实例集合
61169
63071