tencentcloud-sdk-python 3.0.1440__py2.py3-none-any.whl → 3.0.1441__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 tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/models.py +10 -6
- tencentcloud/cfs/v20190719/cfs_client.py +23 -0
- tencentcloud/cfs/v20190719/models.py +124 -0
- tencentcloud/dcdb/v20180411/models.py +47 -2
- tencentcloud/dlc/v20210125/models.py +15 -0
- tencentcloud/dsgc/v20190723/dsgc_client.py +1 -1
- tencentcloud/dsgc/v20190723/models.py +10 -10
- tencentcloud/ess/v20201111/ess_client.py +16 -1
- tencentcloud/mariadb/v20170312/models.py +47 -2
- tencentcloud/organization/v20210331/models.py +306 -0
- tencentcloud/organization/v20210331/organization_client.py +23 -0
- tencentcloud/privatedns/v20201028/models.py +6 -6
- tencentcloud/trocket/v20230308/models.py +15 -0
- tencentcloud/tsf/v20180326/errorcodes.py +13 -13
- tencentcloud/tsf/v20180326/models.py +4 -4
- {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/RECORD +21 -21
- {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1440.dist-info → tencentcloud_sdk_python-3.0.1441.dist-info}/top_level.txt +0 -0
|
@@ -7532,6 +7532,184 @@ class DescribePolicyResponse(AbstractModel):
|
|
|
7532
7532
|
self._RequestId = params.get("RequestId")
|
|
7533
7533
|
|
|
7534
7534
|
|
|
7535
|
+
class DescribeResourceToShareMemberRequest(AbstractModel):
|
|
7536
|
+
"""DescribeResourceToShareMember请求参数结构体
|
|
7537
|
+
|
|
7538
|
+
"""
|
|
7539
|
+
|
|
7540
|
+
def __init__(self):
|
|
7541
|
+
r"""
|
|
7542
|
+
:param _Area: 地域
|
|
7543
|
+
:type Area: str
|
|
7544
|
+
:param _Offset: 偏移量
|
|
7545
|
+
:type Offset: int
|
|
7546
|
+
:param _Limit: 每页条数
|
|
7547
|
+
:type Limit: int
|
|
7548
|
+
:param _SearchKey: 搜索关键字,支持业务资源ID搜索
|
|
7549
|
+
:type SearchKey: str
|
|
7550
|
+
:param _Type: 资源类型
|
|
7551
|
+
:type Type: str
|
|
7552
|
+
:param _ProductResourceIds: 业务资源ID。最大50个
|
|
7553
|
+
:type ProductResourceIds: list of str
|
|
7554
|
+
"""
|
|
7555
|
+
self._Area = None
|
|
7556
|
+
self._Offset = None
|
|
7557
|
+
self._Limit = None
|
|
7558
|
+
self._SearchKey = None
|
|
7559
|
+
self._Type = None
|
|
7560
|
+
self._ProductResourceIds = None
|
|
7561
|
+
|
|
7562
|
+
@property
|
|
7563
|
+
def Area(self):
|
|
7564
|
+
"""地域
|
|
7565
|
+
:rtype: str
|
|
7566
|
+
"""
|
|
7567
|
+
return self._Area
|
|
7568
|
+
|
|
7569
|
+
@Area.setter
|
|
7570
|
+
def Area(self, Area):
|
|
7571
|
+
self._Area = Area
|
|
7572
|
+
|
|
7573
|
+
@property
|
|
7574
|
+
def Offset(self):
|
|
7575
|
+
"""偏移量
|
|
7576
|
+
:rtype: int
|
|
7577
|
+
"""
|
|
7578
|
+
return self._Offset
|
|
7579
|
+
|
|
7580
|
+
@Offset.setter
|
|
7581
|
+
def Offset(self, Offset):
|
|
7582
|
+
self._Offset = Offset
|
|
7583
|
+
|
|
7584
|
+
@property
|
|
7585
|
+
def Limit(self):
|
|
7586
|
+
"""每页条数
|
|
7587
|
+
:rtype: int
|
|
7588
|
+
"""
|
|
7589
|
+
return self._Limit
|
|
7590
|
+
|
|
7591
|
+
@Limit.setter
|
|
7592
|
+
def Limit(self, Limit):
|
|
7593
|
+
self._Limit = Limit
|
|
7594
|
+
|
|
7595
|
+
@property
|
|
7596
|
+
def SearchKey(self):
|
|
7597
|
+
"""搜索关键字,支持业务资源ID搜索
|
|
7598
|
+
:rtype: str
|
|
7599
|
+
"""
|
|
7600
|
+
return self._SearchKey
|
|
7601
|
+
|
|
7602
|
+
@SearchKey.setter
|
|
7603
|
+
def SearchKey(self, SearchKey):
|
|
7604
|
+
self._SearchKey = SearchKey
|
|
7605
|
+
|
|
7606
|
+
@property
|
|
7607
|
+
def Type(self):
|
|
7608
|
+
"""资源类型
|
|
7609
|
+
:rtype: str
|
|
7610
|
+
"""
|
|
7611
|
+
return self._Type
|
|
7612
|
+
|
|
7613
|
+
@Type.setter
|
|
7614
|
+
def Type(self, Type):
|
|
7615
|
+
self._Type = Type
|
|
7616
|
+
|
|
7617
|
+
@property
|
|
7618
|
+
def ProductResourceIds(self):
|
|
7619
|
+
"""业务资源ID。最大50个
|
|
7620
|
+
:rtype: list of str
|
|
7621
|
+
"""
|
|
7622
|
+
return self._ProductResourceIds
|
|
7623
|
+
|
|
7624
|
+
@ProductResourceIds.setter
|
|
7625
|
+
def ProductResourceIds(self, ProductResourceIds):
|
|
7626
|
+
self._ProductResourceIds = ProductResourceIds
|
|
7627
|
+
|
|
7628
|
+
|
|
7629
|
+
def _deserialize(self, params):
|
|
7630
|
+
self._Area = params.get("Area")
|
|
7631
|
+
self._Offset = params.get("Offset")
|
|
7632
|
+
self._Limit = params.get("Limit")
|
|
7633
|
+
self._SearchKey = params.get("SearchKey")
|
|
7634
|
+
self._Type = params.get("Type")
|
|
7635
|
+
self._ProductResourceIds = params.get("ProductResourceIds")
|
|
7636
|
+
memeber_set = set(params.keys())
|
|
7637
|
+
for name, value in vars(self).items():
|
|
7638
|
+
property_name = name[1:]
|
|
7639
|
+
if property_name in memeber_set:
|
|
7640
|
+
memeber_set.remove(property_name)
|
|
7641
|
+
if len(memeber_set) > 0:
|
|
7642
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
7643
|
+
|
|
7644
|
+
|
|
7645
|
+
|
|
7646
|
+
class DescribeResourceToShareMemberResponse(AbstractModel):
|
|
7647
|
+
"""DescribeResourceToShareMember返回参数结构体
|
|
7648
|
+
|
|
7649
|
+
"""
|
|
7650
|
+
|
|
7651
|
+
def __init__(self):
|
|
7652
|
+
r"""
|
|
7653
|
+
:param _Total: 总数
|
|
7654
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7655
|
+
:type Total: int
|
|
7656
|
+
:param _Items: 详情
|
|
7657
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7658
|
+
:type Items: list of ShareResourceToMember
|
|
7659
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7660
|
+
:type RequestId: str
|
|
7661
|
+
"""
|
|
7662
|
+
self._Total = None
|
|
7663
|
+
self._Items = None
|
|
7664
|
+
self._RequestId = None
|
|
7665
|
+
|
|
7666
|
+
@property
|
|
7667
|
+
def Total(self):
|
|
7668
|
+
"""总数
|
|
7669
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7670
|
+
:rtype: int
|
|
7671
|
+
"""
|
|
7672
|
+
return self._Total
|
|
7673
|
+
|
|
7674
|
+
@Total.setter
|
|
7675
|
+
def Total(self, Total):
|
|
7676
|
+
self._Total = Total
|
|
7677
|
+
|
|
7678
|
+
@property
|
|
7679
|
+
def Items(self):
|
|
7680
|
+
"""详情
|
|
7681
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7682
|
+
:rtype: list of ShareResourceToMember
|
|
7683
|
+
"""
|
|
7684
|
+
return self._Items
|
|
7685
|
+
|
|
7686
|
+
@Items.setter
|
|
7687
|
+
def Items(self, Items):
|
|
7688
|
+
self._Items = Items
|
|
7689
|
+
|
|
7690
|
+
@property
|
|
7691
|
+
def RequestId(self):
|
|
7692
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7693
|
+
:rtype: str
|
|
7694
|
+
"""
|
|
7695
|
+
return self._RequestId
|
|
7696
|
+
|
|
7697
|
+
@RequestId.setter
|
|
7698
|
+
def RequestId(self, RequestId):
|
|
7699
|
+
self._RequestId = RequestId
|
|
7700
|
+
|
|
7701
|
+
|
|
7702
|
+
def _deserialize(self, params):
|
|
7703
|
+
self._Total = params.get("Total")
|
|
7704
|
+
if params.get("Items") is not None:
|
|
7705
|
+
self._Items = []
|
|
7706
|
+
for item in params.get("Items"):
|
|
7707
|
+
obj = ShareResourceToMember()
|
|
7708
|
+
obj._deserialize(item)
|
|
7709
|
+
self._Items.append(obj)
|
|
7710
|
+
self._RequestId = params.get("RequestId")
|
|
7711
|
+
|
|
7712
|
+
|
|
7535
7713
|
class DescribeShareAreasRequest(AbstractModel):
|
|
7536
7714
|
"""DescribeShareAreas请求参数结构体
|
|
7537
7715
|
|
|
@@ -18856,6 +19034,134 @@ class ShareResource(AbstractModel):
|
|
|
18856
19034
|
|
|
18857
19035
|
|
|
18858
19036
|
|
|
19037
|
+
class ShareResourceToMember(AbstractModel):
|
|
19038
|
+
"""与我共享的资源
|
|
19039
|
+
|
|
19040
|
+
"""
|
|
19041
|
+
|
|
19042
|
+
def __init__(self):
|
|
19043
|
+
r"""
|
|
19044
|
+
:param _ResourceId: 资源ID
|
|
19045
|
+
:type ResourceId: str
|
|
19046
|
+
:param _Type: 资源类型
|
|
19047
|
+
:type Type: str
|
|
19048
|
+
:param _UnitId: 共享单元ID
|
|
19049
|
+
:type UnitId: str
|
|
19050
|
+
:param _UnitName: 共享单元名
|
|
19051
|
+
:type UnitName: str
|
|
19052
|
+
:param _CreateTime: 创建时间
|
|
19053
|
+
:type CreateTime: str
|
|
19054
|
+
:param _ProductResourceId: 业务资源ID
|
|
19055
|
+
:type ProductResourceId: str
|
|
19056
|
+
:param _ShareManagerUin: 共享管理员uin
|
|
19057
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
19058
|
+
:type ShareManagerUin: int
|
|
19059
|
+
"""
|
|
19060
|
+
self._ResourceId = None
|
|
19061
|
+
self._Type = None
|
|
19062
|
+
self._UnitId = None
|
|
19063
|
+
self._UnitName = None
|
|
19064
|
+
self._CreateTime = None
|
|
19065
|
+
self._ProductResourceId = None
|
|
19066
|
+
self._ShareManagerUin = None
|
|
19067
|
+
|
|
19068
|
+
@property
|
|
19069
|
+
def ResourceId(self):
|
|
19070
|
+
"""资源ID
|
|
19071
|
+
:rtype: str
|
|
19072
|
+
"""
|
|
19073
|
+
return self._ResourceId
|
|
19074
|
+
|
|
19075
|
+
@ResourceId.setter
|
|
19076
|
+
def ResourceId(self, ResourceId):
|
|
19077
|
+
self._ResourceId = ResourceId
|
|
19078
|
+
|
|
19079
|
+
@property
|
|
19080
|
+
def Type(self):
|
|
19081
|
+
"""资源类型
|
|
19082
|
+
:rtype: str
|
|
19083
|
+
"""
|
|
19084
|
+
return self._Type
|
|
19085
|
+
|
|
19086
|
+
@Type.setter
|
|
19087
|
+
def Type(self, Type):
|
|
19088
|
+
self._Type = Type
|
|
19089
|
+
|
|
19090
|
+
@property
|
|
19091
|
+
def UnitId(self):
|
|
19092
|
+
"""共享单元ID
|
|
19093
|
+
:rtype: str
|
|
19094
|
+
"""
|
|
19095
|
+
return self._UnitId
|
|
19096
|
+
|
|
19097
|
+
@UnitId.setter
|
|
19098
|
+
def UnitId(self, UnitId):
|
|
19099
|
+
self._UnitId = UnitId
|
|
19100
|
+
|
|
19101
|
+
@property
|
|
19102
|
+
def UnitName(self):
|
|
19103
|
+
"""共享单元名
|
|
19104
|
+
:rtype: str
|
|
19105
|
+
"""
|
|
19106
|
+
return self._UnitName
|
|
19107
|
+
|
|
19108
|
+
@UnitName.setter
|
|
19109
|
+
def UnitName(self, UnitName):
|
|
19110
|
+
self._UnitName = UnitName
|
|
19111
|
+
|
|
19112
|
+
@property
|
|
19113
|
+
def CreateTime(self):
|
|
19114
|
+
"""创建时间
|
|
19115
|
+
:rtype: str
|
|
19116
|
+
"""
|
|
19117
|
+
return self._CreateTime
|
|
19118
|
+
|
|
19119
|
+
@CreateTime.setter
|
|
19120
|
+
def CreateTime(self, CreateTime):
|
|
19121
|
+
self._CreateTime = CreateTime
|
|
19122
|
+
|
|
19123
|
+
@property
|
|
19124
|
+
def ProductResourceId(self):
|
|
19125
|
+
"""业务资源ID
|
|
19126
|
+
:rtype: str
|
|
19127
|
+
"""
|
|
19128
|
+
return self._ProductResourceId
|
|
19129
|
+
|
|
19130
|
+
@ProductResourceId.setter
|
|
19131
|
+
def ProductResourceId(self, ProductResourceId):
|
|
19132
|
+
self._ProductResourceId = ProductResourceId
|
|
19133
|
+
|
|
19134
|
+
@property
|
|
19135
|
+
def ShareManagerUin(self):
|
|
19136
|
+
"""共享管理员uin
|
|
19137
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
19138
|
+
:rtype: int
|
|
19139
|
+
"""
|
|
19140
|
+
return self._ShareManagerUin
|
|
19141
|
+
|
|
19142
|
+
@ShareManagerUin.setter
|
|
19143
|
+
def ShareManagerUin(self, ShareManagerUin):
|
|
19144
|
+
self._ShareManagerUin = ShareManagerUin
|
|
19145
|
+
|
|
19146
|
+
|
|
19147
|
+
def _deserialize(self, params):
|
|
19148
|
+
self._ResourceId = params.get("ResourceId")
|
|
19149
|
+
self._Type = params.get("Type")
|
|
19150
|
+
self._UnitId = params.get("UnitId")
|
|
19151
|
+
self._UnitName = params.get("UnitName")
|
|
19152
|
+
self._CreateTime = params.get("CreateTime")
|
|
19153
|
+
self._ProductResourceId = params.get("ProductResourceId")
|
|
19154
|
+
self._ShareManagerUin = params.get("ShareManagerUin")
|
|
19155
|
+
memeber_set = set(params.keys())
|
|
19156
|
+
for name, value in vars(self).items():
|
|
19157
|
+
property_name = name[1:]
|
|
19158
|
+
if property_name in memeber_set:
|
|
19159
|
+
memeber_set.remove(property_name)
|
|
19160
|
+
if len(memeber_set) > 0:
|
|
19161
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
19162
|
+
|
|
19163
|
+
|
|
19164
|
+
|
|
18859
19165
|
class ShareUnitMember(AbstractModel):
|
|
18860
19166
|
"""共享单元成员
|
|
18861
19167
|
|
|
@@ -1475,6 +1475,29 @@ class OrganizationClient(AbstractClient):
|
|
|
1475
1475
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1476
1476
|
|
|
1477
1477
|
|
|
1478
|
+
def DescribeResourceToShareMember(self, request):
|
|
1479
|
+
"""获取与我共享的资源列表。
|
|
1480
|
+
|
|
1481
|
+
:param request: Request instance for DescribeResourceToShareMember.
|
|
1482
|
+
:type request: :class:`tencentcloud.organization.v20210331.models.DescribeResourceToShareMemberRequest`
|
|
1483
|
+
:rtype: :class:`tencentcloud.organization.v20210331.models.DescribeResourceToShareMemberResponse`
|
|
1484
|
+
|
|
1485
|
+
"""
|
|
1486
|
+
try:
|
|
1487
|
+
params = request._serialize()
|
|
1488
|
+
headers = request.headers
|
|
1489
|
+
body = self.call("DescribeResourceToShareMember", params, headers=headers)
|
|
1490
|
+
response = json.loads(body)
|
|
1491
|
+
model = models.DescribeResourceToShareMemberResponse()
|
|
1492
|
+
model._deserialize(response["Response"])
|
|
1493
|
+
return model
|
|
1494
|
+
except Exception as e:
|
|
1495
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1496
|
+
raise
|
|
1497
|
+
else:
|
|
1498
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1499
|
+
|
|
1500
|
+
|
|
1478
1501
|
def DescribeShareAreas(self, request):
|
|
1479
1502
|
"""获取可共享地域列表
|
|
1480
1503
|
|
|
@@ -1009,7 +1009,7 @@ class CreatePrivateZoneResponse(AbstractModel):
|
|
|
1009
1009
|
|
|
1010
1010
|
def __init__(self):
|
|
1011
1011
|
r"""
|
|
1012
|
-
:param _ZoneId: 私有域ID, zone-
|
|
1012
|
+
:param _ZoneId: 私有域ID, zone-12sa5ce78
|
|
1013
1013
|
:type ZoneId: str
|
|
1014
1014
|
:param _Domain: 私有域名
|
|
1015
1015
|
:type Domain: str
|
|
@@ -1022,7 +1022,7 @@ class CreatePrivateZoneResponse(AbstractModel):
|
|
|
1022
1022
|
|
|
1023
1023
|
@property
|
|
1024
1024
|
def ZoneId(self):
|
|
1025
|
-
"""私有域ID, zone-
|
|
1025
|
+
"""私有域ID, zone-12sa5ce78
|
|
1026
1026
|
:rtype: str
|
|
1027
1027
|
"""
|
|
1028
1028
|
return self._ZoneId
|
|
@@ -2211,7 +2211,7 @@ class DescribePrivateZoneRecordListRequest(AbstractModel):
|
|
|
2211
2211
|
|
|
2212
2212
|
def __init__(self):
|
|
2213
2213
|
r"""
|
|
2214
|
-
:param _ZoneId: 私有域ID: zone-
|
|
2214
|
+
:param _ZoneId: 私有域ID: zone-12c5a6e8
|
|
2215
2215
|
:type ZoneId: str
|
|
2216
2216
|
:param _Filters: 过滤参数(支持使用Value、RecordType过滤)
|
|
2217
2217
|
:type Filters: list of Filter
|
|
@@ -2227,7 +2227,7 @@ class DescribePrivateZoneRecordListRequest(AbstractModel):
|
|
|
2227
2227
|
|
|
2228
2228
|
@property
|
|
2229
2229
|
def ZoneId(self):
|
|
2230
|
-
"""私有域ID: zone-
|
|
2230
|
+
"""私有域ID: zone-12c5a6e8
|
|
2231
2231
|
:rtype: str
|
|
2232
2232
|
"""
|
|
2233
2233
|
return self._ZoneId
|
|
@@ -3373,7 +3373,7 @@ class ModifyPrivateZoneVpcResponse(AbstractModel):
|
|
|
3373
3373
|
|
|
3374
3374
|
def __init__(self):
|
|
3375
3375
|
r"""
|
|
3376
|
-
:param _ZoneId: 私有域ID, zone-
|
|
3376
|
+
:param _ZoneId: 私有域ID, zone-12e45ds6
|
|
3377
3377
|
:type ZoneId: str
|
|
3378
3378
|
:param _VpcSet: 解析域关联的VPC列表
|
|
3379
3379
|
:type VpcSet: list of VpcInfo
|
|
@@ -3389,7 +3389,7 @@ class ModifyPrivateZoneVpcResponse(AbstractModel):
|
|
|
3389
3389
|
|
|
3390
3390
|
@property
|
|
3391
3391
|
def ZoneId(self):
|
|
3392
|
-
"""私有域ID, zone-
|
|
3392
|
+
"""私有域ID, zone-12e45ds6
|
|
3393
3393
|
:rtype: str
|
|
3394
3394
|
"""
|
|
3395
3395
|
return self._ZoneId
|
|
@@ -8588,11 +8588,14 @@ class DescribeTopicListRequest(AbstractModel):
|
|
|
8588
8588
|
:type Offset: int
|
|
8589
8589
|
:param _Limit: 查询结果限制数量,默认20。
|
|
8590
8590
|
:type Limit: int
|
|
8591
|
+
:param _FromGroup: 按照消费组查询订阅的主题
|
|
8592
|
+
:type FromGroup: str
|
|
8591
8593
|
"""
|
|
8592
8594
|
self._InstanceId = None
|
|
8593
8595
|
self._Filters = None
|
|
8594
8596
|
self._Offset = None
|
|
8595
8597
|
self._Limit = None
|
|
8598
|
+
self._FromGroup = None
|
|
8596
8599
|
|
|
8597
8600
|
@property
|
|
8598
8601
|
def InstanceId(self):
|
|
@@ -8638,6 +8641,17 @@ class DescribeTopicListRequest(AbstractModel):
|
|
|
8638
8641
|
def Limit(self, Limit):
|
|
8639
8642
|
self._Limit = Limit
|
|
8640
8643
|
|
|
8644
|
+
@property
|
|
8645
|
+
def FromGroup(self):
|
|
8646
|
+
"""按照消费组查询订阅的主题
|
|
8647
|
+
:rtype: str
|
|
8648
|
+
"""
|
|
8649
|
+
return self._FromGroup
|
|
8650
|
+
|
|
8651
|
+
@FromGroup.setter
|
|
8652
|
+
def FromGroup(self, FromGroup):
|
|
8653
|
+
self._FromGroup = FromGroup
|
|
8654
|
+
|
|
8641
8655
|
|
|
8642
8656
|
def _deserialize(self, params):
|
|
8643
8657
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -8649,6 +8663,7 @@ class DescribeTopicListRequest(AbstractModel):
|
|
|
8649
8663
|
self._Filters.append(obj)
|
|
8650
8664
|
self._Offset = params.get("Offset")
|
|
8651
8665
|
self._Limit = params.get("Limit")
|
|
8666
|
+
self._FromGroup = params.get("FromGroup")
|
|
8652
8667
|
memeber_set = set(params.keys())
|
|
8653
8668
|
for name, value in vars(self).items():
|
|
8654
8669
|
property_name = name[1:]
|
|
@@ -119,7 +119,7 @@ FAILEDOPERATION_FINDMETRICSEXCLUSIVEERROR = 'FailedOperation.FindMetricsExclusiv
|
|
|
119
119
|
# 网关通用异常:%s。
|
|
120
120
|
FAILEDOPERATION_GATEWAYCOMMONERROR = 'FailedOperation.GatewayCommonError'
|
|
121
121
|
|
|
122
|
-
#
|
|
122
|
+
# 远端访问错误。
|
|
123
123
|
FAILEDOPERATION_GATEWAYREMOTECALLERROR = 'FailedOperation.GatewayRemoteCallError'
|
|
124
124
|
|
|
125
125
|
# 命名空间下存在部署组。
|
|
@@ -221,7 +221,7 @@ FAILEDOPERATION_TASKDELETEERROR = 'FailedOperation.TaskDeleteError'
|
|
|
221
221
|
# 操作失败。
|
|
222
222
|
FAILEDOPERATION_TASKOPERATIONFAILED = 'FailedOperation.TaskOperationFailed'
|
|
223
223
|
|
|
224
|
-
#
|
|
224
|
+
# 操作不允许。
|
|
225
225
|
FAILEDOPERATION_TASKOPERATIONFORBIDDEN = 'FailedOperation.TaskOperationForbidden'
|
|
226
226
|
|
|
227
227
|
# 任务下发异常。
|
|
@@ -374,7 +374,7 @@ INTERNALERROR_CONTAINERGROUPKUBERNETEDEPLOYMENTNOTFOUND = 'InternalError.Contain
|
|
|
374
374
|
# 容器应用SQL错误。
|
|
375
375
|
INTERNALERROR_CONTAINERGROUPSQLFAILED = 'InternalError.ContainergroupSqlFailed'
|
|
376
376
|
|
|
377
|
-
#
|
|
377
|
+
# 容器平台集群不可用,当前状态。有 Idling、Notinit等。
|
|
378
378
|
INTERNALERROR_CPCLUSTERUNAVAILABLE = 'InternalError.CpClusterUnavailable'
|
|
379
379
|
|
|
380
380
|
# 命令下放失败。
|
|
@@ -389,7 +389,7 @@ INTERNALERROR_CVMCAEMASTERNONALIVE = 'InternalError.CvmCaeMasterNonAlive'
|
|
|
389
389
|
# 数据查询失败。
|
|
390
390
|
INTERNALERROR_CVMCAEMASTERQUERYERROR = 'InternalError.CvmCaeMasterQueryError'
|
|
391
391
|
|
|
392
|
-
# TSF
|
|
392
|
+
# TSF暂时不能响应请求。
|
|
393
393
|
INTERNALERROR_DISPATCHCOMMONERROR = 'InternalError.DispatchCommonError'
|
|
394
394
|
|
|
395
395
|
# 网关通用异常:%s。
|
|
@@ -464,7 +464,7 @@ INTERNALERROR_TSFMONITORINTERNALERROR = 'InternalError.TsfMonitorInternalError'
|
|
|
464
464
|
# TSF服务管理通用异常。
|
|
465
465
|
INTERNALERROR_TSFMSERROR = 'InternalError.TsfMsError'
|
|
466
466
|
|
|
467
|
-
#
|
|
467
|
+
# 模块未处理异常。
|
|
468
468
|
INTERNALERROR_UNHANDLEDEXCEPTION = 'InternalError.UnhandledException'
|
|
469
469
|
|
|
470
470
|
# 参数错误。
|
|
@@ -473,7 +473,7 @@ INVALIDPARAMETER = 'InvalidParameter'
|
|
|
473
473
|
# 删除应用失败。
|
|
474
474
|
INVALIDPARAMETER_APPLICATIONDELETEFAILED = 'InvalidParameter.ApplicationDeleteFailed'
|
|
475
475
|
|
|
476
|
-
#
|
|
476
|
+
# 示例:serviceId模块接口action请求不正确(400 BAD REQUEST)。
|
|
477
477
|
INVALIDPARAMETER_BADREQUEST = 'InvalidParameter.BadRequest'
|
|
478
478
|
|
|
479
479
|
# 配置模板名称不符合规范。
|
|
@@ -590,7 +590,7 @@ INVALIDPARAMETER_TSFAPMSTDOUTSEARCHREQUESTPARAMERROR = 'InvalidParameter.TsfApmS
|
|
|
590
590
|
# TSF应用性能管理调用链搜索请求参数错误。
|
|
591
591
|
INVALIDPARAMETER_TSFAPMTRACESEARCHREQUESTPARAMERROR = 'InvalidParameter.TsfApmTraceSearchRequestParamError'
|
|
592
592
|
|
|
593
|
-
# TSF
|
|
593
|
+
# TSF监控统计请求参数非法。
|
|
594
594
|
INVALIDPARAMETER_TSFMONITORREQUESTPARAMILLEGAL = 'InvalidParameter.TsfMonitorRequestParamIllegal'
|
|
595
595
|
|
|
596
596
|
# 仓库批量删除包数量超过单次允许上限。
|
|
@@ -764,7 +764,7 @@ INVALIDPARAMETERVALUE_CONTAINERGROUPPROTOCOLPORTSNULL = 'InvalidParameterValue.C
|
|
|
764
764
|
# 镜像仓库名与应用名不匹配。
|
|
765
765
|
INVALIDPARAMETERVALUE_CONTAINERGROUPREPONAMEINVALID = 'InvalidParameterValue.ContainergroupReponameInvalid'
|
|
766
766
|
|
|
767
|
-
# agent 容器资源值非法 ,
|
|
767
|
+
# 示例:agent 容器资源值非法 , cpu。
|
|
768
768
|
INVALIDPARAMETERVALUE_CONTAINERGROUPRESOURCEAGENTVALUEINVALID = 'InvalidParameterValue.ContainergroupResourceAgentValueInvalid'
|
|
769
769
|
|
|
770
770
|
# 容器端口不允许重复映射。
|
|
@@ -899,7 +899,7 @@ INVALIDPARAMETERVALUE_IMAGEREPOTAGNAMENULL = 'InvalidParameterValue.ImagerepoTag
|
|
|
899
899
|
# 重装系统,无效的镜像id。
|
|
900
900
|
INVALIDPARAMETERVALUE_INSTANCEINVALIDIMAGE = 'InvalidParameterValue.InstanceInvalidImage'
|
|
901
901
|
|
|
902
|
-
#
|
|
902
|
+
# 示例:参数 Region 取值错误。
|
|
903
903
|
INVALIDPARAMETERVALUE_INVALIDPARAMETER = 'InvalidParameterValue.InvalidParameter'
|
|
904
904
|
|
|
905
905
|
# 参数格式异常。
|
|
@@ -1004,7 +1004,7 @@ INVALIDPARAMETERVALUE_RELEASEDCONFIGCANNOTBEDELETED = 'InvalidParameterValue.Rel
|
|
|
1004
1004
|
# 文件配置项已经发布,不允许删除。
|
|
1005
1005
|
INVALIDPARAMETERVALUE_RELEASEDFILECONFIGCANNOTBEDELETED = 'InvalidParameterValue.ReleasedFileConfigCanNotBeDeleted'
|
|
1006
1006
|
|
|
1007
|
-
#
|
|
1007
|
+
# 无权限操作资源[%s]。
|
|
1008
1008
|
INVALIDPARAMETERVALUE_RESOURCEPERMISSIONDENIED = 'InvalidParameterValue.ResourcePermissionDenied'
|
|
1009
1009
|
|
|
1010
1010
|
# ResourceType 不支持。
|
|
@@ -1112,7 +1112,7 @@ MISSINGPARAMETER_NAMESPACEIDREQUIRED = 'MissingParameter.NamespaceIdRequired'
|
|
|
1112
1112
|
# 命名空间名称未填写。
|
|
1113
1113
|
MISSINGPARAMETER_NAMESPACENAMEREQUIRED = 'MissingParameter.NamespaceNameRequired'
|
|
1114
1114
|
|
|
1115
|
-
# [%s]
|
|
1115
|
+
# [%s]缺失。
|
|
1116
1116
|
MISSINGPARAMETER_REQUIREDPARAMETERMISSING = 'MissingParameter.RequiredParameterMissing'
|
|
1117
1117
|
|
|
1118
1118
|
# 未填写服务Id。
|
|
@@ -1211,7 +1211,7 @@ RESOURCENOTFOUND_INTERFACENOTFOUND = 'ResourceNotFound.InterfaceNotFound'
|
|
|
1211
1211
|
# 无法找到License服务器。
|
|
1212
1212
|
RESOURCENOTFOUND_LICENSESERVERNOTFOUND = 'ResourceNotFound.LicenseServerNotFound'
|
|
1213
1213
|
|
|
1214
|
-
#
|
|
1214
|
+
# 目标微服务已离线。
|
|
1215
1215
|
RESOURCENOTFOUND_MICROSERVICEOFFLINE = 'ResourceNotFound.MicroserviceOffline'
|
|
1216
1216
|
|
|
1217
1217
|
# 命名空间不存在,或相应权限不足。
|
|
@@ -1229,7 +1229,7 @@ RESOURCENOTFOUND_TASKNOTFOUND = 'ResourceNotFound.TaskNotFound'
|
|
|
1229
1229
|
# TKE 中不存在该集群。
|
|
1230
1230
|
RESOURCENOTFOUND_TKECLUSTERNOTEXISTS = 'ResourceNotFound.TkeClusterNotExists'
|
|
1231
1231
|
|
|
1232
|
-
#
|
|
1232
|
+
# 示例:访问 CAM 系统出错,[报错信息]。
|
|
1233
1233
|
UNAUTHORIZEDOPERATION_CAMGENERALERROR = 'UnauthorizedOperation.CamGeneralError'
|
|
1234
1234
|
|
|
1235
1235
|
# 协作者身份未授权,需要主账号授予协作者权限,参考 TSF 官网文档[子账号获取访问授权](https://cloud.tencent.com/document/product/649/55570)。
|
|
@@ -43094,7 +43094,7 @@ class ModifyContainerGroupRequest(AbstractModel):
|
|
|
43094
43094
|
|
|
43095
43095
|
def __init__(self):
|
|
43096
43096
|
r"""
|
|
43097
|
-
:param _GroupId: 部署组ID
|
|
43097
|
+
:param _GroupId: 部署组ID,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/api/649/36068)查询已创建的项目列表或登录控制台进行查看;也可以调用[CreateContainGroup](https://cloud.tencent.com/document/api/649/36075)创建新的项目。
|
|
43098
43098
|
:type GroupId: str
|
|
43099
43099
|
:param _AccessType: 0:公网 1:集群内访问 2:NodePort
|
|
43100
43100
|
:type AccessType: int
|
|
@@ -43104,7 +43104,7 @@ class ModifyContainerGroupRequest(AbstractModel):
|
|
|
43104
43104
|
:type UpdateType: int
|
|
43105
43105
|
:param _UpdateIvl: 更新间隔,单位秒
|
|
43106
43106
|
:type UpdateIvl: int
|
|
43107
|
-
:param _SubnetId: 子网ID
|
|
43107
|
+
:param _SubnetId: 子网ID,可通过调用[DescribeSubnets](https://cloud.tencent.com/document/product/215/15784)查询已创建的项目列表或登录控制台进行查看;也可以调用[CreateSubnet](https://cloud.tencent.com/document/product/1108/43594)创建新的项目。
|
|
43108
43108
|
:type SubnetId: str
|
|
43109
43109
|
:param _Alias: 部署组备注
|
|
43110
43110
|
:type Alias: str
|
|
@@ -43119,7 +43119,7 @@ class ModifyContainerGroupRequest(AbstractModel):
|
|
|
43119
43119
|
|
|
43120
43120
|
@property
|
|
43121
43121
|
def GroupId(self):
|
|
43122
|
-
"""部署组ID
|
|
43122
|
+
"""部署组ID,可通过调用[DescribeContainerGroups](https://cloud.tencent.com/document/api/649/36068)查询已创建的项目列表或登录控制台进行查看;也可以调用[CreateContainGroup](https://cloud.tencent.com/document/api/649/36075)创建新的项目。
|
|
43123
43123
|
:rtype: str
|
|
43124
43124
|
"""
|
|
43125
43125
|
return self._GroupId
|
|
@@ -43174,7 +43174,7 @@ class ModifyContainerGroupRequest(AbstractModel):
|
|
|
43174
43174
|
|
|
43175
43175
|
@property
|
|
43176
43176
|
def SubnetId(self):
|
|
43177
|
-
"""子网ID
|
|
43177
|
+
"""子网ID,可通过调用[DescribeSubnets](https://cloud.tencent.com/document/product/215/15784)查询已创建的项目列表或登录控制台进行查看;也可以调用[CreateSubnet](https://cloud.tencent.com/document/product/1108/43594)创建新的项目。
|
|
43178
43178
|
:rtype: str
|
|
43179
43179
|
"""
|
|
43180
43180
|
return self._SubnetId
|