tencentcloud-sdk-python 3.0.1409__py2.py3-none-any.whl → 3.0.1410__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/bh/v20230418/bh_client.py +138 -0
- tencentcloud/bh/v20230418/errorcodes.py +3 -0
- tencentcloud/bh/v20230418/models.py +991 -67
- tencentcloud/ccc/v20200210/models.py +2 -2
- tencentcloud/cdb/v20170320/cdb_client.py +25 -19
- tencentcloud/cdb/v20170320/errorcodes.py +0 -3
- tencentcloud/cdb/v20170320/models.py +274 -202
- tencentcloud/cwp/v20180228/models.py +165 -0
- tencentcloud/cynosdb/v20190107/models.py +45 -0
- tencentcloud/dsgc/v20190723/dsgc_client.py +1 -3
- tencentcloud/dsgc/v20190723/models.py +342 -15
- tencentcloud/emr/v20190103/models.py +155 -0
- tencentcloud/es/v20180416/errorcodes.py +42 -0
- tencentcloud/ess/v20201111/models.py +33 -4
- tencentcloud/kms/v20190118/errorcodes.py +36 -0
- tencentcloud/kms/v20190118/kms_client.py +345 -0
- tencentcloud/kms/v20190118/models.py +3437 -1534
- tencentcloud/lighthouse/v20200324/errorcodes.py +9 -0
- tencentcloud/lke/v20231130/lke_client.py +92 -0
- tencentcloud/lke/v20231130/models.py +2702 -572
- tencentcloud/ses/v20201002/models.py +0 -8
- tencentcloud/tcss/v20201101/models.py +15 -0
- tencentcloud/thpc/v20230321/models.py +47 -2
- tencentcloud/tione/v20211111/models.py +15 -0
- tencentcloud/trocket/v20230308/models.py +470 -234
- tencentcloud/trocket/v20230308/trocket_client.py +26 -3
- tencentcloud/vpc/v20170312/models.py +15 -0
- tencentcloud/waf/v20180125/models.py +110 -18
- tencentcloud/wedata/v20210820/models.py +764 -4
- tencentcloud/wedata/v20210820/wedata_client.py +48 -2
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1410.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1410.dist-info}/RECORD +36 -36
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1410.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1410.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1409.dist-info → tencentcloud_sdk_python-3.0.1410.dist-info}/top_level.txt +0 -0
@@ -2424,6 +2424,190 @@ class ChangePwdTaskInfo(AbstractModel):
|
|
2424
2424
|
|
2425
2425
|
|
2426
2426
|
|
2427
|
+
class CheckLDAPConnectionRequest(AbstractModel):
|
2428
|
+
"""CheckLDAPConnection请求参数结构体
|
2429
|
+
|
2430
|
+
"""
|
2431
|
+
|
2432
|
+
def __init__(self):
|
2433
|
+
r"""
|
2434
|
+
:param _Enable: 是否开启LDAP认证,必须为true
|
2435
|
+
:type Enable: bool
|
2436
|
+
:param _Ip: 服务器地址
|
2437
|
+
:type Ip: str
|
2438
|
+
:param _Port: 服务端口
|
2439
|
+
:type Port: int
|
2440
|
+
:param _EnableSSL: 是否开启SSL,false-不开启,true-开启
|
2441
|
+
:type EnableSSL: bool
|
2442
|
+
:param _BaseDN: Base DN
|
2443
|
+
:type BaseDN: str
|
2444
|
+
:param _AdminAccount: 管理员账号
|
2445
|
+
:type AdminAccount: str
|
2446
|
+
:param _AdminPassword: 管理员密码
|
2447
|
+
:type AdminPassword: str
|
2448
|
+
:param _IpBackup: 备用服务器地址
|
2449
|
+
:type IpBackup: str
|
2450
|
+
:param _DomainId: 网络域id
|
2451
|
+
:type DomainId: str
|
2452
|
+
"""
|
2453
|
+
self._Enable = None
|
2454
|
+
self._Ip = None
|
2455
|
+
self._Port = None
|
2456
|
+
self._EnableSSL = None
|
2457
|
+
self._BaseDN = None
|
2458
|
+
self._AdminAccount = None
|
2459
|
+
self._AdminPassword = None
|
2460
|
+
self._IpBackup = None
|
2461
|
+
self._DomainId = None
|
2462
|
+
|
2463
|
+
@property
|
2464
|
+
def Enable(self):
|
2465
|
+
"""是否开启LDAP认证,必须为true
|
2466
|
+
:rtype: bool
|
2467
|
+
"""
|
2468
|
+
return self._Enable
|
2469
|
+
|
2470
|
+
@Enable.setter
|
2471
|
+
def Enable(self, Enable):
|
2472
|
+
self._Enable = Enable
|
2473
|
+
|
2474
|
+
@property
|
2475
|
+
def Ip(self):
|
2476
|
+
"""服务器地址
|
2477
|
+
:rtype: str
|
2478
|
+
"""
|
2479
|
+
return self._Ip
|
2480
|
+
|
2481
|
+
@Ip.setter
|
2482
|
+
def Ip(self, Ip):
|
2483
|
+
self._Ip = Ip
|
2484
|
+
|
2485
|
+
@property
|
2486
|
+
def Port(self):
|
2487
|
+
"""服务端口
|
2488
|
+
:rtype: int
|
2489
|
+
"""
|
2490
|
+
return self._Port
|
2491
|
+
|
2492
|
+
@Port.setter
|
2493
|
+
def Port(self, Port):
|
2494
|
+
self._Port = Port
|
2495
|
+
|
2496
|
+
@property
|
2497
|
+
def EnableSSL(self):
|
2498
|
+
"""是否开启SSL,false-不开启,true-开启
|
2499
|
+
:rtype: bool
|
2500
|
+
"""
|
2501
|
+
return self._EnableSSL
|
2502
|
+
|
2503
|
+
@EnableSSL.setter
|
2504
|
+
def EnableSSL(self, EnableSSL):
|
2505
|
+
self._EnableSSL = EnableSSL
|
2506
|
+
|
2507
|
+
@property
|
2508
|
+
def BaseDN(self):
|
2509
|
+
"""Base DN
|
2510
|
+
:rtype: str
|
2511
|
+
"""
|
2512
|
+
return self._BaseDN
|
2513
|
+
|
2514
|
+
@BaseDN.setter
|
2515
|
+
def BaseDN(self, BaseDN):
|
2516
|
+
self._BaseDN = BaseDN
|
2517
|
+
|
2518
|
+
@property
|
2519
|
+
def AdminAccount(self):
|
2520
|
+
"""管理员账号
|
2521
|
+
:rtype: str
|
2522
|
+
"""
|
2523
|
+
return self._AdminAccount
|
2524
|
+
|
2525
|
+
@AdminAccount.setter
|
2526
|
+
def AdminAccount(self, AdminAccount):
|
2527
|
+
self._AdminAccount = AdminAccount
|
2528
|
+
|
2529
|
+
@property
|
2530
|
+
def AdminPassword(self):
|
2531
|
+
"""管理员密码
|
2532
|
+
:rtype: str
|
2533
|
+
"""
|
2534
|
+
return self._AdminPassword
|
2535
|
+
|
2536
|
+
@AdminPassword.setter
|
2537
|
+
def AdminPassword(self, AdminPassword):
|
2538
|
+
self._AdminPassword = AdminPassword
|
2539
|
+
|
2540
|
+
@property
|
2541
|
+
def IpBackup(self):
|
2542
|
+
"""备用服务器地址
|
2543
|
+
:rtype: str
|
2544
|
+
"""
|
2545
|
+
return self._IpBackup
|
2546
|
+
|
2547
|
+
@IpBackup.setter
|
2548
|
+
def IpBackup(self, IpBackup):
|
2549
|
+
self._IpBackup = IpBackup
|
2550
|
+
|
2551
|
+
@property
|
2552
|
+
def DomainId(self):
|
2553
|
+
"""网络域id
|
2554
|
+
:rtype: str
|
2555
|
+
"""
|
2556
|
+
return self._DomainId
|
2557
|
+
|
2558
|
+
@DomainId.setter
|
2559
|
+
def DomainId(self, DomainId):
|
2560
|
+
self._DomainId = DomainId
|
2561
|
+
|
2562
|
+
|
2563
|
+
def _deserialize(self, params):
|
2564
|
+
self._Enable = params.get("Enable")
|
2565
|
+
self._Ip = params.get("Ip")
|
2566
|
+
self._Port = params.get("Port")
|
2567
|
+
self._EnableSSL = params.get("EnableSSL")
|
2568
|
+
self._BaseDN = params.get("BaseDN")
|
2569
|
+
self._AdminAccount = params.get("AdminAccount")
|
2570
|
+
self._AdminPassword = params.get("AdminPassword")
|
2571
|
+
self._IpBackup = params.get("IpBackup")
|
2572
|
+
self._DomainId = params.get("DomainId")
|
2573
|
+
memeber_set = set(params.keys())
|
2574
|
+
for name, value in vars(self).items():
|
2575
|
+
property_name = name[1:]
|
2576
|
+
if property_name in memeber_set:
|
2577
|
+
memeber_set.remove(property_name)
|
2578
|
+
if len(memeber_set) > 0:
|
2579
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2580
|
+
|
2581
|
+
|
2582
|
+
|
2583
|
+
class CheckLDAPConnectionResponse(AbstractModel):
|
2584
|
+
"""CheckLDAPConnection返回参数结构体
|
2585
|
+
|
2586
|
+
"""
|
2587
|
+
|
2588
|
+
def __init__(self):
|
2589
|
+
r"""
|
2590
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2591
|
+
:type RequestId: str
|
2592
|
+
"""
|
2593
|
+
self._RequestId = None
|
2594
|
+
|
2595
|
+
@property
|
2596
|
+
def RequestId(self):
|
2597
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2598
|
+
:rtype: str
|
2599
|
+
"""
|
2600
|
+
return self._RequestId
|
2601
|
+
|
2602
|
+
@RequestId.setter
|
2603
|
+
def RequestId(self, RequestId):
|
2604
|
+
self._RequestId = RequestId
|
2605
|
+
|
2606
|
+
|
2607
|
+
def _deserialize(self, params):
|
2608
|
+
self._RequestId = params.get("RequestId")
|
2609
|
+
|
2610
|
+
|
2427
2611
|
class Clb(AbstractModel):
|
2428
2612
|
"""负载均衡
|
2429
2613
|
|
@@ -7807,6 +7991,235 @@ class DescribeDomainsResponse(AbstractModel):
|
|
7807
7991
|
self._RequestId = params.get("RequestId")
|
7808
7992
|
|
7809
7993
|
|
7994
|
+
class DescribeLDAPUnitSetRequest(AbstractModel):
|
7995
|
+
"""DescribeLDAPUnitSet请求参数结构体
|
7996
|
+
|
7997
|
+
"""
|
7998
|
+
|
7999
|
+
def __init__(self):
|
8000
|
+
r"""
|
8001
|
+
:param _Enable: 是否开启LDAP认证,true-开启
|
8002
|
+
:type Enable: bool
|
8003
|
+
:param _Ip: 服务器地址
|
8004
|
+
:type Ip: str
|
8005
|
+
:param _Port: 服务端口
|
8006
|
+
:type Port: int
|
8007
|
+
:param _EnableSSL: 是否开启SSL,false-不开启,true-开启
|
8008
|
+
:type EnableSSL: bool
|
8009
|
+
:param _BaseDN: Base DN
|
8010
|
+
:type BaseDN: str
|
8011
|
+
:param _AdminAccount: 管理员账号
|
8012
|
+
:type AdminAccount: str
|
8013
|
+
:param _AdminPassword: 管理员密码
|
8014
|
+
:type AdminPassword: str
|
8015
|
+
:param _AttributeUserName: 用户名映射属性
|
8016
|
+
:type AttributeUserName: str
|
8017
|
+
:param _AttributeUnit: 部门过滤
|
8018
|
+
:type AttributeUnit: str
|
8019
|
+
:param _IpBackup: 备用服务器地址
|
8020
|
+
:type IpBackup: str
|
8021
|
+
:param _DomainId: 网络域Id
|
8022
|
+
:type DomainId: str
|
8023
|
+
"""
|
8024
|
+
self._Enable = None
|
8025
|
+
self._Ip = None
|
8026
|
+
self._Port = None
|
8027
|
+
self._EnableSSL = None
|
8028
|
+
self._BaseDN = None
|
8029
|
+
self._AdminAccount = None
|
8030
|
+
self._AdminPassword = None
|
8031
|
+
self._AttributeUserName = None
|
8032
|
+
self._AttributeUnit = None
|
8033
|
+
self._IpBackup = None
|
8034
|
+
self._DomainId = None
|
8035
|
+
|
8036
|
+
@property
|
8037
|
+
def Enable(self):
|
8038
|
+
"""是否开启LDAP认证,true-开启
|
8039
|
+
:rtype: bool
|
8040
|
+
"""
|
8041
|
+
return self._Enable
|
8042
|
+
|
8043
|
+
@Enable.setter
|
8044
|
+
def Enable(self, Enable):
|
8045
|
+
self._Enable = Enable
|
8046
|
+
|
8047
|
+
@property
|
8048
|
+
def Ip(self):
|
8049
|
+
"""服务器地址
|
8050
|
+
:rtype: str
|
8051
|
+
"""
|
8052
|
+
return self._Ip
|
8053
|
+
|
8054
|
+
@Ip.setter
|
8055
|
+
def Ip(self, Ip):
|
8056
|
+
self._Ip = Ip
|
8057
|
+
|
8058
|
+
@property
|
8059
|
+
def Port(self):
|
8060
|
+
"""服务端口
|
8061
|
+
:rtype: int
|
8062
|
+
"""
|
8063
|
+
return self._Port
|
8064
|
+
|
8065
|
+
@Port.setter
|
8066
|
+
def Port(self, Port):
|
8067
|
+
self._Port = Port
|
8068
|
+
|
8069
|
+
@property
|
8070
|
+
def EnableSSL(self):
|
8071
|
+
"""是否开启SSL,false-不开启,true-开启
|
8072
|
+
:rtype: bool
|
8073
|
+
"""
|
8074
|
+
return self._EnableSSL
|
8075
|
+
|
8076
|
+
@EnableSSL.setter
|
8077
|
+
def EnableSSL(self, EnableSSL):
|
8078
|
+
self._EnableSSL = EnableSSL
|
8079
|
+
|
8080
|
+
@property
|
8081
|
+
def BaseDN(self):
|
8082
|
+
"""Base DN
|
8083
|
+
:rtype: str
|
8084
|
+
"""
|
8085
|
+
return self._BaseDN
|
8086
|
+
|
8087
|
+
@BaseDN.setter
|
8088
|
+
def BaseDN(self, BaseDN):
|
8089
|
+
self._BaseDN = BaseDN
|
8090
|
+
|
8091
|
+
@property
|
8092
|
+
def AdminAccount(self):
|
8093
|
+
"""管理员账号
|
8094
|
+
:rtype: str
|
8095
|
+
"""
|
8096
|
+
return self._AdminAccount
|
8097
|
+
|
8098
|
+
@AdminAccount.setter
|
8099
|
+
def AdminAccount(self, AdminAccount):
|
8100
|
+
self._AdminAccount = AdminAccount
|
8101
|
+
|
8102
|
+
@property
|
8103
|
+
def AdminPassword(self):
|
8104
|
+
"""管理员密码
|
8105
|
+
:rtype: str
|
8106
|
+
"""
|
8107
|
+
return self._AdminPassword
|
8108
|
+
|
8109
|
+
@AdminPassword.setter
|
8110
|
+
def AdminPassword(self, AdminPassword):
|
8111
|
+
self._AdminPassword = AdminPassword
|
8112
|
+
|
8113
|
+
@property
|
8114
|
+
def AttributeUserName(self):
|
8115
|
+
"""用户名映射属性
|
8116
|
+
:rtype: str
|
8117
|
+
"""
|
8118
|
+
return self._AttributeUserName
|
8119
|
+
|
8120
|
+
@AttributeUserName.setter
|
8121
|
+
def AttributeUserName(self, AttributeUserName):
|
8122
|
+
self._AttributeUserName = AttributeUserName
|
8123
|
+
|
8124
|
+
@property
|
8125
|
+
def AttributeUnit(self):
|
8126
|
+
"""部门过滤
|
8127
|
+
:rtype: str
|
8128
|
+
"""
|
8129
|
+
return self._AttributeUnit
|
8130
|
+
|
8131
|
+
@AttributeUnit.setter
|
8132
|
+
def AttributeUnit(self, AttributeUnit):
|
8133
|
+
self._AttributeUnit = AttributeUnit
|
8134
|
+
|
8135
|
+
@property
|
8136
|
+
def IpBackup(self):
|
8137
|
+
"""备用服务器地址
|
8138
|
+
:rtype: str
|
8139
|
+
"""
|
8140
|
+
return self._IpBackup
|
8141
|
+
|
8142
|
+
@IpBackup.setter
|
8143
|
+
def IpBackup(self, IpBackup):
|
8144
|
+
self._IpBackup = IpBackup
|
8145
|
+
|
8146
|
+
@property
|
8147
|
+
def DomainId(self):
|
8148
|
+
"""网络域Id
|
8149
|
+
:rtype: str
|
8150
|
+
"""
|
8151
|
+
return self._DomainId
|
8152
|
+
|
8153
|
+
@DomainId.setter
|
8154
|
+
def DomainId(self, DomainId):
|
8155
|
+
self._DomainId = DomainId
|
8156
|
+
|
8157
|
+
|
8158
|
+
def _deserialize(self, params):
|
8159
|
+
self._Enable = params.get("Enable")
|
8160
|
+
self._Ip = params.get("Ip")
|
8161
|
+
self._Port = params.get("Port")
|
8162
|
+
self._EnableSSL = params.get("EnableSSL")
|
8163
|
+
self._BaseDN = params.get("BaseDN")
|
8164
|
+
self._AdminAccount = params.get("AdminAccount")
|
8165
|
+
self._AdminPassword = params.get("AdminPassword")
|
8166
|
+
self._AttributeUserName = params.get("AttributeUserName")
|
8167
|
+
self._AttributeUnit = params.get("AttributeUnit")
|
8168
|
+
self._IpBackup = params.get("IpBackup")
|
8169
|
+
self._DomainId = params.get("DomainId")
|
8170
|
+
memeber_set = set(params.keys())
|
8171
|
+
for name, value in vars(self).items():
|
8172
|
+
property_name = name[1:]
|
8173
|
+
if property_name in memeber_set:
|
8174
|
+
memeber_set.remove(property_name)
|
8175
|
+
if len(memeber_set) > 0:
|
8176
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
8177
|
+
|
8178
|
+
|
8179
|
+
|
8180
|
+
class DescribeLDAPUnitSetResponse(AbstractModel):
|
8181
|
+
"""DescribeLDAPUnitSet返回参数结构体
|
8182
|
+
|
8183
|
+
"""
|
8184
|
+
|
8185
|
+
def __init__(self):
|
8186
|
+
r"""
|
8187
|
+
:param _UnitSet: ou 列表
|
8188
|
+
:type UnitSet: list of str
|
8189
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8190
|
+
:type RequestId: str
|
8191
|
+
"""
|
8192
|
+
self._UnitSet = None
|
8193
|
+
self._RequestId = None
|
8194
|
+
|
8195
|
+
@property
|
8196
|
+
def UnitSet(self):
|
8197
|
+
"""ou 列表
|
8198
|
+
:rtype: list of str
|
8199
|
+
"""
|
8200
|
+
return self._UnitSet
|
8201
|
+
|
8202
|
+
@UnitSet.setter
|
8203
|
+
def UnitSet(self, UnitSet):
|
8204
|
+
self._UnitSet = UnitSet
|
8205
|
+
|
8206
|
+
@property
|
8207
|
+
def RequestId(self):
|
8208
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8209
|
+
:rtype: str
|
8210
|
+
"""
|
8211
|
+
return self._RequestId
|
8212
|
+
|
8213
|
+
@RequestId.setter
|
8214
|
+
def RequestId(self, RequestId):
|
8215
|
+
self._RequestId = RequestId
|
8216
|
+
|
8217
|
+
|
8218
|
+
def _deserialize(self, params):
|
8219
|
+
self._UnitSet = params.get("UnitSet")
|
8220
|
+
self._RequestId = params.get("RequestId")
|
8221
|
+
|
8222
|
+
|
7810
8223
|
class DescribeLoginEventRequest(AbstractModel):
|
7811
8224
|
"""DescribeLoginEvent请求参数结构体
|
7812
8225
|
|
@@ -11545,101 +11958,435 @@ class ModifyDeviceGroupRequest(AbstractModel):
|
|
11545
11958
|
|
11546
11959
|
|
11547
11960
|
|
11548
|
-
class ModifyDeviceGroupResponse(AbstractModel):
|
11549
|
-
"""ModifyDeviceGroup返回参数结构体
|
11961
|
+
class ModifyDeviceGroupResponse(AbstractModel):
|
11962
|
+
"""ModifyDeviceGroup返回参数结构体
|
11963
|
+
|
11964
|
+
"""
|
11965
|
+
|
11966
|
+
def __init__(self):
|
11967
|
+
r"""
|
11968
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11969
|
+
:type RequestId: str
|
11970
|
+
"""
|
11971
|
+
self._RequestId = None
|
11972
|
+
|
11973
|
+
@property
|
11974
|
+
def RequestId(self):
|
11975
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
11976
|
+
:rtype: str
|
11977
|
+
"""
|
11978
|
+
return self._RequestId
|
11979
|
+
|
11980
|
+
@RequestId.setter
|
11981
|
+
def RequestId(self, RequestId):
|
11982
|
+
self._RequestId = RequestId
|
11983
|
+
|
11984
|
+
|
11985
|
+
def _deserialize(self, params):
|
11986
|
+
self._RequestId = params.get("RequestId")
|
11987
|
+
|
11988
|
+
|
11989
|
+
class ModifyDeviceRequest(AbstractModel):
|
11990
|
+
"""ModifyDevice请求参数结构体
|
11991
|
+
|
11992
|
+
"""
|
11993
|
+
|
11994
|
+
def __init__(self):
|
11995
|
+
r"""
|
11996
|
+
:param _Id: 资产记录ID
|
11997
|
+
:type Id: int
|
11998
|
+
:param _Port: 管理端口
|
11999
|
+
:type Port: int
|
12000
|
+
:param _GroupIdSet: 资产所属组ID集合
|
12001
|
+
:type GroupIdSet: list of int non-negative
|
12002
|
+
:param _DepartmentId: 资产所属部门ID
|
12003
|
+
:type DepartmentId: str
|
12004
|
+
:param _DomainId: 网络域Id
|
12005
|
+
:type DomainId: str
|
12006
|
+
"""
|
12007
|
+
self._Id = None
|
12008
|
+
self._Port = None
|
12009
|
+
self._GroupIdSet = None
|
12010
|
+
self._DepartmentId = None
|
12011
|
+
self._DomainId = None
|
12012
|
+
|
12013
|
+
@property
|
12014
|
+
def Id(self):
|
12015
|
+
"""资产记录ID
|
12016
|
+
:rtype: int
|
12017
|
+
"""
|
12018
|
+
return self._Id
|
12019
|
+
|
12020
|
+
@Id.setter
|
12021
|
+
def Id(self, Id):
|
12022
|
+
self._Id = Id
|
12023
|
+
|
12024
|
+
@property
|
12025
|
+
def Port(self):
|
12026
|
+
"""管理端口
|
12027
|
+
:rtype: int
|
12028
|
+
"""
|
12029
|
+
return self._Port
|
12030
|
+
|
12031
|
+
@Port.setter
|
12032
|
+
def Port(self, Port):
|
12033
|
+
self._Port = Port
|
12034
|
+
|
12035
|
+
@property
|
12036
|
+
def GroupIdSet(self):
|
12037
|
+
"""资产所属组ID集合
|
12038
|
+
:rtype: list of int non-negative
|
12039
|
+
"""
|
12040
|
+
return self._GroupIdSet
|
12041
|
+
|
12042
|
+
@GroupIdSet.setter
|
12043
|
+
def GroupIdSet(self, GroupIdSet):
|
12044
|
+
self._GroupIdSet = GroupIdSet
|
12045
|
+
|
12046
|
+
@property
|
12047
|
+
def DepartmentId(self):
|
12048
|
+
"""资产所属部门ID
|
12049
|
+
:rtype: str
|
12050
|
+
"""
|
12051
|
+
return self._DepartmentId
|
12052
|
+
|
12053
|
+
@DepartmentId.setter
|
12054
|
+
def DepartmentId(self, DepartmentId):
|
12055
|
+
self._DepartmentId = DepartmentId
|
12056
|
+
|
12057
|
+
@property
|
12058
|
+
def DomainId(self):
|
12059
|
+
"""网络域Id
|
12060
|
+
:rtype: str
|
12061
|
+
"""
|
12062
|
+
return self._DomainId
|
12063
|
+
|
12064
|
+
@DomainId.setter
|
12065
|
+
def DomainId(self, DomainId):
|
12066
|
+
self._DomainId = DomainId
|
12067
|
+
|
12068
|
+
|
12069
|
+
def _deserialize(self, params):
|
12070
|
+
self._Id = params.get("Id")
|
12071
|
+
self._Port = params.get("Port")
|
12072
|
+
self._GroupIdSet = params.get("GroupIdSet")
|
12073
|
+
self._DepartmentId = params.get("DepartmentId")
|
12074
|
+
self._DomainId = params.get("DomainId")
|
12075
|
+
memeber_set = set(params.keys())
|
12076
|
+
for name, value in vars(self).items():
|
12077
|
+
property_name = name[1:]
|
12078
|
+
if property_name in memeber_set:
|
12079
|
+
memeber_set.remove(property_name)
|
12080
|
+
if len(memeber_set) > 0:
|
12081
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
12082
|
+
|
12083
|
+
|
12084
|
+
|
12085
|
+
class ModifyDeviceResponse(AbstractModel):
|
12086
|
+
"""ModifyDevice返回参数结构体
|
12087
|
+
|
12088
|
+
"""
|
12089
|
+
|
12090
|
+
def __init__(self):
|
12091
|
+
r"""
|
12092
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12093
|
+
:type RequestId: str
|
12094
|
+
"""
|
12095
|
+
self._RequestId = None
|
12096
|
+
|
12097
|
+
@property
|
12098
|
+
def RequestId(self):
|
12099
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12100
|
+
:rtype: str
|
12101
|
+
"""
|
12102
|
+
return self._RequestId
|
12103
|
+
|
12104
|
+
@RequestId.setter
|
12105
|
+
def RequestId(self, RequestId):
|
12106
|
+
self._RequestId = RequestId
|
12107
|
+
|
12108
|
+
|
12109
|
+
def _deserialize(self, params):
|
12110
|
+
self._RequestId = params.get("RequestId")
|
12111
|
+
|
12112
|
+
|
12113
|
+
class ModifyLDAPSettingRequest(AbstractModel):
|
12114
|
+
"""ModifyLDAPSetting请求参数结构体
|
12115
|
+
|
12116
|
+
"""
|
12117
|
+
|
12118
|
+
def __init__(self):
|
12119
|
+
r"""
|
12120
|
+
:param _Enable: 是否开启LDAP认证,false-不开启,true-开启
|
12121
|
+
:type Enable: bool
|
12122
|
+
:param _Ip: 服务器地址
|
12123
|
+
:type Ip: str
|
12124
|
+
:param _IpBackup: 备用服务器地址
|
12125
|
+
:type IpBackup: str
|
12126
|
+
:param _Port: 服务端口
|
12127
|
+
:type Port: int
|
12128
|
+
:param _EnableSSL: 是否开启SSL,false-不开启,true-开启
|
12129
|
+
:type EnableSSL: bool
|
12130
|
+
:param _BaseDN: Base DN
|
12131
|
+
:type BaseDN: str
|
12132
|
+
:param _AdminAccount: 管理员账号
|
12133
|
+
:type AdminAccount: str
|
12134
|
+
:param _AdminPassword: 管理员密码
|
12135
|
+
:type AdminPassword: str
|
12136
|
+
:param _AttributeUser: 用户属性
|
12137
|
+
:type AttributeUser: str
|
12138
|
+
:param _AttributeUserName: 用户名属性
|
12139
|
+
:type AttributeUserName: str
|
12140
|
+
:param _AutoSync: 自动同步,false-不开启,true-开启
|
12141
|
+
:type AutoSync: bool
|
12142
|
+
:param _Overwrite: 覆盖用户信息,false-不开启,true-开启
|
12143
|
+
:type Overwrite: bool
|
12144
|
+
:param _SyncPeriod: 同步周期,30~60000之间的整数
|
12145
|
+
:type SyncPeriod: int
|
12146
|
+
:param _SyncAll: 是否同步全部,false-不开启,true-开启
|
12147
|
+
:type SyncAll: bool
|
12148
|
+
:param _SyncUnitSet: 同步OU列表,SyncAll为false时必传
|
12149
|
+
:type SyncUnitSet: list of str
|
12150
|
+
:param _AttributeUnit: 组织单元属性
|
12151
|
+
:type AttributeUnit: str
|
12152
|
+
:param _AttributeRealName: 用户姓名属性
|
12153
|
+
:type AttributeRealName: str
|
12154
|
+
:param _AttributePhone: 手机号属性
|
12155
|
+
:type AttributePhone: str
|
12156
|
+
:param _AttributeEmail: 邮箱属性
|
12157
|
+
:type AttributeEmail: str
|
12158
|
+
:param _DomainId: 网络域Id
|
12159
|
+
:type DomainId: str
|
12160
|
+
"""
|
12161
|
+
self._Enable = None
|
12162
|
+
self._Ip = None
|
12163
|
+
self._IpBackup = None
|
12164
|
+
self._Port = None
|
12165
|
+
self._EnableSSL = None
|
12166
|
+
self._BaseDN = None
|
12167
|
+
self._AdminAccount = None
|
12168
|
+
self._AdminPassword = None
|
12169
|
+
self._AttributeUser = None
|
12170
|
+
self._AttributeUserName = None
|
12171
|
+
self._AutoSync = None
|
12172
|
+
self._Overwrite = None
|
12173
|
+
self._SyncPeriod = None
|
12174
|
+
self._SyncAll = None
|
12175
|
+
self._SyncUnitSet = None
|
12176
|
+
self._AttributeUnit = None
|
12177
|
+
self._AttributeRealName = None
|
12178
|
+
self._AttributePhone = None
|
12179
|
+
self._AttributeEmail = None
|
12180
|
+
self._DomainId = None
|
12181
|
+
|
12182
|
+
@property
|
12183
|
+
def Enable(self):
|
12184
|
+
"""是否开启LDAP认证,false-不开启,true-开启
|
12185
|
+
:rtype: bool
|
12186
|
+
"""
|
12187
|
+
return self._Enable
|
12188
|
+
|
12189
|
+
@Enable.setter
|
12190
|
+
def Enable(self, Enable):
|
12191
|
+
self._Enable = Enable
|
12192
|
+
|
12193
|
+
@property
|
12194
|
+
def Ip(self):
|
12195
|
+
"""服务器地址
|
12196
|
+
:rtype: str
|
12197
|
+
"""
|
12198
|
+
return self._Ip
|
12199
|
+
|
12200
|
+
@Ip.setter
|
12201
|
+
def Ip(self, Ip):
|
12202
|
+
self._Ip = Ip
|
12203
|
+
|
12204
|
+
@property
|
12205
|
+
def IpBackup(self):
|
12206
|
+
"""备用服务器地址
|
12207
|
+
:rtype: str
|
12208
|
+
"""
|
12209
|
+
return self._IpBackup
|
12210
|
+
|
12211
|
+
@IpBackup.setter
|
12212
|
+
def IpBackup(self, IpBackup):
|
12213
|
+
self._IpBackup = IpBackup
|
12214
|
+
|
12215
|
+
@property
|
12216
|
+
def Port(self):
|
12217
|
+
"""服务端口
|
12218
|
+
:rtype: int
|
12219
|
+
"""
|
12220
|
+
return self._Port
|
12221
|
+
|
12222
|
+
@Port.setter
|
12223
|
+
def Port(self, Port):
|
12224
|
+
self._Port = Port
|
12225
|
+
|
12226
|
+
@property
|
12227
|
+
def EnableSSL(self):
|
12228
|
+
"""是否开启SSL,false-不开启,true-开启
|
12229
|
+
:rtype: bool
|
12230
|
+
"""
|
12231
|
+
return self._EnableSSL
|
12232
|
+
|
12233
|
+
@EnableSSL.setter
|
12234
|
+
def EnableSSL(self, EnableSSL):
|
12235
|
+
self._EnableSSL = EnableSSL
|
12236
|
+
|
12237
|
+
@property
|
12238
|
+
def BaseDN(self):
|
12239
|
+
"""Base DN
|
12240
|
+
:rtype: str
|
12241
|
+
"""
|
12242
|
+
return self._BaseDN
|
11550
12243
|
|
11551
|
-
|
12244
|
+
@BaseDN.setter
|
12245
|
+
def BaseDN(self, BaseDN):
|
12246
|
+
self._BaseDN = BaseDN
|
11552
12247
|
|
11553
|
-
|
11554
|
-
|
11555
|
-
|
11556
|
-
:
|
12248
|
+
@property
|
12249
|
+
def AdminAccount(self):
|
12250
|
+
"""管理员账号
|
12251
|
+
:rtype: str
|
11557
12252
|
"""
|
11558
|
-
self.
|
12253
|
+
return self._AdminAccount
|
12254
|
+
|
12255
|
+
@AdminAccount.setter
|
12256
|
+
def AdminAccount(self, AdminAccount):
|
12257
|
+
self._AdminAccount = AdminAccount
|
11559
12258
|
|
11560
12259
|
@property
|
11561
|
-
def
|
11562
|
-
"""
|
12260
|
+
def AdminPassword(self):
|
12261
|
+
"""管理员密码
|
11563
12262
|
:rtype: str
|
11564
12263
|
"""
|
11565
|
-
return self.
|
12264
|
+
return self._AdminPassword
|
11566
12265
|
|
11567
|
-
@
|
11568
|
-
def
|
11569
|
-
self.
|
12266
|
+
@AdminPassword.setter
|
12267
|
+
def AdminPassword(self, AdminPassword):
|
12268
|
+
self._AdminPassword = AdminPassword
|
11570
12269
|
|
12270
|
+
@property
|
12271
|
+
def AttributeUser(self):
|
12272
|
+
"""用户属性
|
12273
|
+
:rtype: str
|
12274
|
+
"""
|
12275
|
+
return self._AttributeUser
|
11571
12276
|
|
11572
|
-
|
11573
|
-
|
12277
|
+
@AttributeUser.setter
|
12278
|
+
def AttributeUser(self, AttributeUser):
|
12279
|
+
self._AttributeUser = AttributeUser
|
12280
|
+
|
12281
|
+
@property
|
12282
|
+
def AttributeUserName(self):
|
12283
|
+
"""用户名属性
|
12284
|
+
:rtype: str
|
12285
|
+
"""
|
12286
|
+
return self._AttributeUserName
|
11574
12287
|
|
12288
|
+
@AttributeUserName.setter
|
12289
|
+
def AttributeUserName(self, AttributeUserName):
|
12290
|
+
self._AttributeUserName = AttributeUserName
|
11575
12291
|
|
11576
|
-
|
11577
|
-
|
12292
|
+
@property
|
12293
|
+
def AutoSync(self):
|
12294
|
+
"""自动同步,false-不开启,true-开启
|
12295
|
+
:rtype: bool
|
12296
|
+
"""
|
12297
|
+
return self._AutoSync
|
11578
12298
|
|
11579
|
-
|
12299
|
+
@AutoSync.setter
|
12300
|
+
def AutoSync(self, AutoSync):
|
12301
|
+
self._AutoSync = AutoSync
|
11580
12302
|
|
11581
|
-
|
11582
|
-
|
11583
|
-
|
11584
|
-
:
|
11585
|
-
:param _Port: 管理端口
|
11586
|
-
:type Port: int
|
11587
|
-
:param _GroupIdSet: 资产所属组ID集合
|
11588
|
-
:type GroupIdSet: list of int non-negative
|
11589
|
-
:param _DepartmentId: 资产所属部门ID
|
11590
|
-
:type DepartmentId: str
|
11591
|
-
:param _DomainId: 网络域Id
|
11592
|
-
:type DomainId: str
|
12303
|
+
@property
|
12304
|
+
def Overwrite(self):
|
12305
|
+
"""覆盖用户信息,false-不开启,true-开启
|
12306
|
+
:rtype: bool
|
11593
12307
|
"""
|
11594
|
-
self.
|
11595
|
-
|
11596
|
-
|
11597
|
-
|
11598
|
-
self.
|
12308
|
+
return self._Overwrite
|
12309
|
+
|
12310
|
+
@Overwrite.setter
|
12311
|
+
def Overwrite(self, Overwrite):
|
12312
|
+
self._Overwrite = Overwrite
|
11599
12313
|
|
11600
12314
|
@property
|
11601
|
-
def
|
11602
|
-
"""
|
12315
|
+
def SyncPeriod(self):
|
12316
|
+
"""同步周期,30~60000之间的整数
|
11603
12317
|
:rtype: int
|
11604
12318
|
"""
|
11605
|
-
return self.
|
12319
|
+
return self._SyncPeriod
|
11606
12320
|
|
11607
|
-
@
|
11608
|
-
def
|
11609
|
-
self.
|
12321
|
+
@SyncPeriod.setter
|
12322
|
+
def SyncPeriod(self, SyncPeriod):
|
12323
|
+
self._SyncPeriod = SyncPeriod
|
11610
12324
|
|
11611
12325
|
@property
|
11612
|
-
def
|
11613
|
-
"""
|
11614
|
-
:rtype:
|
12326
|
+
def SyncAll(self):
|
12327
|
+
"""是否同步全部,false-不开启,true-开启
|
12328
|
+
:rtype: bool
|
11615
12329
|
"""
|
11616
|
-
return self.
|
12330
|
+
return self._SyncAll
|
11617
12331
|
|
11618
|
-
@
|
11619
|
-
def
|
11620
|
-
self.
|
12332
|
+
@SyncAll.setter
|
12333
|
+
def SyncAll(self, SyncAll):
|
12334
|
+
self._SyncAll = SyncAll
|
11621
12335
|
|
11622
12336
|
@property
|
11623
|
-
def
|
11624
|
-
"""
|
11625
|
-
:rtype: list of
|
12337
|
+
def SyncUnitSet(self):
|
12338
|
+
"""同步OU列表,SyncAll为false时必传
|
12339
|
+
:rtype: list of str
|
11626
12340
|
"""
|
11627
|
-
return self.
|
12341
|
+
return self._SyncUnitSet
|
11628
12342
|
|
11629
|
-
@
|
11630
|
-
def
|
11631
|
-
self.
|
12343
|
+
@SyncUnitSet.setter
|
12344
|
+
def SyncUnitSet(self, SyncUnitSet):
|
12345
|
+
self._SyncUnitSet = SyncUnitSet
|
11632
12346
|
|
11633
12347
|
@property
|
11634
|
-
def
|
11635
|
-
"""
|
12348
|
+
def AttributeUnit(self):
|
12349
|
+
"""组织单元属性
|
11636
12350
|
:rtype: str
|
11637
12351
|
"""
|
11638
|
-
return self.
|
12352
|
+
return self._AttributeUnit
|
11639
12353
|
|
11640
|
-
@
|
11641
|
-
def
|
11642
|
-
self.
|
12354
|
+
@AttributeUnit.setter
|
12355
|
+
def AttributeUnit(self, AttributeUnit):
|
12356
|
+
self._AttributeUnit = AttributeUnit
|
12357
|
+
|
12358
|
+
@property
|
12359
|
+
def AttributeRealName(self):
|
12360
|
+
"""用户姓名属性
|
12361
|
+
:rtype: str
|
12362
|
+
"""
|
12363
|
+
return self._AttributeRealName
|
12364
|
+
|
12365
|
+
@AttributeRealName.setter
|
12366
|
+
def AttributeRealName(self, AttributeRealName):
|
12367
|
+
self._AttributeRealName = AttributeRealName
|
12368
|
+
|
12369
|
+
@property
|
12370
|
+
def AttributePhone(self):
|
12371
|
+
"""手机号属性
|
12372
|
+
:rtype: str
|
12373
|
+
"""
|
12374
|
+
return self._AttributePhone
|
12375
|
+
|
12376
|
+
@AttributePhone.setter
|
12377
|
+
def AttributePhone(self, AttributePhone):
|
12378
|
+
self._AttributePhone = AttributePhone
|
12379
|
+
|
12380
|
+
@property
|
12381
|
+
def AttributeEmail(self):
|
12382
|
+
"""邮箱属性
|
12383
|
+
:rtype: str
|
12384
|
+
"""
|
12385
|
+
return self._AttributeEmail
|
12386
|
+
|
12387
|
+
@AttributeEmail.setter
|
12388
|
+
def AttributeEmail(self, AttributeEmail):
|
12389
|
+
self._AttributeEmail = AttributeEmail
|
11643
12390
|
|
11644
12391
|
@property
|
11645
12392
|
def DomainId(self):
|
@@ -11654,10 +12401,25 @@ class ModifyDeviceRequest(AbstractModel):
|
|
11654
12401
|
|
11655
12402
|
|
11656
12403
|
def _deserialize(self, params):
|
11657
|
-
self.
|
12404
|
+
self._Enable = params.get("Enable")
|
12405
|
+
self._Ip = params.get("Ip")
|
12406
|
+
self._IpBackup = params.get("IpBackup")
|
11658
12407
|
self._Port = params.get("Port")
|
11659
|
-
self.
|
11660
|
-
self.
|
12408
|
+
self._EnableSSL = params.get("EnableSSL")
|
12409
|
+
self._BaseDN = params.get("BaseDN")
|
12410
|
+
self._AdminAccount = params.get("AdminAccount")
|
12411
|
+
self._AdminPassword = params.get("AdminPassword")
|
12412
|
+
self._AttributeUser = params.get("AttributeUser")
|
12413
|
+
self._AttributeUserName = params.get("AttributeUserName")
|
12414
|
+
self._AutoSync = params.get("AutoSync")
|
12415
|
+
self._Overwrite = params.get("Overwrite")
|
12416
|
+
self._SyncPeriod = params.get("SyncPeriod")
|
12417
|
+
self._SyncAll = params.get("SyncAll")
|
12418
|
+
self._SyncUnitSet = params.get("SyncUnitSet")
|
12419
|
+
self._AttributeUnit = params.get("AttributeUnit")
|
12420
|
+
self._AttributeRealName = params.get("AttributeRealName")
|
12421
|
+
self._AttributePhone = params.get("AttributePhone")
|
12422
|
+
self._AttributeEmail = params.get("AttributeEmail")
|
11661
12423
|
self._DomainId = params.get("DomainId")
|
11662
12424
|
memeber_set = set(params.keys())
|
11663
12425
|
for name, value in vars(self).items():
|
@@ -11669,8 +12431,8 @@ class ModifyDeviceRequest(AbstractModel):
|
|
11669
12431
|
|
11670
12432
|
|
11671
12433
|
|
11672
|
-
class
|
11673
|
-
"""
|
12434
|
+
class ModifyLDAPSettingResponse(AbstractModel):
|
12435
|
+
"""ModifyLDAPSetting返回参数结构体
|
11674
12436
|
|
11675
12437
|
"""
|
11676
12438
|
|
@@ -12832,6 +13594,70 @@ class OperationTask(AbstractModel):
|
|
12832
13594
|
|
12833
13595
|
|
12834
13596
|
|
13597
|
+
class ReplaySessionRequest(AbstractModel):
|
13598
|
+
"""ReplaySession请求参数结构体
|
13599
|
+
|
13600
|
+
"""
|
13601
|
+
|
13602
|
+
def __init__(self):
|
13603
|
+
r"""
|
13604
|
+
:param _Sid: 会话Sid
|
13605
|
+
:type Sid: str
|
13606
|
+
"""
|
13607
|
+
self._Sid = None
|
13608
|
+
|
13609
|
+
@property
|
13610
|
+
def Sid(self):
|
13611
|
+
"""会话Sid
|
13612
|
+
:rtype: str
|
13613
|
+
"""
|
13614
|
+
return self._Sid
|
13615
|
+
|
13616
|
+
@Sid.setter
|
13617
|
+
def Sid(self, Sid):
|
13618
|
+
self._Sid = Sid
|
13619
|
+
|
13620
|
+
|
13621
|
+
def _deserialize(self, params):
|
13622
|
+
self._Sid = params.get("Sid")
|
13623
|
+
memeber_set = set(params.keys())
|
13624
|
+
for name, value in vars(self).items():
|
13625
|
+
property_name = name[1:]
|
13626
|
+
if property_name in memeber_set:
|
13627
|
+
memeber_set.remove(property_name)
|
13628
|
+
if len(memeber_set) > 0:
|
13629
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13630
|
+
|
13631
|
+
|
13632
|
+
|
13633
|
+
class ReplaySessionResponse(AbstractModel):
|
13634
|
+
"""ReplaySession返回参数结构体
|
13635
|
+
|
13636
|
+
"""
|
13637
|
+
|
13638
|
+
def __init__(self):
|
13639
|
+
r"""
|
13640
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13641
|
+
:type RequestId: str
|
13642
|
+
"""
|
13643
|
+
self._RequestId = None
|
13644
|
+
|
13645
|
+
@property
|
13646
|
+
def RequestId(self):
|
13647
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13648
|
+
:rtype: str
|
13649
|
+
"""
|
13650
|
+
return self._RequestId
|
13651
|
+
|
13652
|
+
@RequestId.setter
|
13653
|
+
def RequestId(self, RequestId):
|
13654
|
+
self._RequestId = RequestId
|
13655
|
+
|
13656
|
+
|
13657
|
+
def _deserialize(self, params):
|
13658
|
+
self._RequestId = params.get("RequestId")
|
13659
|
+
|
13660
|
+
|
12835
13661
|
class ResetDeviceAccountPasswordRequest(AbstractModel):
|
12836
13662
|
"""ResetDeviceAccountPassword请求参数结构体
|
12837
13663
|
|
@@ -17392,6 +18218,40 @@ class SessionResult(AbstractModel):
|
|
17392
18218
|
|
17393
18219
|
|
17394
18220
|
|
18221
|
+
class SetLDAPSyncFlagRequest(AbstractModel):
|
18222
|
+
"""SetLDAPSyncFlag请求参数结构体
|
18223
|
+
|
18224
|
+
"""
|
18225
|
+
|
18226
|
+
|
18227
|
+
class SetLDAPSyncFlagResponse(AbstractModel):
|
18228
|
+
"""SetLDAPSyncFlag返回参数结构体
|
18229
|
+
|
18230
|
+
"""
|
18231
|
+
|
18232
|
+
def __init__(self):
|
18233
|
+
r"""
|
18234
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18235
|
+
:type RequestId: str
|
18236
|
+
"""
|
18237
|
+
self._RequestId = None
|
18238
|
+
|
18239
|
+
@property
|
18240
|
+
def RequestId(self):
|
18241
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18242
|
+
:rtype: str
|
18243
|
+
"""
|
18244
|
+
return self._RequestId
|
18245
|
+
|
18246
|
+
@RequestId.setter
|
18247
|
+
def RequestId(self, RequestId):
|
18248
|
+
self._RequestId = RequestId
|
18249
|
+
|
18250
|
+
|
18251
|
+
def _deserialize(self, params):
|
18252
|
+
self._RequestId = params.get("RequestId")
|
18253
|
+
|
18254
|
+
|
17395
18255
|
class TagFilter(AbstractModel):
|
17396
18256
|
"""资产标签
|
17397
18257
|
|
@@ -17599,6 +18459,70 @@ class TaskResult(AbstractModel):
|
|
17599
18459
|
|
17600
18460
|
|
17601
18461
|
|
18462
|
+
class UnlockUserRequest(AbstractModel):
|
18463
|
+
"""UnlockUser请求参数结构体
|
18464
|
+
|
18465
|
+
"""
|
18466
|
+
|
18467
|
+
def __init__(self):
|
18468
|
+
r"""
|
18469
|
+
:param _IdSet: 用户id
|
18470
|
+
:type IdSet: list of int non-negative
|
18471
|
+
"""
|
18472
|
+
self._IdSet = None
|
18473
|
+
|
18474
|
+
@property
|
18475
|
+
def IdSet(self):
|
18476
|
+
"""用户id
|
18477
|
+
:rtype: list of int non-negative
|
18478
|
+
"""
|
18479
|
+
return self._IdSet
|
18480
|
+
|
18481
|
+
@IdSet.setter
|
18482
|
+
def IdSet(self, IdSet):
|
18483
|
+
self._IdSet = IdSet
|
18484
|
+
|
18485
|
+
|
18486
|
+
def _deserialize(self, params):
|
18487
|
+
self._IdSet = params.get("IdSet")
|
18488
|
+
memeber_set = set(params.keys())
|
18489
|
+
for name, value in vars(self).items():
|
18490
|
+
property_name = name[1:]
|
18491
|
+
if property_name in memeber_set:
|
18492
|
+
memeber_set.remove(property_name)
|
18493
|
+
if len(memeber_set) > 0:
|
18494
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
18495
|
+
|
18496
|
+
|
18497
|
+
|
18498
|
+
class UnlockUserResponse(AbstractModel):
|
18499
|
+
"""UnlockUser返回参数结构体
|
18500
|
+
|
18501
|
+
"""
|
18502
|
+
|
18503
|
+
def __init__(self):
|
18504
|
+
r"""
|
18505
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18506
|
+
:type RequestId: str
|
18507
|
+
"""
|
18508
|
+
self._RequestId = None
|
18509
|
+
|
18510
|
+
@property
|
18511
|
+
def RequestId(self):
|
18512
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
18513
|
+
:rtype: str
|
18514
|
+
"""
|
18515
|
+
return self._RequestId
|
18516
|
+
|
18517
|
+
@RequestId.setter
|
18518
|
+
def RequestId(self, RequestId):
|
18519
|
+
self._RequestId = RequestId
|
18520
|
+
|
18521
|
+
|
18522
|
+
def _deserialize(self, params):
|
18523
|
+
self._RequestId = params.get("RequestId")
|
18524
|
+
|
18525
|
+
|
17602
18526
|
class User(AbstractModel):
|
17603
18527
|
"""用户信息
|
17604
18528
|
|