tencentcloud-sdk-nodejs-oceanus 4.1.230 → 4.1.234
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.
package/package.json
CHANGED
|
@@ -814,6 +814,14 @@ export interface Setats {
|
|
|
814
814
|
* <p>类型:0 公网,1 内网</p><p>枚举值:</p><ul><li>0: 公网</li><li>1: 内网</li></ul><p>默认值:0</p>
|
|
815
815
|
*/
|
|
816
816
|
WebUIType?: number;
|
|
817
|
+
/**
|
|
818
|
+
* <p>setats集群的名字</p>
|
|
819
|
+
*/
|
|
820
|
+
Name?: string;
|
|
821
|
+
/**
|
|
822
|
+
* <p>setats集群注释</p>
|
|
823
|
+
*/
|
|
824
|
+
Remark?: string;
|
|
817
825
|
}
|
|
818
826
|
/**
|
|
819
827
|
* 自定义树结构出参作业列表
|
|
@@ -2357,37 +2365,53 @@ export interface TriggerJobSavepointResponse {
|
|
|
2357
2365
|
*/
|
|
2358
2366
|
export interface VariableItem {
|
|
2359
2367
|
/**
|
|
2360
|
-
*
|
|
2368
|
+
* <p>变量id</p>
|
|
2361
2369
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2362
2370
|
*/
|
|
2363
2371
|
SerialId?: string;
|
|
2364
2372
|
/**
|
|
2365
|
-
*
|
|
2373
|
+
* <p>变量名</p>
|
|
2366
2374
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2367
2375
|
*/
|
|
2368
2376
|
Name?: string;
|
|
2369
2377
|
/**
|
|
2370
|
-
*
|
|
2378
|
+
* <p>变量值</p>
|
|
2371
2379
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2372
2380
|
*/
|
|
2373
2381
|
Value?: string;
|
|
2374
2382
|
/**
|
|
2375
|
-
*
|
|
2383
|
+
* <p>变量值类型</p><p>枚举值:</p><ul><li>0: 自定义变量</li><li>1: 凭据值</li></ul>
|
|
2384
|
+
*/
|
|
2385
|
+
ValueType?: number;
|
|
2386
|
+
/**
|
|
2387
|
+
* <p>凭据所在地域</p>
|
|
2388
|
+
*/
|
|
2389
|
+
SecretRegion?: string;
|
|
2390
|
+
/**
|
|
2391
|
+
* <p>凭据名称</p>
|
|
2392
|
+
*/
|
|
2393
|
+
SecretName?: string;
|
|
2394
|
+
/**
|
|
2395
|
+
* <p>凭据版本</p>
|
|
2396
|
+
*/
|
|
2397
|
+
SecretVersionId?: string;
|
|
2398
|
+
/**
|
|
2399
|
+
* <p>变量值是否隐藏</p>
|
|
2376
2400
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2377
2401
|
*/
|
|
2378
2402
|
Type?: number;
|
|
2379
2403
|
/**
|
|
2380
|
-
*
|
|
2404
|
+
* <p>变量描述</p>
|
|
2381
2405
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2382
2406
|
*/
|
|
2383
2407
|
Remark?: string;
|
|
2384
2408
|
/**
|
|
2385
|
-
*
|
|
2409
|
+
* <p>变量创建时间</p>
|
|
2386
2410
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2387
2411
|
*/
|
|
2388
2412
|
CreateTime?: string;
|
|
2389
2413
|
/**
|
|
2390
|
-
*
|
|
2414
|
+
* <p>变量创建人</p>
|
|
2391
2415
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2392
2416
|
*/
|
|
2393
2417
|
CreatorUin?: string;
|
|
@@ -2857,9 +2881,9 @@ export interface ExpertModeConfiguration {
|
|
|
2857
2881
|
*/
|
|
2858
2882
|
export interface CreateVariableResponse {
|
|
2859
2883
|
/**
|
|
2860
|
-
*
|
|
2884
|
+
* <p>变量Id</p>
|
|
2861
2885
|
*/
|
|
2862
|
-
VariableId
|
|
2886
|
+
VariableId?: string;
|
|
2863
2887
|
/**
|
|
2864
2888
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2865
2889
|
*/
|
|
@@ -3398,25 +3422,45 @@ export interface Cluster {
|
|
|
3398
3422
|
*/
|
|
3399
3423
|
export interface CreateVariableRequest {
|
|
3400
3424
|
/**
|
|
3401
|
-
*
|
|
3425
|
+
* <p>变量名</p>
|
|
3402
3426
|
*/
|
|
3403
3427
|
Name: string;
|
|
3404
3428
|
/**
|
|
3405
|
-
*
|
|
3429
|
+
* <p>变量值</p>
|
|
3406
3430
|
*/
|
|
3407
3431
|
Value: string;
|
|
3408
3432
|
/**
|
|
3409
|
-
*
|
|
3433
|
+
* <p>变量类型 1:显式 2:隐藏</p>
|
|
3410
3434
|
*/
|
|
3411
3435
|
Type: number;
|
|
3412
3436
|
/**
|
|
3413
|
-
*
|
|
3437
|
+
* <p>描述信息</p>
|
|
3414
3438
|
*/
|
|
3415
3439
|
Remark?: string;
|
|
3416
3440
|
/**
|
|
3417
|
-
*
|
|
3441
|
+
* <p>工作空间 SerialId</p>
|
|
3418
3442
|
*/
|
|
3419
3443
|
WorkSpaceId?: string;
|
|
3444
|
+
/**
|
|
3445
|
+
* <p>变量值类型</p><p>枚举值:</p><ul><li>0: 自定义变量</li><li>1: 凭据值</li></ul>
|
|
3446
|
+
*/
|
|
3447
|
+
ValueType?: number;
|
|
3448
|
+
/**
|
|
3449
|
+
* <p>凭据所在地域</p>
|
|
3450
|
+
*/
|
|
3451
|
+
SecretRegion?: string;
|
|
3452
|
+
/**
|
|
3453
|
+
* <p>凭据名称</p>
|
|
3454
|
+
*/
|
|
3455
|
+
SecretName?: string;
|
|
3456
|
+
/**
|
|
3457
|
+
* <p>凭据版本</p>
|
|
3458
|
+
*/
|
|
3459
|
+
SecretVersionId?: string;
|
|
3460
|
+
/**
|
|
3461
|
+
* <p>凭据值md5</p>
|
|
3462
|
+
*/
|
|
3463
|
+
SecretValueMd5?: string;
|
|
3420
3464
|
}
|
|
3421
3465
|
/**
|
|
3422
3466
|
* 作业运行图
|