tencentcloud-sdk-python-intl-en 3.0.1185__py2.py3-none-any.whl → 3.0.1187__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-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +24 -0
- tencentcloud/intlpartnersmgt/v20220928/models.py +363 -0
- tencentcloud/ocr/v20181119/models.py +364 -0
- tencentcloud/ocr/v20181119/ocr_client.py +23 -0
- tencentcloud/vod/v20180717/errorcodes.py +4 -1
- tencentcloud/vod/v20180717/models.py +52 -33
- tencentcloud/wedata/v20210820/models.py +1280 -110
- tencentcloud/wedata/v20210820/wedata_client.py +69 -0
- {tencentcloud_sdk_python_intl_en-3.0.1185.dist-info → tencentcloud_sdk_python_intl_en-3.0.1187.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1185.dist-info → tencentcloud_sdk_python_intl_en-3.0.1187.dist-info}/RECORD +13 -13
- {tencentcloud_sdk_python_intl_en-3.0.1185.dist-info → tencentcloud_sdk_python_intl_en-3.0.1187.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1185.dist-info → tencentcloud_sdk_python_intl_en-3.0.1187.dist-info}/top_level.txt +0 -0
|
@@ -18,6 +18,115 @@ import warnings
|
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
class AddProjectUserRoleRequest(AbstractModel):
|
|
22
|
+
"""AddProjectUserRole request structure.
|
|
23
|
+
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
def __init__(self):
|
|
27
|
+
r"""
|
|
28
|
+
:param _ProjectId: Project ID
|
|
29
|
+
:type ProjectId: str
|
|
30
|
+
:param _UserIds: User UIN
|
|
31
|
+
:type UserIds: list of str
|
|
32
|
+
:param _RoleIds: Role id
|
|
33
|
+
:type RoleIds: list of str
|
|
34
|
+
"""
|
|
35
|
+
self._ProjectId = None
|
|
36
|
+
self._UserIds = None
|
|
37
|
+
self._RoleIds = None
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
def ProjectId(self):
|
|
41
|
+
"""Project ID
|
|
42
|
+
:rtype: str
|
|
43
|
+
"""
|
|
44
|
+
return self._ProjectId
|
|
45
|
+
|
|
46
|
+
@ProjectId.setter
|
|
47
|
+
def ProjectId(self, ProjectId):
|
|
48
|
+
self._ProjectId = ProjectId
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
def UserIds(self):
|
|
52
|
+
"""User UIN
|
|
53
|
+
:rtype: list of str
|
|
54
|
+
"""
|
|
55
|
+
return self._UserIds
|
|
56
|
+
|
|
57
|
+
@UserIds.setter
|
|
58
|
+
def UserIds(self, UserIds):
|
|
59
|
+
self._UserIds = UserIds
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
def RoleIds(self):
|
|
63
|
+
"""Role id
|
|
64
|
+
:rtype: list of str
|
|
65
|
+
"""
|
|
66
|
+
return self._RoleIds
|
|
67
|
+
|
|
68
|
+
@RoleIds.setter
|
|
69
|
+
def RoleIds(self, RoleIds):
|
|
70
|
+
self._RoleIds = RoleIds
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def _deserialize(self, params):
|
|
74
|
+
self._ProjectId = params.get("ProjectId")
|
|
75
|
+
self._UserIds = params.get("UserIds")
|
|
76
|
+
self._RoleIds = params.get("RoleIds")
|
|
77
|
+
memeber_set = set(params.keys())
|
|
78
|
+
for name, value in vars(self).items():
|
|
79
|
+
property_name = name[1:]
|
|
80
|
+
if property_name in memeber_set:
|
|
81
|
+
memeber_set.remove(property_name)
|
|
82
|
+
if len(memeber_set) > 0:
|
|
83
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
class AddProjectUserRoleResponse(AbstractModel):
|
|
88
|
+
"""AddProjectUserRole response structure.
|
|
89
|
+
|
|
90
|
+
"""
|
|
91
|
+
|
|
92
|
+
def __init__(self):
|
|
93
|
+
r"""
|
|
94
|
+
:param _Data: Returned data
|
|
95
|
+
:type Data: bool
|
|
96
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
97
|
+
:type RequestId: str
|
|
98
|
+
"""
|
|
99
|
+
self._Data = None
|
|
100
|
+
self._RequestId = None
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
def Data(self):
|
|
104
|
+
"""Returned data
|
|
105
|
+
:rtype: bool
|
|
106
|
+
"""
|
|
107
|
+
return self._Data
|
|
108
|
+
|
|
109
|
+
@Data.setter
|
|
110
|
+
def Data(self, Data):
|
|
111
|
+
self._Data = Data
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
def RequestId(self):
|
|
115
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
116
|
+
:rtype: str
|
|
117
|
+
"""
|
|
118
|
+
return self._RequestId
|
|
119
|
+
|
|
120
|
+
@RequestId.setter
|
|
121
|
+
def RequestId(self, RequestId):
|
|
122
|
+
self._RequestId = RequestId
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
def _deserialize(self, params):
|
|
126
|
+
self._Data = params.get("Data")
|
|
127
|
+
self._RequestId = params.get("RequestId")
|
|
128
|
+
|
|
129
|
+
|
|
21
130
|
class AdhocDetail(AbstractModel):
|
|
22
131
|
"""Subtask records
|
|
23
132
|
|
|
@@ -2077,6 +2186,341 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
2077
2186
|
|
|
2078
2187
|
|
|
2079
2188
|
|
|
2189
|
+
class BaseRole(AbstractModel):
|
|
2190
|
+
"""Basic role object.
|
|
2191
|
+
|
|
2192
|
+
"""
|
|
2193
|
+
|
|
2194
|
+
def __init__(self):
|
|
2195
|
+
r"""
|
|
2196
|
+
:param _RoleId: Role id.
|
|
2197
|
+
:type RoleId: str
|
|
2198
|
+
:param _RoleName: Role name.
|
|
2199
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2200
|
+
:type RoleName: str
|
|
2201
|
+
:param _DisplayName: Role nickname.
|
|
2202
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2203
|
+
:type DisplayName: str
|
|
2204
|
+
:param _Description: Description
|
|
2205
|
+
|
|
2206
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2207
|
+
:type Description: str
|
|
2208
|
+
:param _RoleType: Role type divides into System, Tenant, Project, Commercial.
|
|
2209
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2210
|
+
:type RoleType: str
|
|
2211
|
+
:param _SystemDefault: System preset.
|
|
2212
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2213
|
+
:type SystemDefault: bool
|
|
2214
|
+
:param _Parameters: Custom parameter.
|
|
2215
|
+
|
|
2216
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2217
|
+
:type Parameters: str
|
|
2218
|
+
:param _MemberCount: Specifies member statistics.
|
|
2219
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2220
|
+
:type MemberCount: int
|
|
2221
|
+
:param _Privileges: Permission
|
|
2222
|
+
|
|
2223
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2224
|
+
:type Privileges: list of RolePrivilege
|
|
2225
|
+
:param _Operator: Operator.
|
|
2226
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2227
|
+
:type Operator: :class:`tencentcloud.wedata.v20210820.models.BaseUser`
|
|
2228
|
+
:param _OperateTime: Operation time
|
|
2229
|
+
|
|
2230
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2231
|
+
:type OperateTime: int
|
|
2232
|
+
:param _CreateTime: Creation time
|
|
2233
|
+
|
|
2234
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2235
|
+
:type CreateTime: int
|
|
2236
|
+
:param _CreateTimeStr: Creation time
|
|
2237
|
+
|
|
2238
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2239
|
+
:type CreateTimeStr: str
|
|
2240
|
+
:param _UpdateTimeStr: Update time.
|
|
2241
|
+
|
|
2242
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2243
|
+
:type UpdateTimeStr: str
|
|
2244
|
+
:param _ProjectId: Project ID
|
|
2245
|
+
|
|
2246
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2247
|
+
:type ProjectId: str
|
|
2248
|
+
:param _UpdateTime: Update time.
|
|
2249
|
+
|
|
2250
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2251
|
+
:type UpdateTime: str
|
|
2252
|
+
:param _Creator: Creator
|
|
2253
|
+
|
|
2254
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2255
|
+
:type Creator: str
|
|
2256
|
+
"""
|
|
2257
|
+
self._RoleId = None
|
|
2258
|
+
self._RoleName = None
|
|
2259
|
+
self._DisplayName = None
|
|
2260
|
+
self._Description = None
|
|
2261
|
+
self._RoleType = None
|
|
2262
|
+
self._SystemDefault = None
|
|
2263
|
+
self._Parameters = None
|
|
2264
|
+
self._MemberCount = None
|
|
2265
|
+
self._Privileges = None
|
|
2266
|
+
self._Operator = None
|
|
2267
|
+
self._OperateTime = None
|
|
2268
|
+
self._CreateTime = None
|
|
2269
|
+
self._CreateTimeStr = None
|
|
2270
|
+
self._UpdateTimeStr = None
|
|
2271
|
+
self._ProjectId = None
|
|
2272
|
+
self._UpdateTime = None
|
|
2273
|
+
self._Creator = None
|
|
2274
|
+
|
|
2275
|
+
@property
|
|
2276
|
+
def RoleId(self):
|
|
2277
|
+
"""Role id.
|
|
2278
|
+
:rtype: str
|
|
2279
|
+
"""
|
|
2280
|
+
return self._RoleId
|
|
2281
|
+
|
|
2282
|
+
@RoleId.setter
|
|
2283
|
+
def RoleId(self, RoleId):
|
|
2284
|
+
self._RoleId = RoleId
|
|
2285
|
+
|
|
2286
|
+
@property
|
|
2287
|
+
def RoleName(self):
|
|
2288
|
+
"""Role name.
|
|
2289
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2290
|
+
:rtype: str
|
|
2291
|
+
"""
|
|
2292
|
+
return self._RoleName
|
|
2293
|
+
|
|
2294
|
+
@RoleName.setter
|
|
2295
|
+
def RoleName(self, RoleName):
|
|
2296
|
+
self._RoleName = RoleName
|
|
2297
|
+
|
|
2298
|
+
@property
|
|
2299
|
+
def DisplayName(self):
|
|
2300
|
+
"""Role nickname.
|
|
2301
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2302
|
+
:rtype: str
|
|
2303
|
+
"""
|
|
2304
|
+
return self._DisplayName
|
|
2305
|
+
|
|
2306
|
+
@DisplayName.setter
|
|
2307
|
+
def DisplayName(self, DisplayName):
|
|
2308
|
+
self._DisplayName = DisplayName
|
|
2309
|
+
|
|
2310
|
+
@property
|
|
2311
|
+
def Description(self):
|
|
2312
|
+
"""Description
|
|
2313
|
+
|
|
2314
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2315
|
+
:rtype: str
|
|
2316
|
+
"""
|
|
2317
|
+
return self._Description
|
|
2318
|
+
|
|
2319
|
+
@Description.setter
|
|
2320
|
+
def Description(self, Description):
|
|
2321
|
+
self._Description = Description
|
|
2322
|
+
|
|
2323
|
+
@property
|
|
2324
|
+
def RoleType(self):
|
|
2325
|
+
"""Role type divides into System, Tenant, Project, Commercial.
|
|
2326
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2327
|
+
:rtype: str
|
|
2328
|
+
"""
|
|
2329
|
+
return self._RoleType
|
|
2330
|
+
|
|
2331
|
+
@RoleType.setter
|
|
2332
|
+
def RoleType(self, RoleType):
|
|
2333
|
+
self._RoleType = RoleType
|
|
2334
|
+
|
|
2335
|
+
@property
|
|
2336
|
+
def SystemDefault(self):
|
|
2337
|
+
"""System preset.
|
|
2338
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2339
|
+
:rtype: bool
|
|
2340
|
+
"""
|
|
2341
|
+
return self._SystemDefault
|
|
2342
|
+
|
|
2343
|
+
@SystemDefault.setter
|
|
2344
|
+
def SystemDefault(self, SystemDefault):
|
|
2345
|
+
self._SystemDefault = SystemDefault
|
|
2346
|
+
|
|
2347
|
+
@property
|
|
2348
|
+
def Parameters(self):
|
|
2349
|
+
"""Custom parameter.
|
|
2350
|
+
|
|
2351
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2352
|
+
:rtype: str
|
|
2353
|
+
"""
|
|
2354
|
+
return self._Parameters
|
|
2355
|
+
|
|
2356
|
+
@Parameters.setter
|
|
2357
|
+
def Parameters(self, Parameters):
|
|
2358
|
+
self._Parameters = Parameters
|
|
2359
|
+
|
|
2360
|
+
@property
|
|
2361
|
+
def MemberCount(self):
|
|
2362
|
+
"""Specifies member statistics.
|
|
2363
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2364
|
+
:rtype: int
|
|
2365
|
+
"""
|
|
2366
|
+
return self._MemberCount
|
|
2367
|
+
|
|
2368
|
+
@MemberCount.setter
|
|
2369
|
+
def MemberCount(self, MemberCount):
|
|
2370
|
+
self._MemberCount = MemberCount
|
|
2371
|
+
|
|
2372
|
+
@property
|
|
2373
|
+
def Privileges(self):
|
|
2374
|
+
"""Permission
|
|
2375
|
+
|
|
2376
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2377
|
+
:rtype: list of RolePrivilege
|
|
2378
|
+
"""
|
|
2379
|
+
return self._Privileges
|
|
2380
|
+
|
|
2381
|
+
@Privileges.setter
|
|
2382
|
+
def Privileges(self, Privileges):
|
|
2383
|
+
self._Privileges = Privileges
|
|
2384
|
+
|
|
2385
|
+
@property
|
|
2386
|
+
def Operator(self):
|
|
2387
|
+
"""Operator.
|
|
2388
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2389
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.BaseUser`
|
|
2390
|
+
"""
|
|
2391
|
+
return self._Operator
|
|
2392
|
+
|
|
2393
|
+
@Operator.setter
|
|
2394
|
+
def Operator(self, Operator):
|
|
2395
|
+
self._Operator = Operator
|
|
2396
|
+
|
|
2397
|
+
@property
|
|
2398
|
+
def OperateTime(self):
|
|
2399
|
+
"""Operation time
|
|
2400
|
+
|
|
2401
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2402
|
+
:rtype: int
|
|
2403
|
+
"""
|
|
2404
|
+
return self._OperateTime
|
|
2405
|
+
|
|
2406
|
+
@OperateTime.setter
|
|
2407
|
+
def OperateTime(self, OperateTime):
|
|
2408
|
+
self._OperateTime = OperateTime
|
|
2409
|
+
|
|
2410
|
+
@property
|
|
2411
|
+
def CreateTime(self):
|
|
2412
|
+
"""Creation time
|
|
2413
|
+
|
|
2414
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2415
|
+
:rtype: int
|
|
2416
|
+
"""
|
|
2417
|
+
return self._CreateTime
|
|
2418
|
+
|
|
2419
|
+
@CreateTime.setter
|
|
2420
|
+
def CreateTime(self, CreateTime):
|
|
2421
|
+
self._CreateTime = CreateTime
|
|
2422
|
+
|
|
2423
|
+
@property
|
|
2424
|
+
def CreateTimeStr(self):
|
|
2425
|
+
"""Creation time
|
|
2426
|
+
|
|
2427
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2428
|
+
:rtype: str
|
|
2429
|
+
"""
|
|
2430
|
+
return self._CreateTimeStr
|
|
2431
|
+
|
|
2432
|
+
@CreateTimeStr.setter
|
|
2433
|
+
def CreateTimeStr(self, CreateTimeStr):
|
|
2434
|
+
self._CreateTimeStr = CreateTimeStr
|
|
2435
|
+
|
|
2436
|
+
@property
|
|
2437
|
+
def UpdateTimeStr(self):
|
|
2438
|
+
"""Update time.
|
|
2439
|
+
|
|
2440
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2441
|
+
:rtype: str
|
|
2442
|
+
"""
|
|
2443
|
+
return self._UpdateTimeStr
|
|
2444
|
+
|
|
2445
|
+
@UpdateTimeStr.setter
|
|
2446
|
+
def UpdateTimeStr(self, UpdateTimeStr):
|
|
2447
|
+
self._UpdateTimeStr = UpdateTimeStr
|
|
2448
|
+
|
|
2449
|
+
@property
|
|
2450
|
+
def ProjectId(self):
|
|
2451
|
+
"""Project ID
|
|
2452
|
+
|
|
2453
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2454
|
+
:rtype: str
|
|
2455
|
+
"""
|
|
2456
|
+
return self._ProjectId
|
|
2457
|
+
|
|
2458
|
+
@ProjectId.setter
|
|
2459
|
+
def ProjectId(self, ProjectId):
|
|
2460
|
+
self._ProjectId = ProjectId
|
|
2461
|
+
|
|
2462
|
+
@property
|
|
2463
|
+
def UpdateTime(self):
|
|
2464
|
+
"""Update time.
|
|
2465
|
+
|
|
2466
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2467
|
+
:rtype: str
|
|
2468
|
+
"""
|
|
2469
|
+
return self._UpdateTime
|
|
2470
|
+
|
|
2471
|
+
@UpdateTime.setter
|
|
2472
|
+
def UpdateTime(self, UpdateTime):
|
|
2473
|
+
self._UpdateTime = UpdateTime
|
|
2474
|
+
|
|
2475
|
+
@property
|
|
2476
|
+
def Creator(self):
|
|
2477
|
+
"""Creator
|
|
2478
|
+
|
|
2479
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2480
|
+
:rtype: str
|
|
2481
|
+
"""
|
|
2482
|
+
return self._Creator
|
|
2483
|
+
|
|
2484
|
+
@Creator.setter
|
|
2485
|
+
def Creator(self, Creator):
|
|
2486
|
+
self._Creator = Creator
|
|
2487
|
+
|
|
2488
|
+
|
|
2489
|
+
def _deserialize(self, params):
|
|
2490
|
+
self._RoleId = params.get("RoleId")
|
|
2491
|
+
self._RoleName = params.get("RoleName")
|
|
2492
|
+
self._DisplayName = params.get("DisplayName")
|
|
2493
|
+
self._Description = params.get("Description")
|
|
2494
|
+
self._RoleType = params.get("RoleType")
|
|
2495
|
+
self._SystemDefault = params.get("SystemDefault")
|
|
2496
|
+
self._Parameters = params.get("Parameters")
|
|
2497
|
+
self._MemberCount = params.get("MemberCount")
|
|
2498
|
+
if params.get("Privileges") is not None:
|
|
2499
|
+
self._Privileges = []
|
|
2500
|
+
for item in params.get("Privileges"):
|
|
2501
|
+
obj = RolePrivilege()
|
|
2502
|
+
obj._deserialize(item)
|
|
2503
|
+
self._Privileges.append(obj)
|
|
2504
|
+
if params.get("Operator") is not None:
|
|
2505
|
+
self._Operator = BaseUser()
|
|
2506
|
+
self._Operator._deserialize(params.get("Operator"))
|
|
2507
|
+
self._OperateTime = params.get("OperateTime")
|
|
2508
|
+
self._CreateTime = params.get("CreateTime")
|
|
2509
|
+
self._CreateTimeStr = params.get("CreateTimeStr")
|
|
2510
|
+
self._UpdateTimeStr = params.get("UpdateTimeStr")
|
|
2511
|
+
self._ProjectId = params.get("ProjectId")
|
|
2512
|
+
self._UpdateTime = params.get("UpdateTime")
|
|
2513
|
+
self._Creator = params.get("Creator")
|
|
2514
|
+
memeber_set = set(params.keys())
|
|
2515
|
+
for name, value in vars(self).items():
|
|
2516
|
+
property_name = name[1:]
|
|
2517
|
+
if property_name in memeber_set:
|
|
2518
|
+
memeber_set.remove(property_name)
|
|
2519
|
+
if len(memeber_set) > 0:
|
|
2520
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2521
|
+
|
|
2522
|
+
|
|
2523
|
+
|
|
2080
2524
|
class BaseTenant(AbstractModel):
|
|
2081
2525
|
"""Tenant basic information
|
|
2082
2526
|
|
|
@@ -26669,6 +27113,277 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
26669
27113
|
self._RequestId = params.get("RequestId")
|
|
26670
27114
|
|
|
26671
27115
|
|
|
27116
|
+
class DescribeRoleListRequest(AbstractModel):
|
|
27117
|
+
"""DescribeRoleList request structure.
|
|
27118
|
+
|
|
27119
|
+
"""
|
|
27120
|
+
|
|
27121
|
+
def __init__(self):
|
|
27122
|
+
r"""
|
|
27123
|
+
:param _ShowAllRoles: Return all Roles
|
|
27124
|
+
:type ShowAllRoles: bool
|
|
27125
|
+
:param _IncludeRoleTypes: Role type (system, tenant, project) that needs to be returned
|
|
27126
|
+
:type IncludeRoleTypes: list of str
|
|
27127
|
+
:param _DescribeMemberCount: Specifies the statistics of role binding personnel. Only supported in the private edition.
|
|
27128
|
+
:type DescribeMemberCount: bool
|
|
27129
|
+
:param _DescribeOperator: Specifies the operator information. describes the privatized multi-tenancy version.
|
|
27130
|
+
:type DescribeOperator: bool
|
|
27131
|
+
:param _DescribeSystemRoleOnly: System Role
|
|
27132
|
+
:type DescribeSystemRoleOnly: bool
|
|
27133
|
+
:param _DescribeCustomRoleOnly: Custom Role
|
|
27134
|
+
:type DescribeCustomRoleOnly: bool
|
|
27135
|
+
:param _DescribePrivileges: Permission to view
|
|
27136
|
+
:type DescribePrivileges: bool
|
|
27137
|
+
:param _RoleIds: Filter criteria for Role ID
|
|
27138
|
+
:type RoleIds: list of str
|
|
27139
|
+
:param _ProjectId: Project ID
|
|
27140
|
+
:type ProjectId: str
|
|
27141
|
+
:param _PageNumber: Page number
|
|
27142
|
+
:type PageNumber: int
|
|
27143
|
+
:param _PageSize: Paging information
|
|
27144
|
+
:type PageSize: int
|
|
27145
|
+
:param _Filters: Query Field
|
|
27146
|
+
:type Filters: list of Filter
|
|
27147
|
+
:param _OrderFields: Sorting Field
|
|
27148
|
+
:type OrderFields: list of OrderFields
|
|
27149
|
+
"""
|
|
27150
|
+
self._ShowAllRoles = None
|
|
27151
|
+
self._IncludeRoleTypes = None
|
|
27152
|
+
self._DescribeMemberCount = None
|
|
27153
|
+
self._DescribeOperator = None
|
|
27154
|
+
self._DescribeSystemRoleOnly = None
|
|
27155
|
+
self._DescribeCustomRoleOnly = None
|
|
27156
|
+
self._DescribePrivileges = None
|
|
27157
|
+
self._RoleIds = None
|
|
27158
|
+
self._ProjectId = None
|
|
27159
|
+
self._PageNumber = None
|
|
27160
|
+
self._PageSize = None
|
|
27161
|
+
self._Filters = None
|
|
27162
|
+
self._OrderFields = None
|
|
27163
|
+
|
|
27164
|
+
@property
|
|
27165
|
+
def ShowAllRoles(self):
|
|
27166
|
+
"""Return all Roles
|
|
27167
|
+
:rtype: bool
|
|
27168
|
+
"""
|
|
27169
|
+
return self._ShowAllRoles
|
|
27170
|
+
|
|
27171
|
+
@ShowAllRoles.setter
|
|
27172
|
+
def ShowAllRoles(self, ShowAllRoles):
|
|
27173
|
+
self._ShowAllRoles = ShowAllRoles
|
|
27174
|
+
|
|
27175
|
+
@property
|
|
27176
|
+
def IncludeRoleTypes(self):
|
|
27177
|
+
"""Role type (system, tenant, project) that needs to be returned
|
|
27178
|
+
:rtype: list of str
|
|
27179
|
+
"""
|
|
27180
|
+
return self._IncludeRoleTypes
|
|
27181
|
+
|
|
27182
|
+
@IncludeRoleTypes.setter
|
|
27183
|
+
def IncludeRoleTypes(self, IncludeRoleTypes):
|
|
27184
|
+
self._IncludeRoleTypes = IncludeRoleTypes
|
|
27185
|
+
|
|
27186
|
+
@property
|
|
27187
|
+
def DescribeMemberCount(self):
|
|
27188
|
+
"""Specifies the statistics of role binding personnel. Only supported in the private edition.
|
|
27189
|
+
:rtype: bool
|
|
27190
|
+
"""
|
|
27191
|
+
return self._DescribeMemberCount
|
|
27192
|
+
|
|
27193
|
+
@DescribeMemberCount.setter
|
|
27194
|
+
def DescribeMemberCount(self, DescribeMemberCount):
|
|
27195
|
+
self._DescribeMemberCount = DescribeMemberCount
|
|
27196
|
+
|
|
27197
|
+
@property
|
|
27198
|
+
def DescribeOperator(self):
|
|
27199
|
+
"""Specifies the operator information. describes the privatized multi-tenancy version.
|
|
27200
|
+
:rtype: bool
|
|
27201
|
+
"""
|
|
27202
|
+
return self._DescribeOperator
|
|
27203
|
+
|
|
27204
|
+
@DescribeOperator.setter
|
|
27205
|
+
def DescribeOperator(self, DescribeOperator):
|
|
27206
|
+
self._DescribeOperator = DescribeOperator
|
|
27207
|
+
|
|
27208
|
+
@property
|
|
27209
|
+
def DescribeSystemRoleOnly(self):
|
|
27210
|
+
"""System Role
|
|
27211
|
+
:rtype: bool
|
|
27212
|
+
"""
|
|
27213
|
+
return self._DescribeSystemRoleOnly
|
|
27214
|
+
|
|
27215
|
+
@DescribeSystemRoleOnly.setter
|
|
27216
|
+
def DescribeSystemRoleOnly(self, DescribeSystemRoleOnly):
|
|
27217
|
+
self._DescribeSystemRoleOnly = DescribeSystemRoleOnly
|
|
27218
|
+
|
|
27219
|
+
@property
|
|
27220
|
+
def DescribeCustomRoleOnly(self):
|
|
27221
|
+
"""Custom Role
|
|
27222
|
+
:rtype: bool
|
|
27223
|
+
"""
|
|
27224
|
+
return self._DescribeCustomRoleOnly
|
|
27225
|
+
|
|
27226
|
+
@DescribeCustomRoleOnly.setter
|
|
27227
|
+
def DescribeCustomRoleOnly(self, DescribeCustomRoleOnly):
|
|
27228
|
+
self._DescribeCustomRoleOnly = DescribeCustomRoleOnly
|
|
27229
|
+
|
|
27230
|
+
@property
|
|
27231
|
+
def DescribePrivileges(self):
|
|
27232
|
+
"""Permission to view
|
|
27233
|
+
:rtype: bool
|
|
27234
|
+
"""
|
|
27235
|
+
return self._DescribePrivileges
|
|
27236
|
+
|
|
27237
|
+
@DescribePrivileges.setter
|
|
27238
|
+
def DescribePrivileges(self, DescribePrivileges):
|
|
27239
|
+
self._DescribePrivileges = DescribePrivileges
|
|
27240
|
+
|
|
27241
|
+
@property
|
|
27242
|
+
def RoleIds(self):
|
|
27243
|
+
"""Filter criteria for Role ID
|
|
27244
|
+
:rtype: list of str
|
|
27245
|
+
"""
|
|
27246
|
+
return self._RoleIds
|
|
27247
|
+
|
|
27248
|
+
@RoleIds.setter
|
|
27249
|
+
def RoleIds(self, RoleIds):
|
|
27250
|
+
self._RoleIds = RoleIds
|
|
27251
|
+
|
|
27252
|
+
@property
|
|
27253
|
+
def ProjectId(self):
|
|
27254
|
+
"""Project ID
|
|
27255
|
+
:rtype: str
|
|
27256
|
+
"""
|
|
27257
|
+
return self._ProjectId
|
|
27258
|
+
|
|
27259
|
+
@ProjectId.setter
|
|
27260
|
+
def ProjectId(self, ProjectId):
|
|
27261
|
+
self._ProjectId = ProjectId
|
|
27262
|
+
|
|
27263
|
+
@property
|
|
27264
|
+
def PageNumber(self):
|
|
27265
|
+
"""Page number
|
|
27266
|
+
:rtype: int
|
|
27267
|
+
"""
|
|
27268
|
+
return self._PageNumber
|
|
27269
|
+
|
|
27270
|
+
@PageNumber.setter
|
|
27271
|
+
def PageNumber(self, PageNumber):
|
|
27272
|
+
self._PageNumber = PageNumber
|
|
27273
|
+
|
|
27274
|
+
@property
|
|
27275
|
+
def PageSize(self):
|
|
27276
|
+
"""Paging information
|
|
27277
|
+
:rtype: int
|
|
27278
|
+
"""
|
|
27279
|
+
return self._PageSize
|
|
27280
|
+
|
|
27281
|
+
@PageSize.setter
|
|
27282
|
+
def PageSize(self, PageSize):
|
|
27283
|
+
self._PageSize = PageSize
|
|
27284
|
+
|
|
27285
|
+
@property
|
|
27286
|
+
def Filters(self):
|
|
27287
|
+
"""Query Field
|
|
27288
|
+
:rtype: list of Filter
|
|
27289
|
+
"""
|
|
27290
|
+
return self._Filters
|
|
27291
|
+
|
|
27292
|
+
@Filters.setter
|
|
27293
|
+
def Filters(self, Filters):
|
|
27294
|
+
self._Filters = Filters
|
|
27295
|
+
|
|
27296
|
+
@property
|
|
27297
|
+
def OrderFields(self):
|
|
27298
|
+
"""Sorting Field
|
|
27299
|
+
:rtype: list of OrderFields
|
|
27300
|
+
"""
|
|
27301
|
+
return self._OrderFields
|
|
27302
|
+
|
|
27303
|
+
@OrderFields.setter
|
|
27304
|
+
def OrderFields(self, OrderFields):
|
|
27305
|
+
self._OrderFields = OrderFields
|
|
27306
|
+
|
|
27307
|
+
|
|
27308
|
+
def _deserialize(self, params):
|
|
27309
|
+
self._ShowAllRoles = params.get("ShowAllRoles")
|
|
27310
|
+
self._IncludeRoleTypes = params.get("IncludeRoleTypes")
|
|
27311
|
+
self._DescribeMemberCount = params.get("DescribeMemberCount")
|
|
27312
|
+
self._DescribeOperator = params.get("DescribeOperator")
|
|
27313
|
+
self._DescribeSystemRoleOnly = params.get("DescribeSystemRoleOnly")
|
|
27314
|
+
self._DescribeCustomRoleOnly = params.get("DescribeCustomRoleOnly")
|
|
27315
|
+
self._DescribePrivileges = params.get("DescribePrivileges")
|
|
27316
|
+
self._RoleIds = params.get("RoleIds")
|
|
27317
|
+
self._ProjectId = params.get("ProjectId")
|
|
27318
|
+
self._PageNumber = params.get("PageNumber")
|
|
27319
|
+
self._PageSize = params.get("PageSize")
|
|
27320
|
+
if params.get("Filters") is not None:
|
|
27321
|
+
self._Filters = []
|
|
27322
|
+
for item in params.get("Filters"):
|
|
27323
|
+
obj = Filter()
|
|
27324
|
+
obj._deserialize(item)
|
|
27325
|
+
self._Filters.append(obj)
|
|
27326
|
+
if params.get("OrderFields") is not None:
|
|
27327
|
+
self._OrderFields = []
|
|
27328
|
+
for item in params.get("OrderFields"):
|
|
27329
|
+
obj = OrderFields()
|
|
27330
|
+
obj._deserialize(item)
|
|
27331
|
+
self._OrderFields.append(obj)
|
|
27332
|
+
memeber_set = set(params.keys())
|
|
27333
|
+
for name, value in vars(self).items():
|
|
27334
|
+
property_name = name[1:]
|
|
27335
|
+
if property_name in memeber_set:
|
|
27336
|
+
memeber_set.remove(property_name)
|
|
27337
|
+
if len(memeber_set) > 0:
|
|
27338
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
27339
|
+
|
|
27340
|
+
|
|
27341
|
+
|
|
27342
|
+
class DescribeRoleListResponse(AbstractModel):
|
|
27343
|
+
"""DescribeRoleList response structure.
|
|
27344
|
+
|
|
27345
|
+
"""
|
|
27346
|
+
|
|
27347
|
+
def __init__(self):
|
|
27348
|
+
r"""
|
|
27349
|
+
:param _Data: This API is used to provide the Role List
|
|
27350
|
+
:type Data: :class:`tencentcloud.wedata.v20210820.models.PageRoles`
|
|
27351
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
27352
|
+
:type RequestId: str
|
|
27353
|
+
"""
|
|
27354
|
+
self._Data = None
|
|
27355
|
+
self._RequestId = None
|
|
27356
|
+
|
|
27357
|
+
@property
|
|
27358
|
+
def Data(self):
|
|
27359
|
+
"""This API is used to provide the Role List
|
|
27360
|
+
:rtype: :class:`tencentcloud.wedata.v20210820.models.PageRoles`
|
|
27361
|
+
"""
|
|
27362
|
+
return self._Data
|
|
27363
|
+
|
|
27364
|
+
@Data.setter
|
|
27365
|
+
def Data(self, Data):
|
|
27366
|
+
self._Data = Data
|
|
27367
|
+
|
|
27368
|
+
@property
|
|
27369
|
+
def RequestId(self):
|
|
27370
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
27371
|
+
:rtype: str
|
|
27372
|
+
"""
|
|
27373
|
+
return self._RequestId
|
|
27374
|
+
|
|
27375
|
+
@RequestId.setter
|
|
27376
|
+
def RequestId(self, RequestId):
|
|
27377
|
+
self._RequestId = RequestId
|
|
27378
|
+
|
|
27379
|
+
|
|
27380
|
+
def _deserialize(self, params):
|
|
27381
|
+
if params.get("Data") is not None:
|
|
27382
|
+
self._Data = PageRoles()
|
|
27383
|
+
self._Data._deserialize(params.get("Data"))
|
|
27384
|
+
self._RequestId = params.get("RequestId")
|
|
27385
|
+
|
|
27386
|
+
|
|
26672
27387
|
class DescribeRuleDimStatRequest(AbstractModel):
|
|
26673
27388
|
"""DescribeRuleDimStat request structure.
|
|
26674
27389
|
|
|
@@ -38853,7 +39568,9 @@ class GetInstanceLogRequest(AbstractModel):
|
|
|
38853
39568
|
:type ProjectId: str
|
|
38854
39569
|
:param _InstanceKey: Unique identifier of an instance.
|
|
38855
39570
|
:type InstanceKey: str
|
|
38856
|
-
:param _LifeRoundNum:
|
|
39571
|
+
:param _LifeRoundNum: Instance lifetime number, which identifies one-time execution of the instance.
|
|
39572
|
+
|
|
39573
|
+
For example: the number of the first run of a periodic instance is 0. when the user reruns the instance later, the number of the second execution is 1.
|
|
38857
39574
|
:type LifeRoundNum: int
|
|
38858
39575
|
:param _ScheduleTimeZone: Time zone.
|
|
38859
39576
|
Time zone. specifies the time zone. the default value is UTC+8.
|
|
@@ -38883,6 +39600,11 @@ The default is 1.
|
|
|
38883
39600
|
:param _EndLineCount: End line number for obtaining logs.
|
|
38884
39601
|
The default value is 10000.
|
|
38885
39602
|
:type EndLineCount: int
|
|
39603
|
+
:param _ExtInfo: Used when performing a paging query for logs. it has no specific business meaning.
|
|
39604
|
+
|
|
39605
|
+
Specifies that the value is null for the first query.
|
|
39606
|
+
Use the ExtInfo field value in the returned information from the previous query for the second and subsequent queries.
|
|
39607
|
+
:type ExtInfo: str
|
|
38886
39608
|
"""
|
|
38887
39609
|
self._ProjectId = None
|
|
38888
39610
|
self._InstanceKey = None
|
|
@@ -38894,6 +39616,7 @@ The default value is 10000.
|
|
|
38894
39616
|
self._LogLevel = None
|
|
38895
39617
|
self._StartLineNum = None
|
|
38896
39618
|
self._EndLineCount = None
|
|
39619
|
+
self._ExtInfo = None
|
|
38897
39620
|
|
|
38898
39621
|
@property
|
|
38899
39622
|
def ProjectId(self):
|
|
@@ -38919,7 +39642,9 @@ The default value is 10000.
|
|
|
38919
39642
|
|
|
38920
39643
|
@property
|
|
38921
39644
|
def LifeRoundNum(self):
|
|
38922
|
-
"""
|
|
39645
|
+
"""Instance lifetime number, which identifies one-time execution of the instance.
|
|
39646
|
+
|
|
39647
|
+
For example: the number of the first run of a periodic instance is 0. when the user reruns the instance later, the number of the second execution is 1.
|
|
38923
39648
|
:rtype: int
|
|
38924
39649
|
"""
|
|
38925
39650
|
return self._LifeRoundNum
|
|
@@ -39019,6 +39744,20 @@ The default value is 10000.
|
|
|
39019
39744
|
def EndLineCount(self, EndLineCount):
|
|
39020
39745
|
self._EndLineCount = EndLineCount
|
|
39021
39746
|
|
|
39747
|
+
@property
|
|
39748
|
+
def ExtInfo(self):
|
|
39749
|
+
"""Used when performing a paging query for logs. it has no specific business meaning.
|
|
39750
|
+
|
|
39751
|
+
Specifies that the value is null for the first query.
|
|
39752
|
+
Use the ExtInfo field value in the returned information from the previous query for the second and subsequent queries.
|
|
39753
|
+
:rtype: str
|
|
39754
|
+
"""
|
|
39755
|
+
return self._ExtInfo
|
|
39756
|
+
|
|
39757
|
+
@ExtInfo.setter
|
|
39758
|
+
def ExtInfo(self, ExtInfo):
|
|
39759
|
+
self._ExtInfo = ExtInfo
|
|
39760
|
+
|
|
39022
39761
|
|
|
39023
39762
|
def _deserialize(self, params):
|
|
39024
39763
|
self._ProjectId = params.get("ProjectId")
|
|
@@ -39031,6 +39770,7 @@ The default value is 10000.
|
|
|
39031
39770
|
self._LogLevel = params.get("LogLevel")
|
|
39032
39771
|
self._StartLineNum = params.get("StartLineNum")
|
|
39033
39772
|
self._EndLineCount = params.get("EndLineCount")
|
|
39773
|
+
self._ExtInfo = params.get("ExtInfo")
|
|
39034
39774
|
memeber_set = set(params.keys())
|
|
39035
39775
|
for name, value in vars(self).items():
|
|
39036
39776
|
property_name = name[1:]
|
|
@@ -40202,10 +40942,10 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40202
40942
|
|
|
40203
40943
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40204
40944
|
:type ExecutorGroupName: str
|
|
40205
|
-
:param _CurRunDate:
|
|
40945
|
+
:param _CurRunDate: Instance data time.
|
|
40206
40946
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40207
40947
|
:type CurRunDate: str
|
|
40208
|
-
:param _NextCurDate: Next
|
|
40948
|
+
:param _NextCurDate: Next instance data time.
|
|
40209
40949
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40210
40950
|
:type NextCurDate: str
|
|
40211
40951
|
:param _TryLimit: Limit on the number of retries issued each time a run fails.
|
|
@@ -40217,23 +40957,25 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40217
40957
|
:param _TotalRunNum: Cumulative running times.
|
|
40218
40958
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40219
40959
|
:type TotalRunNum: int
|
|
40220
|
-
:param _LifeRoundNum:
|
|
40960
|
+
:param _LifeRoundNum: Instance lifetime number, which identifies one-time execution of the instance.
|
|
40961
|
+
|
|
40962
|
+
For example: the number of the first run of a periodic instance is 0. after the user reruns the instance later, the number of the second execution is 1.
|
|
40221
40963
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40222
40964
|
:type LifeRoundNum: int
|
|
40223
40965
|
:param _InstanceType: Instance type.
|
|
40224
40966
|
|
|
40225
|
-
-0 indicates
|
|
40226
|
-
-1 indicates
|
|
40227
|
-
-2 indicates
|
|
40967
|
+
-0 indicates Replenished Instance.
|
|
40968
|
+
-1 indicates Periodic Instance.
|
|
40969
|
+
-2 indicates Non-Periodic Instance.
|
|
40228
40970
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40229
40971
|
:type InstanceType: int
|
|
40230
40972
|
:param _InstanceState: Indicates the status of an instance.
|
|
40231
40973
|
|
|
40232
|
-
-Indicates waiting for event.
|
|
40974
|
+
-[0] Indicates waiting for event.
|
|
40233
40975
|
-[12] indicates waiting for upstream.
|
|
40234
40976
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
40235
|
-
-1, 19, 22 indicate running.
|
|
40236
|
-
-21: skip running.
|
|
40977
|
+
-[1, 19, 22] indicate running.
|
|
40978
|
+
-[21]: skip running.
|
|
40237
40979
|
-[3] indicates retry on failure.
|
|
40238
40980
|
-[8, 4, 5, 13] indicates a failure.
|
|
40239
40981
|
-[2] indicates a success.
|
|
@@ -40254,11 +40996,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40254
40996
|
:param _InstanceRunType: Instance running trigger type.
|
|
40255
40997
|
|
|
40256
40998
|
-RERUN indicates rerunning.
|
|
40257
|
-
-ADDITION indicates
|
|
40999
|
+
-ADDITION indicates data replenishment.
|
|
40258
41000
|
-PERIODIC indicates a period.
|
|
40259
41001
|
-APERIODIC indicates non-periodic.
|
|
40260
41002
|
-RERUN_SKIP_RUN indicates re-run - empty run.
|
|
40261
|
-
-ADDITION_SKIP_RUN indicates a
|
|
41003
|
+
-ADDITION_SKIP_RUN indicates a data replenishment run - empty run.
|
|
40262
41004
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
40263
41005
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
40264
41006
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -40479,7 +41221,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40479
41221
|
|
|
40480
41222
|
@property
|
|
40481
41223
|
def CurRunDate(self):
|
|
40482
|
-
"""
|
|
41224
|
+
"""Instance data time.
|
|
40483
41225
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40484
41226
|
:rtype: str
|
|
40485
41227
|
"""
|
|
@@ -40491,7 +41233,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40491
41233
|
|
|
40492
41234
|
@property
|
|
40493
41235
|
def NextCurDate(self):
|
|
40494
|
-
"""Next
|
|
41236
|
+
"""Next instance data time.
|
|
40495
41237
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40496
41238
|
:rtype: str
|
|
40497
41239
|
"""
|
|
@@ -40539,7 +41281,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40539
41281
|
|
|
40540
41282
|
@property
|
|
40541
41283
|
def LifeRoundNum(self):
|
|
40542
|
-
"""
|
|
41284
|
+
"""Instance lifetime number, which identifies one-time execution of the instance.
|
|
41285
|
+
|
|
41286
|
+
For example: the number of the first run of a periodic instance is 0. after the user reruns the instance later, the number of the second execution is 1.
|
|
40543
41287
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40544
41288
|
:rtype: int
|
|
40545
41289
|
"""
|
|
@@ -40553,9 +41297,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40553
41297
|
def InstanceType(self):
|
|
40554
41298
|
"""Instance type.
|
|
40555
41299
|
|
|
40556
|
-
-0 indicates
|
|
40557
|
-
-1 indicates
|
|
40558
|
-
-2 indicates
|
|
41300
|
+
-0 indicates Replenished Instance.
|
|
41301
|
+
-1 indicates Periodic Instance.
|
|
41302
|
+
-2 indicates Non-Periodic Instance.
|
|
40559
41303
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
40560
41304
|
:rtype: int
|
|
40561
41305
|
"""
|
|
@@ -40569,11 +41313,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40569
41313
|
def InstanceState(self):
|
|
40570
41314
|
"""Indicates the status of an instance.
|
|
40571
41315
|
|
|
40572
|
-
-Indicates waiting for event.
|
|
41316
|
+
-[0] Indicates waiting for event.
|
|
40573
41317
|
-[12] indicates waiting for upstream.
|
|
40574
41318
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
40575
|
-
-1, 19, 22 indicate running.
|
|
40576
|
-
-21: skip running.
|
|
41319
|
+
-[1, 19, 22] indicate running.
|
|
41320
|
+
-[21]: skip running.
|
|
40577
41321
|
-[3] indicates retry on failure.
|
|
40578
41322
|
-[8, 4, 5, 13] indicates a failure.
|
|
40579
41323
|
-[2] indicates a success.
|
|
@@ -40639,11 +41383,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
40639
41383
|
"""Instance running trigger type.
|
|
40640
41384
|
|
|
40641
41385
|
-RERUN indicates rerunning.
|
|
40642
|
-
-ADDITION indicates
|
|
41386
|
+
-ADDITION indicates data replenishment.
|
|
40643
41387
|
-PERIODIC indicates a period.
|
|
40644
41388
|
-APERIODIC indicates non-periodic.
|
|
40645
41389
|
-RERUN_SKIP_RUN indicates re-run - empty run.
|
|
40646
|
-
-ADDITION_SKIP_RUN indicates a
|
|
41390
|
+
-ADDITION_SKIP_RUN indicates a data replenishment run - empty run.
|
|
40647
41391
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
40648
41392
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
40649
41393
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -41017,27 +41761,29 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41017
41761
|
:type InstanceKey: str
|
|
41018
41762
|
:param _InstanceState: Instance status.
|
|
41019
41763
|
|
|
41020
|
-
-Indicates waiting for event.
|
|
41764
|
+
-[0] Indicates waiting for event.
|
|
41021
41765
|
-[12] indicates waiting for upstream.
|
|
41022
41766
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
41023
|
-
-1, 19, 22 indicate running.
|
|
41024
|
-
-21
|
|
41767
|
+
-[1, 19, 22] indicate running.
|
|
41768
|
+
-[21] skip running.
|
|
41025
41769
|
-[3] indicates retry on failure.
|
|
41026
41770
|
-[8, 4, 5, 13] indicates a failure.
|
|
41027
41771
|
-[2] indicates a success.
|
|
41028
41772
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41029
41773
|
:type InstanceState: int
|
|
41030
|
-
:param _LifeRoundNum:
|
|
41774
|
+
:param _LifeRoundNum: Instance lifetime number, which identifies one-time execution of the instance.
|
|
41775
|
+
|
|
41776
|
+
For example: the number of the first run of a periodic instance is 0. when the user reruns the instance later, the number of the second execution is 1.
|
|
41031
41777
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41032
41778
|
:type LifeRoundNum: int
|
|
41033
41779
|
:param _RunType: Instance running trigger type.
|
|
41034
41780
|
|
|
41035
41781
|
-RERUN indicates rerunning.
|
|
41036
|
-
-ADDITION indicates
|
|
41782
|
+
-ADDITION indicates data replenishment.
|
|
41037
41783
|
-PERIODIC indicates a period.
|
|
41038
41784
|
-APERIODIC indicates non-periodic.
|
|
41039
41785
|
-RERUN_SKIP_RUN means empty run for re-run.
|
|
41040
|
-
-ADDITION_SKIP_RUN indicates
|
|
41786
|
+
-ADDITION_SKIP_RUN indicates data replenishment - empty run.
|
|
41041
41787
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
41042
41788
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
41043
41789
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -41055,6 +41801,8 @@ The file content specifies the code used for running the execution instance this
|
|
|
41055
41801
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41056
41802
|
:type CodeFileName: str
|
|
41057
41803
|
:param _ExecutionJobId: Dispatch execution ID.
|
|
41804
|
+
The unified execution platform dispatches execution to the new version executor with a unique ID to identify a specific execution, while the existing old executors do not have this ID when dispatching execution.
|
|
41805
|
+
If it is unknown whether the executor version supports this ID, contact tencent cloud's operations team.
|
|
41058
41806
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41059
41807
|
:type ExecutionJobId: str
|
|
41060
41808
|
:param _BrokerIp: The execution node where the log resides.
|
|
@@ -41102,11 +41850,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41102
41850
|
def InstanceState(self):
|
|
41103
41851
|
"""Instance status.
|
|
41104
41852
|
|
|
41105
|
-
-Indicates waiting for event.
|
|
41853
|
+
-[0] Indicates waiting for event.
|
|
41106
41854
|
-[12] indicates waiting for upstream.
|
|
41107
41855
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
41108
|
-
-1, 19, 22 indicate running.
|
|
41109
|
-
-21
|
|
41856
|
+
-[1, 19, 22] indicate running.
|
|
41857
|
+
-[21] skip running.
|
|
41110
41858
|
-[3] indicates retry on failure.
|
|
41111
41859
|
-[8, 4, 5, 13] indicates a failure.
|
|
41112
41860
|
-[2] indicates a success.
|
|
@@ -41121,7 +41869,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41121
41869
|
|
|
41122
41870
|
@property
|
|
41123
41871
|
def LifeRoundNum(self):
|
|
41124
|
-
"""
|
|
41872
|
+
"""Instance lifetime number, which identifies one-time execution of the instance.
|
|
41873
|
+
|
|
41874
|
+
For example: the number of the first run of a periodic instance is 0. when the user reruns the instance later, the number of the second execution is 1.
|
|
41125
41875
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41126
41876
|
:rtype: int
|
|
41127
41877
|
"""
|
|
@@ -41136,11 +41886,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41136
41886
|
"""Instance running trigger type.
|
|
41137
41887
|
|
|
41138
41888
|
-RERUN indicates rerunning.
|
|
41139
|
-
-ADDITION indicates
|
|
41889
|
+
-ADDITION indicates data replenishment.
|
|
41140
41890
|
-PERIODIC indicates a period.
|
|
41141
41891
|
-APERIODIC indicates non-periodic.
|
|
41142
41892
|
-RERUN_SKIP_RUN means empty run for re-run.
|
|
41143
|
-
-ADDITION_SKIP_RUN indicates
|
|
41893
|
+
-ADDITION_SKIP_RUN indicates data replenishment - empty run.
|
|
41144
41894
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
41145
41895
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
41146
41896
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -41194,6 +41944,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
41194
41944
|
@property
|
|
41195
41945
|
def ExecutionJobId(self):
|
|
41196
41946
|
"""Dispatch execution ID.
|
|
41947
|
+
The unified execution platform dispatches execution to the new version executor with a unique ID to identify a specific execution, while the existing old executors do not have this ID when dispatching execution.
|
|
41948
|
+
If it is unknown whether the executor version supports this ID, contact tencent cloud's operations team.
|
|
41197
41949
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41198
41950
|
:rtype: str
|
|
41199
41951
|
"""
|
|
@@ -41291,11 +42043,11 @@ class InstanceLifeDetailDto(AbstractModel):
|
|
|
41291
42043
|
def __init__(self):
|
|
41292
42044
|
r"""
|
|
41293
42045
|
:param _State: Indicates the status of an instance.
|
|
41294
|
-
-Indicates waiting for event.
|
|
42046
|
+
-[0] Indicates waiting for event.
|
|
41295
42047
|
-[12] indicates waiting for upstream.
|
|
41296
42048
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
41297
|
-
-1, 19, 22
|
|
41298
|
-
-21
|
|
42049
|
+
-[1, 19, 22] indicate running.
|
|
42050
|
+
-[21] skip running.
|
|
41299
42051
|
-[3] indicates retry on failure.
|
|
41300
42052
|
-[8, 4, 5, 13] indicates a failure.
|
|
41301
42053
|
-[2] indicates a success.
|
|
@@ -41306,14 +42058,14 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
41306
42058
|
:type StartTime: str
|
|
41307
42059
|
:param _DetailState: Instance lifecycle phase status.
|
|
41308
42060
|
|
|
41309
|
-
-WAIT_UPSTREAM indicates waiting for event
|
|
41310
|
-
-WAIT_RUN indicates
|
|
41311
|
-
-RUNNING indicates
|
|
41312
|
-
-COMPLETE indicates
|
|
41313
|
-
-FAILED indicates
|
|
41314
|
-
-EXPIRED indicates
|
|
41315
|
-
-SKIP_RUNNING indicates
|
|
41316
|
-
-HISTORY indicates compatibility with historical instances.
|
|
42061
|
+
-WAIT_UPSTREAM indicates waiting for an event or upstream status.
|
|
42062
|
+
-WAIT_RUN indicates waiting for running status.
|
|
42063
|
+
-RUNNING indicates the running state.
|
|
42064
|
+
-COMPLETE indicates terminal state - completed.
|
|
42065
|
+
-FAILED indicates terminal state - retry after failure.
|
|
42066
|
+
-EXPIRED indicates terminal state - failure.
|
|
42067
|
+
-SKIP_RUNNING indicates terminal state - a branch skipped by the upstream branch node.
|
|
42068
|
+
-HISTORY indicates compatibility with historical instances before march 30, 2024. no need to pay attention to this enumeration type for instances afterward.
|
|
41317
42069
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41318
42070
|
:type DetailState: str
|
|
41319
42071
|
:param _EndTime: End Time of the State
|
|
@@ -41328,11 +42080,11 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
41328
42080
|
@property
|
|
41329
42081
|
def State(self):
|
|
41330
42082
|
"""Indicates the status of an instance.
|
|
41331
|
-
-Indicates waiting for event.
|
|
42083
|
+
-[0] Indicates waiting for event.
|
|
41332
42084
|
-[12] indicates waiting for upstream.
|
|
41333
42085
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
41334
|
-
-1, 19, 22
|
|
41335
|
-
-21
|
|
42086
|
+
-[1, 19, 22] indicate running.
|
|
42087
|
+
-[21] skip running.
|
|
41336
42088
|
-[3] indicates retry on failure.
|
|
41337
42089
|
-[8, 4, 5, 13] indicates a failure.
|
|
41338
42090
|
-[2] indicates a success.
|
|
@@ -41361,14 +42113,14 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
41361
42113
|
def DetailState(self):
|
|
41362
42114
|
"""Instance lifecycle phase status.
|
|
41363
42115
|
|
|
41364
|
-
-WAIT_UPSTREAM indicates waiting for event
|
|
41365
|
-
-WAIT_RUN indicates
|
|
41366
|
-
-RUNNING indicates
|
|
41367
|
-
-COMPLETE indicates
|
|
41368
|
-
-FAILED indicates
|
|
41369
|
-
-EXPIRED indicates
|
|
41370
|
-
-SKIP_RUNNING indicates
|
|
41371
|
-
-HISTORY indicates compatibility with historical instances.
|
|
42116
|
+
-WAIT_UPSTREAM indicates waiting for an event or upstream status.
|
|
42117
|
+
-WAIT_RUN indicates waiting for running status.
|
|
42118
|
+
-RUNNING indicates the running state.
|
|
42119
|
+
-COMPLETE indicates terminal state - completed.
|
|
42120
|
+
-FAILED indicates terminal state - retry after failure.
|
|
42121
|
+
-EXPIRED indicates terminal state - failure.
|
|
42122
|
+
-SKIP_RUNNING indicates terminal state - a branch skipped by the upstream branch node.
|
|
42123
|
+
-HISTORY indicates compatibility with historical instances before march 30, 2024. no need to pay attention to this enumeration type for instances afterward.
|
|
41372
42124
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
41373
42125
|
:rtype: str
|
|
41374
42126
|
"""
|
|
@@ -42210,11 +42962,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
42210
42962
|
:type ProjectId: str
|
|
42211
42963
|
:param _InstanceState: **Instance status**.
|
|
42212
42964
|
|
|
42213
|
-
-Indicates waiting for event.
|
|
42965
|
+
-[0] Indicates waiting for event.
|
|
42214
42966
|
-[12] indicates waiting for upstream.
|
|
42215
42967
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
42216
|
-
-1, 19, 22 indicate running.
|
|
42217
|
-
-21
|
|
42968
|
+
-[1, 19, 22] indicate running.
|
|
42969
|
+
-[21] skip running.
|
|
42218
42970
|
-[3] indicates retry on failure.
|
|
42219
42971
|
-[8, 4, 5, 13] indicates a failure.
|
|
42220
42972
|
-[2] indicates a success.
|
|
@@ -42222,12 +42974,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
42222
42974
|
:type InstanceState: int
|
|
42223
42975
|
:param _RunType: Instance running trigger type.
|
|
42224
42976
|
|
|
42225
|
-
-RERUN indicates
|
|
42977
|
+
-RERUN indicates data replenishment.
|
|
42226
42978
|
-ADDITION indicates supplementary recording.
|
|
42227
42979
|
-PERIODIC indicates a period.
|
|
42228
42980
|
-APERIODIC indicates non-periodic.
|
|
42229
42981
|
-RERUN_SKIP_RUN means empty run for re-run.
|
|
42230
|
-
-ADDITION_SKIP_RUN indicates
|
|
42982
|
+
-ADDITION_SKIP_RUN indicates data replenishment - empty run.
|
|
42231
42983
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
42232
42984
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
42233
42985
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -42260,7 +43012,10 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
42260
43012
|
:param _LineCount: Row count of returned logs this time.
|
|
42261
43013
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
42262
43014
|
:type LineCount: int
|
|
42263
|
-
:param _ExtInfo:
|
|
43015
|
+
:param _ExtInfo: Used when performing a paging query for logs. it has no specific business meaning.
|
|
43016
|
+
|
|
43017
|
+
Specifies that the value is null for the first query.
|
|
43018
|
+
Specifies that you can use the field value of ExtInfo in the returned information from the previous query for the second and subsequent queries.
|
|
42264
43019
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
42265
43020
|
:type ExtInfo: str
|
|
42266
43021
|
:param _IsEnd: Paging query for logs. indicates whether it is the last page.
|
|
@@ -42311,11 +43066,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
42311
43066
|
def InstanceState(self):
|
|
42312
43067
|
"""**Instance status**.
|
|
42313
43068
|
|
|
42314
|
-
-Indicates waiting for event.
|
|
43069
|
+
-[0] Indicates waiting for event.
|
|
42315
43070
|
-[12] indicates waiting for upstream.
|
|
42316
43071
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
42317
|
-
-1, 19, 22 indicate running.
|
|
42318
|
-
-21
|
|
43072
|
+
-[1, 19, 22] indicate running.
|
|
43073
|
+
-[21] skip running.
|
|
42319
43074
|
-[3] indicates retry on failure.
|
|
42320
43075
|
-[8, 4, 5, 13] indicates a failure.
|
|
42321
43076
|
-[2] indicates a success.
|
|
@@ -42332,12 +43087,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
42332
43087
|
def RunType(self):
|
|
42333
43088
|
"""Instance running trigger type.
|
|
42334
43089
|
|
|
42335
|
-
-RERUN indicates
|
|
43090
|
+
-RERUN indicates data replenishment.
|
|
42336
43091
|
-ADDITION indicates supplementary recording.
|
|
42337
43092
|
-PERIODIC indicates a period.
|
|
42338
43093
|
-APERIODIC indicates non-periodic.
|
|
42339
43094
|
-RERUN_SKIP_RUN means empty run for re-run.
|
|
42340
|
-
-ADDITION_SKIP_RUN indicates
|
|
43095
|
+
-ADDITION_SKIP_RUN indicates data replenishment - empty run.
|
|
42341
43096
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
42342
43097
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
42343
43098
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -42451,7 +43206,10 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
42451
43206
|
|
|
42452
43207
|
@property
|
|
42453
43208
|
def ExtInfo(self):
|
|
42454
|
-
"""
|
|
43209
|
+
"""Used when performing a paging query for logs. it has no specific business meaning.
|
|
43210
|
+
|
|
43211
|
+
Specifies that the value is null for the first query.
|
|
43212
|
+
Specifies that you can use the field value of ExtInfo in the returned information from the previous query for the second and subsequent queries.
|
|
42455
43213
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
42456
43214
|
:rtype: str
|
|
42457
43215
|
"""
|
|
@@ -44164,7 +44922,7 @@ Supports filtering multiple conditions with an or relationship between them.
|
|
|
44164
44922
|
* C: CRONTAB_CYCLE
|
|
44165
44923
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
44166
44924
|
:type TaskCycleType: str
|
|
44167
|
-
:param _CurRunDate:
|
|
44925
|
+
:param _CurRunDate: Instance data time.
|
|
44168
44926
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
44169
44927
|
:type CurRunDate: str
|
|
44170
44928
|
:param _TryLimit: Specifies the limit on the number of retries issued each time a running failure occurs.
|
|
@@ -44186,7 +44944,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
44186
44944
|
:type InstanceType: int
|
|
44187
44945
|
:param _InstanceState: Indicates the status of an instance.
|
|
44188
44946
|
|
|
44189
|
-
-Indicates waiting for event.
|
|
44947
|
+
-[0]Indicates waiting for event.
|
|
44190
44948
|
-[12] indicates waiting for upstream.
|
|
44191
44949
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
44192
44950
|
-[1, 19, 22]: running.
|
|
@@ -44389,7 +45147,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
44389
45147
|
|
|
44390
45148
|
@property
|
|
44391
45149
|
def CurRunDate(self):
|
|
44392
|
-
"""
|
|
45150
|
+
"""Instance data time.
|
|
44393
45151
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
44394
45152
|
:rtype: str
|
|
44395
45153
|
"""
|
|
@@ -44456,7 +45214,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
44456
45214
|
def InstanceState(self):
|
|
44457
45215
|
"""Indicates the status of an instance.
|
|
44458
45216
|
|
|
44459
|
-
-Indicates waiting for event.
|
|
45217
|
+
-[0]Indicates waiting for event.
|
|
44460
45218
|
-[12] indicates waiting for upstream.
|
|
44461
45219
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
44462
45220
|
-[1, 19, 22]: running.
|
|
@@ -47060,11 +47818,11 @@ class ListInstancesRequest(AbstractModel):
|
|
|
47060
47818
|
r"""
|
|
47061
47819
|
:param _ProjectId: **Project ID**.
|
|
47062
47820
|
:type ProjectId: str
|
|
47063
|
-
:param _ScheduleTimeFrom:
|
|
47064
|
-
|
|
47821
|
+
:param _ScheduleTimeFrom: Filter criteria for instance planned scheduling time.
|
|
47822
|
+
Specifies the start time for filtering. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47065
47823
|
:type ScheduleTimeFrom: str
|
|
47066
|
-
:param _ScheduleTimeTo:
|
|
47067
|
-
Filter expiration time. time format
|
|
47824
|
+
:param _ScheduleTimeTo: Filter criteria for instance planned scheduling time.
|
|
47825
|
+
Filter expiration time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47068
47826
|
:type ScheduleTimeTo: str
|
|
47069
47827
|
:param _PageNumber: Page number, integer.
|
|
47070
47828
|
Use in conjunction with pageSize and cannot be less than 1. the default value is 1.
|
|
@@ -47072,12 +47830,12 @@ Use in conjunction with pageSize and cannot be less than 1. the default value is
|
|
|
47072
47830
|
:param _PageSize: Number of items per page, integer.
|
|
47073
47831
|
Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
47074
47832
|
:type PageSize: int
|
|
47075
|
-
:param _SortColumn:
|
|
47833
|
+
:param _SortColumn: Sorting field for query results.
|
|
47076
47834
|
|
|
47077
|
-
-SCHEDULE_DATE indicates the planned scheduling time.
|
|
47078
|
-
-START_TIME indicates the start execution time
|
|
47079
|
-
-END_TIME indicates the execution end time
|
|
47080
|
-
-COST_TIME indicates
|
|
47835
|
+
-SCHEDULE_DATE indicates sorting based on the planned scheduling time.
|
|
47836
|
+
-START_TIME indicates sorting by the instance's start execution time.
|
|
47837
|
+
-END_TIME indicates sorting based on the instance execution end time.
|
|
47838
|
+
-COST_TIME indicates sorting based on instance execution duration.
|
|
47081
47839
|
:type SortColumn: str
|
|
47082
47840
|
:param _SortType: Instance sorting order.
|
|
47083
47841
|
|
|
@@ -47086,17 +47844,17 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
|
47086
47844
|
:type SortType: str
|
|
47087
47845
|
:param _InstanceType: Instance type.
|
|
47088
47846
|
|
|
47089
|
-
-0 indicates
|
|
47090
|
-
-1 indicates
|
|
47091
|
-
-2 indicates
|
|
47847
|
+
-0 indicates Replenished Instance.
|
|
47848
|
+
-1 indicates Periodic Instance.
|
|
47849
|
+
-2 indicates Non-Periodic instance.
|
|
47092
47850
|
:type InstanceType: int
|
|
47093
47851
|
:param _InstanceStateList: Instance execution status.
|
|
47094
47852
|
Support filtering multiple items with an "or" relationship between conditions.
|
|
47095
47853
|
|
|
47096
|
-
-Indicates waiting for event.
|
|
47854
|
+
-[0] Indicates waiting for event.
|
|
47097
47855
|
-[12] indicates waiting for upstream.
|
|
47098
47856
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
47099
|
-
-1, 19, 22 indicate running.
|
|
47857
|
+
-[1, 19, 22] indicate running.
|
|
47100
47858
|
-[21] indicates skipping running.
|
|
47101
47859
|
-[3] indicates retry on failure.
|
|
47102
47860
|
-[8, 4, 5, 13] indicates a failure.
|
|
@@ -47137,11 +47895,11 @@ Supports filtering multiple conditions with an or relationship between them.
|
|
|
47137
47895
|
The scheduling resource group list under the project can be obtained through the DescribeNormalSchedulerExecutorGroups api.
|
|
47138
47896
|
The DescribeNormalIntegrationExecutorGroups API can be used to obtain the list of all integration resource groups under a project.
|
|
47139
47897
|
:type ExecutorGroupIdList: list of str
|
|
47140
|
-
:param _StartTimeFrom:
|
|
47141
|
-
|
|
47898
|
+
:param _StartTimeFrom: Instance execution start time filter criteria.
|
|
47899
|
+
Specifies the start time for filtering. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47142
47900
|
:type StartTimeFrom: str
|
|
47143
|
-
:param _StartTimeTo:
|
|
47144
|
-
Filter expiration time. time format
|
|
47901
|
+
:param _StartTimeTo: Instance execution start time filter criteria.
|
|
47902
|
+
Filter expiration time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47145
47903
|
:type StartTimeTo: str
|
|
47146
47904
|
:param _ScheduleTimeZone: Time zone.
|
|
47147
47905
|
Time zone. specifies the time zone. the default value is UTC+8.
|
|
@@ -47180,8 +47938,8 @@ Time zone. specifies the time zone. the default value is UTC+8.
|
|
|
47180
47938
|
|
|
47181
47939
|
@property
|
|
47182
47940
|
def ScheduleTimeFrom(self):
|
|
47183
|
-
"""
|
|
47184
|
-
|
|
47941
|
+
"""Filter criteria for instance planned scheduling time.
|
|
47942
|
+
Specifies the start time for filtering. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47185
47943
|
:rtype: str
|
|
47186
47944
|
"""
|
|
47187
47945
|
return self._ScheduleTimeFrom
|
|
@@ -47192,8 +47950,8 @@ Filter start time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
|
47192
47950
|
|
|
47193
47951
|
@property
|
|
47194
47952
|
def ScheduleTimeTo(self):
|
|
47195
|
-
"""
|
|
47196
|
-
Filter expiration time. time format
|
|
47953
|
+
"""Filter criteria for instance planned scheduling time.
|
|
47954
|
+
Filter expiration time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47197
47955
|
:rtype: str
|
|
47198
47956
|
"""
|
|
47199
47957
|
return self._ScheduleTimeTo
|
|
@@ -47228,12 +47986,12 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
|
47228
47986
|
|
|
47229
47987
|
@property
|
|
47230
47988
|
def SortColumn(self):
|
|
47231
|
-
"""
|
|
47989
|
+
"""Sorting field for query results.
|
|
47232
47990
|
|
|
47233
|
-
-SCHEDULE_DATE indicates the planned scheduling time.
|
|
47234
|
-
-START_TIME indicates the start execution time
|
|
47235
|
-
-END_TIME indicates the execution end time
|
|
47236
|
-
-COST_TIME indicates
|
|
47991
|
+
-SCHEDULE_DATE indicates sorting based on the planned scheduling time.
|
|
47992
|
+
-START_TIME indicates sorting by the instance's start execution time.
|
|
47993
|
+
-END_TIME indicates sorting based on the instance execution end time.
|
|
47994
|
+
-COST_TIME indicates sorting based on instance execution duration.
|
|
47237
47995
|
:rtype: str
|
|
47238
47996
|
"""
|
|
47239
47997
|
return self._SortColumn
|
|
@@ -47260,9 +48018,9 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
|
47260
48018
|
def InstanceType(self):
|
|
47261
48019
|
"""Instance type.
|
|
47262
48020
|
|
|
47263
|
-
-0 indicates
|
|
47264
|
-
-1 indicates
|
|
47265
|
-
-2 indicates
|
|
48021
|
+
-0 indicates Replenished Instance.
|
|
48022
|
+
-1 indicates Periodic Instance.
|
|
48023
|
+
-2 indicates Non-Periodic instance.
|
|
47266
48024
|
:rtype: int
|
|
47267
48025
|
"""
|
|
47268
48026
|
return self._InstanceType
|
|
@@ -47276,10 +48034,10 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
|
47276
48034
|
"""Instance execution status.
|
|
47277
48035
|
Support filtering multiple items with an "or" relationship between conditions.
|
|
47278
48036
|
|
|
47279
|
-
-Indicates waiting for event.
|
|
48037
|
+
-[0] Indicates waiting for event.
|
|
47280
48038
|
-[12] indicates waiting for upstream.
|
|
47281
48039
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
47282
|
-
-1, 19, 22 indicate running.
|
|
48040
|
+
-[1, 19, 22] indicate running.
|
|
47283
48041
|
-[21] indicates skipping running.
|
|
47284
48042
|
-[3] indicates retry on failure.
|
|
47285
48043
|
-[8, 4, 5, 13] indicates a failure.
|
|
@@ -47392,8 +48150,8 @@ The DescribeNormalIntegrationExecutorGroups API can be used to obtain the list o
|
|
|
47392
48150
|
|
|
47393
48151
|
@property
|
|
47394
48152
|
def StartTimeFrom(self):
|
|
47395
|
-
"""
|
|
47396
|
-
|
|
48153
|
+
"""Instance execution start time filter criteria.
|
|
48154
|
+
Specifies the start time for filtering. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47397
48155
|
:rtype: str
|
|
47398
48156
|
"""
|
|
47399
48157
|
return self._StartTimeFrom
|
|
@@ -47404,8 +48162,8 @@ Filter start time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
|
47404
48162
|
|
|
47405
48163
|
@property
|
|
47406
48164
|
def StartTimeTo(self):
|
|
47407
|
-
"""
|
|
47408
|
-
Filter expiration time. time format
|
|
48165
|
+
"""Instance execution start time filter criteria.
|
|
48166
|
+
Filter expiration time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
47409
48167
|
:rtype: str
|
|
47410
48168
|
"""
|
|
47411
48169
|
return self._StartTimeTo
|
|
@@ -54455,6 +55213,57 @@ class OrderFieldOptional(AbstractModel):
|
|
|
54455
55213
|
|
|
54456
55214
|
|
|
54457
55215
|
|
|
55216
|
+
class OrderFields(AbstractModel):
|
|
55217
|
+
"""Sort
|
|
55218
|
+
|
|
55219
|
+
"""
|
|
55220
|
+
|
|
55221
|
+
def __init__(self):
|
|
55222
|
+
r"""
|
|
55223
|
+
:param _Name: Field
|
|
55224
|
+
:type Name: str
|
|
55225
|
+
:param _Direction: Sort
|
|
55226
|
+
:type Direction: str
|
|
55227
|
+
"""
|
|
55228
|
+
self._Name = None
|
|
55229
|
+
self._Direction = None
|
|
55230
|
+
|
|
55231
|
+
@property
|
|
55232
|
+
def Name(self):
|
|
55233
|
+
"""Field
|
|
55234
|
+
:rtype: str
|
|
55235
|
+
"""
|
|
55236
|
+
return self._Name
|
|
55237
|
+
|
|
55238
|
+
@Name.setter
|
|
55239
|
+
def Name(self, Name):
|
|
55240
|
+
self._Name = Name
|
|
55241
|
+
|
|
55242
|
+
@property
|
|
55243
|
+
def Direction(self):
|
|
55244
|
+
"""Sort
|
|
55245
|
+
:rtype: str
|
|
55246
|
+
"""
|
|
55247
|
+
return self._Direction
|
|
55248
|
+
|
|
55249
|
+
@Direction.setter
|
|
55250
|
+
def Direction(self, Direction):
|
|
55251
|
+
self._Direction = Direction
|
|
55252
|
+
|
|
55253
|
+
|
|
55254
|
+
def _deserialize(self, params):
|
|
55255
|
+
self._Name = params.get("Name")
|
|
55256
|
+
self._Direction = params.get("Direction")
|
|
55257
|
+
memeber_set = set(params.keys())
|
|
55258
|
+
for name, value in vars(self).items():
|
|
55259
|
+
property_name = name[1:]
|
|
55260
|
+
if property_name in memeber_set:
|
|
55261
|
+
memeber_set.remove(property_name)
|
|
55262
|
+
if len(memeber_set) > 0:
|
|
55263
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
55264
|
+
|
|
55265
|
+
|
|
55266
|
+
|
|
54458
55267
|
class OrganizationalFunction(AbstractModel):
|
|
54459
55268
|
"""Function containing hierarchical information
|
|
54460
55269
|
|
|
@@ -54933,6 +55742,123 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
54933
55742
|
|
|
54934
55743
|
|
|
54935
55744
|
|
|
55745
|
+
class PageRoles(AbstractModel):
|
|
55746
|
+
"""Pagination information of the role list.
|
|
55747
|
+
|
|
55748
|
+
"""
|
|
55749
|
+
|
|
55750
|
+
def __init__(self):
|
|
55751
|
+
r"""
|
|
55752
|
+
:param _Rows: Role information.
|
|
55753
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
55754
|
+
:type Rows: list of BaseRole
|
|
55755
|
+
:param _PageNumber: Page number
|
|
55756
|
+
|
|
55757
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
55758
|
+
:type PageNumber: int
|
|
55759
|
+
:param _PageSize: Pagination size
|
|
55760
|
+
|
|
55761
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
55762
|
+
:type PageSize: int
|
|
55763
|
+
:param _TotalCount: Total number
|
|
55764
|
+
|
|
55765
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
55766
|
+
:type TotalCount: int
|
|
55767
|
+
:param _TotalPageNumber: Total pagination pages.
|
|
55768
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
55769
|
+
:type TotalPageNumber: int
|
|
55770
|
+
"""
|
|
55771
|
+
self._Rows = None
|
|
55772
|
+
self._PageNumber = None
|
|
55773
|
+
self._PageSize = None
|
|
55774
|
+
self._TotalCount = None
|
|
55775
|
+
self._TotalPageNumber = None
|
|
55776
|
+
|
|
55777
|
+
@property
|
|
55778
|
+
def Rows(self):
|
|
55779
|
+
"""Role information.
|
|
55780
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
55781
|
+
:rtype: list of BaseRole
|
|
55782
|
+
"""
|
|
55783
|
+
return self._Rows
|
|
55784
|
+
|
|
55785
|
+
@Rows.setter
|
|
55786
|
+
def Rows(self, Rows):
|
|
55787
|
+
self._Rows = Rows
|
|
55788
|
+
|
|
55789
|
+
@property
|
|
55790
|
+
def PageNumber(self):
|
|
55791
|
+
"""Page number
|
|
55792
|
+
|
|
55793
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
55794
|
+
:rtype: int
|
|
55795
|
+
"""
|
|
55796
|
+
return self._PageNumber
|
|
55797
|
+
|
|
55798
|
+
@PageNumber.setter
|
|
55799
|
+
def PageNumber(self, PageNumber):
|
|
55800
|
+
self._PageNumber = PageNumber
|
|
55801
|
+
|
|
55802
|
+
@property
|
|
55803
|
+
def PageSize(self):
|
|
55804
|
+
"""Pagination size
|
|
55805
|
+
|
|
55806
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
55807
|
+
:rtype: int
|
|
55808
|
+
"""
|
|
55809
|
+
return self._PageSize
|
|
55810
|
+
|
|
55811
|
+
@PageSize.setter
|
|
55812
|
+
def PageSize(self, PageSize):
|
|
55813
|
+
self._PageSize = PageSize
|
|
55814
|
+
|
|
55815
|
+
@property
|
|
55816
|
+
def TotalCount(self):
|
|
55817
|
+
"""Total number
|
|
55818
|
+
|
|
55819
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
55820
|
+
:rtype: int
|
|
55821
|
+
"""
|
|
55822
|
+
return self._TotalCount
|
|
55823
|
+
|
|
55824
|
+
@TotalCount.setter
|
|
55825
|
+
def TotalCount(self, TotalCount):
|
|
55826
|
+
self._TotalCount = TotalCount
|
|
55827
|
+
|
|
55828
|
+
@property
|
|
55829
|
+
def TotalPageNumber(self):
|
|
55830
|
+
"""Total pagination pages.
|
|
55831
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
55832
|
+
:rtype: int
|
|
55833
|
+
"""
|
|
55834
|
+
return self._TotalPageNumber
|
|
55835
|
+
|
|
55836
|
+
@TotalPageNumber.setter
|
|
55837
|
+
def TotalPageNumber(self, TotalPageNumber):
|
|
55838
|
+
self._TotalPageNumber = TotalPageNumber
|
|
55839
|
+
|
|
55840
|
+
|
|
55841
|
+
def _deserialize(self, params):
|
|
55842
|
+
if params.get("Rows") is not None:
|
|
55843
|
+
self._Rows = []
|
|
55844
|
+
for item in params.get("Rows"):
|
|
55845
|
+
obj = BaseRole()
|
|
55846
|
+
obj._deserialize(item)
|
|
55847
|
+
self._Rows.append(obj)
|
|
55848
|
+
self._PageNumber = params.get("PageNumber")
|
|
55849
|
+
self._PageSize = params.get("PageSize")
|
|
55850
|
+
self._TotalCount = params.get("TotalCount")
|
|
55851
|
+
self._TotalPageNumber = params.get("TotalPageNumber")
|
|
55852
|
+
memeber_set = set(params.keys())
|
|
55853
|
+
for name, value in vars(self).items():
|
|
55854
|
+
property_name = name[1:]
|
|
55855
|
+
if property_name in memeber_set:
|
|
55856
|
+
memeber_set.remove(property_name)
|
|
55857
|
+
if len(memeber_set) > 0:
|
|
55858
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
55859
|
+
|
|
55860
|
+
|
|
55861
|
+
|
|
54936
55862
|
class Pair(AbstractModel):
|
|
54937
55863
|
"""Key-Value Pair
|
|
54938
55864
|
|
|
@@ -57596,6 +58522,156 @@ class RobLockState(AbstractModel):
|
|
|
57596
58522
|
|
|
57597
58523
|
|
|
57598
58524
|
|
|
58525
|
+
class RolePrivilege(AbstractModel):
|
|
58526
|
+
"""Role permission objects.
|
|
58527
|
+
|
|
58528
|
+
"""
|
|
58529
|
+
|
|
58530
|
+
def __init__(self):
|
|
58531
|
+
r"""
|
|
58532
|
+
:param _PrivilegeId: id
|
|
58533
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58534
|
+
:type PrivilegeId: str
|
|
58535
|
+
:param _PrivilegeName: Name
|
|
58536
|
+
|
|
58537
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58538
|
+
:type PrivilegeName: str
|
|
58539
|
+
:param _RestPath: Path
|
|
58540
|
+
|
|
58541
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58542
|
+
:type RestPath: str
|
|
58543
|
+
:param _RestMethod: Method.
|
|
58544
|
+
|
|
58545
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58546
|
+
:type RestMethod: str
|
|
58547
|
+
:param _Description: Description
|
|
58548
|
+
|
|
58549
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58550
|
+
:type Description: str
|
|
58551
|
+
:param _ModuleId: Module ID
|
|
58552
|
+
|
|
58553
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58554
|
+
:type ModuleId: str
|
|
58555
|
+
:param _Type: Permission type: N, R, RW, RWD.
|
|
58556
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58557
|
+
:type Type: str
|
|
58558
|
+
"""
|
|
58559
|
+
self._PrivilegeId = None
|
|
58560
|
+
self._PrivilegeName = None
|
|
58561
|
+
self._RestPath = None
|
|
58562
|
+
self._RestMethod = None
|
|
58563
|
+
self._Description = None
|
|
58564
|
+
self._ModuleId = None
|
|
58565
|
+
self._Type = None
|
|
58566
|
+
|
|
58567
|
+
@property
|
|
58568
|
+
def PrivilegeId(self):
|
|
58569
|
+
"""id
|
|
58570
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58571
|
+
:rtype: str
|
|
58572
|
+
"""
|
|
58573
|
+
return self._PrivilegeId
|
|
58574
|
+
|
|
58575
|
+
@PrivilegeId.setter
|
|
58576
|
+
def PrivilegeId(self, PrivilegeId):
|
|
58577
|
+
self._PrivilegeId = PrivilegeId
|
|
58578
|
+
|
|
58579
|
+
@property
|
|
58580
|
+
def PrivilegeName(self):
|
|
58581
|
+
"""Name
|
|
58582
|
+
|
|
58583
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58584
|
+
:rtype: str
|
|
58585
|
+
"""
|
|
58586
|
+
return self._PrivilegeName
|
|
58587
|
+
|
|
58588
|
+
@PrivilegeName.setter
|
|
58589
|
+
def PrivilegeName(self, PrivilegeName):
|
|
58590
|
+
self._PrivilegeName = PrivilegeName
|
|
58591
|
+
|
|
58592
|
+
@property
|
|
58593
|
+
def RestPath(self):
|
|
58594
|
+
"""Path
|
|
58595
|
+
|
|
58596
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58597
|
+
:rtype: str
|
|
58598
|
+
"""
|
|
58599
|
+
return self._RestPath
|
|
58600
|
+
|
|
58601
|
+
@RestPath.setter
|
|
58602
|
+
def RestPath(self, RestPath):
|
|
58603
|
+
self._RestPath = RestPath
|
|
58604
|
+
|
|
58605
|
+
@property
|
|
58606
|
+
def RestMethod(self):
|
|
58607
|
+
"""Method.
|
|
58608
|
+
|
|
58609
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58610
|
+
:rtype: str
|
|
58611
|
+
"""
|
|
58612
|
+
return self._RestMethod
|
|
58613
|
+
|
|
58614
|
+
@RestMethod.setter
|
|
58615
|
+
def RestMethod(self, RestMethod):
|
|
58616
|
+
self._RestMethod = RestMethod
|
|
58617
|
+
|
|
58618
|
+
@property
|
|
58619
|
+
def Description(self):
|
|
58620
|
+
"""Description
|
|
58621
|
+
|
|
58622
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58623
|
+
:rtype: str
|
|
58624
|
+
"""
|
|
58625
|
+
return self._Description
|
|
58626
|
+
|
|
58627
|
+
@Description.setter
|
|
58628
|
+
def Description(self, Description):
|
|
58629
|
+
self._Description = Description
|
|
58630
|
+
|
|
58631
|
+
@property
|
|
58632
|
+
def ModuleId(self):
|
|
58633
|
+
"""Module ID
|
|
58634
|
+
|
|
58635
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58636
|
+
:rtype: str
|
|
58637
|
+
"""
|
|
58638
|
+
return self._ModuleId
|
|
58639
|
+
|
|
58640
|
+
@ModuleId.setter
|
|
58641
|
+
def ModuleId(self, ModuleId):
|
|
58642
|
+
self._ModuleId = ModuleId
|
|
58643
|
+
|
|
58644
|
+
@property
|
|
58645
|
+
def Type(self):
|
|
58646
|
+
"""Permission type: N, R, RW, RWD.
|
|
58647
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
58648
|
+
:rtype: str
|
|
58649
|
+
"""
|
|
58650
|
+
return self._Type
|
|
58651
|
+
|
|
58652
|
+
@Type.setter
|
|
58653
|
+
def Type(self, Type):
|
|
58654
|
+
self._Type = Type
|
|
58655
|
+
|
|
58656
|
+
|
|
58657
|
+
def _deserialize(self, params):
|
|
58658
|
+
self._PrivilegeId = params.get("PrivilegeId")
|
|
58659
|
+
self._PrivilegeName = params.get("PrivilegeName")
|
|
58660
|
+
self._RestPath = params.get("RestPath")
|
|
58661
|
+
self._RestMethod = params.get("RestMethod")
|
|
58662
|
+
self._Description = params.get("Description")
|
|
58663
|
+
self._ModuleId = params.get("ModuleId")
|
|
58664
|
+
self._Type = params.get("Type")
|
|
58665
|
+
memeber_set = set(params.keys())
|
|
58666
|
+
for name, value in vars(self).items():
|
|
58667
|
+
property_name = name[1:]
|
|
58668
|
+
if property_name in memeber_set:
|
|
58669
|
+
memeber_set.remove(property_name)
|
|
58670
|
+
if len(memeber_set) > 0:
|
|
58671
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
58672
|
+
|
|
58673
|
+
|
|
58674
|
+
|
|
57599
58675
|
class Rule(AbstractModel):
|
|
57600
58676
|
"""Data Quality Rules
|
|
57601
58677
|
|
|
@@ -74517,6 +75593,100 @@ class UnlockIntegrationTaskResponse(AbstractModel):
|
|
|
74517
75593
|
self._RequestId = params.get("RequestId")
|
|
74518
75594
|
|
|
74519
75595
|
|
|
75596
|
+
class UpdateProjectUserRoleRequest(AbstractModel):
|
|
75597
|
+
"""UpdateProjectUserRole request structure.
|
|
75598
|
+
|
|
75599
|
+
"""
|
|
75600
|
+
|
|
75601
|
+
def __init__(self):
|
|
75602
|
+
r"""
|
|
75603
|
+
:param _ProjectId: Project ID
|
|
75604
|
+
:type ProjectId: str
|
|
75605
|
+
:param _UserIds: User ID
|
|
75606
|
+
:type UserIds: list of str
|
|
75607
|
+
:param _RoleIds: Role ID
|
|
75608
|
+
:type RoleIds: list of str
|
|
75609
|
+
"""
|
|
75610
|
+
self._ProjectId = None
|
|
75611
|
+
self._UserIds = None
|
|
75612
|
+
self._RoleIds = None
|
|
75613
|
+
|
|
75614
|
+
@property
|
|
75615
|
+
def ProjectId(self):
|
|
75616
|
+
"""Project ID
|
|
75617
|
+
:rtype: str
|
|
75618
|
+
"""
|
|
75619
|
+
return self._ProjectId
|
|
75620
|
+
|
|
75621
|
+
@ProjectId.setter
|
|
75622
|
+
def ProjectId(self, ProjectId):
|
|
75623
|
+
self._ProjectId = ProjectId
|
|
75624
|
+
|
|
75625
|
+
@property
|
|
75626
|
+
def UserIds(self):
|
|
75627
|
+
"""User ID
|
|
75628
|
+
:rtype: list of str
|
|
75629
|
+
"""
|
|
75630
|
+
return self._UserIds
|
|
75631
|
+
|
|
75632
|
+
@UserIds.setter
|
|
75633
|
+
def UserIds(self, UserIds):
|
|
75634
|
+
self._UserIds = UserIds
|
|
75635
|
+
|
|
75636
|
+
@property
|
|
75637
|
+
def RoleIds(self):
|
|
75638
|
+
"""Role ID
|
|
75639
|
+
:rtype: list of str
|
|
75640
|
+
"""
|
|
75641
|
+
return self._RoleIds
|
|
75642
|
+
|
|
75643
|
+
@RoleIds.setter
|
|
75644
|
+
def RoleIds(self, RoleIds):
|
|
75645
|
+
self._RoleIds = RoleIds
|
|
75646
|
+
|
|
75647
|
+
|
|
75648
|
+
def _deserialize(self, params):
|
|
75649
|
+
self._ProjectId = params.get("ProjectId")
|
|
75650
|
+
self._UserIds = params.get("UserIds")
|
|
75651
|
+
self._RoleIds = params.get("RoleIds")
|
|
75652
|
+
memeber_set = set(params.keys())
|
|
75653
|
+
for name, value in vars(self).items():
|
|
75654
|
+
property_name = name[1:]
|
|
75655
|
+
if property_name in memeber_set:
|
|
75656
|
+
memeber_set.remove(property_name)
|
|
75657
|
+
if len(memeber_set) > 0:
|
|
75658
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
75659
|
+
|
|
75660
|
+
|
|
75661
|
+
|
|
75662
|
+
class UpdateProjectUserRoleResponse(AbstractModel):
|
|
75663
|
+
"""UpdateProjectUserRole response structure.
|
|
75664
|
+
|
|
75665
|
+
"""
|
|
75666
|
+
|
|
75667
|
+
def __init__(self):
|
|
75668
|
+
r"""
|
|
75669
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
75670
|
+
:type RequestId: str
|
|
75671
|
+
"""
|
|
75672
|
+
self._RequestId = None
|
|
75673
|
+
|
|
75674
|
+
@property
|
|
75675
|
+
def RequestId(self):
|
|
75676
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
75677
|
+
:rtype: str
|
|
75678
|
+
"""
|
|
75679
|
+
return self._RequestId
|
|
75680
|
+
|
|
75681
|
+
@RequestId.setter
|
|
75682
|
+
def RequestId(self, RequestId):
|
|
75683
|
+
self._RequestId = RequestId
|
|
75684
|
+
|
|
75685
|
+
|
|
75686
|
+
def _deserialize(self, params):
|
|
75687
|
+
self._RequestId = params.get("RequestId")
|
|
75688
|
+
|
|
75689
|
+
|
|
74520
75690
|
class UpdateWorkflowOwnerRequest(AbstractModel):
|
|
74521
75691
|
"""UpdateWorkflowOwner request structure.
|
|
74522
75692
|
|