tencentcloud-sdk-python 3.0.1195__py2.py3-none-any.whl → 3.0.1197__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cam/v20190116/models.py +13 -0
- tencentcloud/ccc/v20200210/models.py +3 -3
- tencentcloud/cdwch/v20200915/models.py +49 -0
- tencentcloud/cdwdoris/v20211228/models.py +49 -0
- tencentcloud/cfw/v20190904/models.py +37 -0
- tencentcloud/cls/v20201016/cls_client.py +0 -12
- tencentcloud/cls/v20201016/models.py +5 -1
- tencentcloud/cynosdb/v20190107/models.py +1 -1
- tencentcloud/dbbrain/v20210527/models.py +12 -0
- tencentcloud/dts/v20211206/models.py +12 -0
- tencentcloud/ess/v20201111/ess_client.py +2 -1
- tencentcloud/ess/v20201111/models.py +47 -21
- tencentcloud/essbasic/v20210526/models.py +1 -1
- tencentcloud/hunyuan/v20230901/models.py +2 -1
- tencentcloud/mongodb/v20190725/models.py +875 -19
- tencentcloud/mongodb/v20190725/mongodb_client.py +143 -0
- tencentcloud/monitor/v20180724/models.py +3 -8
- tencentcloud/ocr/v20181119/models.py +24 -0
- tencentcloud/redis/v20180412/models.py +2 -3
- tencentcloud/tem/v20210701/models.py +29 -1
- tencentcloud/thpc/v20230321/models.py +245 -15
- tencentcloud/thpc/v20230321/thpc_client.py +46 -0
- tencentcloud/tke/v20220501/models.py +12 -0
- tencentcloud/vclm/v20240523/errorcodes.py +3 -0
- tencentcloud/vclm/v20240523/models.py +14 -0
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/vpc/v20170312/models.py +78 -1
- tencentcloud/waf/v20180125/models.py +13 -41
- tencentcloud/wedata/v20210820/models.py +66 -0
- {tencentcloud_sdk_python-3.0.1195.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1195.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/RECORD +35 -35
- {tencentcloud_sdk_python-3.0.1195.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1195.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1195.dist-info → tencentcloud_sdk_python-3.0.1197.dist-info}/top_level.txt +0 -0
@@ -3807,6 +3807,21 @@ class CCN(AbstractModel):
|
|
3807
3807
|
:param _RouteBroadcastPolicyFlag: 是否开启云联网路由传播策略。`False` 未开启,`True` 开启。
|
3808
3808
|
注意:此字段可能返回 null,表示取不到有效值。
|
3809
3809
|
:type RouteBroadcastPolicyFlag: bool
|
3810
|
+
:param _RouteECMPFlag: 是否开启等价路由功能。`False` 未开启,`True` 开启。
|
3811
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3812
|
+
:type RouteECMPFlag: bool
|
3813
|
+
:param _RouteOverlapFlag: 是否开启路由重叠功能。`False` 未开启,`True` 开启。
|
3814
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3815
|
+
:type RouteOverlapFlag: bool
|
3816
|
+
:param _TrafficMarkingPolicyFlag: 是否开启QOS。
|
3817
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3818
|
+
:type TrafficMarkingPolicyFlag: bool
|
3819
|
+
:param _RouteSelectPolicyFlag: 是否开启路由表选择策略。
|
3820
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3821
|
+
:type RouteSelectPolicyFlag: bool
|
3822
|
+
:param _DirectConnectAccelerateChannelFlag: 是否开启二层云联网通道。
|
3823
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3824
|
+
:type DirectConnectAccelerateChannelFlag: bool
|
3810
3825
|
"""
|
3811
3826
|
self._CcnId = None
|
3812
3827
|
self._CcnName = None
|
@@ -3823,6 +3838,11 @@ class CCN(AbstractModel):
|
|
3823
3838
|
self._RouteTableFlag = None
|
3824
3839
|
self._IsSecurityLock = None
|
3825
3840
|
self._RouteBroadcastPolicyFlag = None
|
3841
|
+
self._RouteECMPFlag = None
|
3842
|
+
self._RouteOverlapFlag = None
|
3843
|
+
self._TrafficMarkingPolicyFlag = None
|
3844
|
+
self._RouteSelectPolicyFlag = None
|
3845
|
+
self._DirectConnectAccelerateChannelFlag = None
|
3826
3846
|
|
3827
3847
|
@property
|
3828
3848
|
def CcnId(self):
|
@@ -3944,6 +3964,46 @@ class CCN(AbstractModel):
|
|
3944
3964
|
def RouteBroadcastPolicyFlag(self, RouteBroadcastPolicyFlag):
|
3945
3965
|
self._RouteBroadcastPolicyFlag = RouteBroadcastPolicyFlag
|
3946
3966
|
|
3967
|
+
@property
|
3968
|
+
def RouteECMPFlag(self):
|
3969
|
+
return self._RouteECMPFlag
|
3970
|
+
|
3971
|
+
@RouteECMPFlag.setter
|
3972
|
+
def RouteECMPFlag(self, RouteECMPFlag):
|
3973
|
+
self._RouteECMPFlag = RouteECMPFlag
|
3974
|
+
|
3975
|
+
@property
|
3976
|
+
def RouteOverlapFlag(self):
|
3977
|
+
return self._RouteOverlapFlag
|
3978
|
+
|
3979
|
+
@RouteOverlapFlag.setter
|
3980
|
+
def RouteOverlapFlag(self, RouteOverlapFlag):
|
3981
|
+
self._RouteOverlapFlag = RouteOverlapFlag
|
3982
|
+
|
3983
|
+
@property
|
3984
|
+
def TrafficMarkingPolicyFlag(self):
|
3985
|
+
return self._TrafficMarkingPolicyFlag
|
3986
|
+
|
3987
|
+
@TrafficMarkingPolicyFlag.setter
|
3988
|
+
def TrafficMarkingPolicyFlag(self, TrafficMarkingPolicyFlag):
|
3989
|
+
self._TrafficMarkingPolicyFlag = TrafficMarkingPolicyFlag
|
3990
|
+
|
3991
|
+
@property
|
3992
|
+
def RouteSelectPolicyFlag(self):
|
3993
|
+
return self._RouteSelectPolicyFlag
|
3994
|
+
|
3995
|
+
@RouteSelectPolicyFlag.setter
|
3996
|
+
def RouteSelectPolicyFlag(self, RouteSelectPolicyFlag):
|
3997
|
+
self._RouteSelectPolicyFlag = RouteSelectPolicyFlag
|
3998
|
+
|
3999
|
+
@property
|
4000
|
+
def DirectConnectAccelerateChannelFlag(self):
|
4001
|
+
return self._DirectConnectAccelerateChannelFlag
|
4002
|
+
|
4003
|
+
@DirectConnectAccelerateChannelFlag.setter
|
4004
|
+
def DirectConnectAccelerateChannelFlag(self, DirectConnectAccelerateChannelFlag):
|
4005
|
+
self._DirectConnectAccelerateChannelFlag = DirectConnectAccelerateChannelFlag
|
4006
|
+
|
3947
4007
|
|
3948
4008
|
def _deserialize(self, params):
|
3949
4009
|
self._CcnId = params.get("CcnId")
|
@@ -3966,6 +4026,11 @@ class CCN(AbstractModel):
|
|
3966
4026
|
self._RouteTableFlag = params.get("RouteTableFlag")
|
3967
4027
|
self._IsSecurityLock = params.get("IsSecurityLock")
|
3968
4028
|
self._RouteBroadcastPolicyFlag = params.get("RouteBroadcastPolicyFlag")
|
4029
|
+
self._RouteECMPFlag = params.get("RouteECMPFlag")
|
4030
|
+
self._RouteOverlapFlag = params.get("RouteOverlapFlag")
|
4031
|
+
self._TrafficMarkingPolicyFlag = params.get("TrafficMarkingPolicyFlag")
|
4032
|
+
self._RouteSelectPolicyFlag = params.get("RouteSelectPolicyFlag")
|
4033
|
+
self._DirectConnectAccelerateChannelFlag = params.get("DirectConnectAccelerateChannelFlag")
|
3969
4034
|
memeber_set = set(params.keys())
|
3970
4035
|
for name, value in vars(self).items():
|
3971
4036
|
property_name = name[1:]
|
@@ -39184,11 +39249,14 @@ class ModifyVpnGatewayAttributeRequest(AbstractModel):
|
|
39184
39249
|
:type InstanceChargeType: str
|
39185
39250
|
:param _BgpAsn: BGP ASN。ASN取值范围为1- 4294967295,默认值64551,其中139341、45090和58835不可用。
|
39186
39251
|
:type BgpAsn: int
|
39252
|
+
:param _MaxConnection: 服务端最大连接数个数。
|
39253
|
+
:type MaxConnection: int
|
39187
39254
|
"""
|
39188
39255
|
self._VpnGatewayId = None
|
39189
39256
|
self._VpnGatewayName = None
|
39190
39257
|
self._InstanceChargeType = None
|
39191
39258
|
self._BgpAsn = None
|
39259
|
+
self._MaxConnection = None
|
39192
39260
|
|
39193
39261
|
@property
|
39194
39262
|
def VpnGatewayId(self):
|
@@ -39222,12 +39290,21 @@ class ModifyVpnGatewayAttributeRequest(AbstractModel):
|
|
39222
39290
|
def BgpAsn(self, BgpAsn):
|
39223
39291
|
self._BgpAsn = BgpAsn
|
39224
39292
|
|
39293
|
+
@property
|
39294
|
+
def MaxConnection(self):
|
39295
|
+
return self._MaxConnection
|
39296
|
+
|
39297
|
+
@MaxConnection.setter
|
39298
|
+
def MaxConnection(self, MaxConnection):
|
39299
|
+
self._MaxConnection = MaxConnection
|
39300
|
+
|
39225
39301
|
|
39226
39302
|
def _deserialize(self, params):
|
39227
39303
|
self._VpnGatewayId = params.get("VpnGatewayId")
|
39228
39304
|
self._VpnGatewayName = params.get("VpnGatewayName")
|
39229
39305
|
self._InstanceChargeType = params.get("InstanceChargeType")
|
39230
39306
|
self._BgpAsn = params.get("BgpAsn")
|
39307
|
+
self._MaxConnection = params.get("MaxConnection")
|
39231
39308
|
memeber_set = set(params.keys())
|
39232
39309
|
for name, value in vars(self).items():
|
39233
39310
|
property_name = name[1:]
|
@@ -40773,7 +40850,7 @@ class NetworkAclEntry(AbstractModel):
|
|
40773
40850
|
r"""
|
40774
40851
|
:param _Protocol: 协议, 取值: TCP,UDP, ICMP, ALL。
|
40775
40852
|
:type Protocol: str
|
40776
|
-
:param _Port: 端口(all, 单个port, range)。当Protocol为ALL或ICMP时,不能指定Port。
|
40853
|
+
:param _Port: 端口(all, 单个port, range)。当Protocol为ALL或ICMP时,不能指定Port。使用-指定端口范围,如:10-20。
|
40777
40854
|
:type Port: str
|
40778
40855
|
:param _CidrBlock: 网段或IP(互斥)。增量创建ACL规则时,CidrBlock和Ipv6CidrBlock至少提供一个。
|
40779
40856
|
:type CidrBlock: str
|
@@ -24276,10 +24276,7 @@ class ModifySpartaProtectionRequest(AbstractModel):
|
|
24276
24276
|
:type DomainId: str
|
24277
24277
|
:param _InstanceID: 必填项。域名所属实例id
|
24278
24278
|
:type InstanceID: str
|
24279
|
-
:param _CertType:
|
24280
|
-
0:仅配置HTTP监听端口,没有证书
|
24281
|
-
1:证书来源为自有证书
|
24282
|
-
2:证书来源为托管证书
|
24279
|
+
:param _CertType: 证书类型。0:仅配置HTTP监听端口,没有证书1:证书来源为自有证书2:证书来源为托管证书
|
24283
24280
|
:type CertType: int
|
24284
24281
|
:param _Cert: CertType为1时,需要填充此参数,表示自有证书的证书链
|
24285
24282
|
:type Cert: str
|
@@ -24287,11 +24284,7 @@ class ModifySpartaProtectionRequest(AbstractModel):
|
|
24287
24284
|
:type PrivateKey: str
|
24288
24285
|
:param _SSLId: CertType为2时,需要填充此参数,表示腾讯云SSL平台托管的证书id
|
24289
24286
|
:type SSLId: str
|
24290
|
-
:param _IsCdn:
|
24291
|
-
0:没有部署代理服务
|
24292
|
-
1:有部署代理服务,waf将使用XFF获取客户端IP
|
24293
|
-
2:有部署代理服务,waf将使用remote_addr获取客户端IP
|
24294
|
-
3:有部署代理服务,waf将使用ip_headers中的自定义header获取客户端IP
|
24287
|
+
:param _IsCdn: waf前是否部署有七层代理服务。0:没有部署代理服务1:有部署代理服务,waf将使用XFF获取客户端IP2:有部署代理服务,waf将使用remote_addr获取客户端IP3:有部署代理服务,waf将使用ip_headers中的自定义header获取客户端IP
|
24295
24288
|
:type IsCdn: int
|
24296
24289
|
:param _UpstreamScheme: 服务配置有HTTPS端口时,HTTPS的回源协议。
|
24297
24290
|
http:使用http协议回源,和HttpsUpstreamPort配合使用
|
@@ -24299,58 +24292,39 @@ https:使用https协议回源
|
|
24299
24292
|
:type UpstreamScheme: str
|
24300
24293
|
:param _HttpsUpstreamPort: HTTPS回源端口,仅UpstreamScheme为http时需要填当前字段
|
24301
24294
|
:type HttpsUpstreamPort: str
|
24302
|
-
:param _HttpsRewrite:
|
24303
|
-
0:不强制跳转
|
24304
|
-
1:开启强制跳转
|
24295
|
+
:param _HttpsRewrite: 是否开启HTTP强制跳转到HTTPS。0:不强制跳转1:开启强制跳转
|
24305
24296
|
:type HttpsRewrite: int
|
24306
|
-
:param _UpstreamType:
|
24307
|
-
0:通过IP回源
|
24308
|
-
1:通过域名回源
|
24297
|
+
:param _UpstreamType: 回源类型。0:通过IP回源1:通过域名回源
|
24309
24298
|
:type UpstreamType: int
|
24310
24299
|
:param _UpstreamDomain: 域名回源时的回源域名。UpstreamType为1时,需要填充此字段
|
24311
24300
|
:type UpstreamDomain: str
|
24312
24301
|
:param _SrcList: IP回源时的回源IP列表。UpstreamType为0时,需要填充此字段
|
24313
24302
|
:type SrcList: list of str
|
24314
|
-
:param _IsHttp2:
|
24315
|
-
0:关闭
|
24316
|
-
1:开启
|
24303
|
+
:param _IsHttp2: 是否开启HTTP2,需要开启HTTPS协议支持。0:关闭1:开启
|
24317
24304
|
:type IsHttp2: int
|
24318
|
-
:param _IsWebsocket:
|
24319
|
-
0:关闭
|
24320
|
-
1:开启
|
24305
|
+
:param _IsWebsocket: 是否开启WebSocket支持。0:关闭1:开启
|
24321
24306
|
:type IsWebsocket: int
|
24322
|
-
:param _LoadBalance:
|
24323
|
-
0:轮询
|
24324
|
-
1:IP hash
|
24325
|
-
2:加权轮询
|
24307
|
+
:param _LoadBalance: 回源负载均衡策略。0:轮询1:IP hash2:加权轮询
|
24326
24308
|
:type LoadBalance: int
|
24327
24309
|
:param _IsGray: 待废弃,可不填。是否开启灰度,0表示不开启灰度。
|
24328
24310
|
:type IsGray: int
|
24329
24311
|
:param _Edition: 域名所属实例类型
|
24330
24312
|
:type Edition: str
|
24331
|
-
:param _Ports:
|
24313
|
+
:param _Ports: 端口信息,可通过DescribeDomains接口获取具体参数信息。
|
24332
24314
|
:type Ports: list of SpartaProtectionPort
|
24333
|
-
:param _IsKeepAlive:
|
24334
|
-
0: 短连接
|
24335
|
-
1: 长连接
|
24315
|
+
:param _IsKeepAlive: 是否开启长连接。0: 短连接1: 长连接
|
24336
24316
|
:type IsKeepAlive: str
|
24337
|
-
:param _Anycast:
|
24317
|
+
:param _Anycast: 待废弃。目前填0即可。anycast IP类型开关: 0 普通IP 1 Anycast IP
|
24338
24318
|
:type Anycast: int
|
24339
24319
|
:param _Weights: 回源IP列表各IP的权重,和SrcList一一对应。当且仅当UpstreamType为0,并且SrcList有多个IP,并且LoadBalance为2时需要填写,否则填 []
|
24340
24320
|
:type Weights: list of int
|
24341
|
-
:param _ActiveCheck:
|
24342
|
-
0:不开启
|
24343
|
-
1:开启
|
24321
|
+
:param _ActiveCheck: 是否开启主动健康检测。0:不开启1:开启
|
24344
24322
|
:type ActiveCheck: int
|
24345
24323
|
:param _TLSVersion: TLS版本信息
|
24346
24324
|
:type TLSVersion: int
|
24347
24325
|
:param _Ciphers: 加密套件信息
|
24348
24326
|
:type Ciphers: list of int
|
24349
|
-
:param _CipherTemplate:
|
24350
|
-
0:不支持选择,使用默认模板
|
24351
|
-
1:通用型模板
|
24352
|
-
2:安全型模板
|
24353
|
-
3:自定义模板
|
24327
|
+
:param _CipherTemplate: 加密套件模板。0:不支持选择,使用默认模板 1:通用型模板 2:安全型模板3:自定义模板
|
24354
24328
|
:type CipherTemplate: int
|
24355
24329
|
:param _ProxyReadTimeout: WAF与源站的读超时时间,默认300s。
|
24356
24330
|
:type ProxyReadTimeout: int
|
@@ -24366,9 +24340,7 @@ https:使用https协议回源
|
|
24366
24340
|
:type SniHost: str
|
24367
24341
|
:param _IpHeaders: IsCdn=3时,需要填此参数,表示自定义header
|
24368
24342
|
:type IpHeaders: list of str
|
24369
|
-
:param _XFFReset:
|
24370
|
-
0:关闭
|
24371
|
-
1:开启
|
24343
|
+
:param _XFFReset: 是否开启XFF重置。0:关闭1:开启
|
24372
24344
|
:type XFFReset: int
|
24373
24345
|
:param _Note: 域名备注信息
|
24374
24346
|
:type Note: str
|
@@ -21162,12 +21162,18 @@ class DescribeOrganizationalFunctionsRequest(AbstractModel):
|
|
21162
21162
|
简单模式:ALL
|
21163
21163
|
|
21164
21164
|
:type EnvType: str
|
21165
|
+
:param _Filters: 过滤条件
|
21166
|
+
:type Filters: :class:`tencentcloud.wedata.v20210820.models.Filter`
|
21167
|
+
:param _OrderFields: 排序条件
|
21168
|
+
:type OrderFields: :class:`tencentcloud.wedata.v20210820.models.OrderField`
|
21165
21169
|
"""
|
21166
21170
|
self._Type = None
|
21167
21171
|
self._ProjectId = None
|
21168
21172
|
self._Name = None
|
21169
21173
|
self._DisplayName = None
|
21170
21174
|
self._EnvType = None
|
21175
|
+
self._Filters = None
|
21176
|
+
self._OrderFields = None
|
21171
21177
|
|
21172
21178
|
@property
|
21173
21179
|
def Type(self):
|
@@ -21209,6 +21215,22 @@ class DescribeOrganizationalFunctionsRequest(AbstractModel):
|
|
21209
21215
|
def EnvType(self, EnvType):
|
21210
21216
|
self._EnvType = EnvType
|
21211
21217
|
|
21218
|
+
@property
|
21219
|
+
def Filters(self):
|
21220
|
+
return self._Filters
|
21221
|
+
|
21222
|
+
@Filters.setter
|
21223
|
+
def Filters(self, Filters):
|
21224
|
+
self._Filters = Filters
|
21225
|
+
|
21226
|
+
@property
|
21227
|
+
def OrderFields(self):
|
21228
|
+
return self._OrderFields
|
21229
|
+
|
21230
|
+
@OrderFields.setter
|
21231
|
+
def OrderFields(self, OrderFields):
|
21232
|
+
self._OrderFields = OrderFields
|
21233
|
+
|
21212
21234
|
|
21213
21235
|
def _deserialize(self, params):
|
21214
21236
|
self._Type = params.get("Type")
|
@@ -21216,6 +21238,12 @@ class DescribeOrganizationalFunctionsRequest(AbstractModel):
|
|
21216
21238
|
self._Name = params.get("Name")
|
21217
21239
|
self._DisplayName = params.get("DisplayName")
|
21218
21240
|
self._EnvType = params.get("EnvType")
|
21241
|
+
if params.get("Filters") is not None:
|
21242
|
+
self._Filters = Filter()
|
21243
|
+
self._Filters._deserialize(params.get("Filters"))
|
21244
|
+
if params.get("OrderFields") is not None:
|
21245
|
+
self._OrderFields = OrderField()
|
21246
|
+
self._OrderFields._deserialize(params.get("OrderFields"))
|
21219
21247
|
memeber_set = set(params.keys())
|
21220
21248
|
for name, value in vars(self).items():
|
21221
21249
|
property_name = name[1:]
|
@@ -26222,6 +26250,8 @@ class DescribeTableSchemaInfoRequest(AbstractModel):
|
|
26222
26250
|
:type ConnectionType: str
|
26223
26251
|
:param _SchemaName: 元数据Database下的Schema名称
|
26224
26252
|
:type SchemaName: str
|
26253
|
+
:param _ProjectId: 项目空间ID
|
26254
|
+
:type ProjectId: str
|
26225
26255
|
"""
|
26226
26256
|
self._Name = None
|
26227
26257
|
self._DatabaseName = None
|
@@ -26229,6 +26259,7 @@ class DescribeTableSchemaInfoRequest(AbstractModel):
|
|
26229
26259
|
self._DatasourceId = None
|
26230
26260
|
self._ConnectionType = None
|
26231
26261
|
self._SchemaName = None
|
26262
|
+
self._ProjectId = None
|
26232
26263
|
|
26233
26264
|
@property
|
26234
26265
|
def Name(self):
|
@@ -26278,6 +26309,14 @@ class DescribeTableSchemaInfoRequest(AbstractModel):
|
|
26278
26309
|
def SchemaName(self, SchemaName):
|
26279
26310
|
self._SchemaName = SchemaName
|
26280
26311
|
|
26312
|
+
@property
|
26313
|
+
def ProjectId(self):
|
26314
|
+
return self._ProjectId
|
26315
|
+
|
26316
|
+
@ProjectId.setter
|
26317
|
+
def ProjectId(self, ProjectId):
|
26318
|
+
self._ProjectId = ProjectId
|
26319
|
+
|
26281
26320
|
|
26282
26321
|
def _deserialize(self, params):
|
26283
26322
|
self._Name = params.get("Name")
|
@@ -26286,6 +26325,7 @@ class DescribeTableSchemaInfoRequest(AbstractModel):
|
|
26286
26325
|
self._DatasourceId = params.get("DatasourceId")
|
26287
26326
|
self._ConnectionType = params.get("ConnectionType")
|
26288
26327
|
self._SchemaName = params.get("SchemaName")
|
26328
|
+
self._ProjectId = params.get("ProjectId")
|
26289
26329
|
memeber_set = set(params.keys())
|
26290
26330
|
for name, value in vars(self).items():
|
26291
26331
|
property_name = name[1:]
|
@@ -43334,6 +43374,9 @@ class OrganizationalFunction(AbstractModel):
|
|
43334
43374
|
:param _OwnerUserIdsStr: 公有云 Owner ID 列表
|
43335
43375
|
注意:此字段可能返回 null,表示取不到有效值。
|
43336
43376
|
:type OwnerUserIdsStr: list of str
|
43377
|
+
:param _EnvType: 数据库环境
|
43378
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
43379
|
+
:type EnvType: str
|
43337
43380
|
"""
|
43338
43381
|
self._Name = None
|
43339
43382
|
self._DisplayName = None
|
@@ -43363,6 +43406,7 @@ class OrganizationalFunction(AbstractModel):
|
|
43363
43406
|
self._Tag = None
|
43364
43407
|
self._OperatorUserIdsStr = None
|
43365
43408
|
self._OwnerUserIdsStr = None
|
43409
|
+
self._EnvType = None
|
43366
43410
|
|
43367
43411
|
@property
|
43368
43412
|
def Name(self):
|
@@ -43588,6 +43632,14 @@ class OrganizationalFunction(AbstractModel):
|
|
43588
43632
|
def OwnerUserIdsStr(self, OwnerUserIdsStr):
|
43589
43633
|
self._OwnerUserIdsStr = OwnerUserIdsStr
|
43590
43634
|
|
43635
|
+
@property
|
43636
|
+
def EnvType(self):
|
43637
|
+
return self._EnvType
|
43638
|
+
|
43639
|
+
@EnvType.setter
|
43640
|
+
def EnvType(self, EnvType):
|
43641
|
+
self._EnvType = EnvType
|
43642
|
+
|
43591
43643
|
|
43592
43644
|
def _deserialize(self, params):
|
43593
43645
|
self._Name = params.get("Name")
|
@@ -43623,6 +43675,7 @@ class OrganizationalFunction(AbstractModel):
|
|
43623
43675
|
self._Tag = params.get("Tag")
|
43624
43676
|
self._OperatorUserIdsStr = params.get("OperatorUserIdsStr")
|
43625
43677
|
self._OwnerUserIdsStr = params.get("OwnerUserIdsStr")
|
43678
|
+
self._EnvType = params.get("EnvType")
|
43626
43679
|
memeber_set = set(params.keys())
|
43627
43680
|
for name, value in vars(self).items():
|
43628
43681
|
property_name = name[1:]
|
@@ -48048,6 +48101,9 @@ class RuleGroupExecStrategy(AbstractModel):
|
|
48048
48101
|
:param _TriggerTypes: 触发类型
|
48049
48102
|
注意:此字段可能返回 null,表示取不到有效值。
|
48050
48103
|
:type TriggerTypes: list of str
|
48104
|
+
:param _DlcGroupName: DLC资源组
|
48105
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
48106
|
+
:type DlcGroupName: str
|
48051
48107
|
"""
|
48052
48108
|
self._RuleGroupId = None
|
48053
48109
|
self._MonitorType = None
|
@@ -48066,6 +48122,7 @@ class RuleGroupExecStrategy(AbstractModel):
|
|
48066
48122
|
self._RuleId = None
|
48067
48123
|
self._RuleName = None
|
48068
48124
|
self._TriggerTypes = None
|
48125
|
+
self._DlcGroupName = None
|
48069
48126
|
|
48070
48127
|
@property
|
48071
48128
|
def RuleGroupId(self):
|
@@ -48203,6 +48260,14 @@ class RuleGroupExecStrategy(AbstractModel):
|
|
48203
48260
|
def TriggerTypes(self, TriggerTypes):
|
48204
48261
|
self._TriggerTypes = TriggerTypes
|
48205
48262
|
|
48263
|
+
@property
|
48264
|
+
def DlcGroupName(self):
|
48265
|
+
return self._DlcGroupName
|
48266
|
+
|
48267
|
+
@DlcGroupName.setter
|
48268
|
+
def DlcGroupName(self, DlcGroupName):
|
48269
|
+
self._DlcGroupName = DlcGroupName
|
48270
|
+
|
48206
48271
|
|
48207
48272
|
def _deserialize(self, params):
|
48208
48273
|
self._RuleGroupId = params.get("RuleGroupId")
|
@@ -48227,6 +48292,7 @@ class RuleGroupExecStrategy(AbstractModel):
|
|
48227
48292
|
self._RuleId = params.get("RuleId")
|
48228
48293
|
self._RuleName = params.get("RuleName")
|
48229
48294
|
self._TriggerTypes = params.get("TriggerTypes")
|
48295
|
+
self._DlcGroupName = params.get("DlcGroupName")
|
48230
48296
|
memeber_set = set(params.keys())
|
48231
48297
|
for name, value in vars(self).items():
|
48232
48298
|
property_name = name[1:]
|