@alicloud/sae20190506 1.23.1 → 1.23.3
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/dist/client.d.ts +1397 -58
- package/dist/client.js +1488 -69
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +1540 -58
package/src/client.ts
CHANGED
|
@@ -1934,6 +1934,37 @@ export class PathConfig extends $tea.Model {
|
|
|
1934
1934
|
}
|
|
1935
1935
|
}
|
|
1936
1936
|
|
|
1937
|
+
export class PermissionAssistantApi extends $tea.Model {
|
|
1938
|
+
createTime?: string;
|
|
1939
|
+
id?: number;
|
|
1940
|
+
name?: string;
|
|
1941
|
+
resourceType?: string;
|
|
1942
|
+
updateTime?: string;
|
|
1943
|
+
static names(): { [key: string]: string } {
|
|
1944
|
+
return {
|
|
1945
|
+
createTime: 'createTime',
|
|
1946
|
+
id: 'id',
|
|
1947
|
+
name: 'name',
|
|
1948
|
+
resourceType: 'resourceType',
|
|
1949
|
+
updateTime: 'updateTime',
|
|
1950
|
+
};
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
static types(): { [key: string]: any } {
|
|
1954
|
+
return {
|
|
1955
|
+
createTime: 'string',
|
|
1956
|
+
id: 'number',
|
|
1957
|
+
name: 'string',
|
|
1958
|
+
resourceType: 'string',
|
|
1959
|
+
updateTime: 'string',
|
|
1960
|
+
};
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
constructor(map?: { [key: string]: any }) {
|
|
1964
|
+
super(map);
|
|
1965
|
+
}
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1937
1968
|
export class PolicyItem extends $tea.Model {
|
|
1938
1969
|
key?: string;
|
|
1939
1970
|
operator?: string;
|
|
@@ -2325,6 +2356,34 @@ export class StaticsInfo extends $tea.Model {
|
|
|
2325
2356
|
}
|
|
2326
2357
|
}
|
|
2327
2358
|
|
|
2359
|
+
export class Submenu extends $tea.Model {
|
|
2360
|
+
items?: SubmenuItems[];
|
|
2361
|
+
submenuDesc?: string;
|
|
2362
|
+
submenuType?: string;
|
|
2363
|
+
submenus?: Submenu[];
|
|
2364
|
+
static names(): { [key: string]: string } {
|
|
2365
|
+
return {
|
|
2366
|
+
items: 'Items',
|
|
2367
|
+
submenuDesc: 'SubmenuDesc',
|
|
2368
|
+
submenuType: 'SubmenuType',
|
|
2369
|
+
submenus: 'Submenus',
|
|
2370
|
+
};
|
|
2371
|
+
}
|
|
2372
|
+
|
|
2373
|
+
static types(): { [key: string]: any } {
|
|
2374
|
+
return {
|
|
2375
|
+
items: { 'type': 'array', 'itemType': SubmenuItems },
|
|
2376
|
+
submenuDesc: 'string',
|
|
2377
|
+
submenuType: 'string',
|
|
2378
|
+
submenus: { 'type': 'array', 'itemType': Submenu },
|
|
2379
|
+
};
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2382
|
+
constructor(map?: { [key: string]: any }) {
|
|
2383
|
+
super(map);
|
|
2384
|
+
}
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2328
2387
|
export class TLSConfig extends $tea.Model {
|
|
2329
2388
|
cipherSuites?: string[];
|
|
2330
2389
|
maxVersion?: string;
|
|
@@ -3321,6 +3380,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
3321
3380
|
appSource?: string;
|
|
3322
3381
|
associateEip?: boolean;
|
|
3323
3382
|
autoConfig?: boolean;
|
|
3383
|
+
baseAppId?: string;
|
|
3324
3384
|
command?: string;
|
|
3325
3385
|
commandArgs?: string;
|
|
3326
3386
|
configMapMountDesc?: string;
|
|
@@ -3339,6 +3399,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
3339
3399
|
liveness?: string;
|
|
3340
3400
|
memory?: number;
|
|
3341
3401
|
microRegistration?: string;
|
|
3402
|
+
microRegistrationConfig?: string;
|
|
3342
3403
|
mountDesc?: string;
|
|
3343
3404
|
mountHost?: string;
|
|
3344
3405
|
namespaceId?: string;
|
|
@@ -3364,6 +3425,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
3364
3425
|
replicas?: number;
|
|
3365
3426
|
saeVersion?: string;
|
|
3366
3427
|
securityGroupId?: string;
|
|
3428
|
+
serviceTags?: string;
|
|
3367
3429
|
slsConfigs?: string;
|
|
3368
3430
|
terminationGracePeriodSeconds?: number;
|
|
3369
3431
|
timezone?: string;
|
|
@@ -3381,6 +3443,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
3381
3443
|
appSource: 'AppSource',
|
|
3382
3444
|
associateEip: 'AssociateEip',
|
|
3383
3445
|
autoConfig: 'AutoConfig',
|
|
3446
|
+
baseAppId: 'BaseAppId',
|
|
3384
3447
|
command: 'Command',
|
|
3385
3448
|
commandArgs: 'CommandArgs',
|
|
3386
3449
|
configMapMountDesc: 'ConfigMapMountDesc',
|
|
@@ -3399,6 +3462,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
3399
3462
|
liveness: 'Liveness',
|
|
3400
3463
|
memory: 'Memory',
|
|
3401
3464
|
microRegistration: 'MicroRegistration',
|
|
3465
|
+
microRegistrationConfig: 'MicroRegistrationConfig',
|
|
3402
3466
|
mountDesc: 'MountDesc',
|
|
3403
3467
|
mountHost: 'MountHost',
|
|
3404
3468
|
namespaceId: 'NamespaceId',
|
|
@@ -3424,6 +3488,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
3424
3488
|
replicas: 'Replicas',
|
|
3425
3489
|
saeVersion: 'SaeVersion',
|
|
3426
3490
|
securityGroupId: 'SecurityGroupId',
|
|
3491
|
+
serviceTags: 'ServiceTags',
|
|
3427
3492
|
slsConfigs: 'SlsConfigs',
|
|
3428
3493
|
terminationGracePeriodSeconds: 'TerminationGracePeriodSeconds',
|
|
3429
3494
|
timezone: 'Timezone',
|
|
@@ -3444,6 +3509,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
3444
3509
|
appSource: 'string',
|
|
3445
3510
|
associateEip: 'boolean',
|
|
3446
3511
|
autoConfig: 'boolean',
|
|
3512
|
+
baseAppId: 'string',
|
|
3447
3513
|
command: 'string',
|
|
3448
3514
|
commandArgs: 'string',
|
|
3449
3515
|
configMapMountDesc: 'string',
|
|
@@ -3462,6 +3528,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
3462
3528
|
liveness: 'string',
|
|
3463
3529
|
memory: 'number',
|
|
3464
3530
|
microRegistration: 'string',
|
|
3531
|
+
microRegistrationConfig: 'string',
|
|
3465
3532
|
mountDesc: 'string',
|
|
3466
3533
|
mountHost: 'string',
|
|
3467
3534
|
namespaceId: 'string',
|
|
@@ -3487,6 +3554,7 @@ export class CreateApplicationRequest extends $tea.Model {
|
|
|
3487
3554
|
replicas: 'number',
|
|
3488
3555
|
saeVersion: 'string',
|
|
3489
3556
|
securityGroupId: 'string',
|
|
3557
|
+
serviceTags: 'string',
|
|
3490
3558
|
slsConfigs: 'string',
|
|
3491
3559
|
terminationGracePeriodSeconds: 'number',
|
|
3492
3560
|
timezone: 'string',
|
|
@@ -5174,6 +5242,7 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
5174
5242
|
liveness?: string;
|
|
5175
5243
|
memory?: number;
|
|
5176
5244
|
microRegistration?: string;
|
|
5245
|
+
microRegistrationConfig?: string;
|
|
5177
5246
|
minReadyInstanceRatio?: number;
|
|
5178
5247
|
minReadyInstances?: number;
|
|
5179
5248
|
mountDesc?: string;
|
|
@@ -5198,6 +5267,7 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
5198
5267
|
readiness?: string;
|
|
5199
5268
|
replicas?: number;
|
|
5200
5269
|
securityGroupId?: string;
|
|
5270
|
+
serviceTags?: string;
|
|
5201
5271
|
slsConfigs?: string;
|
|
5202
5272
|
terminationGracePeriodSeconds?: number;
|
|
5203
5273
|
timezone?: string;
|
|
@@ -5234,6 +5304,7 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
5234
5304
|
liveness: 'Liveness',
|
|
5235
5305
|
memory: 'Memory',
|
|
5236
5306
|
microRegistration: 'MicroRegistration',
|
|
5307
|
+
microRegistrationConfig: 'MicroRegistrationConfig',
|
|
5237
5308
|
minReadyInstanceRatio: 'MinReadyInstanceRatio',
|
|
5238
5309
|
minReadyInstances: 'MinReadyInstances',
|
|
5239
5310
|
mountDesc: 'MountDesc',
|
|
@@ -5258,6 +5329,7 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
5258
5329
|
readiness: 'Readiness',
|
|
5259
5330
|
replicas: 'Replicas',
|
|
5260
5331
|
securityGroupId: 'SecurityGroupId',
|
|
5332
|
+
serviceTags: 'ServiceTags',
|
|
5261
5333
|
slsConfigs: 'SlsConfigs',
|
|
5262
5334
|
terminationGracePeriodSeconds: 'TerminationGracePeriodSeconds',
|
|
5263
5335
|
timezone: 'Timezone',
|
|
@@ -5297,6 +5369,7 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
5297
5369
|
liveness: 'string',
|
|
5298
5370
|
memory: 'number',
|
|
5299
5371
|
microRegistration: 'string',
|
|
5372
|
+
microRegistrationConfig: 'string',
|
|
5300
5373
|
minReadyInstanceRatio: 'number',
|
|
5301
5374
|
minReadyInstances: 'number',
|
|
5302
5375
|
mountDesc: 'string',
|
|
@@ -5321,6 +5394,7 @@ export class DeployApplicationRequest extends $tea.Model {
|
|
|
5321
5394
|
readiness: 'string',
|
|
5322
5395
|
replicas: 'number',
|
|
5323
5396
|
securityGroupId: 'string',
|
|
5397
|
+
serviceTags: 'string',
|
|
5324
5398
|
slsConfigs: 'string',
|
|
5325
5399
|
terminationGracePeriodSeconds: 'number',
|
|
5326
5400
|
timezone: 'string',
|
|
@@ -5401,6 +5475,8 @@ export class DeployApplicationResponse extends $tea.Model {
|
|
|
5401
5475
|
|
|
5402
5476
|
export class DescribeAppServiceDetailRequest extends $tea.Model {
|
|
5403
5477
|
appId?: string;
|
|
5478
|
+
nacosInstanceId?: string;
|
|
5479
|
+
nacosNamespaceId?: string;
|
|
5404
5480
|
serviceGroup?: string;
|
|
5405
5481
|
serviceName?: string;
|
|
5406
5482
|
serviceType?: string;
|
|
@@ -5408,6 +5484,8 @@ export class DescribeAppServiceDetailRequest extends $tea.Model {
|
|
|
5408
5484
|
static names(): { [key: string]: string } {
|
|
5409
5485
|
return {
|
|
5410
5486
|
appId: 'AppId',
|
|
5487
|
+
nacosInstanceId: 'NacosInstanceId',
|
|
5488
|
+
nacosNamespaceId: 'NacosNamespaceId',
|
|
5411
5489
|
serviceGroup: 'ServiceGroup',
|
|
5412
5490
|
serviceName: 'ServiceName',
|
|
5413
5491
|
serviceType: 'ServiceType',
|
|
@@ -5418,6 +5496,8 @@ export class DescribeAppServiceDetailRequest extends $tea.Model {
|
|
|
5418
5496
|
static types(): { [key: string]: any } {
|
|
5419
5497
|
return {
|
|
5420
5498
|
appId: 'string',
|
|
5499
|
+
nacosInstanceId: 'string',
|
|
5500
|
+
nacosNamespaceId: 'string',
|
|
5421
5501
|
serviceGroup: 'string',
|
|
5422
5502
|
serviceName: 'string',
|
|
5423
5503
|
serviceType: 'string',
|
|
@@ -12839,6 +12919,34 @@ export class SourceCodeAccountOrganizations extends $tea.Model {
|
|
|
12839
12919
|
}
|
|
12840
12920
|
}
|
|
12841
12921
|
|
|
12922
|
+
export class SubmenuItems extends $tea.Model {
|
|
12923
|
+
defaultSelected?: boolean;
|
|
12924
|
+
itemDesc?: string;
|
|
12925
|
+
itemType?: string;
|
|
12926
|
+
relatingItems?: string[];
|
|
12927
|
+
static names(): { [key: string]: string } {
|
|
12928
|
+
return {
|
|
12929
|
+
defaultSelected: 'DefaultSelected',
|
|
12930
|
+
itemDesc: 'ItemDesc',
|
|
12931
|
+
itemType: 'ItemType',
|
|
12932
|
+
relatingItems: 'RelatingItems',
|
|
12933
|
+
};
|
|
12934
|
+
}
|
|
12935
|
+
|
|
12936
|
+
static types(): { [key: string]: any } {
|
|
12937
|
+
return {
|
|
12938
|
+
defaultSelected: 'boolean',
|
|
12939
|
+
itemDesc: 'string',
|
|
12940
|
+
itemType: 'string',
|
|
12941
|
+
relatingItems: { 'type': 'array', 'itemType': 'string' },
|
|
12942
|
+
};
|
|
12943
|
+
}
|
|
12944
|
+
|
|
12945
|
+
constructor(map?: { [key: string]: any }) {
|
|
12946
|
+
super(map);
|
|
12947
|
+
}
|
|
12948
|
+
}
|
|
12949
|
+
|
|
12842
12950
|
export class AbortAndRollbackChangeOrderResponseBodyData extends $tea.Model {
|
|
12843
12951
|
changeOrderId?: string;
|
|
12844
12952
|
static names(): { [key: string]: string } {
|
|
@@ -13482,6 +13590,9 @@ export class DescribeAppServiceDetailResponseBodyData extends $tea.Model {
|
|
|
13482
13590
|
metadata?: { [key: string]: any };
|
|
13483
13591
|
methods?: DescribeAppServiceDetailResponseBodyDataMethods[];
|
|
13484
13592
|
serviceName?: string;
|
|
13593
|
+
servicePorts?: number[];
|
|
13594
|
+
serviceProtocol?: string;
|
|
13595
|
+
serviceTags?: string[];
|
|
13485
13596
|
serviceType?: string;
|
|
13486
13597
|
springApplicationName?: string;
|
|
13487
13598
|
version?: string;
|
|
@@ -13493,6 +13604,9 @@ export class DescribeAppServiceDetailResponseBodyData extends $tea.Model {
|
|
|
13493
13604
|
metadata: 'Metadata',
|
|
13494
13605
|
methods: 'Methods',
|
|
13495
13606
|
serviceName: 'ServiceName',
|
|
13607
|
+
servicePorts: 'ServicePorts',
|
|
13608
|
+
serviceProtocol: 'ServiceProtocol',
|
|
13609
|
+
serviceTags: 'ServiceTags',
|
|
13496
13610
|
serviceType: 'ServiceType',
|
|
13497
13611
|
springApplicationName: 'SpringApplicationName',
|
|
13498
13612
|
version: 'Version',
|
|
@@ -13507,6 +13621,9 @@ export class DescribeAppServiceDetailResponseBodyData extends $tea.Model {
|
|
|
13507
13621
|
metadata: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
13508
13622
|
methods: { 'type': 'array', 'itemType': DescribeAppServiceDetailResponseBodyDataMethods },
|
|
13509
13623
|
serviceName: 'string',
|
|
13624
|
+
servicePorts: { 'type': 'array', 'itemType': 'number' },
|
|
13625
|
+
serviceProtocol: 'string',
|
|
13626
|
+
serviceTags: { 'type': 'array', 'itemType': 'string' },
|
|
13510
13627
|
serviceType: 'string',
|
|
13511
13628
|
springApplicationName: 'string',
|
|
13512
13629
|
version: 'string',
|
|
@@ -13674,6 +13791,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
13674
13791
|
regionId?: string;
|
|
13675
13792
|
replicas?: number;
|
|
13676
13793
|
securityGroupId?: string;
|
|
13794
|
+
serviceTags?: { [key: string]: string };
|
|
13677
13795
|
slsConfigs?: string;
|
|
13678
13796
|
tags?: DescribeApplicationConfigResponseBodyDataTags[];
|
|
13679
13797
|
terminationGracePeriodSeconds?: number;
|
|
@@ -13741,6 +13859,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
13741
13859
|
regionId: 'RegionId',
|
|
13742
13860
|
replicas: 'Replicas',
|
|
13743
13861
|
securityGroupId: 'SecurityGroupId',
|
|
13862
|
+
serviceTags: 'ServiceTags',
|
|
13744
13863
|
slsConfigs: 'SlsConfigs',
|
|
13745
13864
|
tags: 'Tags',
|
|
13746
13865
|
terminationGracePeriodSeconds: 'TerminationGracePeriodSeconds',
|
|
@@ -13811,6 +13930,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
13811
13930
|
regionId: 'string',
|
|
13812
13931
|
replicas: 'number',
|
|
13813
13932
|
securityGroupId: 'string',
|
|
13933
|
+
serviceTags: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
13814
13934
|
slsConfigs: 'string',
|
|
13815
13935
|
tags: { 'type': 'array', 'itemType': DescribeApplicationConfigResponseBodyDataTags },
|
|
13816
13936
|
terminationGracePeriodSeconds: 'number',
|
|
@@ -16959,6 +17079,92 @@ export class ListAppVersionsResponseBodyData extends $tea.Model {
|
|
|
16959
17079
|
}
|
|
16960
17080
|
}
|
|
16961
17081
|
|
|
17082
|
+
export class ListApplicationsResponseBodyDataApplicationsChildrenTags extends $tea.Model {
|
|
17083
|
+
key?: string;
|
|
17084
|
+
value?: string;
|
|
17085
|
+
static names(): { [key: string]: string } {
|
|
17086
|
+
return {
|
|
17087
|
+
key: 'Key',
|
|
17088
|
+
value: 'Value',
|
|
17089
|
+
};
|
|
17090
|
+
}
|
|
17091
|
+
|
|
17092
|
+
static types(): { [key: string]: any } {
|
|
17093
|
+
return {
|
|
17094
|
+
key: 'string',
|
|
17095
|
+
value: 'string',
|
|
17096
|
+
};
|
|
17097
|
+
}
|
|
17098
|
+
|
|
17099
|
+
constructor(map?: { [key: string]: any }) {
|
|
17100
|
+
super(map);
|
|
17101
|
+
}
|
|
17102
|
+
}
|
|
17103
|
+
|
|
17104
|
+
export class ListApplicationsResponseBodyDataApplicationsChildren extends $tea.Model {
|
|
17105
|
+
appDeletingStatus?: boolean;
|
|
17106
|
+
appDescription?: string;
|
|
17107
|
+
appId?: string;
|
|
17108
|
+
appName?: string;
|
|
17109
|
+
baseAppId?: string;
|
|
17110
|
+
cpu?: number;
|
|
17111
|
+
instances?: number;
|
|
17112
|
+
mem?: number;
|
|
17113
|
+
mseEnabled?: boolean;
|
|
17114
|
+
namespaceId?: string;
|
|
17115
|
+
programmingLanguage?: string;
|
|
17116
|
+
regionId?: string;
|
|
17117
|
+
runningInstances?: number;
|
|
17118
|
+
scaleRuleEnabled?: boolean;
|
|
17119
|
+
scaleRuleType?: string;
|
|
17120
|
+
tags?: ListApplicationsResponseBodyDataApplicationsChildrenTags[];
|
|
17121
|
+
static names(): { [key: string]: string } {
|
|
17122
|
+
return {
|
|
17123
|
+
appDeletingStatus: 'AppDeletingStatus',
|
|
17124
|
+
appDescription: 'AppDescription',
|
|
17125
|
+
appId: 'AppId',
|
|
17126
|
+
appName: 'AppName',
|
|
17127
|
+
baseAppId: 'BaseAppId',
|
|
17128
|
+
cpu: 'Cpu',
|
|
17129
|
+
instances: 'Instances',
|
|
17130
|
+
mem: 'Mem',
|
|
17131
|
+
mseEnabled: 'MseEnabled',
|
|
17132
|
+
namespaceId: 'NamespaceId',
|
|
17133
|
+
programmingLanguage: 'ProgrammingLanguage',
|
|
17134
|
+
regionId: 'RegionId',
|
|
17135
|
+
runningInstances: 'RunningInstances',
|
|
17136
|
+
scaleRuleEnabled: 'ScaleRuleEnabled',
|
|
17137
|
+
scaleRuleType: 'ScaleRuleType',
|
|
17138
|
+
tags: 'Tags',
|
|
17139
|
+
};
|
|
17140
|
+
}
|
|
17141
|
+
|
|
17142
|
+
static types(): { [key: string]: any } {
|
|
17143
|
+
return {
|
|
17144
|
+
appDeletingStatus: 'boolean',
|
|
17145
|
+
appDescription: 'string',
|
|
17146
|
+
appId: 'string',
|
|
17147
|
+
appName: 'string',
|
|
17148
|
+
baseAppId: 'string',
|
|
17149
|
+
cpu: 'number',
|
|
17150
|
+
instances: 'number',
|
|
17151
|
+
mem: 'number',
|
|
17152
|
+
mseEnabled: 'boolean',
|
|
17153
|
+
namespaceId: 'string',
|
|
17154
|
+
programmingLanguage: 'string',
|
|
17155
|
+
regionId: 'string',
|
|
17156
|
+
runningInstances: 'number',
|
|
17157
|
+
scaleRuleEnabled: 'boolean',
|
|
17158
|
+
scaleRuleType: 'string',
|
|
17159
|
+
tags: { 'type': 'array', 'itemType': ListApplicationsResponseBodyDataApplicationsChildrenTags },
|
|
17160
|
+
};
|
|
17161
|
+
}
|
|
17162
|
+
|
|
17163
|
+
constructor(map?: { [key: string]: any }) {
|
|
17164
|
+
super(map);
|
|
17165
|
+
}
|
|
17166
|
+
}
|
|
17167
|
+
|
|
16962
17168
|
export class ListApplicationsResponseBodyDataApplicationsTags extends $tea.Model {
|
|
16963
17169
|
key?: string;
|
|
16964
17170
|
value?: string;
|
|
@@ -16986,10 +17192,14 @@ export class ListApplicationsResponseBodyDataApplications extends $tea.Model {
|
|
|
16986
17192
|
appDescription?: string;
|
|
16987
17193
|
appId?: string;
|
|
16988
17194
|
appName?: string;
|
|
17195
|
+
baseAppId?: string;
|
|
17196
|
+
children?: ListApplicationsResponseBodyDataApplicationsChildren[];
|
|
16989
17197
|
cpu?: number;
|
|
16990
17198
|
instances?: number;
|
|
16991
17199
|
mem?: number;
|
|
17200
|
+
mseEnabled?: boolean;
|
|
16992
17201
|
namespaceId?: string;
|
|
17202
|
+
programmingLanguage?: string;
|
|
16993
17203
|
regionId?: string;
|
|
16994
17204
|
runningInstances?: number;
|
|
16995
17205
|
tags?: ListApplicationsResponseBodyDataApplicationsTags[];
|
|
@@ -16999,10 +17209,14 @@ export class ListApplicationsResponseBodyDataApplications extends $tea.Model {
|
|
|
16999
17209
|
appDescription: 'AppDescription',
|
|
17000
17210
|
appId: 'AppId',
|
|
17001
17211
|
appName: 'AppName',
|
|
17212
|
+
baseAppId: 'BaseAppId',
|
|
17213
|
+
children: 'Children',
|
|
17002
17214
|
cpu: 'Cpu',
|
|
17003
17215
|
instances: 'Instances',
|
|
17004
17216
|
mem: 'Mem',
|
|
17217
|
+
mseEnabled: 'MseEnabled',
|
|
17005
17218
|
namespaceId: 'NamespaceId',
|
|
17219
|
+
programmingLanguage: 'ProgrammingLanguage',
|
|
17006
17220
|
regionId: 'RegionId',
|
|
17007
17221
|
runningInstances: 'RunningInstances',
|
|
17008
17222
|
tags: 'Tags',
|
|
@@ -17015,10 +17229,14 @@ export class ListApplicationsResponseBodyDataApplications extends $tea.Model {
|
|
|
17015
17229
|
appDescription: 'string',
|
|
17016
17230
|
appId: 'string',
|
|
17017
17231
|
appName: 'string',
|
|
17232
|
+
baseAppId: 'string',
|
|
17233
|
+
children: { 'type': 'array', 'itemType': ListApplicationsResponseBodyDataApplicationsChildren },
|
|
17018
17234
|
cpu: 'number',
|
|
17019
17235
|
instances: 'number',
|
|
17020
17236
|
mem: 'number',
|
|
17237
|
+
mseEnabled: 'boolean',
|
|
17021
17238
|
namespaceId: 'string',
|
|
17239
|
+
programmingLanguage: 'string',
|
|
17022
17240
|
regionId: 'string',
|
|
17023
17241
|
runningInstances: 'number',
|
|
17024
17242
|
tags: { 'type': 'array', 'itemType': ListApplicationsResponseBodyDataApplicationsTags },
|
|
@@ -18619,6 +18837,14 @@ export default class Client extends OpenApi {
|
|
|
18619
18837
|
return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
|
|
18620
18838
|
}
|
|
18621
18839
|
|
|
18840
|
+
/**
|
|
18841
|
+
* @summary ba386059-69b1-4e65-b1e5-0682d9fa\\*\\*\\*\\*
|
|
18842
|
+
*
|
|
18843
|
+
* @param request AbortAndRollbackChangeOrderRequest
|
|
18844
|
+
* @param headers map
|
|
18845
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18846
|
+
* @return AbortAndRollbackChangeOrderResponse
|
|
18847
|
+
*/
|
|
18622
18848
|
async abortAndRollbackChangeOrderWithOptions(request: AbortAndRollbackChangeOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<AbortAndRollbackChangeOrderResponse> {
|
|
18623
18849
|
Util.validateModel(request);
|
|
18624
18850
|
let query : {[key: string ]: any} = { };
|
|
@@ -18644,12 +18870,24 @@ export default class Client extends OpenApi {
|
|
|
18644
18870
|
return $tea.cast<AbortAndRollbackChangeOrderResponse>(await this.callApi(params, req, runtime), new AbortAndRollbackChangeOrderResponse({}));
|
|
18645
18871
|
}
|
|
18646
18872
|
|
|
18873
|
+
/**
|
|
18874
|
+
* @summary ba386059-69b1-4e65-b1e5-0682d9fa\\*\\*\\*\\*
|
|
18875
|
+
*
|
|
18876
|
+
* @param request AbortAndRollbackChangeOrderRequest
|
|
18877
|
+
* @return AbortAndRollbackChangeOrderResponse
|
|
18878
|
+
*/
|
|
18647
18879
|
async abortAndRollbackChangeOrder(request: AbortAndRollbackChangeOrderRequest): Promise<AbortAndRollbackChangeOrderResponse> {
|
|
18648
18880
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18649
18881
|
let headers : {[key: string ]: string} = { };
|
|
18650
18882
|
return await this.abortAndRollbackChangeOrderWithOptions(request, headers, runtime);
|
|
18651
18883
|
}
|
|
18652
18884
|
|
|
18885
|
+
/**
|
|
18886
|
+
* @param request AbortChangeOrderRequest
|
|
18887
|
+
* @param headers map
|
|
18888
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18889
|
+
* @return AbortChangeOrderResponse
|
|
18890
|
+
*/
|
|
18653
18891
|
async abortChangeOrderWithOptions(request: AbortChangeOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<AbortChangeOrderResponse> {
|
|
18654
18892
|
Util.validateModel(request);
|
|
18655
18893
|
let query : {[key: string ]: any} = { };
|
|
@@ -18675,12 +18913,24 @@ export default class Client extends OpenApi {
|
|
|
18675
18913
|
return $tea.cast<AbortChangeOrderResponse>(await this.callApi(params, req, runtime), new AbortChangeOrderResponse({}));
|
|
18676
18914
|
}
|
|
18677
18915
|
|
|
18916
|
+
/**
|
|
18917
|
+
* @param request AbortChangeOrderRequest
|
|
18918
|
+
* @return AbortChangeOrderResponse
|
|
18919
|
+
*/
|
|
18678
18920
|
async abortChangeOrder(request: AbortChangeOrderRequest): Promise<AbortChangeOrderResponse> {
|
|
18679
18921
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18680
18922
|
let headers : {[key: string ]: string} = { };
|
|
18681
18923
|
return await this.abortChangeOrderWithOptions(request, headers, runtime);
|
|
18682
18924
|
}
|
|
18683
18925
|
|
|
18926
|
+
/**
|
|
18927
|
+
* @summary cn-shanghai
|
|
18928
|
+
*
|
|
18929
|
+
* @param request BatchStartApplicationsRequest
|
|
18930
|
+
* @param headers map
|
|
18931
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18932
|
+
* @return BatchStartApplicationsResponse
|
|
18933
|
+
*/
|
|
18684
18934
|
async batchStartApplicationsWithOptions(request: BatchStartApplicationsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BatchStartApplicationsResponse> {
|
|
18685
18935
|
Util.validateModel(request);
|
|
18686
18936
|
let query : {[key: string ]: any} = { };
|
|
@@ -18714,12 +18964,24 @@ export default class Client extends OpenApi {
|
|
|
18714
18964
|
return $tea.cast<BatchStartApplicationsResponse>(await this.callApi(params, req, runtime), new BatchStartApplicationsResponse({}));
|
|
18715
18965
|
}
|
|
18716
18966
|
|
|
18967
|
+
/**
|
|
18968
|
+
* @summary cn-shanghai
|
|
18969
|
+
*
|
|
18970
|
+
* @param request BatchStartApplicationsRequest
|
|
18971
|
+
* @return BatchStartApplicationsResponse
|
|
18972
|
+
*/
|
|
18717
18973
|
async batchStartApplications(request: BatchStartApplicationsRequest): Promise<BatchStartApplicationsResponse> {
|
|
18718
18974
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18719
18975
|
let headers : {[key: string ]: string} = { };
|
|
18720
18976
|
return await this.batchStartApplicationsWithOptions(request, headers, runtime);
|
|
18721
18977
|
}
|
|
18722
18978
|
|
|
18979
|
+
/**
|
|
18980
|
+
* @param request BatchStopApplicationsRequest
|
|
18981
|
+
* @param headers map
|
|
18982
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18983
|
+
* @return BatchStopApplicationsResponse
|
|
18984
|
+
*/
|
|
18723
18985
|
async batchStopApplicationsWithOptions(request: BatchStopApplicationsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BatchStopApplicationsResponse> {
|
|
18724
18986
|
Util.validateModel(request);
|
|
18725
18987
|
let query : {[key: string ]: any} = { };
|
|
@@ -18753,12 +19015,22 @@ export default class Client extends OpenApi {
|
|
|
18753
19015
|
return $tea.cast<BatchStopApplicationsResponse>(await this.callApi(params, req, runtime), new BatchStopApplicationsResponse({}));
|
|
18754
19016
|
}
|
|
18755
19017
|
|
|
19018
|
+
/**
|
|
19019
|
+
* @param request BatchStopApplicationsRequest
|
|
19020
|
+
* @return BatchStopApplicationsResponse
|
|
19021
|
+
*/
|
|
18756
19022
|
async batchStopApplications(request: BatchStopApplicationsRequest): Promise<BatchStopApplicationsResponse> {
|
|
18757
19023
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18758
19024
|
let headers : {[key: string ]: string} = { };
|
|
18759
19025
|
return await this.batchStopApplicationsWithOptions(request, headers, runtime);
|
|
18760
19026
|
}
|
|
18761
19027
|
|
|
19028
|
+
/**
|
|
19029
|
+
* @param request BindSlbRequest
|
|
19030
|
+
* @param headers map
|
|
19031
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19032
|
+
* @return BindSlbResponse
|
|
19033
|
+
*/
|
|
18762
19034
|
async bindSlbWithOptions(request: BindSlbRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BindSlbResponse> {
|
|
18763
19035
|
Util.validateModel(request);
|
|
18764
19036
|
let query : {[key: string ]: any} = { };
|
|
@@ -18800,12 +19072,22 @@ export default class Client extends OpenApi {
|
|
|
18800
19072
|
return $tea.cast<BindSlbResponse>(await this.callApi(params, req, runtime), new BindSlbResponse({}));
|
|
18801
19073
|
}
|
|
18802
19074
|
|
|
19075
|
+
/**
|
|
19076
|
+
* @param request BindSlbRequest
|
|
19077
|
+
* @return BindSlbResponse
|
|
19078
|
+
*/
|
|
18803
19079
|
async bindSlb(request: BindSlbRequest): Promise<BindSlbResponse> {
|
|
18804
19080
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18805
19081
|
let headers : {[key: string ]: string} = { };
|
|
18806
19082
|
return await this.bindSlbWithOptions(request, headers, runtime);
|
|
18807
19083
|
}
|
|
18808
19084
|
|
|
19085
|
+
/**
|
|
19086
|
+
* @param request ConfirmPipelineBatchRequest
|
|
19087
|
+
* @param headers map
|
|
19088
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19089
|
+
* @return ConfirmPipelineBatchResponse
|
|
19090
|
+
*/
|
|
18809
19091
|
async confirmPipelineBatchWithOptions(request: ConfirmPipelineBatchRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ConfirmPipelineBatchResponse> {
|
|
18810
19092
|
Util.validateModel(request);
|
|
18811
19093
|
let query : {[key: string ]: any} = { };
|
|
@@ -18835,12 +19117,22 @@ export default class Client extends OpenApi {
|
|
|
18835
19117
|
return $tea.cast<ConfirmPipelineBatchResponse>(await this.callApi(params, req, runtime), new ConfirmPipelineBatchResponse({}));
|
|
18836
19118
|
}
|
|
18837
19119
|
|
|
19120
|
+
/**
|
|
19121
|
+
* @param request ConfirmPipelineBatchRequest
|
|
19122
|
+
* @return ConfirmPipelineBatchResponse
|
|
19123
|
+
*/
|
|
18838
19124
|
async confirmPipelineBatch(request: ConfirmPipelineBatchRequest): Promise<ConfirmPipelineBatchResponse> {
|
|
18839
19125
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18840
19126
|
let headers : {[key: string ]: string} = { };
|
|
18841
19127
|
return await this.confirmPipelineBatchWithOptions(request, headers, runtime);
|
|
18842
19128
|
}
|
|
18843
19129
|
|
|
19130
|
+
/**
|
|
19131
|
+
* @param request CreateApplicationRequest
|
|
19132
|
+
* @param headers map
|
|
19133
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19134
|
+
* @return CreateApplicationResponse
|
|
19135
|
+
*/
|
|
18844
19136
|
async createApplicationWithOptions(request: CreateApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateApplicationResponse> {
|
|
18845
19137
|
Util.validateModel(request);
|
|
18846
19138
|
let query : {[key: string ]: any} = { };
|
|
@@ -19053,10 +19345,18 @@ export default class Client extends OpenApi {
|
|
|
19053
19345
|
body["AssociateEip"] = request.associateEip;
|
|
19054
19346
|
}
|
|
19055
19347
|
|
|
19348
|
+
if (!Util.isUnset(request.baseAppId)) {
|
|
19349
|
+
body["BaseAppId"] = request.baseAppId;
|
|
19350
|
+
}
|
|
19351
|
+
|
|
19056
19352
|
if (!Util.isUnset(request.configMapMountDesc)) {
|
|
19057
19353
|
body["ConfigMapMountDesc"] = request.configMapMountDesc;
|
|
19058
19354
|
}
|
|
19059
19355
|
|
|
19356
|
+
if (!Util.isUnset(request.microRegistrationConfig)) {
|
|
19357
|
+
body["MicroRegistrationConfig"] = request.microRegistrationConfig;
|
|
19358
|
+
}
|
|
19359
|
+
|
|
19060
19360
|
if (!Util.isUnset(request.ossAkId)) {
|
|
19061
19361
|
body["OssAkId"] = request.ossAkId;
|
|
19062
19362
|
}
|
|
@@ -19077,6 +19377,10 @@ export default class Client extends OpenApi {
|
|
|
19077
19377
|
body["PhpConfig"] = request.phpConfig;
|
|
19078
19378
|
}
|
|
19079
19379
|
|
|
19380
|
+
if (!Util.isUnset(request.serviceTags)) {
|
|
19381
|
+
body["ServiceTags"] = request.serviceTags;
|
|
19382
|
+
}
|
|
19383
|
+
|
|
19080
19384
|
let req = new $OpenApi.OpenApiRequest({
|
|
19081
19385
|
headers: headers,
|
|
19082
19386
|
query: OpenApiUtil.query(query),
|
|
@@ -19096,6 +19400,10 @@ export default class Client extends OpenApi {
|
|
|
19096
19400
|
return $tea.cast<CreateApplicationResponse>(await this.callApi(params, req, runtime), new CreateApplicationResponse({}));
|
|
19097
19401
|
}
|
|
19098
19402
|
|
|
19403
|
+
/**
|
|
19404
|
+
* @param request CreateApplicationRequest
|
|
19405
|
+
* @return CreateApplicationResponse
|
|
19406
|
+
*/
|
|
19099
19407
|
async createApplication(request: CreateApplicationRequest): Promise<CreateApplicationResponse> {
|
|
19100
19408
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19101
19409
|
let headers : {[key: string ]: string} = { };
|
|
@@ -19103,16 +19411,18 @@ export default class Client extends OpenApi {
|
|
|
19103
19411
|
}
|
|
19104
19412
|
|
|
19105
19413
|
/**
|
|
19106
|
-
|
|
19107
|
-
|
|
19108
|
-
|
|
19109
|
-
|
|
19110
|
-
|
|
19111
|
-
|
|
19112
|
-
|
|
19113
|
-
|
|
19114
|
-
|
|
19115
|
-
|
|
19414
|
+
* @summary Null
|
|
19415
|
+
*
|
|
19416
|
+
* @description The HTTP status code. Take note of the following rules:
|
|
19417
|
+
* * **2xx**: The call was successful.
|
|
19418
|
+
* * **3xx**: The call was redirected.
|
|
19419
|
+
* * **4xx**: The call failed.
|
|
19420
|
+
* * **5xx**: A server error occurred.
|
|
19421
|
+
*
|
|
19422
|
+
* @param request CreateApplicationScalingRuleRequest
|
|
19423
|
+
* @param headers map
|
|
19424
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19425
|
+
* @return CreateApplicationScalingRuleResponse
|
|
19116
19426
|
*/
|
|
19117
19427
|
async createApplicationScalingRuleWithOptions(request: CreateApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateApplicationScalingRuleResponse> {
|
|
19118
19428
|
Util.validateModel(request);
|
|
@@ -19168,14 +19478,16 @@ export default class Client extends OpenApi {
|
|
|
19168
19478
|
}
|
|
19169
19479
|
|
|
19170
19480
|
/**
|
|
19171
|
-
|
|
19172
|
-
|
|
19173
|
-
|
|
19174
|
-
|
|
19175
|
-
|
|
19176
|
-
|
|
19177
|
-
|
|
19178
|
-
|
|
19481
|
+
* @summary Null
|
|
19482
|
+
*
|
|
19483
|
+
* @description The HTTP status code. Take note of the following rules:
|
|
19484
|
+
* * **2xx**: The call was successful.
|
|
19485
|
+
* * **3xx**: The call was redirected.
|
|
19486
|
+
* * **4xx**: The call failed.
|
|
19487
|
+
* * **5xx**: A server error occurred.
|
|
19488
|
+
*
|
|
19489
|
+
* @param request CreateApplicationScalingRuleRequest
|
|
19490
|
+
* @return CreateApplicationScalingRuleResponse
|
|
19179
19491
|
*/
|
|
19180
19492
|
async createApplicationScalingRule(request: CreateApplicationScalingRuleRequest): Promise<CreateApplicationScalingRuleResponse> {
|
|
19181
19493
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -19183,6 +19495,14 @@ export default class Client extends OpenApi {
|
|
|
19183
19495
|
return await this.createApplicationScalingRuleWithOptions(request, headers, runtime);
|
|
19184
19496
|
}
|
|
19185
19497
|
|
|
19498
|
+
/**
|
|
19499
|
+
* @summary name
|
|
19500
|
+
*
|
|
19501
|
+
* @param request CreateConfigMapRequest
|
|
19502
|
+
* @param headers map
|
|
19503
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19504
|
+
* @return CreateConfigMapResponse
|
|
19505
|
+
*/
|
|
19186
19506
|
async createConfigMapWithOptions(request: CreateConfigMapRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateConfigMapResponse> {
|
|
19187
19507
|
Util.validateModel(request);
|
|
19188
19508
|
let query : {[key: string ]: any} = { };
|
|
@@ -19222,6 +19542,12 @@ export default class Client extends OpenApi {
|
|
|
19222
19542
|
return $tea.cast<CreateConfigMapResponse>(await this.callApi(params, req, runtime), new CreateConfigMapResponse({}));
|
|
19223
19543
|
}
|
|
19224
19544
|
|
|
19545
|
+
/**
|
|
19546
|
+
* @summary name
|
|
19547
|
+
*
|
|
19548
|
+
* @param request CreateConfigMapRequest
|
|
19549
|
+
* @return CreateConfigMapResponse
|
|
19550
|
+
*/
|
|
19225
19551
|
async createConfigMap(request: CreateConfigMapRequest): Promise<CreateConfigMapResponse> {
|
|
19226
19552
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19227
19553
|
let headers : {[key: string ]: string} = { };
|
|
@@ -19229,12 +19555,14 @@ export default class Client extends OpenApi {
|
|
|
19229
19555
|
}
|
|
19230
19556
|
|
|
19231
19557
|
/**
|
|
19232
|
-
|
|
19233
|
-
|
|
19234
|
-
|
|
19235
|
-
|
|
19236
|
-
|
|
19237
|
-
|
|
19558
|
+
* @summary Creates a canary release rule for a Spring Cloud or Dubbo application.
|
|
19559
|
+
*
|
|
19560
|
+
* @description > You can configure only one canary release rule for each application.
|
|
19561
|
+
*
|
|
19562
|
+
* @param request CreateGreyTagRouteRequest
|
|
19563
|
+
* @param headers map
|
|
19564
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19565
|
+
* @return CreateGreyTagRouteResponse
|
|
19238
19566
|
*/
|
|
19239
19567
|
async createGreyTagRouteWithOptions(request: CreateGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateGreyTagRouteResponse> {
|
|
19240
19568
|
Util.validateModel(request);
|
|
@@ -19282,10 +19610,12 @@ export default class Client extends OpenApi {
|
|
|
19282
19610
|
}
|
|
19283
19611
|
|
|
19284
19612
|
/**
|
|
19285
|
-
|
|
19286
|
-
|
|
19287
|
-
|
|
19288
|
-
|
|
19613
|
+
* @summary Creates a canary release rule for a Spring Cloud or Dubbo application.
|
|
19614
|
+
*
|
|
19615
|
+
* @description > You can configure only one canary release rule for each application.
|
|
19616
|
+
*
|
|
19617
|
+
* @param request CreateGreyTagRouteRequest
|
|
19618
|
+
* @return CreateGreyTagRouteResponse
|
|
19289
19619
|
*/
|
|
19290
19620
|
async createGreyTagRoute(request: CreateGreyTagRouteRequest): Promise<CreateGreyTagRouteResponse> {
|
|
19291
19621
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -19293,6 +19623,14 @@ export default class Client extends OpenApi {
|
|
|
19293
19623
|
return await this.createGreyTagRouteWithOptions(request, headers, runtime);
|
|
19294
19624
|
}
|
|
19295
19625
|
|
|
19626
|
+
/**
|
|
19627
|
+
* @summary {"appId":"395b60e4-0550-458d-9c54-a265d036\\*\\*\\*\\*","containerPort":8080}
|
|
19628
|
+
*
|
|
19629
|
+
* @param request CreateIngressRequest
|
|
19630
|
+
* @param headers map
|
|
19631
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19632
|
+
* @return CreateIngressResponse
|
|
19633
|
+
*/
|
|
19296
19634
|
async createIngressWithOptions(request: CreateIngressRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateIngressResponse> {
|
|
19297
19635
|
Util.validateModel(request);
|
|
19298
19636
|
let query : {[key: string ]: any} = { };
|
|
@@ -19356,12 +19694,26 @@ export default class Client extends OpenApi {
|
|
|
19356
19694
|
return $tea.cast<CreateIngressResponse>(await this.callApi(params, req, runtime), new CreateIngressResponse({}));
|
|
19357
19695
|
}
|
|
19358
19696
|
|
|
19697
|
+
/**
|
|
19698
|
+
* @summary {"appId":"395b60e4-0550-458d-9c54-a265d036\\*\\*\\*\\*","containerPort":8080}
|
|
19699
|
+
*
|
|
19700
|
+
* @param request CreateIngressRequest
|
|
19701
|
+
* @return CreateIngressResponse
|
|
19702
|
+
*/
|
|
19359
19703
|
async createIngress(request: CreateIngressRequest): Promise<CreateIngressResponse> {
|
|
19360
19704
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19361
19705
|
let headers : {[key: string ]: string} = { };
|
|
19362
19706
|
return await this.createIngressWithOptions(request, headers, runtime);
|
|
19363
19707
|
}
|
|
19364
19708
|
|
|
19709
|
+
/**
|
|
19710
|
+
* @summary Updates a job template.
|
|
19711
|
+
*
|
|
19712
|
+
* @param request CreateJobRequest
|
|
19713
|
+
* @param headers map
|
|
19714
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19715
|
+
* @return CreateJobResponse
|
|
19716
|
+
*/
|
|
19365
19717
|
async createJobWithOptions(request: CreateJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateJobResponse> {
|
|
19366
19718
|
Util.validateModel(request);
|
|
19367
19719
|
let query : {[key: string ]: any} = { };
|
|
@@ -19601,12 +19953,26 @@ export default class Client extends OpenApi {
|
|
|
19601
19953
|
return $tea.cast<CreateJobResponse>(await this.callApi(params, req, runtime), new CreateJobResponse({}));
|
|
19602
19954
|
}
|
|
19603
19955
|
|
|
19956
|
+
/**
|
|
19957
|
+
* @summary Updates a job template.
|
|
19958
|
+
*
|
|
19959
|
+
* @param request CreateJobRequest
|
|
19960
|
+
* @return CreateJobResponse
|
|
19961
|
+
*/
|
|
19604
19962
|
async createJob(request: CreateJobRequest): Promise<CreateJobResponse> {
|
|
19605
19963
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19606
19964
|
let headers : {[key: string ]: string} = { };
|
|
19607
19965
|
return await this.createJobWithOptions(request, headers, runtime);
|
|
19608
19966
|
}
|
|
19609
19967
|
|
|
19968
|
+
/**
|
|
19969
|
+
* @summary desc
|
|
19970
|
+
*
|
|
19971
|
+
* @param request CreateNamespaceRequest
|
|
19972
|
+
* @param headers map
|
|
19973
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19974
|
+
* @return CreateNamespaceResponse
|
|
19975
|
+
*/
|
|
19610
19976
|
async createNamespaceWithOptions(request: CreateNamespaceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateNamespaceResponse> {
|
|
19611
19977
|
Util.validateModel(request);
|
|
19612
19978
|
let query : {[key: string ]: any} = { };
|
|
@@ -19648,12 +20014,26 @@ export default class Client extends OpenApi {
|
|
|
19648
20014
|
return $tea.cast<CreateNamespaceResponse>(await this.callApi(params, req, runtime), new CreateNamespaceResponse({}));
|
|
19649
20015
|
}
|
|
19650
20016
|
|
|
20017
|
+
/**
|
|
20018
|
+
* @summary desc
|
|
20019
|
+
*
|
|
20020
|
+
* @param request CreateNamespaceRequest
|
|
20021
|
+
* @return CreateNamespaceResponse
|
|
20022
|
+
*/
|
|
19651
20023
|
async createNamespace(request: CreateNamespaceRequest): Promise<CreateNamespaceResponse> {
|
|
19652
20024
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19653
20025
|
let headers : {[key: string ]: string} = { };
|
|
19654
20026
|
return await this.createNamespaceWithOptions(request, headers, runtime);
|
|
19655
20027
|
}
|
|
19656
20028
|
|
|
20029
|
+
/**
|
|
20030
|
+
* @summary Null
|
|
20031
|
+
*
|
|
20032
|
+
* @param tmpReq CreateSecretRequest
|
|
20033
|
+
* @param headers map
|
|
20034
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20035
|
+
* @return CreateSecretResponse
|
|
20036
|
+
*/
|
|
19657
20037
|
async createSecretWithOptions(tmpReq: CreateSecretRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateSecretResponse> {
|
|
19658
20038
|
Util.validateModel(tmpReq);
|
|
19659
20039
|
let request = new CreateSecretShrinkRequest({ });
|
|
@@ -19697,12 +20077,24 @@ export default class Client extends OpenApi {
|
|
|
19697
20077
|
return $tea.cast<CreateSecretResponse>(await this.callApi(params, req, runtime), new CreateSecretResponse({}));
|
|
19698
20078
|
}
|
|
19699
20079
|
|
|
20080
|
+
/**
|
|
20081
|
+
* @summary Null
|
|
20082
|
+
*
|
|
20083
|
+
* @param request CreateSecretRequest
|
|
20084
|
+
* @return CreateSecretResponse
|
|
20085
|
+
*/
|
|
19700
20086
|
async createSecret(request: CreateSecretRequest): Promise<CreateSecretResponse> {
|
|
19701
20087
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19702
20088
|
let headers : {[key: string ]: string} = { };
|
|
19703
20089
|
return await this.createSecretWithOptions(request, headers, runtime);
|
|
19704
20090
|
}
|
|
19705
20091
|
|
|
20092
|
+
/**
|
|
20093
|
+
* @param request DeleteApplicationRequest
|
|
20094
|
+
* @param headers map
|
|
20095
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20096
|
+
* @return DeleteApplicationResponse
|
|
20097
|
+
*/
|
|
19706
20098
|
async deleteApplicationWithOptions(request: DeleteApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteApplicationResponse> {
|
|
19707
20099
|
Util.validateModel(request);
|
|
19708
20100
|
let query : {[key: string ]: any} = { };
|
|
@@ -19728,12 +20120,24 @@ export default class Client extends OpenApi {
|
|
|
19728
20120
|
return $tea.cast<DeleteApplicationResponse>(await this.callApi(params, req, runtime), new DeleteApplicationResponse({}));
|
|
19729
20121
|
}
|
|
19730
20122
|
|
|
20123
|
+
/**
|
|
20124
|
+
* @param request DeleteApplicationRequest
|
|
20125
|
+
* @return DeleteApplicationResponse
|
|
20126
|
+
*/
|
|
19731
20127
|
async deleteApplication(request: DeleteApplicationRequest): Promise<DeleteApplicationResponse> {
|
|
19732
20128
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19733
20129
|
let headers : {[key: string ]: string} = { };
|
|
19734
20130
|
return await this.deleteApplicationWithOptions(request, headers, runtime);
|
|
19735
20131
|
}
|
|
19736
20132
|
|
|
20133
|
+
/**
|
|
20134
|
+
* @summary 7171a6ca-d1cd-4928-8642-7d5cfe69\\*\\*\\*\\*
|
|
20135
|
+
*
|
|
20136
|
+
* @param request DeleteApplicationScalingRuleRequest
|
|
20137
|
+
* @param headers map
|
|
20138
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20139
|
+
* @return DeleteApplicationScalingRuleResponse
|
|
20140
|
+
*/
|
|
19737
20141
|
async deleteApplicationScalingRuleWithOptions(request: DeleteApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteApplicationScalingRuleResponse> {
|
|
19738
20142
|
Util.validateModel(request);
|
|
19739
20143
|
let query : {[key: string ]: any} = { };
|
|
@@ -19763,12 +20167,24 @@ export default class Client extends OpenApi {
|
|
|
19763
20167
|
return $tea.cast<DeleteApplicationScalingRuleResponse>(await this.callApi(params, req, runtime), new DeleteApplicationScalingRuleResponse({}));
|
|
19764
20168
|
}
|
|
19765
20169
|
|
|
20170
|
+
/**
|
|
20171
|
+
* @summary 7171a6ca-d1cd-4928-8642-7d5cfe69\\*\\*\\*\\*
|
|
20172
|
+
*
|
|
20173
|
+
* @param request DeleteApplicationScalingRuleRequest
|
|
20174
|
+
* @return DeleteApplicationScalingRuleResponse
|
|
20175
|
+
*/
|
|
19766
20176
|
async deleteApplicationScalingRule(request: DeleteApplicationScalingRuleRequest): Promise<DeleteApplicationScalingRuleResponse> {
|
|
19767
20177
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19768
20178
|
let headers : {[key: string ]: string} = { };
|
|
19769
20179
|
return await this.deleteApplicationScalingRuleWithOptions(request, headers, runtime);
|
|
19770
20180
|
}
|
|
19771
20181
|
|
|
20182
|
+
/**
|
|
20183
|
+
* @param request DeleteConfigMapRequest
|
|
20184
|
+
* @param headers map
|
|
20185
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20186
|
+
* @return DeleteConfigMapResponse
|
|
20187
|
+
*/
|
|
19772
20188
|
async deleteConfigMapWithOptions(request: DeleteConfigMapRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteConfigMapResponse> {
|
|
19773
20189
|
Util.validateModel(request);
|
|
19774
20190
|
let query : {[key: string ]: any} = { };
|
|
@@ -19794,12 +20210,24 @@ export default class Client extends OpenApi {
|
|
|
19794
20210
|
return $tea.cast<DeleteConfigMapResponse>(await this.callApi(params, req, runtime), new DeleteConfigMapResponse({}));
|
|
19795
20211
|
}
|
|
19796
20212
|
|
|
20213
|
+
/**
|
|
20214
|
+
* @param request DeleteConfigMapRequest
|
|
20215
|
+
* @return DeleteConfigMapResponse
|
|
20216
|
+
*/
|
|
19797
20217
|
async deleteConfigMap(request: DeleteConfigMapRequest): Promise<DeleteConfigMapResponse> {
|
|
19798
20218
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19799
20219
|
let headers : {[key: string ]: string} = { };
|
|
19800
20220
|
return await this.deleteConfigMapWithOptions(request, headers, runtime);
|
|
19801
20221
|
}
|
|
19802
20222
|
|
|
20223
|
+
/**
|
|
20224
|
+
* @summary 1
|
|
20225
|
+
*
|
|
20226
|
+
* @param request DeleteGreyTagRouteRequest
|
|
20227
|
+
* @param headers map
|
|
20228
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20229
|
+
* @return DeleteGreyTagRouteResponse
|
|
20230
|
+
*/
|
|
19803
20231
|
async deleteGreyTagRouteWithOptions(request: DeleteGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteGreyTagRouteResponse> {
|
|
19804
20232
|
Util.validateModel(request);
|
|
19805
20233
|
let query : {[key: string ]: any} = { };
|
|
@@ -19825,12 +20253,26 @@ export default class Client extends OpenApi {
|
|
|
19825
20253
|
return $tea.cast<DeleteGreyTagRouteResponse>(await this.callApi(params, req, runtime), new DeleteGreyTagRouteResponse({}));
|
|
19826
20254
|
}
|
|
19827
20255
|
|
|
20256
|
+
/**
|
|
20257
|
+
* @summary 1
|
|
20258
|
+
*
|
|
20259
|
+
* @param request DeleteGreyTagRouteRequest
|
|
20260
|
+
* @return DeleteGreyTagRouteResponse
|
|
20261
|
+
*/
|
|
19828
20262
|
async deleteGreyTagRoute(request: DeleteGreyTagRouteRequest): Promise<DeleteGreyTagRouteResponse> {
|
|
19829
20263
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19830
20264
|
let headers : {[key: string ]: string} = { };
|
|
19831
20265
|
return await this.deleteGreyTagRouteWithOptions(request, headers, runtime);
|
|
19832
20266
|
}
|
|
19833
20267
|
|
|
20268
|
+
/**
|
|
20269
|
+
* @summary Deletes a job.
|
|
20270
|
+
*
|
|
20271
|
+
* @param request DeleteHistoryJobRequest
|
|
20272
|
+
* @param headers map
|
|
20273
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20274
|
+
* @return DeleteHistoryJobResponse
|
|
20275
|
+
*/
|
|
19834
20276
|
async deleteHistoryJobWithOptions(request: DeleteHistoryJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteHistoryJobResponse> {
|
|
19835
20277
|
Util.validateModel(request);
|
|
19836
20278
|
let query : {[key: string ]: any} = { };
|
|
@@ -19860,12 +20302,24 @@ export default class Client extends OpenApi {
|
|
|
19860
20302
|
return $tea.cast<DeleteHistoryJobResponse>(await this.callApi(params, req, runtime), new DeleteHistoryJobResponse({}));
|
|
19861
20303
|
}
|
|
19862
20304
|
|
|
20305
|
+
/**
|
|
20306
|
+
* @summary Deletes a job.
|
|
20307
|
+
*
|
|
20308
|
+
* @param request DeleteHistoryJobRequest
|
|
20309
|
+
* @return DeleteHistoryJobResponse
|
|
20310
|
+
*/
|
|
19863
20311
|
async deleteHistoryJob(request: DeleteHistoryJobRequest): Promise<DeleteHistoryJobResponse> {
|
|
19864
20312
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19865
20313
|
let headers : {[key: string ]: string} = { };
|
|
19866
20314
|
return await this.deleteHistoryJobWithOptions(request, headers, runtime);
|
|
19867
20315
|
}
|
|
19868
20316
|
|
|
20317
|
+
/**
|
|
20318
|
+
* @param request DeleteIngressRequest
|
|
20319
|
+
* @param headers map
|
|
20320
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20321
|
+
* @return DeleteIngressResponse
|
|
20322
|
+
*/
|
|
19869
20323
|
async deleteIngressWithOptions(request: DeleteIngressRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteIngressResponse> {
|
|
19870
20324
|
Util.validateModel(request);
|
|
19871
20325
|
let query : {[key: string ]: any} = { };
|
|
@@ -19891,12 +20345,24 @@ export default class Client extends OpenApi {
|
|
|
19891
20345
|
return $tea.cast<DeleteIngressResponse>(await this.callApi(params, req, runtime), new DeleteIngressResponse({}));
|
|
19892
20346
|
}
|
|
19893
20347
|
|
|
20348
|
+
/**
|
|
20349
|
+
* @param request DeleteIngressRequest
|
|
20350
|
+
* @return DeleteIngressResponse
|
|
20351
|
+
*/
|
|
19894
20352
|
async deleteIngress(request: DeleteIngressRequest): Promise<DeleteIngressResponse> {
|
|
19895
20353
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19896
20354
|
let headers : {[key: string ]: string} = { };
|
|
19897
20355
|
return await this.deleteIngressWithOptions(request, headers, runtime);
|
|
19898
20356
|
}
|
|
19899
20357
|
|
|
20358
|
+
/**
|
|
20359
|
+
* @summary Deletes a job template.
|
|
20360
|
+
*
|
|
20361
|
+
* @param request DeleteJobRequest
|
|
20362
|
+
* @param headers map
|
|
20363
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20364
|
+
* @return DeleteJobResponse
|
|
20365
|
+
*/
|
|
19900
20366
|
async deleteJobWithOptions(request: DeleteJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteJobResponse> {
|
|
19901
20367
|
Util.validateModel(request);
|
|
19902
20368
|
let query : {[key: string ]: any} = { };
|
|
@@ -19922,12 +20388,24 @@ export default class Client extends OpenApi {
|
|
|
19922
20388
|
return $tea.cast<DeleteJobResponse>(await this.callApi(params, req, runtime), new DeleteJobResponse({}));
|
|
19923
20389
|
}
|
|
19924
20390
|
|
|
20391
|
+
/**
|
|
20392
|
+
* @summary Deletes a job template.
|
|
20393
|
+
*
|
|
20394
|
+
* @param request DeleteJobRequest
|
|
20395
|
+
* @return DeleteJobResponse
|
|
20396
|
+
*/
|
|
19925
20397
|
async deleteJob(request: DeleteJobRequest): Promise<DeleteJobResponse> {
|
|
19926
20398
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19927
20399
|
let headers : {[key: string ]: string} = { };
|
|
19928
20400
|
return await this.deleteJobWithOptions(request, headers, runtime);
|
|
19929
20401
|
}
|
|
19930
20402
|
|
|
20403
|
+
/**
|
|
20404
|
+
* @param request DeleteNamespaceRequest
|
|
20405
|
+
* @param headers map
|
|
20406
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20407
|
+
* @return DeleteNamespaceResponse
|
|
20408
|
+
*/
|
|
19931
20409
|
async deleteNamespaceWithOptions(request: DeleteNamespaceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteNamespaceResponse> {
|
|
19932
20410
|
Util.validateModel(request);
|
|
19933
20411
|
let query : {[key: string ]: any} = { };
|
|
@@ -19957,12 +20435,24 @@ export default class Client extends OpenApi {
|
|
|
19957
20435
|
return $tea.cast<DeleteNamespaceResponse>(await this.callApi(params, req, runtime), new DeleteNamespaceResponse({}));
|
|
19958
20436
|
}
|
|
19959
20437
|
|
|
20438
|
+
/**
|
|
20439
|
+
* @param request DeleteNamespaceRequest
|
|
20440
|
+
* @return DeleteNamespaceResponse
|
|
20441
|
+
*/
|
|
19960
20442
|
async deleteNamespace(request: DeleteNamespaceRequest): Promise<DeleteNamespaceResponse> {
|
|
19961
20443
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19962
20444
|
let headers : {[key: string ]: string} = { };
|
|
19963
20445
|
return await this.deleteNamespaceWithOptions(request, headers, runtime);
|
|
19964
20446
|
}
|
|
19965
20447
|
|
|
20448
|
+
/**
|
|
20449
|
+
* @summary Deletes a Secret.
|
|
20450
|
+
*
|
|
20451
|
+
* @param request DeleteSecretRequest
|
|
20452
|
+
* @param headers map
|
|
20453
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20454
|
+
* @return DeleteSecretResponse
|
|
20455
|
+
*/
|
|
19966
20456
|
async deleteSecretWithOptions(request: DeleteSecretRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteSecretResponse> {
|
|
19967
20457
|
Util.validateModel(request);
|
|
19968
20458
|
let query : {[key: string ]: any} = { };
|
|
@@ -19992,12 +20482,26 @@ export default class Client extends OpenApi {
|
|
|
19992
20482
|
return $tea.cast<DeleteSecretResponse>(await this.callApi(params, req, runtime), new DeleteSecretResponse({}));
|
|
19993
20483
|
}
|
|
19994
20484
|
|
|
20485
|
+
/**
|
|
20486
|
+
* @summary Deletes a Secret.
|
|
20487
|
+
*
|
|
20488
|
+
* @param request DeleteSecretRequest
|
|
20489
|
+
* @return DeleteSecretResponse
|
|
20490
|
+
*/
|
|
19995
20491
|
async deleteSecret(request: DeleteSecretRequest): Promise<DeleteSecretResponse> {
|
|
19996
20492
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19997
20493
|
let headers : {[key: string ]: string} = { };
|
|
19998
20494
|
return await this.deleteSecretWithOptions(request, headers, runtime);
|
|
19999
20495
|
}
|
|
20000
20496
|
|
|
20497
|
+
/**
|
|
20498
|
+
* @summary Deploys an application.
|
|
20499
|
+
*
|
|
20500
|
+
* @param request DeployApplicationRequest
|
|
20501
|
+
* @param headers map
|
|
20502
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20503
|
+
* @return DeployApplicationResponse
|
|
20504
|
+
*/
|
|
20001
20505
|
async deployApplicationWithOptions(request: DeployApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeployApplicationResponse> {
|
|
20002
20506
|
Util.validateModel(request);
|
|
20003
20507
|
let query : {[key: string ]: any} = { };
|
|
@@ -20214,6 +20718,10 @@ export default class Client extends OpenApi {
|
|
|
20214
20718
|
body["ConfigMapMountDesc"] = request.configMapMountDesc;
|
|
20215
20719
|
}
|
|
20216
20720
|
|
|
20721
|
+
if (!Util.isUnset(request.microRegistrationConfig)) {
|
|
20722
|
+
body["MicroRegistrationConfig"] = request.microRegistrationConfig;
|
|
20723
|
+
}
|
|
20724
|
+
|
|
20217
20725
|
if (!Util.isUnset(request.ossAkId)) {
|
|
20218
20726
|
body["OssAkId"] = request.ossAkId;
|
|
20219
20727
|
}
|
|
@@ -20234,6 +20742,10 @@ export default class Client extends OpenApi {
|
|
|
20234
20742
|
body["PhpConfig"] = request.phpConfig;
|
|
20235
20743
|
}
|
|
20236
20744
|
|
|
20745
|
+
if (!Util.isUnset(request.serviceTags)) {
|
|
20746
|
+
body["ServiceTags"] = request.serviceTags;
|
|
20747
|
+
}
|
|
20748
|
+
|
|
20237
20749
|
let req = new $OpenApi.OpenApiRequest({
|
|
20238
20750
|
headers: headers,
|
|
20239
20751
|
query: OpenApiUtil.query(query),
|
|
@@ -20253,12 +20765,26 @@ export default class Client extends OpenApi {
|
|
|
20253
20765
|
return $tea.cast<DeployApplicationResponse>(await this.callApi(params, req, runtime), new DeployApplicationResponse({}));
|
|
20254
20766
|
}
|
|
20255
20767
|
|
|
20768
|
+
/**
|
|
20769
|
+
* @summary Deploys an application.
|
|
20770
|
+
*
|
|
20771
|
+
* @param request DeployApplicationRequest
|
|
20772
|
+
* @return DeployApplicationResponse
|
|
20773
|
+
*/
|
|
20256
20774
|
async deployApplication(request: DeployApplicationRequest): Promise<DeployApplicationResponse> {
|
|
20257
20775
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20258
20776
|
let headers : {[key: string ]: string} = { };
|
|
20259
20777
|
return await this.deployApplicationWithOptions(request, headers, runtime);
|
|
20260
20778
|
}
|
|
20261
20779
|
|
|
20780
|
+
/**
|
|
20781
|
+
* @summary Queries the metadata details of the service of an application.
|
|
20782
|
+
*
|
|
20783
|
+
* @param request DescribeAppServiceDetailRequest
|
|
20784
|
+
* @param headers map
|
|
20785
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20786
|
+
* @return DescribeAppServiceDetailResponse
|
|
20787
|
+
*/
|
|
20262
20788
|
async describeAppServiceDetailWithOptions(request: DescribeAppServiceDetailRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeAppServiceDetailResponse> {
|
|
20263
20789
|
Util.validateModel(request);
|
|
20264
20790
|
let query : {[key: string ]: any} = { };
|
|
@@ -20266,6 +20792,14 @@ export default class Client extends OpenApi {
|
|
|
20266
20792
|
query["AppId"] = request.appId;
|
|
20267
20793
|
}
|
|
20268
20794
|
|
|
20795
|
+
if (!Util.isUnset(request.nacosInstanceId)) {
|
|
20796
|
+
query["NacosInstanceId"] = request.nacosInstanceId;
|
|
20797
|
+
}
|
|
20798
|
+
|
|
20799
|
+
if (!Util.isUnset(request.nacosNamespaceId)) {
|
|
20800
|
+
query["NacosNamespaceId"] = request.nacosNamespaceId;
|
|
20801
|
+
}
|
|
20802
|
+
|
|
20269
20803
|
if (!Util.isUnset(request.serviceGroup)) {
|
|
20270
20804
|
query["ServiceGroup"] = request.serviceGroup;
|
|
20271
20805
|
}
|
|
@@ -20300,12 +20834,24 @@ export default class Client extends OpenApi {
|
|
|
20300
20834
|
return $tea.cast<DescribeAppServiceDetailResponse>(await this.callApi(params, req, runtime), new DescribeAppServiceDetailResponse({}));
|
|
20301
20835
|
}
|
|
20302
20836
|
|
|
20837
|
+
/**
|
|
20838
|
+
* @summary Queries the metadata details of the service of an application.
|
|
20839
|
+
*
|
|
20840
|
+
* @param request DescribeAppServiceDetailRequest
|
|
20841
|
+
* @return DescribeAppServiceDetailResponse
|
|
20842
|
+
*/
|
|
20303
20843
|
async describeAppServiceDetail(request: DescribeAppServiceDetailRequest): Promise<DescribeAppServiceDetailResponse> {
|
|
20304
20844
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20305
20845
|
let headers : {[key: string ]: string} = { };
|
|
20306
20846
|
return await this.describeAppServiceDetailWithOptions(request, headers, runtime);
|
|
20307
20847
|
}
|
|
20308
20848
|
|
|
20849
|
+
/**
|
|
20850
|
+
* @param request DescribeApplicationConfigRequest
|
|
20851
|
+
* @param headers map
|
|
20852
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20853
|
+
* @return DescribeApplicationConfigResponse
|
|
20854
|
+
*/
|
|
20309
20855
|
async describeApplicationConfigWithOptions(request: DescribeApplicationConfigRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationConfigResponse> {
|
|
20310
20856
|
Util.validateModel(request);
|
|
20311
20857
|
let query : {[key: string ]: any} = { };
|
|
@@ -20335,12 +20881,22 @@ export default class Client extends OpenApi {
|
|
|
20335
20881
|
return $tea.cast<DescribeApplicationConfigResponse>(await this.callApi(params, req, runtime), new DescribeApplicationConfigResponse({}));
|
|
20336
20882
|
}
|
|
20337
20883
|
|
|
20884
|
+
/**
|
|
20885
|
+
* @param request DescribeApplicationConfigRequest
|
|
20886
|
+
* @return DescribeApplicationConfigResponse
|
|
20887
|
+
*/
|
|
20338
20888
|
async describeApplicationConfig(request: DescribeApplicationConfigRequest): Promise<DescribeApplicationConfigResponse> {
|
|
20339
20889
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20340
20890
|
let headers : {[key: string ]: string} = { };
|
|
20341
20891
|
return await this.describeApplicationConfigWithOptions(request, headers, runtime);
|
|
20342
20892
|
}
|
|
20343
20893
|
|
|
20894
|
+
/**
|
|
20895
|
+
* @param request DescribeApplicationGroupsRequest
|
|
20896
|
+
* @param headers map
|
|
20897
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20898
|
+
* @return DescribeApplicationGroupsResponse
|
|
20899
|
+
*/
|
|
20344
20900
|
async describeApplicationGroupsWithOptions(request: DescribeApplicationGroupsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationGroupsResponse> {
|
|
20345
20901
|
Util.validateModel(request);
|
|
20346
20902
|
let query : {[key: string ]: any} = { };
|
|
@@ -20374,12 +20930,22 @@ export default class Client extends OpenApi {
|
|
|
20374
20930
|
return $tea.cast<DescribeApplicationGroupsResponse>(await this.callApi(params, req, runtime), new DescribeApplicationGroupsResponse({}));
|
|
20375
20931
|
}
|
|
20376
20932
|
|
|
20933
|
+
/**
|
|
20934
|
+
* @param request DescribeApplicationGroupsRequest
|
|
20935
|
+
* @return DescribeApplicationGroupsResponse
|
|
20936
|
+
*/
|
|
20377
20937
|
async describeApplicationGroups(request: DescribeApplicationGroupsRequest): Promise<DescribeApplicationGroupsResponse> {
|
|
20378
20938
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20379
20939
|
let headers : {[key: string ]: string} = { };
|
|
20380
20940
|
return await this.describeApplicationGroupsWithOptions(request, headers, runtime);
|
|
20381
20941
|
}
|
|
20382
20942
|
|
|
20943
|
+
/**
|
|
20944
|
+
* @param request DescribeApplicationImageRequest
|
|
20945
|
+
* @param headers map
|
|
20946
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20947
|
+
* @return DescribeApplicationImageResponse
|
|
20948
|
+
*/
|
|
20383
20949
|
async describeApplicationImageWithOptions(request: DescribeApplicationImageRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationImageResponse> {
|
|
20384
20950
|
Util.validateModel(request);
|
|
20385
20951
|
let query : {[key: string ]: any} = { };
|
|
@@ -20409,12 +20975,24 @@ export default class Client extends OpenApi {
|
|
|
20409
20975
|
return $tea.cast<DescribeApplicationImageResponse>(await this.callApi(params, req, runtime), new DescribeApplicationImageResponse({}));
|
|
20410
20976
|
}
|
|
20411
20977
|
|
|
20978
|
+
/**
|
|
20979
|
+
* @param request DescribeApplicationImageRequest
|
|
20980
|
+
* @return DescribeApplicationImageResponse
|
|
20981
|
+
*/
|
|
20412
20982
|
async describeApplicationImage(request: DescribeApplicationImageRequest): Promise<DescribeApplicationImageResponse> {
|
|
20413
20983
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20414
20984
|
let headers : {[key: string ]: string} = { };
|
|
20415
20985
|
return await this.describeApplicationImageWithOptions(request, headers, runtime);
|
|
20416
20986
|
}
|
|
20417
20987
|
|
|
20988
|
+
/**
|
|
20989
|
+
* @summary Queries application instances.
|
|
20990
|
+
*
|
|
20991
|
+
* @param request DescribeApplicationInstancesRequest
|
|
20992
|
+
* @param headers map
|
|
20993
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20994
|
+
* @return DescribeApplicationInstancesResponse
|
|
20995
|
+
*/
|
|
20418
20996
|
async describeApplicationInstancesWithOptions(request: DescribeApplicationInstancesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationInstancesResponse> {
|
|
20419
20997
|
Util.validateModel(request);
|
|
20420
20998
|
let query : {[key: string ]: any} = { };
|
|
@@ -20456,12 +21034,26 @@ export default class Client extends OpenApi {
|
|
|
20456
21034
|
return $tea.cast<DescribeApplicationInstancesResponse>(await this.callApi(params, req, runtime), new DescribeApplicationInstancesResponse({}));
|
|
20457
21035
|
}
|
|
20458
21036
|
|
|
21037
|
+
/**
|
|
21038
|
+
* @summary Queries application instances.
|
|
21039
|
+
*
|
|
21040
|
+
* @param request DescribeApplicationInstancesRequest
|
|
21041
|
+
* @return DescribeApplicationInstancesResponse
|
|
21042
|
+
*/
|
|
20459
21043
|
async describeApplicationInstances(request: DescribeApplicationInstancesRequest): Promise<DescribeApplicationInstancesResponse> {
|
|
20460
21044
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20461
21045
|
let headers : {[key: string ]: string} = { };
|
|
20462
21046
|
return await this.describeApplicationInstancesWithOptions(request, headers, runtime);
|
|
20463
21047
|
}
|
|
20464
21048
|
|
|
21049
|
+
/**
|
|
21050
|
+
* @summary Queries a specified auto scaling policy of an application.
|
|
21051
|
+
*
|
|
21052
|
+
* @param request DescribeApplicationScalingRuleRequest
|
|
21053
|
+
* @param headers map
|
|
21054
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21055
|
+
* @return DescribeApplicationScalingRuleResponse
|
|
21056
|
+
*/
|
|
20465
21057
|
async describeApplicationScalingRuleWithOptions(request: DescribeApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationScalingRuleResponse> {
|
|
20466
21058
|
Util.validateModel(request);
|
|
20467
21059
|
let query : {[key: string ]: any} = { };
|
|
@@ -20491,12 +21083,26 @@ export default class Client extends OpenApi {
|
|
|
20491
21083
|
return $tea.cast<DescribeApplicationScalingRuleResponse>(await this.callApi(params, req, runtime), new DescribeApplicationScalingRuleResponse({}));
|
|
20492
21084
|
}
|
|
20493
21085
|
|
|
21086
|
+
/**
|
|
21087
|
+
* @summary Queries a specified auto scaling policy of an application.
|
|
21088
|
+
*
|
|
21089
|
+
* @param request DescribeApplicationScalingRuleRequest
|
|
21090
|
+
* @return DescribeApplicationScalingRuleResponse
|
|
21091
|
+
*/
|
|
20494
21092
|
async describeApplicationScalingRule(request: DescribeApplicationScalingRuleRequest): Promise<DescribeApplicationScalingRuleResponse> {
|
|
20495
21093
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20496
21094
|
let headers : {[key: string ]: string} = { };
|
|
20497
21095
|
return await this.describeApplicationScalingRuleWithOptions(request, headers, runtime);
|
|
20498
21096
|
}
|
|
20499
21097
|
|
|
21098
|
+
/**
|
|
21099
|
+
* @summary Queries the auto scaling policies of an application.
|
|
21100
|
+
*
|
|
21101
|
+
* @param request DescribeApplicationScalingRulesRequest
|
|
21102
|
+
* @param headers map
|
|
21103
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21104
|
+
* @return DescribeApplicationScalingRulesResponse
|
|
21105
|
+
*/
|
|
20500
21106
|
async describeApplicationScalingRulesWithOptions(request: DescribeApplicationScalingRulesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationScalingRulesResponse> {
|
|
20501
21107
|
Util.validateModel(request);
|
|
20502
21108
|
let query : {[key: string ]: any} = { };
|
|
@@ -20522,12 +21128,26 @@ export default class Client extends OpenApi {
|
|
|
20522
21128
|
return $tea.cast<DescribeApplicationScalingRulesResponse>(await this.callApi(params, req, runtime), new DescribeApplicationScalingRulesResponse({}));
|
|
20523
21129
|
}
|
|
20524
21130
|
|
|
21131
|
+
/**
|
|
21132
|
+
* @summary Queries the auto scaling policies of an application.
|
|
21133
|
+
*
|
|
21134
|
+
* @param request DescribeApplicationScalingRulesRequest
|
|
21135
|
+
* @return DescribeApplicationScalingRulesResponse
|
|
21136
|
+
*/
|
|
20525
21137
|
async describeApplicationScalingRules(request: DescribeApplicationScalingRulesRequest): Promise<DescribeApplicationScalingRulesResponse> {
|
|
20526
21138
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20527
21139
|
let headers : {[key: string ]: string} = { };
|
|
20528
21140
|
return await this.describeApplicationScalingRulesWithOptions(request, headers, runtime);
|
|
20529
21141
|
}
|
|
20530
21142
|
|
|
21143
|
+
/**
|
|
21144
|
+
* @summary 017f39b8-dfa4-4e16-a84b-1dcee4b1\\*\\*\\*\\*
|
|
21145
|
+
*
|
|
21146
|
+
* @param request DescribeApplicationSlbsRequest
|
|
21147
|
+
* @param headers map
|
|
21148
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21149
|
+
* @return DescribeApplicationSlbsResponse
|
|
21150
|
+
*/
|
|
20531
21151
|
async describeApplicationSlbsWithOptions(request: DescribeApplicationSlbsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationSlbsResponse> {
|
|
20532
21152
|
Util.validateModel(request);
|
|
20533
21153
|
let query : {[key: string ]: any} = { };
|
|
@@ -20553,12 +21173,24 @@ export default class Client extends OpenApi {
|
|
|
20553
21173
|
return $tea.cast<DescribeApplicationSlbsResponse>(await this.callApi(params, req, runtime), new DescribeApplicationSlbsResponse({}));
|
|
20554
21174
|
}
|
|
20555
21175
|
|
|
21176
|
+
/**
|
|
21177
|
+
* @summary 017f39b8-dfa4-4e16-a84b-1dcee4b1\\*\\*\\*\\*
|
|
21178
|
+
*
|
|
21179
|
+
* @param request DescribeApplicationSlbsRequest
|
|
21180
|
+
* @return DescribeApplicationSlbsResponse
|
|
21181
|
+
*/
|
|
20556
21182
|
async describeApplicationSlbs(request: DescribeApplicationSlbsRequest): Promise<DescribeApplicationSlbsResponse> {
|
|
20557
21183
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20558
21184
|
let headers : {[key: string ]: string} = { };
|
|
20559
21185
|
return await this.describeApplicationSlbsWithOptions(request, headers, runtime);
|
|
20560
21186
|
}
|
|
20561
21187
|
|
|
21188
|
+
/**
|
|
21189
|
+
* @param request DescribeApplicationStatusRequest
|
|
21190
|
+
* @param headers map
|
|
21191
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21192
|
+
* @return DescribeApplicationStatusResponse
|
|
21193
|
+
*/
|
|
20562
21194
|
async describeApplicationStatusWithOptions(request: DescribeApplicationStatusRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationStatusResponse> {
|
|
20563
21195
|
Util.validateModel(request);
|
|
20564
21196
|
let query : {[key: string ]: any} = { };
|
|
@@ -20584,12 +21216,22 @@ export default class Client extends OpenApi {
|
|
|
20584
21216
|
return $tea.cast<DescribeApplicationStatusResponse>(await this.callApi(params, req, runtime), new DescribeApplicationStatusResponse({}));
|
|
20585
21217
|
}
|
|
20586
21218
|
|
|
21219
|
+
/**
|
|
21220
|
+
* @param request DescribeApplicationStatusRequest
|
|
21221
|
+
* @return DescribeApplicationStatusResponse
|
|
21222
|
+
*/
|
|
20587
21223
|
async describeApplicationStatus(request: DescribeApplicationStatusRequest): Promise<DescribeApplicationStatusResponse> {
|
|
20588
21224
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20589
21225
|
let headers : {[key: string ]: string} = { };
|
|
20590
21226
|
return await this.describeApplicationStatusWithOptions(request, headers, runtime);
|
|
20591
21227
|
}
|
|
20592
21228
|
|
|
21229
|
+
/**
|
|
21230
|
+
* @param request DescribeChangeOrderRequest
|
|
21231
|
+
* @param headers map
|
|
21232
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21233
|
+
* @return DescribeChangeOrderResponse
|
|
21234
|
+
*/
|
|
20593
21235
|
async describeChangeOrderWithOptions(request: DescribeChangeOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeChangeOrderResponse> {
|
|
20594
21236
|
Util.validateModel(request);
|
|
20595
21237
|
let query : {[key: string ]: any} = { };
|
|
@@ -20615,12 +21257,22 @@ export default class Client extends OpenApi {
|
|
|
20615
21257
|
return $tea.cast<DescribeChangeOrderResponse>(await this.callApi(params, req, runtime), new DescribeChangeOrderResponse({}));
|
|
20616
21258
|
}
|
|
20617
21259
|
|
|
21260
|
+
/**
|
|
21261
|
+
* @param request DescribeChangeOrderRequest
|
|
21262
|
+
* @return DescribeChangeOrderResponse
|
|
21263
|
+
*/
|
|
20618
21264
|
async describeChangeOrder(request: DescribeChangeOrderRequest): Promise<DescribeChangeOrderResponse> {
|
|
20619
21265
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20620
21266
|
let headers : {[key: string ]: string} = { };
|
|
20621
21267
|
return await this.describeChangeOrderWithOptions(request, headers, runtime);
|
|
20622
21268
|
}
|
|
20623
21269
|
|
|
21270
|
+
/**
|
|
21271
|
+
* @param request DescribeComponentsRequest
|
|
21272
|
+
* @param headers map
|
|
21273
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21274
|
+
* @return DescribeComponentsResponse
|
|
21275
|
+
*/
|
|
20624
21276
|
async describeComponentsWithOptions(request: DescribeComponentsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeComponentsResponse> {
|
|
20625
21277
|
Util.validateModel(request);
|
|
20626
21278
|
let query : {[key: string ]: any} = { };
|
|
@@ -20650,12 +21302,22 @@ export default class Client extends OpenApi {
|
|
|
20650
21302
|
return $tea.cast<DescribeComponentsResponse>(await this.callApi(params, req, runtime), new DescribeComponentsResponse({}));
|
|
20651
21303
|
}
|
|
20652
21304
|
|
|
21305
|
+
/**
|
|
21306
|
+
* @param request DescribeComponentsRequest
|
|
21307
|
+
* @return DescribeComponentsResponse
|
|
21308
|
+
*/
|
|
20653
21309
|
async describeComponents(request: DescribeComponentsRequest): Promise<DescribeComponentsResponse> {
|
|
20654
21310
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20655
21311
|
let headers : {[key: string ]: string} = { };
|
|
20656
21312
|
return await this.describeComponentsWithOptions(request, headers, runtime);
|
|
20657
21313
|
}
|
|
20658
21314
|
|
|
21315
|
+
/**
|
|
21316
|
+
* @param request DescribeConfigMapRequest
|
|
21317
|
+
* @param headers map
|
|
21318
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21319
|
+
* @return DescribeConfigMapResponse
|
|
21320
|
+
*/
|
|
20659
21321
|
async describeConfigMapWithOptions(request: DescribeConfigMapRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeConfigMapResponse> {
|
|
20660
21322
|
Util.validateModel(request);
|
|
20661
21323
|
let query : {[key: string ]: any} = { };
|
|
@@ -20681,12 +21343,22 @@ export default class Client extends OpenApi {
|
|
|
20681
21343
|
return $tea.cast<DescribeConfigMapResponse>(await this.callApi(params, req, runtime), new DescribeConfigMapResponse({}));
|
|
20682
21344
|
}
|
|
20683
21345
|
|
|
21346
|
+
/**
|
|
21347
|
+
* @param request DescribeConfigMapRequest
|
|
21348
|
+
* @return DescribeConfigMapResponse
|
|
21349
|
+
*/
|
|
20684
21350
|
async describeConfigMap(request: DescribeConfigMapRequest): Promise<DescribeConfigMapResponse> {
|
|
20685
21351
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20686
21352
|
let headers : {[key: string ]: string} = { };
|
|
20687
21353
|
return await this.describeConfigMapWithOptions(request, headers, runtime);
|
|
20688
21354
|
}
|
|
20689
21355
|
|
|
21356
|
+
/**
|
|
21357
|
+
* @param request DescribeConfigurationPriceRequest
|
|
21358
|
+
* @param headers map
|
|
21359
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21360
|
+
* @return DescribeConfigurationPriceResponse
|
|
21361
|
+
*/
|
|
20690
21362
|
async describeConfigurationPriceWithOptions(request: DescribeConfigurationPriceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeConfigurationPriceResponse> {
|
|
20691
21363
|
Util.validateModel(request);
|
|
20692
21364
|
let query : {[key: string ]: any} = { };
|
|
@@ -20720,12 +21392,21 @@ export default class Client extends OpenApi {
|
|
|
20720
21392
|
return $tea.cast<DescribeConfigurationPriceResponse>(await this.callApi(params, req, runtime), new DescribeConfigurationPriceResponse({}));
|
|
20721
21393
|
}
|
|
20722
21394
|
|
|
21395
|
+
/**
|
|
21396
|
+
* @param request DescribeConfigurationPriceRequest
|
|
21397
|
+
* @return DescribeConfigurationPriceResponse
|
|
21398
|
+
*/
|
|
20723
21399
|
async describeConfigurationPrice(request: DescribeConfigurationPriceRequest): Promise<DescribeConfigurationPriceResponse> {
|
|
20724
21400
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20725
21401
|
let headers : {[key: string ]: string} = { };
|
|
20726
21402
|
return await this.describeConfigurationPriceWithOptions(request, headers, runtime);
|
|
20727
21403
|
}
|
|
20728
21404
|
|
|
21405
|
+
/**
|
|
21406
|
+
* @param headers map
|
|
21407
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21408
|
+
* @return DescribeEdasContainersResponse
|
|
21409
|
+
*/
|
|
20729
21410
|
async describeEdasContainersWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeEdasContainersResponse> {
|
|
20730
21411
|
let req = new $OpenApi.OpenApiRequest({
|
|
20731
21412
|
headers: headers,
|
|
@@ -20744,12 +21425,23 @@ export default class Client extends OpenApi {
|
|
|
20744
21425
|
return $tea.cast<DescribeEdasContainersResponse>(await this.callApi(params, req, runtime), new DescribeEdasContainersResponse({}));
|
|
20745
21426
|
}
|
|
20746
21427
|
|
|
21428
|
+
/**
|
|
21429
|
+
* @return DescribeEdasContainersResponse
|
|
21430
|
+
*/
|
|
20747
21431
|
async describeEdasContainers(): Promise<DescribeEdasContainersResponse> {
|
|
20748
21432
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20749
21433
|
let headers : {[key: string ]: string} = { };
|
|
20750
21434
|
return await this.describeEdasContainersWithOptions(headers, runtime);
|
|
20751
21435
|
}
|
|
20752
21436
|
|
|
21437
|
+
/**
|
|
21438
|
+
* @summary Queries the details of a canary release rule based on the specified rule ID.
|
|
21439
|
+
*
|
|
21440
|
+
* @param request DescribeGreyTagRouteRequest
|
|
21441
|
+
* @param headers map
|
|
21442
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21443
|
+
* @return DescribeGreyTagRouteResponse
|
|
21444
|
+
*/
|
|
20753
21445
|
async describeGreyTagRouteWithOptions(request: DescribeGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeGreyTagRouteResponse> {
|
|
20754
21446
|
Util.validateModel(request);
|
|
20755
21447
|
let query : {[key: string ]: any} = { };
|
|
@@ -20775,12 +21467,24 @@ export default class Client extends OpenApi {
|
|
|
20775
21467
|
return $tea.cast<DescribeGreyTagRouteResponse>(await this.callApi(params, req, runtime), new DescribeGreyTagRouteResponse({}));
|
|
20776
21468
|
}
|
|
20777
21469
|
|
|
21470
|
+
/**
|
|
21471
|
+
* @summary Queries the details of a canary release rule based on the specified rule ID.
|
|
21472
|
+
*
|
|
21473
|
+
* @param request DescribeGreyTagRouteRequest
|
|
21474
|
+
* @return DescribeGreyTagRouteResponse
|
|
21475
|
+
*/
|
|
20778
21476
|
async describeGreyTagRoute(request: DescribeGreyTagRouteRequest): Promise<DescribeGreyTagRouteResponse> {
|
|
20779
21477
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20780
21478
|
let headers : {[key: string ]: string} = { };
|
|
20781
21479
|
return await this.describeGreyTagRouteWithOptions(request, headers, runtime);
|
|
20782
21480
|
}
|
|
20783
21481
|
|
|
21482
|
+
/**
|
|
21483
|
+
* @param request DescribeIngressRequest
|
|
21484
|
+
* @param headers map
|
|
21485
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21486
|
+
* @return DescribeIngressResponse
|
|
21487
|
+
*/
|
|
20784
21488
|
async describeIngressWithOptions(request: DescribeIngressRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeIngressResponse> {
|
|
20785
21489
|
Util.validateModel(request);
|
|
20786
21490
|
let query : {[key: string ]: any} = { };
|
|
@@ -20806,12 +21510,22 @@ export default class Client extends OpenApi {
|
|
|
20806
21510
|
return $tea.cast<DescribeIngressResponse>(await this.callApi(params, req, runtime), new DescribeIngressResponse({}));
|
|
20807
21511
|
}
|
|
20808
21512
|
|
|
21513
|
+
/**
|
|
21514
|
+
* @param request DescribeIngressRequest
|
|
21515
|
+
* @return DescribeIngressResponse
|
|
21516
|
+
*/
|
|
20809
21517
|
async describeIngress(request: DescribeIngressRequest): Promise<DescribeIngressResponse> {
|
|
20810
21518
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20811
21519
|
let headers : {[key: string ]: string} = { };
|
|
20812
21520
|
return await this.describeIngressWithOptions(request, headers, runtime);
|
|
20813
21521
|
}
|
|
20814
21522
|
|
|
21523
|
+
/**
|
|
21524
|
+
* @param request DescribeInstanceLogRequest
|
|
21525
|
+
* @param headers map
|
|
21526
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21527
|
+
* @return DescribeInstanceLogResponse
|
|
21528
|
+
*/
|
|
20815
21529
|
async describeInstanceLogWithOptions(request: DescribeInstanceLogRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceLogResponse> {
|
|
20816
21530
|
Util.validateModel(request);
|
|
20817
21531
|
let query : {[key: string ]: any} = { };
|
|
@@ -20837,12 +21551,21 @@ export default class Client extends OpenApi {
|
|
|
20837
21551
|
return $tea.cast<DescribeInstanceLogResponse>(await this.callApi(params, req, runtime), new DescribeInstanceLogResponse({}));
|
|
20838
21552
|
}
|
|
20839
21553
|
|
|
21554
|
+
/**
|
|
21555
|
+
* @param request DescribeInstanceLogRequest
|
|
21556
|
+
* @return DescribeInstanceLogResponse
|
|
21557
|
+
*/
|
|
20840
21558
|
async describeInstanceLog(request: DescribeInstanceLogRequest): Promise<DescribeInstanceLogResponse> {
|
|
20841
21559
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20842
21560
|
let headers : {[key: string ]: string} = { };
|
|
20843
21561
|
return await this.describeInstanceLogWithOptions(request, headers, runtime);
|
|
20844
21562
|
}
|
|
20845
21563
|
|
|
21564
|
+
/**
|
|
21565
|
+
* @param headers map
|
|
21566
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21567
|
+
* @return DescribeInstanceSpecificationsResponse
|
|
21568
|
+
*/
|
|
20846
21569
|
async describeInstanceSpecificationsWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceSpecificationsResponse> {
|
|
20847
21570
|
let req = new $OpenApi.OpenApiRequest({
|
|
20848
21571
|
headers: headers,
|
|
@@ -20861,12 +21584,23 @@ export default class Client extends OpenApi {
|
|
|
20861
21584
|
return $tea.cast<DescribeInstanceSpecificationsResponse>(await this.callApi(params, req, runtime), new DescribeInstanceSpecificationsResponse({}));
|
|
20862
21585
|
}
|
|
20863
21586
|
|
|
21587
|
+
/**
|
|
21588
|
+
* @return DescribeInstanceSpecificationsResponse
|
|
21589
|
+
*/
|
|
20864
21590
|
async describeInstanceSpecifications(): Promise<DescribeInstanceSpecificationsResponse> {
|
|
20865
21591
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20866
21592
|
let headers : {[key: string ]: string} = { };
|
|
20867
21593
|
return await this.describeInstanceSpecificationsWithOptions(headers, runtime);
|
|
20868
21594
|
}
|
|
20869
21595
|
|
|
21596
|
+
/**
|
|
21597
|
+
* @summary Queries the configurations of a job template.
|
|
21598
|
+
*
|
|
21599
|
+
* @param request DescribeJobRequest
|
|
21600
|
+
* @param headers map
|
|
21601
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21602
|
+
* @return DescribeJobResponse
|
|
21603
|
+
*/
|
|
20870
21604
|
async describeJobWithOptions(request: DescribeJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeJobResponse> {
|
|
20871
21605
|
Util.validateModel(request);
|
|
20872
21606
|
let query : {[key: string ]: any} = { };
|
|
@@ -20896,12 +21630,26 @@ export default class Client extends OpenApi {
|
|
|
20896
21630
|
return $tea.cast<DescribeJobResponse>(await this.callApi(params, req, runtime), new DescribeJobResponse({}));
|
|
20897
21631
|
}
|
|
20898
21632
|
|
|
21633
|
+
/**
|
|
21634
|
+
* @summary Queries the configurations of a job template.
|
|
21635
|
+
*
|
|
21636
|
+
* @param request DescribeJobRequest
|
|
21637
|
+
* @return DescribeJobResponse
|
|
21638
|
+
*/
|
|
20899
21639
|
async describeJob(request: DescribeJobRequest): Promise<DescribeJobResponse> {
|
|
20900
21640
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20901
21641
|
let headers : {[key: string ]: string} = { };
|
|
20902
21642
|
return await this.describeJobWithOptions(request, headers, runtime);
|
|
20903
21643
|
}
|
|
20904
21644
|
|
|
21645
|
+
/**
|
|
21646
|
+
* @summary Query the information about jobs.
|
|
21647
|
+
*
|
|
21648
|
+
* @param request DescribeJobHistoryRequest
|
|
21649
|
+
* @param headers map
|
|
21650
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21651
|
+
* @return DescribeJobHistoryResponse
|
|
21652
|
+
*/
|
|
20905
21653
|
async describeJobHistoryWithOptions(request: DescribeJobHistoryRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeJobHistoryResponse> {
|
|
20906
21654
|
Util.validateModel(request);
|
|
20907
21655
|
let query : {[key: string ]: any} = { };
|
|
@@ -20939,12 +21687,26 @@ export default class Client extends OpenApi {
|
|
|
20939
21687
|
return $tea.cast<DescribeJobHistoryResponse>(await this.callApi(params, req, runtime), new DescribeJobHistoryResponse({}));
|
|
20940
21688
|
}
|
|
20941
21689
|
|
|
21690
|
+
/**
|
|
21691
|
+
* @summary Query the information about jobs.
|
|
21692
|
+
*
|
|
21693
|
+
* @param request DescribeJobHistoryRequest
|
|
21694
|
+
* @return DescribeJobHistoryResponse
|
|
21695
|
+
*/
|
|
20942
21696
|
async describeJobHistory(request: DescribeJobHistoryRequest): Promise<DescribeJobHistoryResponse> {
|
|
20943
21697
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20944
21698
|
let headers : {[key: string ]: string} = { };
|
|
20945
21699
|
return await this.describeJobHistoryWithOptions(request, headers, runtime);
|
|
20946
21700
|
}
|
|
20947
21701
|
|
|
21702
|
+
/**
|
|
21703
|
+
* @summary Queries the status of a job.
|
|
21704
|
+
*
|
|
21705
|
+
* @param request DescribeJobStatusRequest
|
|
21706
|
+
* @param headers map
|
|
21707
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21708
|
+
* @return DescribeJobStatusResponse
|
|
21709
|
+
*/
|
|
20948
21710
|
async describeJobStatusWithOptions(request: DescribeJobStatusRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeJobStatusResponse> {
|
|
20949
21711
|
Util.validateModel(request);
|
|
20950
21712
|
let query : {[key: string ]: any} = { };
|
|
@@ -20974,12 +21736,26 @@ export default class Client extends OpenApi {
|
|
|
20974
21736
|
return $tea.cast<DescribeJobStatusResponse>(await this.callApi(params, req, runtime), new DescribeJobStatusResponse({}));
|
|
20975
21737
|
}
|
|
20976
21738
|
|
|
21739
|
+
/**
|
|
21740
|
+
* @summary Queries the status of a job.
|
|
21741
|
+
*
|
|
21742
|
+
* @param request DescribeJobStatusRequest
|
|
21743
|
+
* @return DescribeJobStatusResponse
|
|
21744
|
+
*/
|
|
20977
21745
|
async describeJobStatus(request: DescribeJobStatusRequest): Promise<DescribeJobStatusResponse> {
|
|
20978
21746
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20979
21747
|
let headers : {[key: string ]: string} = { };
|
|
20980
21748
|
return await this.describeJobStatusWithOptions(request, headers, runtime);
|
|
20981
21749
|
}
|
|
20982
21750
|
|
|
21751
|
+
/**
|
|
21752
|
+
* @summary Queries the details of a namespace.
|
|
21753
|
+
*
|
|
21754
|
+
* @param request DescribeNamespaceRequest
|
|
21755
|
+
* @param headers map
|
|
21756
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21757
|
+
* @return DescribeNamespaceResponse
|
|
21758
|
+
*/
|
|
20983
21759
|
async describeNamespaceWithOptions(request: DescribeNamespaceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNamespaceResponse> {
|
|
20984
21760
|
Util.validateModel(request);
|
|
20985
21761
|
let query : {[key: string ]: any} = { };
|
|
@@ -21009,12 +21785,24 @@ export default class Client extends OpenApi {
|
|
|
21009
21785
|
return $tea.cast<DescribeNamespaceResponse>(await this.callApi(params, req, runtime), new DescribeNamespaceResponse({}));
|
|
21010
21786
|
}
|
|
21011
21787
|
|
|
21788
|
+
/**
|
|
21789
|
+
* @summary Queries the details of a namespace.
|
|
21790
|
+
*
|
|
21791
|
+
* @param request DescribeNamespaceRequest
|
|
21792
|
+
* @return DescribeNamespaceResponse
|
|
21793
|
+
*/
|
|
21012
21794
|
async describeNamespace(request: DescribeNamespaceRequest): Promise<DescribeNamespaceResponse> {
|
|
21013
21795
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21014
21796
|
let headers : {[key: string ]: string} = { };
|
|
21015
21797
|
return await this.describeNamespaceWithOptions(request, headers, runtime);
|
|
21016
21798
|
}
|
|
21017
21799
|
|
|
21800
|
+
/**
|
|
21801
|
+
* @param request DescribeNamespaceListRequest
|
|
21802
|
+
* @param headers map
|
|
21803
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21804
|
+
* @return DescribeNamespaceListResponse
|
|
21805
|
+
*/
|
|
21018
21806
|
async describeNamespaceListWithOptions(request: DescribeNamespaceListRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNamespaceListResponse> {
|
|
21019
21807
|
Util.validateModel(request);
|
|
21020
21808
|
let query : {[key: string ]: any} = { };
|
|
@@ -21044,12 +21832,22 @@ export default class Client extends OpenApi {
|
|
|
21044
21832
|
return $tea.cast<DescribeNamespaceListResponse>(await this.callApi(params, req, runtime), new DescribeNamespaceListResponse({}));
|
|
21045
21833
|
}
|
|
21046
21834
|
|
|
21835
|
+
/**
|
|
21836
|
+
* @param request DescribeNamespaceListRequest
|
|
21837
|
+
* @return DescribeNamespaceListResponse
|
|
21838
|
+
*/
|
|
21047
21839
|
async describeNamespaceList(request: DescribeNamespaceListRequest): Promise<DescribeNamespaceListResponse> {
|
|
21048
21840
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21049
21841
|
let headers : {[key: string ]: string} = { };
|
|
21050
21842
|
return await this.describeNamespaceListWithOptions(request, headers, runtime);
|
|
21051
21843
|
}
|
|
21052
21844
|
|
|
21845
|
+
/**
|
|
21846
|
+
* @param request DescribeNamespaceResourcesRequest
|
|
21847
|
+
* @param headers map
|
|
21848
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21849
|
+
* @return DescribeNamespaceResourcesResponse
|
|
21850
|
+
*/
|
|
21053
21851
|
async describeNamespaceResourcesWithOptions(request: DescribeNamespaceResourcesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNamespaceResourcesResponse> {
|
|
21054
21852
|
Util.validateModel(request);
|
|
21055
21853
|
let query : {[key: string ]: any} = { };
|
|
@@ -21079,12 +21877,24 @@ export default class Client extends OpenApi {
|
|
|
21079
21877
|
return $tea.cast<DescribeNamespaceResourcesResponse>(await this.callApi(params, req, runtime), new DescribeNamespaceResourcesResponse({}));
|
|
21080
21878
|
}
|
|
21081
21879
|
|
|
21880
|
+
/**
|
|
21881
|
+
* @param request DescribeNamespaceResourcesRequest
|
|
21882
|
+
* @return DescribeNamespaceResourcesResponse
|
|
21883
|
+
*/
|
|
21082
21884
|
async describeNamespaceResources(request: DescribeNamespaceResourcesRequest): Promise<DescribeNamespaceResourcesResponse> {
|
|
21083
21885
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21084
21886
|
let headers : {[key: string ]: string} = { };
|
|
21085
21887
|
return await this.describeNamespaceResourcesWithOptions(request, headers, runtime);
|
|
21086
21888
|
}
|
|
21087
21889
|
|
|
21890
|
+
/**
|
|
21891
|
+
* @summary Queries the details of namespaces.
|
|
21892
|
+
*
|
|
21893
|
+
* @param request DescribeNamespacesRequest
|
|
21894
|
+
* @param headers map
|
|
21895
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21896
|
+
* @return DescribeNamespacesResponse
|
|
21897
|
+
*/
|
|
21088
21898
|
async describeNamespacesWithOptions(request: DescribeNamespacesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNamespacesResponse> {
|
|
21089
21899
|
Util.validateModel(request);
|
|
21090
21900
|
let query : {[key: string ]: any} = { };
|
|
@@ -21114,12 +21924,26 @@ export default class Client extends OpenApi {
|
|
|
21114
21924
|
return $tea.cast<DescribeNamespacesResponse>(await this.callApi(params, req, runtime), new DescribeNamespacesResponse({}));
|
|
21115
21925
|
}
|
|
21116
21926
|
|
|
21927
|
+
/**
|
|
21928
|
+
* @summary Queries the details of namespaces.
|
|
21929
|
+
*
|
|
21930
|
+
* @param request DescribeNamespacesRequest
|
|
21931
|
+
* @return DescribeNamespacesResponse
|
|
21932
|
+
*/
|
|
21117
21933
|
async describeNamespaces(request: DescribeNamespacesRequest): Promise<DescribeNamespacesResponse> {
|
|
21118
21934
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21119
21935
|
let headers : {[key: string ]: string} = { };
|
|
21120
21936
|
return await this.describeNamespacesWithOptions(request, headers, runtime);
|
|
21121
21937
|
}
|
|
21122
21938
|
|
|
21939
|
+
/**
|
|
21940
|
+
* @summary Queries the information of a batch.
|
|
21941
|
+
*
|
|
21942
|
+
* @param request DescribePipelineRequest
|
|
21943
|
+
* @param headers map
|
|
21944
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21945
|
+
* @return DescribePipelineResponse
|
|
21946
|
+
*/
|
|
21123
21947
|
async describePipelineWithOptions(request: DescribePipelineRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribePipelineResponse> {
|
|
21124
21948
|
Util.validateModel(request);
|
|
21125
21949
|
let query : {[key: string ]: any} = { };
|
|
@@ -21145,12 +21969,25 @@ export default class Client extends OpenApi {
|
|
|
21145
21969
|
return $tea.cast<DescribePipelineResponse>(await this.callApi(params, req, runtime), new DescribePipelineResponse({}));
|
|
21146
21970
|
}
|
|
21147
21971
|
|
|
21972
|
+
/**
|
|
21973
|
+
* @summary Queries the information of a batch.
|
|
21974
|
+
*
|
|
21975
|
+
* @param request DescribePipelineRequest
|
|
21976
|
+
* @return DescribePipelineResponse
|
|
21977
|
+
*/
|
|
21148
21978
|
async describePipeline(request: DescribePipelineRequest): Promise<DescribePipelineResponse> {
|
|
21149
21979
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21150
21980
|
let headers : {[key: string ]: string} = { };
|
|
21151
21981
|
return await this.describePipelineWithOptions(request, headers, runtime);
|
|
21152
21982
|
}
|
|
21153
21983
|
|
|
21984
|
+
/**
|
|
21985
|
+
* @summary Queries available regions.
|
|
21986
|
+
*
|
|
21987
|
+
* @param headers map
|
|
21988
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21989
|
+
* @return DescribeRegionsResponse
|
|
21990
|
+
*/
|
|
21154
21991
|
async describeRegionsWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse> {
|
|
21155
21992
|
let req = new $OpenApi.OpenApiRequest({
|
|
21156
21993
|
headers: headers,
|
|
@@ -21169,12 +22006,25 @@ export default class Client extends OpenApi {
|
|
|
21169
22006
|
return $tea.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
21170
22007
|
}
|
|
21171
22008
|
|
|
22009
|
+
/**
|
|
22010
|
+
* @summary Queries available regions.
|
|
22011
|
+
*
|
|
22012
|
+
* @return DescribeRegionsResponse
|
|
22013
|
+
*/
|
|
21172
22014
|
async describeRegions(): Promise<DescribeRegionsResponse> {
|
|
21173
22015
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21174
22016
|
let headers : {[key: string ]: string} = { };
|
|
21175
22017
|
return await this.describeRegionsWithOptions(headers, runtime);
|
|
21176
22018
|
}
|
|
21177
22019
|
|
|
22020
|
+
/**
|
|
22021
|
+
* @summary Queries the details of a Secret instance.
|
|
22022
|
+
*
|
|
22023
|
+
* @param request DescribeSecretRequest
|
|
22024
|
+
* @param headers map
|
|
22025
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22026
|
+
* @return DescribeSecretResponse
|
|
22027
|
+
*/
|
|
21178
22028
|
async describeSecretWithOptions(request: DescribeSecretRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeSecretResponse> {
|
|
21179
22029
|
Util.validateModel(request);
|
|
21180
22030
|
let query : {[key: string ]: any} = { };
|
|
@@ -21204,12 +22054,24 @@ export default class Client extends OpenApi {
|
|
|
21204
22054
|
return $tea.cast<DescribeSecretResponse>(await this.callApi(params, req, runtime), new DescribeSecretResponse({}));
|
|
21205
22055
|
}
|
|
21206
22056
|
|
|
22057
|
+
/**
|
|
22058
|
+
* @summary Queries the details of a Secret instance.
|
|
22059
|
+
*
|
|
22060
|
+
* @param request DescribeSecretRequest
|
|
22061
|
+
* @return DescribeSecretResponse
|
|
22062
|
+
*/
|
|
21207
22063
|
async describeSecret(request: DescribeSecretRequest): Promise<DescribeSecretResponse> {
|
|
21208
22064
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21209
22065
|
let headers : {[key: string ]: string} = { };
|
|
21210
22066
|
return await this.describeSecretWithOptions(request, headers, runtime);
|
|
21211
22067
|
}
|
|
21212
22068
|
|
|
22069
|
+
/**
|
|
22070
|
+
* @param request DisableApplicationScalingRuleRequest
|
|
22071
|
+
* @param headers map
|
|
22072
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22073
|
+
* @return DisableApplicationScalingRuleResponse
|
|
22074
|
+
*/
|
|
21213
22075
|
async disableApplicationScalingRuleWithOptions(request: DisableApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DisableApplicationScalingRuleResponse> {
|
|
21214
22076
|
Util.validateModel(request);
|
|
21215
22077
|
let query : {[key: string ]: any} = { };
|
|
@@ -21239,12 +22101,24 @@ export default class Client extends OpenApi {
|
|
|
21239
22101
|
return $tea.cast<DisableApplicationScalingRuleResponse>(await this.callApi(params, req, runtime), new DisableApplicationScalingRuleResponse({}));
|
|
21240
22102
|
}
|
|
21241
22103
|
|
|
22104
|
+
/**
|
|
22105
|
+
* @param request DisableApplicationScalingRuleRequest
|
|
22106
|
+
* @return DisableApplicationScalingRuleResponse
|
|
22107
|
+
*/
|
|
21242
22108
|
async disableApplicationScalingRule(request: DisableApplicationScalingRuleRequest): Promise<DisableApplicationScalingRuleResponse> {
|
|
21243
22109
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21244
22110
|
let headers : {[key: string ]: string} = { };
|
|
21245
22111
|
return await this.disableApplicationScalingRuleWithOptions(request, headers, runtime);
|
|
21246
22112
|
}
|
|
21247
22113
|
|
|
22114
|
+
/**
|
|
22115
|
+
* @summary Enables an auto scaling policy for an application.
|
|
22116
|
+
*
|
|
22117
|
+
* @param request EnableApplicationScalingRuleRequest
|
|
22118
|
+
* @param headers map
|
|
22119
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22120
|
+
* @return EnableApplicationScalingRuleResponse
|
|
22121
|
+
*/
|
|
21248
22122
|
async enableApplicationScalingRuleWithOptions(request: EnableApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<EnableApplicationScalingRuleResponse> {
|
|
21249
22123
|
Util.validateModel(request);
|
|
21250
22124
|
let query : {[key: string ]: any} = { };
|
|
@@ -21274,12 +22148,24 @@ export default class Client extends OpenApi {
|
|
|
21274
22148
|
return $tea.cast<EnableApplicationScalingRuleResponse>(await this.callApi(params, req, runtime), new EnableApplicationScalingRuleResponse({}));
|
|
21275
22149
|
}
|
|
21276
22150
|
|
|
22151
|
+
/**
|
|
22152
|
+
* @summary Enables an auto scaling policy for an application.
|
|
22153
|
+
*
|
|
22154
|
+
* @param request EnableApplicationScalingRuleRequest
|
|
22155
|
+
* @return EnableApplicationScalingRuleResponse
|
|
22156
|
+
*/
|
|
21277
22157
|
async enableApplicationScalingRule(request: EnableApplicationScalingRuleRequest): Promise<EnableApplicationScalingRuleResponse> {
|
|
21278
22158
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21279
22159
|
let headers : {[key: string ]: string} = { };
|
|
21280
22160
|
return await this.enableApplicationScalingRuleWithOptions(request, headers, runtime);
|
|
21281
22161
|
}
|
|
21282
22162
|
|
|
22163
|
+
/**
|
|
22164
|
+
* @param request ExecJobRequest
|
|
22165
|
+
* @param headers map
|
|
22166
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22167
|
+
* @return ExecJobResponse
|
|
22168
|
+
*/
|
|
21283
22169
|
async execJobWithOptions(request: ExecJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ExecJobResponse> {
|
|
21284
22170
|
Util.validateModel(request);
|
|
21285
22171
|
let query : {[key: string ]: any} = { };
|
|
@@ -21341,12 +22227,24 @@ export default class Client extends OpenApi {
|
|
|
21341
22227
|
return $tea.cast<ExecJobResponse>(await this.callApi(params, req, runtime), new ExecJobResponse({}));
|
|
21342
22228
|
}
|
|
21343
22229
|
|
|
22230
|
+
/**
|
|
22231
|
+
* @param request ExecJobRequest
|
|
22232
|
+
* @return ExecJobResponse
|
|
22233
|
+
*/
|
|
21344
22234
|
async execJob(request: ExecJobRequest): Promise<ExecJobResponse> {
|
|
21345
22235
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21346
22236
|
let headers : {[key: string ]: string} = { };
|
|
21347
22237
|
return await this.execJobWithOptions(request, headers, runtime);
|
|
21348
22238
|
}
|
|
21349
22239
|
|
|
22240
|
+
/**
|
|
22241
|
+
* @summary Queries the top N applications in Application Monitoring.
|
|
22242
|
+
*
|
|
22243
|
+
* @param request GetArmsTopNMetricRequest
|
|
22244
|
+
* @param headers map
|
|
22245
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22246
|
+
* @return GetArmsTopNMetricResponse
|
|
22247
|
+
*/
|
|
21350
22248
|
async getArmsTopNMetricWithOptions(request: GetArmsTopNMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetArmsTopNMetricResponse> {
|
|
21351
22249
|
Util.validateModel(request);
|
|
21352
22250
|
let query : {[key: string ]: any} = { };
|
|
@@ -21396,12 +22294,26 @@ export default class Client extends OpenApi {
|
|
|
21396
22294
|
return $tea.cast<GetArmsTopNMetricResponse>(await this.callApi(params, req, runtime), new GetArmsTopNMetricResponse({}));
|
|
21397
22295
|
}
|
|
21398
22296
|
|
|
22297
|
+
/**
|
|
22298
|
+
* @summary Queries the top N applications in Application Monitoring.
|
|
22299
|
+
*
|
|
22300
|
+
* @param request GetArmsTopNMetricRequest
|
|
22301
|
+
* @return GetArmsTopNMetricResponse
|
|
22302
|
+
*/
|
|
21399
22303
|
async getArmsTopNMetric(request: GetArmsTopNMetricRequest): Promise<GetArmsTopNMetricResponse> {
|
|
21400
22304
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21401
22305
|
let headers : {[key: string ]: string} = { };
|
|
21402
22306
|
return await this.getArmsTopNMetricWithOptions(request, headers, runtime);
|
|
21403
22307
|
}
|
|
21404
22308
|
|
|
22309
|
+
/**
|
|
22310
|
+
* @summary Queries the top N applications in which abnormal instances exist. The applications are sorted by the total number of abnormal instances.
|
|
22311
|
+
*
|
|
22312
|
+
* @param request GetAvailabilityMetricRequest
|
|
22313
|
+
* @param headers map
|
|
22314
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22315
|
+
* @return GetAvailabilityMetricResponse
|
|
22316
|
+
*/
|
|
21405
22317
|
async getAvailabilityMetricWithOptions(request: GetAvailabilityMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetAvailabilityMetricResponse> {
|
|
21406
22318
|
Util.validateModel(request);
|
|
21407
22319
|
let query : {[key: string ]: any} = { };
|
|
@@ -21439,12 +22351,26 @@ export default class Client extends OpenApi {
|
|
|
21439
22351
|
return $tea.cast<GetAvailabilityMetricResponse>(await this.callApi(params, req, runtime), new GetAvailabilityMetricResponse({}));
|
|
21440
22352
|
}
|
|
21441
22353
|
|
|
22354
|
+
/**
|
|
22355
|
+
* @summary Queries the top N applications in which abnormal instances exist. The applications are sorted by the total number of abnormal instances.
|
|
22356
|
+
*
|
|
22357
|
+
* @param request GetAvailabilityMetricRequest
|
|
22358
|
+
* @return GetAvailabilityMetricResponse
|
|
22359
|
+
*/
|
|
21442
22360
|
async getAvailabilityMetric(request: GetAvailabilityMetricRequest): Promise<GetAvailabilityMetricResponse> {
|
|
21443
22361
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21444
22362
|
let headers : {[key: string ]: string} = { };
|
|
21445
22363
|
return await this.getAvailabilityMetricWithOptions(request, headers, runtime);
|
|
21446
22364
|
}
|
|
21447
22365
|
|
|
22366
|
+
/**
|
|
22367
|
+
* @summary Queries top N applications in abnormal change orders.
|
|
22368
|
+
*
|
|
22369
|
+
* @param request GetChangeOrderMetricRequest
|
|
22370
|
+
* @param headers map
|
|
22371
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22372
|
+
* @return GetChangeOrderMetricResponse
|
|
22373
|
+
*/
|
|
21448
22374
|
async getChangeOrderMetricWithOptions(request: GetChangeOrderMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetChangeOrderMetricResponse> {
|
|
21449
22375
|
Util.validateModel(request);
|
|
21450
22376
|
let query : {[key: string ]: any} = { };
|
|
@@ -21490,12 +22416,26 @@ export default class Client extends OpenApi {
|
|
|
21490
22416
|
return $tea.cast<GetChangeOrderMetricResponse>(await this.callApi(params, req, runtime), new GetChangeOrderMetricResponse({}));
|
|
21491
22417
|
}
|
|
21492
22418
|
|
|
22419
|
+
/**
|
|
22420
|
+
* @summary Queries top N applications in abnormal change orders.
|
|
22421
|
+
*
|
|
22422
|
+
* @param request GetChangeOrderMetricRequest
|
|
22423
|
+
* @return GetChangeOrderMetricResponse
|
|
22424
|
+
*/
|
|
21493
22425
|
async getChangeOrderMetric(request: GetChangeOrderMetricRequest): Promise<GetChangeOrderMetricResponse> {
|
|
21494
22426
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21495
22427
|
let headers : {[key: string ]: string} = { };
|
|
21496
22428
|
return await this.getChangeOrderMetricWithOptions(request, headers, runtime);
|
|
21497
22429
|
}
|
|
21498
22430
|
|
|
22431
|
+
/**
|
|
22432
|
+
* @summary Queries the top N applications in which auto scaling takes effect.
|
|
22433
|
+
*
|
|
22434
|
+
* @param request GetScaleAppMetricRequest
|
|
22435
|
+
* @param headers map
|
|
22436
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22437
|
+
* @return GetScaleAppMetricResponse
|
|
22438
|
+
*/
|
|
21499
22439
|
async getScaleAppMetricWithOptions(request: GetScaleAppMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetScaleAppMetricResponse> {
|
|
21500
22440
|
Util.validateModel(request);
|
|
21501
22441
|
let query : {[key: string ]: any} = { };
|
|
@@ -21533,12 +22473,26 @@ export default class Client extends OpenApi {
|
|
|
21533
22473
|
return $tea.cast<GetScaleAppMetricResponse>(await this.callApi(params, req, runtime), new GetScaleAppMetricResponse({}));
|
|
21534
22474
|
}
|
|
21535
22475
|
|
|
22476
|
+
/**
|
|
22477
|
+
* @summary Queries the top N applications in which auto scaling takes effect.
|
|
22478
|
+
*
|
|
22479
|
+
* @param request GetScaleAppMetricRequest
|
|
22480
|
+
* @return GetScaleAppMetricResponse
|
|
22481
|
+
*/
|
|
21536
22482
|
async getScaleAppMetric(request: GetScaleAppMetricRequest): Promise<GetScaleAppMetricResponse> {
|
|
21537
22483
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21538
22484
|
let headers : {[key: string ]: string} = { };
|
|
21539
22485
|
return await this.getScaleAppMetricWithOptions(request, headers, runtime);
|
|
21540
22486
|
}
|
|
21541
22487
|
|
|
22488
|
+
/**
|
|
22489
|
+
* @summary Queries the top N applications in which Warning events occur.
|
|
22490
|
+
*
|
|
22491
|
+
* @param request GetWarningEventMetricRequest
|
|
22492
|
+
* @param headers map
|
|
22493
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22494
|
+
* @return GetWarningEventMetricResponse
|
|
22495
|
+
*/
|
|
21542
22496
|
async getWarningEventMetricWithOptions(request: GetWarningEventMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetWarningEventMetricResponse> {
|
|
21543
22497
|
Util.validateModel(request);
|
|
21544
22498
|
let query : {[key: string ]: any} = { };
|
|
@@ -21584,12 +22538,26 @@ export default class Client extends OpenApi {
|
|
|
21584
22538
|
return $tea.cast<GetWarningEventMetricResponse>(await this.callApi(params, req, runtime), new GetWarningEventMetricResponse({}));
|
|
21585
22539
|
}
|
|
21586
22540
|
|
|
22541
|
+
/**
|
|
22542
|
+
* @summary Queries the top N applications in which Warning events occur.
|
|
22543
|
+
*
|
|
22544
|
+
* @param request GetWarningEventMetricRequest
|
|
22545
|
+
* @return GetWarningEventMetricResponse
|
|
22546
|
+
*/
|
|
21587
22547
|
async getWarningEventMetric(request: GetWarningEventMetricRequest): Promise<GetWarningEventMetricResponse> {
|
|
21588
22548
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21589
22549
|
let headers : {[key: string ]: string} = { };
|
|
21590
22550
|
return await this.getWarningEventMetricWithOptions(request, headers, runtime);
|
|
21591
22551
|
}
|
|
21592
22552
|
|
|
22553
|
+
/**
|
|
22554
|
+
* @summary Queries the events that occurred in an application.
|
|
22555
|
+
*
|
|
22556
|
+
* @param request ListAppEventsRequest
|
|
22557
|
+
* @param headers map
|
|
22558
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22559
|
+
* @return ListAppEventsResponse
|
|
22560
|
+
*/
|
|
21593
22561
|
async listAppEventsWithOptions(request: ListAppEventsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListAppEventsResponse> {
|
|
21594
22562
|
Util.validateModel(request);
|
|
21595
22563
|
let query : {[key: string ]: any} = { };
|
|
@@ -21643,12 +22611,26 @@ export default class Client extends OpenApi {
|
|
|
21643
22611
|
return $tea.cast<ListAppEventsResponse>(await this.callApi(params, req, runtime), new ListAppEventsResponse({}));
|
|
21644
22612
|
}
|
|
21645
22613
|
|
|
22614
|
+
/**
|
|
22615
|
+
* @summary Queries the events that occurred in an application.
|
|
22616
|
+
*
|
|
22617
|
+
* @param request ListAppEventsRequest
|
|
22618
|
+
* @return ListAppEventsResponse
|
|
22619
|
+
*/
|
|
21646
22620
|
async listAppEvents(request: ListAppEventsRequest): Promise<ListAppEventsResponse> {
|
|
21647
22621
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21648
22622
|
let headers : {[key: string ]: string} = { };
|
|
21649
22623
|
return await this.listAppEventsWithOptions(request, headers, runtime);
|
|
21650
22624
|
}
|
|
21651
22625
|
|
|
22626
|
+
/**
|
|
22627
|
+
* @summary 6dcc8c9e-d3da-478a-a066-86dcf820\\*\\*\\*\\*
|
|
22628
|
+
*
|
|
22629
|
+
* @param request ListAppServicesPageRequest
|
|
22630
|
+
* @param headers map
|
|
22631
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22632
|
+
* @return ListAppServicesPageResponse
|
|
22633
|
+
*/
|
|
21652
22634
|
async listAppServicesPageWithOptions(request: ListAppServicesPageRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListAppServicesPageResponse> {
|
|
21653
22635
|
Util.validateModel(request);
|
|
21654
22636
|
let query : {[key: string ]: any} = { };
|
|
@@ -21686,12 +22668,26 @@ export default class Client extends OpenApi {
|
|
|
21686
22668
|
return $tea.cast<ListAppServicesPageResponse>(await this.callApi(params, req, runtime), new ListAppServicesPageResponse({}));
|
|
21687
22669
|
}
|
|
21688
22670
|
|
|
22671
|
+
/**
|
|
22672
|
+
* @summary 6dcc8c9e-d3da-478a-a066-86dcf820\\*\\*\\*\\*
|
|
22673
|
+
*
|
|
22674
|
+
* @param request ListAppServicesPageRequest
|
|
22675
|
+
* @return ListAppServicesPageResponse
|
|
22676
|
+
*/
|
|
21689
22677
|
async listAppServicesPage(request: ListAppServicesPageRequest): Promise<ListAppServicesPageResponse> {
|
|
21690
22678
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21691
22679
|
let headers : {[key: string ]: string} = { };
|
|
21692
22680
|
return await this.listAppServicesPageWithOptions(request, headers, runtime);
|
|
21693
22681
|
}
|
|
21694
22682
|
|
|
22683
|
+
/**
|
|
22684
|
+
* @summary 7171a6ca-d1cd-4928-8642-7d5cfe69\\*\\*\\*\\*
|
|
22685
|
+
*
|
|
22686
|
+
* @param request ListAppVersionsRequest
|
|
22687
|
+
* @param headers map
|
|
22688
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22689
|
+
* @return ListAppVersionsResponse
|
|
22690
|
+
*/
|
|
21695
22691
|
async listAppVersionsWithOptions(request: ListAppVersionsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListAppVersionsResponse> {
|
|
21696
22692
|
Util.validateModel(request);
|
|
21697
22693
|
let query : {[key: string ]: any} = { };
|
|
@@ -21717,12 +22713,26 @@ export default class Client extends OpenApi {
|
|
|
21717
22713
|
return $tea.cast<ListAppVersionsResponse>(await this.callApi(params, req, runtime), new ListAppVersionsResponse({}));
|
|
21718
22714
|
}
|
|
21719
22715
|
|
|
22716
|
+
/**
|
|
22717
|
+
* @summary 7171a6ca-d1cd-4928-8642-7d5cfe69\\*\\*\\*\\*
|
|
22718
|
+
*
|
|
22719
|
+
* @param request ListAppVersionsRequest
|
|
22720
|
+
* @return ListAppVersionsResponse
|
|
22721
|
+
*/
|
|
21720
22722
|
async listAppVersions(request: ListAppVersionsRequest): Promise<ListAppVersionsResponse> {
|
|
21721
22723
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21722
22724
|
let headers : {[key: string ]: string} = { };
|
|
21723
22725
|
return await this.listAppVersionsWithOptions(request, headers, runtime);
|
|
21724
22726
|
}
|
|
21725
22727
|
|
|
22728
|
+
/**
|
|
22729
|
+
* @summary The ID of the namespace.
|
|
22730
|
+
*
|
|
22731
|
+
* @param request ListApplicationsRequest
|
|
22732
|
+
* @param headers map
|
|
22733
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22734
|
+
* @return ListApplicationsResponse
|
|
22735
|
+
*/
|
|
21726
22736
|
async listApplicationsWithOptions(request: ListApplicationsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListApplicationsResponse> {
|
|
21727
22737
|
Util.validateModel(request);
|
|
21728
22738
|
let query : {[key: string ]: any} = { };
|
|
@@ -21784,12 +22794,24 @@ export default class Client extends OpenApi {
|
|
|
21784
22794
|
return $tea.cast<ListApplicationsResponse>(await this.callApi(params, req, runtime), new ListApplicationsResponse({}));
|
|
21785
22795
|
}
|
|
21786
22796
|
|
|
22797
|
+
/**
|
|
22798
|
+
* @summary The ID of the namespace.
|
|
22799
|
+
*
|
|
22800
|
+
* @param request ListApplicationsRequest
|
|
22801
|
+
* @return ListApplicationsResponse
|
|
22802
|
+
*/
|
|
21787
22803
|
async listApplications(request: ListApplicationsRequest): Promise<ListApplicationsResponse> {
|
|
21788
22804
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21789
22805
|
let headers : {[key: string ]: string} = { };
|
|
21790
22806
|
return await this.listApplicationsWithOptions(request, headers, runtime);
|
|
21791
22807
|
}
|
|
21792
22808
|
|
|
22809
|
+
/**
|
|
22810
|
+
* @param request ListChangeOrdersRequest
|
|
22811
|
+
* @param headers map
|
|
22812
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22813
|
+
* @return ListChangeOrdersResponse
|
|
22814
|
+
*/
|
|
21793
22815
|
async listChangeOrdersWithOptions(request: ListChangeOrdersRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListChangeOrdersResponse> {
|
|
21794
22816
|
Util.validateModel(request);
|
|
21795
22817
|
let query : {[key: string ]: any} = { };
|
|
@@ -21835,12 +22857,24 @@ export default class Client extends OpenApi {
|
|
|
21835
22857
|
return $tea.cast<ListChangeOrdersResponse>(await this.callApi(params, req, runtime), new ListChangeOrdersResponse({}));
|
|
21836
22858
|
}
|
|
21837
22859
|
|
|
22860
|
+
/**
|
|
22861
|
+
* @param request ListChangeOrdersRequest
|
|
22862
|
+
* @return ListChangeOrdersResponse
|
|
22863
|
+
*/
|
|
21838
22864
|
async listChangeOrders(request: ListChangeOrdersRequest): Promise<ListChangeOrdersResponse> {
|
|
21839
22865
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21840
22866
|
let headers : {[key: string ]: string} = { };
|
|
21841
22867
|
return await this.listChangeOrdersWithOptions(request, headers, runtime);
|
|
21842
22868
|
}
|
|
21843
22869
|
|
|
22870
|
+
/**
|
|
22871
|
+
* @summary b2a8a925-477a-4ed7-b825-d5e22500\\*\\*\\*\\*
|
|
22872
|
+
*
|
|
22873
|
+
* @param request ListConsumedServicesRequest
|
|
22874
|
+
* @param headers map
|
|
22875
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22876
|
+
* @return ListConsumedServicesResponse
|
|
22877
|
+
*/
|
|
21844
22878
|
async listConsumedServicesWithOptions(request: ListConsumedServicesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListConsumedServicesResponse> {
|
|
21845
22879
|
Util.validateModel(request);
|
|
21846
22880
|
let query : {[key: string ]: any} = { };
|
|
@@ -21866,6 +22900,12 @@ export default class Client extends OpenApi {
|
|
|
21866
22900
|
return $tea.cast<ListConsumedServicesResponse>(await this.callApi(params, req, runtime), new ListConsumedServicesResponse({}));
|
|
21867
22901
|
}
|
|
21868
22902
|
|
|
22903
|
+
/**
|
|
22904
|
+
* @summary b2a8a925-477a-4ed7-b825-d5e22500\\*\\*\\*\\*
|
|
22905
|
+
*
|
|
22906
|
+
* @param request ListConsumedServicesRequest
|
|
22907
|
+
* @return ListConsumedServicesResponse
|
|
22908
|
+
*/
|
|
21869
22909
|
async listConsumedServices(request: ListConsumedServicesRequest): Promise<ListConsumedServicesResponse> {
|
|
21870
22910
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21871
22911
|
let headers : {[key: string ]: string} = { };
|
|
@@ -21873,12 +22913,14 @@ export default class Client extends OpenApi {
|
|
|
21873
22913
|
}
|
|
21874
22914
|
|
|
21875
22915
|
/**
|
|
21876
|
-
|
|
21877
|
-
|
|
21878
|
-
|
|
21879
|
-
|
|
21880
|
-
|
|
21881
|
-
|
|
22916
|
+
* @summary Queries the details of a canary release rule based on an application ID.
|
|
22917
|
+
*
|
|
22918
|
+
* @description > You can configure only one canary release rule for each application.
|
|
22919
|
+
*
|
|
22920
|
+
* @param request ListGreyTagRouteRequest
|
|
22921
|
+
* @param headers map
|
|
22922
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22923
|
+
* @return ListGreyTagRouteResponse
|
|
21882
22924
|
*/
|
|
21883
22925
|
async listGreyTagRouteWithOptions(request: ListGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListGreyTagRouteResponse> {
|
|
21884
22926
|
Util.validateModel(request);
|
|
@@ -21906,10 +22948,12 @@ export default class Client extends OpenApi {
|
|
|
21906
22948
|
}
|
|
21907
22949
|
|
|
21908
22950
|
/**
|
|
21909
|
-
|
|
21910
|
-
|
|
21911
|
-
|
|
21912
|
-
|
|
22951
|
+
* @summary Queries the details of a canary release rule based on an application ID.
|
|
22952
|
+
*
|
|
22953
|
+
* @description > You can configure only one canary release rule for each application.
|
|
22954
|
+
*
|
|
22955
|
+
* @param request ListGreyTagRouteRequest
|
|
22956
|
+
* @return ListGreyTagRouteResponse
|
|
21913
22957
|
*/
|
|
21914
22958
|
async listGreyTagRoute(request: ListGreyTagRouteRequest): Promise<ListGreyTagRouteResponse> {
|
|
21915
22959
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -21917,6 +22961,16 @@ export default class Client extends OpenApi {
|
|
|
21917
22961
|
return await this.listGreyTagRouteWithOptions(request, headers, runtime);
|
|
21918
22962
|
}
|
|
21919
22963
|
|
|
22964
|
+
/**
|
|
22965
|
+
* @summary The returned message.
|
|
22966
|
+
* * **success** is returned when the request succeeds.
|
|
22967
|
+
* * An error code is returned when the request fails.
|
|
22968
|
+
*
|
|
22969
|
+
* @param request ListIngressesRequest
|
|
22970
|
+
* @param headers map
|
|
22971
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22972
|
+
* @return ListIngressesResponse
|
|
22973
|
+
*/
|
|
21920
22974
|
async listIngressesWithOptions(request: ListIngressesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListIngressesResponse> {
|
|
21921
22975
|
Util.validateModel(request);
|
|
21922
22976
|
let query : {[key: string ]: any} = { };
|
|
@@ -21946,12 +23000,28 @@ export default class Client extends OpenApi {
|
|
|
21946
23000
|
return $tea.cast<ListIngressesResponse>(await this.callApi(params, req, runtime), new ListIngressesResponse({}));
|
|
21947
23001
|
}
|
|
21948
23002
|
|
|
23003
|
+
/**
|
|
23004
|
+
* @summary The returned message.
|
|
23005
|
+
* * **success** is returned when the request succeeds.
|
|
23006
|
+
* * An error code is returned when the request fails.
|
|
23007
|
+
*
|
|
23008
|
+
* @param request ListIngressesRequest
|
|
23009
|
+
* @return ListIngressesResponse
|
|
23010
|
+
*/
|
|
21949
23011
|
async listIngresses(request: ListIngressesRequest): Promise<ListIngressesResponse> {
|
|
21950
23012
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21951
23013
|
let headers : {[key: string ]: string} = { };
|
|
21952
23014
|
return await this.listIngressesWithOptions(request, headers, runtime);
|
|
21953
23015
|
}
|
|
21954
23016
|
|
|
23017
|
+
/**
|
|
23018
|
+
* @summary Queries the information about job templates.
|
|
23019
|
+
*
|
|
23020
|
+
* @param request ListJobsRequest
|
|
23021
|
+
* @param headers map
|
|
23022
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23023
|
+
* @return ListJobsResponse
|
|
23024
|
+
*/
|
|
21955
23025
|
async listJobsWithOptions(request: ListJobsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListJobsResponse> {
|
|
21956
23026
|
Util.validateModel(request);
|
|
21957
23027
|
let query : {[key: string ]: any} = { };
|
|
@@ -22013,12 +23083,26 @@ export default class Client extends OpenApi {
|
|
|
22013
23083
|
return $tea.cast<ListJobsResponse>(await this.callApi(params, req, runtime), new ListJobsResponse({}));
|
|
22014
23084
|
}
|
|
22015
23085
|
|
|
23086
|
+
/**
|
|
23087
|
+
* @summary Queries the information about job templates.
|
|
23088
|
+
*
|
|
23089
|
+
* @param request ListJobsRequest
|
|
23090
|
+
* @return ListJobsResponse
|
|
23091
|
+
*/
|
|
22016
23092
|
async listJobs(request: ListJobsRequest): Promise<ListJobsResponse> {
|
|
22017
23093
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22018
23094
|
let headers : {[key: string ]: string} = { };
|
|
22019
23095
|
return await this.listJobsWithOptions(request, headers, runtime);
|
|
22020
23096
|
}
|
|
22021
23097
|
|
|
23098
|
+
/**
|
|
23099
|
+
* @summary 56f77b65-788d-442a-9885-7f20d91f\\*\\*\\*\\*
|
|
23100
|
+
*
|
|
23101
|
+
* @param request ListLogConfigsRequest
|
|
23102
|
+
* @param headers map
|
|
23103
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23104
|
+
* @return ListLogConfigsResponse
|
|
23105
|
+
*/
|
|
22022
23106
|
async listLogConfigsWithOptions(request: ListLogConfigsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListLogConfigsResponse> {
|
|
22023
23107
|
Util.validateModel(request);
|
|
22024
23108
|
let query : {[key: string ]: any} = { };
|
|
@@ -22052,12 +23136,24 @@ export default class Client extends OpenApi {
|
|
|
22052
23136
|
return $tea.cast<ListLogConfigsResponse>(await this.callApi(params, req, runtime), new ListLogConfigsResponse({}));
|
|
22053
23137
|
}
|
|
22054
23138
|
|
|
23139
|
+
/**
|
|
23140
|
+
* @summary 56f77b65-788d-442a-9885-7f20d91f\\*\\*\\*\\*
|
|
23141
|
+
*
|
|
23142
|
+
* @param request ListLogConfigsRequest
|
|
23143
|
+
* @return ListLogConfigsResponse
|
|
23144
|
+
*/
|
|
22055
23145
|
async listLogConfigs(request: ListLogConfigsRequest): Promise<ListLogConfigsResponse> {
|
|
22056
23146
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22057
23147
|
let headers : {[key: string ]: string} = { };
|
|
22058
23148
|
return await this.listLogConfigsWithOptions(request, headers, runtime);
|
|
22059
23149
|
}
|
|
22060
23150
|
|
|
23151
|
+
/**
|
|
23152
|
+
* @param request ListNamespaceChangeOrdersRequest
|
|
23153
|
+
* @param headers map
|
|
23154
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23155
|
+
* @return ListNamespaceChangeOrdersResponse
|
|
23156
|
+
*/
|
|
22061
23157
|
async listNamespaceChangeOrdersWithOptions(request: ListNamespaceChangeOrdersRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListNamespaceChangeOrdersResponse> {
|
|
22062
23158
|
Util.validateModel(request);
|
|
22063
23159
|
let query : {[key: string ]: any} = { };
|
|
@@ -22103,12 +23199,24 @@ export default class Client extends OpenApi {
|
|
|
22103
23199
|
return $tea.cast<ListNamespaceChangeOrdersResponse>(await this.callApi(params, req, runtime), new ListNamespaceChangeOrdersResponse({}));
|
|
22104
23200
|
}
|
|
22105
23201
|
|
|
23202
|
+
/**
|
|
23203
|
+
* @param request ListNamespaceChangeOrdersRequest
|
|
23204
|
+
* @return ListNamespaceChangeOrdersResponse
|
|
23205
|
+
*/
|
|
22106
23206
|
async listNamespaceChangeOrders(request: ListNamespaceChangeOrdersRequest): Promise<ListNamespaceChangeOrdersResponse> {
|
|
22107
23207
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22108
23208
|
let headers : {[key: string ]: string} = { };
|
|
22109
23209
|
return await this.listNamespaceChangeOrdersWithOptions(request, headers, runtime);
|
|
22110
23210
|
}
|
|
22111
23211
|
|
|
23212
|
+
/**
|
|
23213
|
+
* @summary Queries the ConfigMap instances in a namespace.
|
|
23214
|
+
*
|
|
23215
|
+
* @param request ListNamespacedConfigMapsRequest
|
|
23216
|
+
* @param headers map
|
|
23217
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23218
|
+
* @return ListNamespacedConfigMapsResponse
|
|
23219
|
+
*/
|
|
22112
23220
|
async listNamespacedConfigMapsWithOptions(request: ListNamespacedConfigMapsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListNamespacedConfigMapsResponse> {
|
|
22113
23221
|
Util.validateModel(request);
|
|
22114
23222
|
let query : {[key: string ]: any} = { };
|
|
@@ -22134,12 +23242,26 @@ export default class Client extends OpenApi {
|
|
|
22134
23242
|
return $tea.cast<ListNamespacedConfigMapsResponse>(await this.callApi(params, req, runtime), new ListNamespacedConfigMapsResponse({}));
|
|
22135
23243
|
}
|
|
22136
23244
|
|
|
23245
|
+
/**
|
|
23246
|
+
* @summary Queries the ConfigMap instances in a namespace.
|
|
23247
|
+
*
|
|
23248
|
+
* @param request ListNamespacedConfigMapsRequest
|
|
23249
|
+
* @return ListNamespacedConfigMapsResponse
|
|
23250
|
+
*/
|
|
22137
23251
|
async listNamespacedConfigMaps(request: ListNamespacedConfigMapsRequest): Promise<ListNamespacedConfigMapsResponse> {
|
|
22138
23252
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22139
23253
|
let headers : {[key: string ]: string} = { };
|
|
22140
23254
|
return await this.listNamespacedConfigMapsWithOptions(request, headers, runtime);
|
|
22141
23255
|
}
|
|
22142
23256
|
|
|
23257
|
+
/**
|
|
23258
|
+
* @summary b2a8a925-477a-4ed7-b825-d5e22500\\*\\*\\*\\*
|
|
23259
|
+
*
|
|
23260
|
+
* @param request ListPublishedServicesRequest
|
|
23261
|
+
* @param headers map
|
|
23262
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23263
|
+
* @return ListPublishedServicesResponse
|
|
23264
|
+
*/
|
|
22143
23265
|
async listPublishedServicesWithOptions(request: ListPublishedServicesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListPublishedServicesResponse> {
|
|
22144
23266
|
Util.validateModel(request);
|
|
22145
23267
|
let query : {[key: string ]: any} = { };
|
|
@@ -22165,12 +23287,26 @@ export default class Client extends OpenApi {
|
|
|
22165
23287
|
return $tea.cast<ListPublishedServicesResponse>(await this.callApi(params, req, runtime), new ListPublishedServicesResponse({}));
|
|
22166
23288
|
}
|
|
22167
23289
|
|
|
23290
|
+
/**
|
|
23291
|
+
* @summary b2a8a925-477a-4ed7-b825-d5e22500\\*\\*\\*\\*
|
|
23292
|
+
*
|
|
23293
|
+
* @param request ListPublishedServicesRequest
|
|
23294
|
+
* @return ListPublishedServicesResponse
|
|
23295
|
+
*/
|
|
22168
23296
|
async listPublishedServices(request: ListPublishedServicesRequest): Promise<ListPublishedServicesResponse> {
|
|
22169
23297
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22170
23298
|
let headers : {[key: string ]: string} = { };
|
|
22171
23299
|
return await this.listPublishedServicesWithOptions(request, headers, runtime);
|
|
22172
23300
|
}
|
|
22173
23301
|
|
|
23302
|
+
/**
|
|
23303
|
+
* @summary Queries the information about Secrets in a namespace.
|
|
23304
|
+
*
|
|
23305
|
+
* @param request ListSecretsRequest
|
|
23306
|
+
* @param headers map
|
|
23307
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23308
|
+
* @return ListSecretsResponse
|
|
23309
|
+
*/
|
|
22174
23310
|
async listSecretsWithOptions(request: ListSecretsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListSecretsResponse> {
|
|
22175
23311
|
Util.validateModel(request);
|
|
22176
23312
|
let query : {[key: string ]: any} = { };
|
|
@@ -22196,12 +23332,26 @@ export default class Client extends OpenApi {
|
|
|
22196
23332
|
return $tea.cast<ListSecretsResponse>(await this.callApi(params, req, runtime), new ListSecretsResponse({}));
|
|
22197
23333
|
}
|
|
22198
23334
|
|
|
23335
|
+
/**
|
|
23336
|
+
* @summary Queries the information about Secrets in a namespace.
|
|
23337
|
+
*
|
|
23338
|
+
* @param request ListSecretsRequest
|
|
23339
|
+
* @return ListSecretsResponse
|
|
23340
|
+
*/
|
|
22199
23341
|
async listSecrets(request: ListSecretsRequest): Promise<ListSecretsResponse> {
|
|
22200
23342
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22201
23343
|
let headers : {[key: string ]: string} = { };
|
|
22202
23344
|
return await this.listSecretsWithOptions(request, headers, runtime);
|
|
22203
23345
|
}
|
|
22204
23346
|
|
|
23347
|
+
/**
|
|
23348
|
+
* @summary Queries the mapping relationships between applications and tags.
|
|
23349
|
+
*
|
|
23350
|
+
* @param request ListTagResourcesRequest
|
|
23351
|
+
* @param headers map
|
|
23352
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23353
|
+
* @return ListTagResourcesResponse
|
|
23354
|
+
*/
|
|
22205
23355
|
async listTagResourcesWithOptions(request: ListTagResourcesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse> {
|
|
22206
23356
|
Util.validateModel(request);
|
|
22207
23357
|
let query : {[key: string ]: any} = { };
|
|
@@ -22243,6 +23393,12 @@ export default class Client extends OpenApi {
|
|
|
22243
23393
|
return $tea.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
|
|
22244
23394
|
}
|
|
22245
23395
|
|
|
23396
|
+
/**
|
|
23397
|
+
* @summary Queries the mapping relationships between applications and tags.
|
|
23398
|
+
*
|
|
23399
|
+
* @param request ListTagResourcesRequest
|
|
23400
|
+
* @return ListTagResourcesResponse
|
|
23401
|
+
*/
|
|
22246
23402
|
async listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse> {
|
|
22247
23403
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22248
23404
|
let headers : {[key: string ]: string} = { };
|
|
@@ -22250,11 +23406,13 @@ export default class Client extends OpenApi {
|
|
|
22250
23406
|
}
|
|
22251
23407
|
|
|
22252
23408
|
/**
|
|
22253
|
-
|
|
22254
|
-
|
|
22255
|
-
|
|
22256
|
-
|
|
22257
|
-
|
|
23409
|
+
* @summary Activates the Serverless App Engine (SAE) service for free.
|
|
23410
|
+
*
|
|
23411
|
+
* @description > Make sure that your account balance is greater than 0. Otherwise, the SAE service cannot be activated.
|
|
23412
|
+
*
|
|
23413
|
+
* @param headers map
|
|
23414
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23415
|
+
* @return OpenSaeServiceResponse
|
|
22258
23416
|
*/
|
|
22259
23417
|
async openSaeServiceWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<OpenSaeServiceResponse> {
|
|
22260
23418
|
let req = new $OpenApi.OpenApiRequest({
|
|
@@ -22275,9 +23433,11 @@ export default class Client extends OpenApi {
|
|
|
22275
23433
|
}
|
|
22276
23434
|
|
|
22277
23435
|
/**
|
|
22278
|
-
|
|
22279
|
-
|
|
22280
|
-
|
|
23436
|
+
* @summary Activates the Serverless App Engine (SAE) service for free.
|
|
23437
|
+
*
|
|
23438
|
+
* @description > Make sure that your account balance is greater than 0. Otherwise, the SAE service cannot be activated.
|
|
23439
|
+
*
|
|
23440
|
+
* @return OpenSaeServiceResponse
|
|
22281
23441
|
*/
|
|
22282
23442
|
async openSaeService(): Promise<OpenSaeServiceResponse> {
|
|
22283
23443
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -22285,6 +23445,14 @@ export default class Client extends OpenApi {
|
|
|
22285
23445
|
return await this.openSaeServiceWithOptions(headers, runtime);
|
|
22286
23446
|
}
|
|
22287
23447
|
|
|
23448
|
+
/**
|
|
23449
|
+
* @summary Queries the resource usage of an application.
|
|
23450
|
+
*
|
|
23451
|
+
* @param request QueryResourceStaticsRequest
|
|
23452
|
+
* @param headers map
|
|
23453
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23454
|
+
* @return QueryResourceStaticsResponse
|
|
23455
|
+
*/
|
|
22288
23456
|
async queryResourceStaticsWithOptions(request: QueryResourceStaticsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryResourceStaticsResponse> {
|
|
22289
23457
|
Util.validateModel(request);
|
|
22290
23458
|
let query : {[key: string ]: any} = { };
|
|
@@ -22310,12 +23478,26 @@ export default class Client extends OpenApi {
|
|
|
22310
23478
|
return $tea.cast<QueryResourceStaticsResponse>(await this.callApi(params, req, runtime), new QueryResourceStaticsResponse({}));
|
|
22311
23479
|
}
|
|
22312
23480
|
|
|
23481
|
+
/**
|
|
23482
|
+
* @summary Queries the resource usage of an application.
|
|
23483
|
+
*
|
|
23484
|
+
* @param request QueryResourceStaticsRequest
|
|
23485
|
+
* @return QueryResourceStaticsResponse
|
|
23486
|
+
*/
|
|
22313
23487
|
async queryResourceStatics(request: QueryResourceStaticsRequest): Promise<QueryResourceStaticsResponse> {
|
|
22314
23488
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22315
23489
|
let headers : {[key: string ]: string} = { };
|
|
22316
23490
|
return await this.queryResourceStaticsWithOptions(request, headers, runtime);
|
|
22317
23491
|
}
|
|
22318
23492
|
|
|
23493
|
+
/**
|
|
23494
|
+
* @summary Reduces capacity by instance IDs.
|
|
23495
|
+
*
|
|
23496
|
+
* @param request ReduceApplicationCapacityByInstanceIdsRequest
|
|
23497
|
+
* @param headers map
|
|
23498
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23499
|
+
* @return ReduceApplicationCapacityByInstanceIdsResponse
|
|
23500
|
+
*/
|
|
22319
23501
|
async reduceApplicationCapacityByInstanceIdsWithOptions(request: ReduceApplicationCapacityByInstanceIdsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ReduceApplicationCapacityByInstanceIdsResponse> {
|
|
22320
23502
|
Util.validateModel(request);
|
|
22321
23503
|
let query : {[key: string ]: any} = { };
|
|
@@ -22345,12 +23527,26 @@ export default class Client extends OpenApi {
|
|
|
22345
23527
|
return $tea.cast<ReduceApplicationCapacityByInstanceIdsResponse>(await this.callApi(params, req, runtime), new ReduceApplicationCapacityByInstanceIdsResponse({}));
|
|
22346
23528
|
}
|
|
22347
23529
|
|
|
23530
|
+
/**
|
|
23531
|
+
* @summary Reduces capacity by instance IDs.
|
|
23532
|
+
*
|
|
23533
|
+
* @param request ReduceApplicationCapacityByInstanceIdsRequest
|
|
23534
|
+
* @return ReduceApplicationCapacityByInstanceIdsResponse
|
|
23535
|
+
*/
|
|
22348
23536
|
async reduceApplicationCapacityByInstanceIds(request: ReduceApplicationCapacityByInstanceIdsRequest): Promise<ReduceApplicationCapacityByInstanceIdsResponse> {
|
|
22349
23537
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22350
23538
|
let headers : {[key: string ]: string} = { };
|
|
22351
23539
|
return await this.reduceApplicationCapacityByInstanceIdsWithOptions(request, headers, runtime);
|
|
22352
23540
|
}
|
|
22353
23541
|
|
|
23542
|
+
/**
|
|
23543
|
+
* @summary Scales an application.
|
|
23544
|
+
*
|
|
23545
|
+
* @param request RescaleApplicationRequest
|
|
23546
|
+
* @param headers map
|
|
23547
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23548
|
+
* @return RescaleApplicationResponse
|
|
23549
|
+
*/
|
|
22354
23550
|
async rescaleApplicationWithOptions(request: RescaleApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RescaleApplicationResponse> {
|
|
22355
23551
|
Util.validateModel(request);
|
|
22356
23552
|
let query : {[key: string ]: any} = { };
|
|
@@ -22392,12 +23588,26 @@ export default class Client extends OpenApi {
|
|
|
22392
23588
|
return $tea.cast<RescaleApplicationResponse>(await this.callApi(params, req, runtime), new RescaleApplicationResponse({}));
|
|
22393
23589
|
}
|
|
22394
23590
|
|
|
23591
|
+
/**
|
|
23592
|
+
* @summary Scales an application.
|
|
23593
|
+
*
|
|
23594
|
+
* @param request RescaleApplicationRequest
|
|
23595
|
+
* @return RescaleApplicationResponse
|
|
23596
|
+
*/
|
|
22395
23597
|
async rescaleApplication(request: RescaleApplicationRequest): Promise<RescaleApplicationResponse> {
|
|
22396
23598
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22397
23599
|
let headers : {[key: string ]: string} = { };
|
|
22398
23600
|
return await this.rescaleApplicationWithOptions(request, headers, runtime);
|
|
22399
23601
|
}
|
|
22400
23602
|
|
|
23603
|
+
/**
|
|
23604
|
+
* @summary Changes the instance specifications of an application.
|
|
23605
|
+
*
|
|
23606
|
+
* @param request RescaleApplicationVerticallyRequest
|
|
23607
|
+
* @param headers map
|
|
23608
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23609
|
+
* @return RescaleApplicationVerticallyResponse
|
|
23610
|
+
*/
|
|
22401
23611
|
async rescaleApplicationVerticallyWithOptions(request: RescaleApplicationVerticallyRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RescaleApplicationVerticallyResponse> {
|
|
22402
23612
|
Util.validateModel(request);
|
|
22403
23613
|
let query : {[key: string ]: any} = { };
|
|
@@ -22431,12 +23641,26 @@ export default class Client extends OpenApi {
|
|
|
22431
23641
|
return $tea.cast<RescaleApplicationVerticallyResponse>(await this.callApi(params, req, runtime), new RescaleApplicationVerticallyResponse({}));
|
|
22432
23642
|
}
|
|
22433
23643
|
|
|
23644
|
+
/**
|
|
23645
|
+
* @summary Changes the instance specifications of an application.
|
|
23646
|
+
*
|
|
23647
|
+
* @param request RescaleApplicationVerticallyRequest
|
|
23648
|
+
* @return RescaleApplicationVerticallyResponse
|
|
23649
|
+
*/
|
|
22434
23650
|
async rescaleApplicationVertically(request: RescaleApplicationVerticallyRequest): Promise<RescaleApplicationVerticallyResponse> {
|
|
22435
23651
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22436
23652
|
let headers : {[key: string ]: string} = { };
|
|
22437
23653
|
return await this.rescaleApplicationVerticallyWithOptions(request, headers, runtime);
|
|
22438
23654
|
}
|
|
22439
23655
|
|
|
23656
|
+
/**
|
|
23657
|
+
* @summary Restarts an application.
|
|
23658
|
+
*
|
|
23659
|
+
* @param request RestartApplicationRequest
|
|
23660
|
+
* @param headers map
|
|
23661
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23662
|
+
* @return RestartApplicationResponse
|
|
23663
|
+
*/
|
|
22440
23664
|
async restartApplicationWithOptions(request: RestartApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RestartApplicationResponse> {
|
|
22441
23665
|
Util.validateModel(request);
|
|
22442
23666
|
let query : {[key: string ]: any} = { };
|
|
@@ -22474,12 +23698,26 @@ export default class Client extends OpenApi {
|
|
|
22474
23698
|
return $tea.cast<RestartApplicationResponse>(await this.callApi(params, req, runtime), new RestartApplicationResponse({}));
|
|
22475
23699
|
}
|
|
22476
23700
|
|
|
23701
|
+
/**
|
|
23702
|
+
* @summary Restarts an application.
|
|
23703
|
+
*
|
|
23704
|
+
* @param request RestartApplicationRequest
|
|
23705
|
+
* @return RestartApplicationResponse
|
|
23706
|
+
*/
|
|
22477
23707
|
async restartApplication(request: RestartApplicationRequest): Promise<RestartApplicationResponse> {
|
|
22478
23708
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22479
23709
|
let headers : {[key: string ]: string} = { };
|
|
22480
23710
|
return await this.restartApplicationWithOptions(request, headers, runtime);
|
|
22481
23711
|
}
|
|
22482
23712
|
|
|
23713
|
+
/**
|
|
23714
|
+
* @summary Restarts one or more instances in an application.
|
|
23715
|
+
*
|
|
23716
|
+
* @param request RestartInstancesRequest
|
|
23717
|
+
* @param headers map
|
|
23718
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23719
|
+
* @return RestartInstancesResponse
|
|
23720
|
+
*/
|
|
22483
23721
|
async restartInstancesWithOptions(request: RestartInstancesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RestartInstancesResponse> {
|
|
22484
23722
|
Util.validateModel(request);
|
|
22485
23723
|
let query : {[key: string ]: any} = { };
|
|
@@ -22509,12 +23747,26 @@ export default class Client extends OpenApi {
|
|
|
22509
23747
|
return $tea.cast<RestartInstancesResponse>(await this.callApi(params, req, runtime), new RestartInstancesResponse({}));
|
|
22510
23748
|
}
|
|
22511
23749
|
|
|
23750
|
+
/**
|
|
23751
|
+
* @summary Restarts one or more instances in an application.
|
|
23752
|
+
*
|
|
23753
|
+
* @param request RestartInstancesRequest
|
|
23754
|
+
* @return RestartInstancesResponse
|
|
23755
|
+
*/
|
|
22512
23756
|
async restartInstances(request: RestartInstancesRequest): Promise<RestartInstancesResponse> {
|
|
22513
23757
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22514
23758
|
let headers : {[key: string ]: string} = { };
|
|
22515
23759
|
return await this.restartInstancesWithOptions(request, headers, runtime);
|
|
22516
23760
|
}
|
|
22517
23761
|
|
|
23762
|
+
/**
|
|
23763
|
+
* @summary Rolls back an application.
|
|
23764
|
+
*
|
|
23765
|
+
* @param request RollbackApplicationRequest
|
|
23766
|
+
* @param headers map
|
|
23767
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23768
|
+
* @return RollbackApplicationResponse
|
|
23769
|
+
*/
|
|
22518
23770
|
async rollbackApplicationWithOptions(request: RollbackApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RollbackApplicationResponse> {
|
|
22519
23771
|
Util.validateModel(request);
|
|
22520
23772
|
let query : {[key: string ]: any} = { };
|
|
@@ -22564,12 +23816,26 @@ export default class Client extends OpenApi {
|
|
|
22564
23816
|
return $tea.cast<RollbackApplicationResponse>(await this.callApi(params, req, runtime), new RollbackApplicationResponse({}));
|
|
22565
23817
|
}
|
|
22566
23818
|
|
|
23819
|
+
/**
|
|
23820
|
+
* @summary Rolls back an application.
|
|
23821
|
+
*
|
|
23822
|
+
* @param request RollbackApplicationRequest
|
|
23823
|
+
* @return RollbackApplicationResponse
|
|
23824
|
+
*/
|
|
22567
23825
|
async rollbackApplication(request: RollbackApplicationRequest): Promise<RollbackApplicationResponse> {
|
|
22568
23826
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22569
23827
|
let headers : {[key: string ]: string} = { };
|
|
22570
23828
|
return await this.rollbackApplicationWithOptions(request, headers, runtime);
|
|
22571
23829
|
}
|
|
22572
23830
|
|
|
23831
|
+
/**
|
|
23832
|
+
* @summary Starts an application.
|
|
23833
|
+
*
|
|
23834
|
+
* @param request StartApplicationRequest
|
|
23835
|
+
* @param headers map
|
|
23836
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23837
|
+
* @return StartApplicationResponse
|
|
23838
|
+
*/
|
|
22573
23839
|
async startApplicationWithOptions(request: StartApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<StartApplicationResponse> {
|
|
22574
23840
|
Util.validateModel(request);
|
|
22575
23841
|
let query : {[key: string ]: any} = { };
|
|
@@ -22595,12 +23861,26 @@ export default class Client extends OpenApi {
|
|
|
22595
23861
|
return $tea.cast<StartApplicationResponse>(await this.callApi(params, req, runtime), new StartApplicationResponse({}));
|
|
22596
23862
|
}
|
|
22597
23863
|
|
|
23864
|
+
/**
|
|
23865
|
+
* @summary Starts an application.
|
|
23866
|
+
*
|
|
23867
|
+
* @param request StartApplicationRequest
|
|
23868
|
+
* @return StartApplicationResponse
|
|
23869
|
+
*/
|
|
22598
23870
|
async startApplication(request: StartApplicationRequest): Promise<StartApplicationResponse> {
|
|
22599
23871
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22600
23872
|
let headers : {[key: string ]: string} = { };
|
|
22601
23873
|
return await this.startApplicationWithOptions(request, headers, runtime);
|
|
22602
23874
|
}
|
|
22603
23875
|
|
|
23876
|
+
/**
|
|
23877
|
+
* @summary 0099b7be-5f5b-4512-a7fc-56049ef1\\*\\*\\*\\*
|
|
23878
|
+
*
|
|
23879
|
+
* @param request StopApplicationRequest
|
|
23880
|
+
* @param headers map
|
|
23881
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23882
|
+
* @return StopApplicationResponse
|
|
23883
|
+
*/
|
|
22604
23884
|
async stopApplicationWithOptions(request: StopApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<StopApplicationResponse> {
|
|
22605
23885
|
Util.validateModel(request);
|
|
22606
23886
|
let query : {[key: string ]: any} = { };
|
|
@@ -22626,12 +23906,26 @@ export default class Client extends OpenApi {
|
|
|
22626
23906
|
return $tea.cast<StopApplicationResponse>(await this.callApi(params, req, runtime), new StopApplicationResponse({}));
|
|
22627
23907
|
}
|
|
22628
23908
|
|
|
23909
|
+
/**
|
|
23910
|
+
* @summary 0099b7be-5f5b-4512-a7fc-56049ef1\\*\\*\\*\\*
|
|
23911
|
+
*
|
|
23912
|
+
* @param request StopApplicationRequest
|
|
23913
|
+
* @return StopApplicationResponse
|
|
23914
|
+
*/
|
|
22629
23915
|
async stopApplication(request: StopApplicationRequest): Promise<StopApplicationResponse> {
|
|
22630
23916
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22631
23917
|
let headers : {[key: string ]: string} = { };
|
|
22632
23918
|
return await this.stopApplicationWithOptions(request, headers, runtime);
|
|
22633
23919
|
}
|
|
22634
23920
|
|
|
23921
|
+
/**
|
|
23922
|
+
* @summary Suspends a job.
|
|
23923
|
+
*
|
|
23924
|
+
* @param request SuspendJobRequest
|
|
23925
|
+
* @param headers map
|
|
23926
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23927
|
+
* @return SuspendJobResponse
|
|
23928
|
+
*/
|
|
22635
23929
|
async suspendJobWithOptions(request: SuspendJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<SuspendJobResponse> {
|
|
22636
23930
|
Util.validateModel(request);
|
|
22637
23931
|
let query : {[key: string ]: any} = { };
|
|
@@ -22661,12 +23955,26 @@ export default class Client extends OpenApi {
|
|
|
22661
23955
|
return $tea.cast<SuspendJobResponse>(await this.callApi(params, req, runtime), new SuspendJobResponse({}));
|
|
22662
23956
|
}
|
|
22663
23957
|
|
|
23958
|
+
/**
|
|
23959
|
+
* @summary Suspends a job.
|
|
23960
|
+
*
|
|
23961
|
+
* @param request SuspendJobRequest
|
|
23962
|
+
* @return SuspendJobResponse
|
|
23963
|
+
*/
|
|
22664
23964
|
async suspendJob(request: SuspendJobRequest): Promise<SuspendJobResponse> {
|
|
22665
23965
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22666
23966
|
let headers : {[key: string ]: string} = { };
|
|
22667
23967
|
return await this.suspendJobWithOptions(request, headers, runtime);
|
|
22668
23968
|
}
|
|
22669
23969
|
|
|
23970
|
+
/**
|
|
23971
|
+
* @summary cn-beijing
|
|
23972
|
+
*
|
|
23973
|
+
* @param request TagResourcesRequest
|
|
23974
|
+
* @param headers map
|
|
23975
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23976
|
+
* @return TagResourcesResponse
|
|
23977
|
+
*/
|
|
22670
23978
|
async tagResourcesWithOptions(request: TagResourcesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse> {
|
|
22671
23979
|
Util.validateModel(request);
|
|
22672
23980
|
let body : {[key: string ]: any} = { };
|
|
@@ -22704,12 +24012,26 @@ export default class Client extends OpenApi {
|
|
|
22704
24012
|
return $tea.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
|
|
22705
24013
|
}
|
|
22706
24014
|
|
|
24015
|
+
/**
|
|
24016
|
+
* @summary cn-beijing
|
|
24017
|
+
*
|
|
24018
|
+
* @param request TagResourcesRequest
|
|
24019
|
+
* @return TagResourcesResponse
|
|
24020
|
+
*/
|
|
22707
24021
|
async tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse> {
|
|
22708
24022
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22709
24023
|
let headers : {[key: string ]: string} = { };
|
|
22710
24024
|
return await this.tagResourcesWithOptions(request, headers, runtime);
|
|
22711
24025
|
}
|
|
22712
24026
|
|
|
24027
|
+
/**
|
|
24028
|
+
* @summary 0099b7be-5f5b-4512-a7fc-56049ef1\\*\\*\\*\\*
|
|
24029
|
+
*
|
|
24030
|
+
* @param request UnbindSlbRequest
|
|
24031
|
+
* @param headers map
|
|
24032
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24033
|
+
* @return UnbindSlbResponse
|
|
24034
|
+
*/
|
|
22713
24035
|
async unbindSlbWithOptions(request: UnbindSlbRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UnbindSlbResponse> {
|
|
22714
24036
|
Util.validateModel(request);
|
|
22715
24037
|
let query : {[key: string ]: any} = { };
|
|
@@ -22743,12 +24065,24 @@ export default class Client extends OpenApi {
|
|
|
22743
24065
|
return $tea.cast<UnbindSlbResponse>(await this.callApi(params, req, runtime), new UnbindSlbResponse({}));
|
|
22744
24066
|
}
|
|
22745
24067
|
|
|
24068
|
+
/**
|
|
24069
|
+
* @summary 0099b7be-5f5b-4512-a7fc-56049ef1\\*\\*\\*\\*
|
|
24070
|
+
*
|
|
24071
|
+
* @param request UnbindSlbRequest
|
|
24072
|
+
* @return UnbindSlbResponse
|
|
24073
|
+
*/
|
|
22746
24074
|
async unbindSlb(request: UnbindSlbRequest): Promise<UnbindSlbResponse> {
|
|
22747
24075
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22748
24076
|
let headers : {[key: string ]: string} = { };
|
|
22749
24077
|
return await this.unbindSlbWithOptions(request, headers, runtime);
|
|
22750
24078
|
}
|
|
22751
24079
|
|
|
24080
|
+
/**
|
|
24081
|
+
* @param request UntagResourcesRequest
|
|
24082
|
+
* @param headers map
|
|
24083
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24084
|
+
* @return UntagResourcesResponse
|
|
24085
|
+
*/
|
|
22752
24086
|
async untagResourcesWithOptions(request: UntagResourcesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse> {
|
|
22753
24087
|
Util.validateModel(request);
|
|
22754
24088
|
let query : {[key: string ]: any} = { };
|
|
@@ -22790,12 +24124,24 @@ export default class Client extends OpenApi {
|
|
|
22790
24124
|
return $tea.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
|
|
22791
24125
|
}
|
|
22792
24126
|
|
|
24127
|
+
/**
|
|
24128
|
+
* @param request UntagResourcesRequest
|
|
24129
|
+
* @return UntagResourcesResponse
|
|
24130
|
+
*/
|
|
22793
24131
|
async untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse> {
|
|
22794
24132
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22795
24133
|
let headers : {[key: string ]: string} = { };
|
|
22796
24134
|
return await this.untagResourcesWithOptions(request, headers, runtime);
|
|
22797
24135
|
}
|
|
22798
24136
|
|
|
24137
|
+
/**
|
|
24138
|
+
* @summary 017f39b8-dfa4-4e16-a84b-1dcee4b1\\*\\*\\*\\*
|
|
24139
|
+
*
|
|
24140
|
+
* @param request UpdateAppSecurityGroupRequest
|
|
24141
|
+
* @param headers map
|
|
24142
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24143
|
+
* @return UpdateAppSecurityGroupResponse
|
|
24144
|
+
*/
|
|
22799
24145
|
async updateAppSecurityGroupWithOptions(request: UpdateAppSecurityGroupRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateAppSecurityGroupResponse> {
|
|
22800
24146
|
Util.validateModel(request);
|
|
22801
24147
|
let query : {[key: string ]: any} = { };
|
|
@@ -22825,12 +24171,26 @@ export default class Client extends OpenApi {
|
|
|
22825
24171
|
return $tea.cast<UpdateAppSecurityGroupResponse>(await this.callApi(params, req, runtime), new UpdateAppSecurityGroupResponse({}));
|
|
22826
24172
|
}
|
|
22827
24173
|
|
|
24174
|
+
/**
|
|
24175
|
+
* @summary 017f39b8-dfa4-4e16-a84b-1dcee4b1\\*\\*\\*\\*
|
|
24176
|
+
*
|
|
24177
|
+
* @param request UpdateAppSecurityGroupRequest
|
|
24178
|
+
* @return UpdateAppSecurityGroupResponse
|
|
24179
|
+
*/
|
|
22828
24180
|
async updateAppSecurityGroup(request: UpdateAppSecurityGroupRequest): Promise<UpdateAppSecurityGroupResponse> {
|
|
22829
24181
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22830
24182
|
let headers : {[key: string ]: string} = { };
|
|
22831
24183
|
return await this.updateAppSecurityGroupWithOptions(request, headers, runtime);
|
|
22832
24184
|
}
|
|
22833
24185
|
|
|
24186
|
+
/**
|
|
24187
|
+
* @summary 更新应用描述信息
|
|
24188
|
+
*
|
|
24189
|
+
* @param request UpdateApplicationDescriptionRequest
|
|
24190
|
+
* @param headers map
|
|
24191
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24192
|
+
* @return UpdateApplicationDescriptionResponse
|
|
24193
|
+
*/
|
|
22834
24194
|
async updateApplicationDescriptionWithOptions(request: UpdateApplicationDescriptionRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationDescriptionResponse> {
|
|
22835
24195
|
Util.validateModel(request);
|
|
22836
24196
|
let query : {[key: string ]: any} = { };
|
|
@@ -22860,6 +24220,12 @@ export default class Client extends OpenApi {
|
|
|
22860
24220
|
return $tea.cast<UpdateApplicationDescriptionResponse>(await this.callApi(params, req, runtime), new UpdateApplicationDescriptionResponse({}));
|
|
22861
24221
|
}
|
|
22862
24222
|
|
|
24223
|
+
/**
|
|
24224
|
+
* @summary 更新应用描述信息
|
|
24225
|
+
*
|
|
24226
|
+
* @param request UpdateApplicationDescriptionRequest
|
|
24227
|
+
* @return UpdateApplicationDescriptionResponse
|
|
24228
|
+
*/
|
|
22863
24229
|
async updateApplicationDescription(request: UpdateApplicationDescriptionRequest): Promise<UpdateApplicationDescriptionResponse> {
|
|
22864
24230
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22865
24231
|
let headers : {[key: string ]: string} = { };
|
|
@@ -22867,13 +24233,15 @@ export default class Client extends OpenApi {
|
|
|
22867
24233
|
}
|
|
22868
24234
|
|
|
22869
24235
|
/**
|
|
22870
|
-
|
|
22871
|
-
|
|
22872
|
-
|
|
22873
|
-
|
|
22874
|
-
|
|
22875
|
-
|
|
22876
|
-
|
|
24236
|
+
* @summary Updates the auto scaling policy of an application.
|
|
24237
|
+
*
|
|
24238
|
+
* @description ##
|
|
24239
|
+
* If you want to configure more than 50 instances for an application, you must submit a [ticket](https://workorder.console.aliyun.com/#/ticket/createIndex) to add your account to the whitelist.
|
|
24240
|
+
*
|
|
24241
|
+
* @param request UpdateApplicationScalingRuleRequest
|
|
24242
|
+
* @param headers map
|
|
24243
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24244
|
+
* @return UpdateApplicationScalingRuleResponse
|
|
22877
24245
|
*/
|
|
22878
24246
|
async updateApplicationScalingRuleWithOptions(request: UpdateApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationScalingRuleResponse> {
|
|
22879
24247
|
Util.validateModel(request);
|
|
@@ -22921,11 +24289,13 @@ export default class Client extends OpenApi {
|
|
|
22921
24289
|
}
|
|
22922
24290
|
|
|
22923
24291
|
/**
|
|
22924
|
-
|
|
22925
|
-
|
|
22926
|
-
|
|
22927
|
-
|
|
22928
|
-
|
|
24292
|
+
* @summary Updates the auto scaling policy of an application.
|
|
24293
|
+
*
|
|
24294
|
+
* @description ##
|
|
24295
|
+
* If you want to configure more than 50 instances for an application, you must submit a [ticket](https://workorder.console.aliyun.com/#/ticket/createIndex) to add your account to the whitelist.
|
|
24296
|
+
*
|
|
24297
|
+
* @param request UpdateApplicationScalingRuleRequest
|
|
24298
|
+
* @return UpdateApplicationScalingRuleResponse
|
|
22929
24299
|
*/
|
|
22930
24300
|
async updateApplicationScalingRule(request: UpdateApplicationScalingRuleRequest): Promise<UpdateApplicationScalingRuleResponse> {
|
|
22931
24301
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -22933,6 +24303,12 @@ export default class Client extends OpenApi {
|
|
|
22933
24303
|
return await this.updateApplicationScalingRuleWithOptions(request, headers, runtime);
|
|
22934
24304
|
}
|
|
22935
24305
|
|
|
24306
|
+
/**
|
|
24307
|
+
* @param request UpdateApplicationVswitchesRequest
|
|
24308
|
+
* @param headers map
|
|
24309
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24310
|
+
* @return UpdateApplicationVswitchesResponse
|
|
24311
|
+
*/
|
|
22936
24312
|
async updateApplicationVswitchesWithOptions(request: UpdateApplicationVswitchesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationVswitchesResponse> {
|
|
22937
24313
|
Util.validateModel(request);
|
|
22938
24314
|
let query : {[key: string ]: any} = { };
|
|
@@ -22962,12 +24338,24 @@ export default class Client extends OpenApi {
|
|
|
22962
24338
|
return $tea.cast<UpdateApplicationVswitchesResponse>(await this.callApi(params, req, runtime), new UpdateApplicationVswitchesResponse({}));
|
|
22963
24339
|
}
|
|
22964
24340
|
|
|
24341
|
+
/**
|
|
24342
|
+
* @param request UpdateApplicationVswitchesRequest
|
|
24343
|
+
* @return UpdateApplicationVswitchesResponse
|
|
24344
|
+
*/
|
|
22965
24345
|
async updateApplicationVswitches(request: UpdateApplicationVswitchesRequest): Promise<UpdateApplicationVswitchesResponse> {
|
|
22966
24346
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22967
24347
|
let headers : {[key: string ]: string} = { };
|
|
22968
24348
|
return await this.updateApplicationVswitchesWithOptions(request, headers, runtime);
|
|
22969
24349
|
}
|
|
22970
24350
|
|
|
24351
|
+
/**
|
|
24352
|
+
* @summary 1
|
|
24353
|
+
*
|
|
24354
|
+
* @param request UpdateConfigMapRequest
|
|
24355
|
+
* @param headers map
|
|
24356
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24357
|
+
* @return UpdateConfigMapResponse
|
|
24358
|
+
*/
|
|
22971
24359
|
async updateConfigMapWithOptions(request: UpdateConfigMapRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateConfigMapResponse> {
|
|
22972
24360
|
Util.validateModel(request);
|
|
22973
24361
|
let query : {[key: string ]: any} = { };
|
|
@@ -23003,12 +24391,26 @@ export default class Client extends OpenApi {
|
|
|
23003
24391
|
return $tea.cast<UpdateConfigMapResponse>(await this.callApi(params, req, runtime), new UpdateConfigMapResponse({}));
|
|
23004
24392
|
}
|
|
23005
24393
|
|
|
24394
|
+
/**
|
|
24395
|
+
* @summary 1
|
|
24396
|
+
*
|
|
24397
|
+
* @param request UpdateConfigMapRequest
|
|
24398
|
+
* @return UpdateConfigMapResponse
|
|
24399
|
+
*/
|
|
23006
24400
|
async updateConfigMap(request: UpdateConfigMapRequest): Promise<UpdateConfigMapResponse> {
|
|
23007
24401
|
let runtime = new $Util.RuntimeOptions({ });
|
|
23008
24402
|
let headers : {[key: string ]: string} = { };
|
|
23009
24403
|
return await this.updateConfigMapWithOptions(request, headers, runtime);
|
|
23010
24404
|
}
|
|
23011
24405
|
|
|
24406
|
+
/**
|
|
24407
|
+
* @summary Updates a canary release rule.
|
|
24408
|
+
*
|
|
24409
|
+
* @param request UpdateGreyTagRouteRequest
|
|
24410
|
+
* @param headers map
|
|
24411
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24412
|
+
* @return UpdateGreyTagRouteResponse
|
|
24413
|
+
*/
|
|
23012
24414
|
async updateGreyTagRouteWithOptions(request: UpdateGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateGreyTagRouteResponse> {
|
|
23013
24415
|
Util.validateModel(request);
|
|
23014
24416
|
let query : {[key: string ]: any} = { };
|
|
@@ -23050,12 +24452,24 @@ export default class Client extends OpenApi {
|
|
|
23050
24452
|
return $tea.cast<UpdateGreyTagRouteResponse>(await this.callApi(params, req, runtime), new UpdateGreyTagRouteResponse({}));
|
|
23051
24453
|
}
|
|
23052
24454
|
|
|
24455
|
+
/**
|
|
24456
|
+
* @summary Updates a canary release rule.
|
|
24457
|
+
*
|
|
24458
|
+
* @param request UpdateGreyTagRouteRequest
|
|
24459
|
+
* @return UpdateGreyTagRouteResponse
|
|
24460
|
+
*/
|
|
23053
24461
|
async updateGreyTagRoute(request: UpdateGreyTagRouteRequest): Promise<UpdateGreyTagRouteResponse> {
|
|
23054
24462
|
let runtime = new $Util.RuntimeOptions({ });
|
|
23055
24463
|
let headers : {[key: string ]: string} = { };
|
|
23056
24464
|
return await this.updateGreyTagRouteWithOptions(request, headers, runtime);
|
|
23057
24465
|
}
|
|
23058
24466
|
|
|
24467
|
+
/**
|
|
24468
|
+
* @param request UpdateIngressRequest
|
|
24469
|
+
* @param headers map
|
|
24470
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24471
|
+
* @return UpdateIngressResponse
|
|
24472
|
+
*/
|
|
23059
24473
|
async updateIngressWithOptions(request: UpdateIngressRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateIngressResponse> {
|
|
23060
24474
|
Util.validateModel(request);
|
|
23061
24475
|
let query : {[key: string ]: any} = { };
|
|
@@ -23115,12 +24529,24 @@ export default class Client extends OpenApi {
|
|
|
23115
24529
|
return $tea.cast<UpdateIngressResponse>(await this.callApi(params, req, runtime), new UpdateIngressResponse({}));
|
|
23116
24530
|
}
|
|
23117
24531
|
|
|
24532
|
+
/**
|
|
24533
|
+
* @param request UpdateIngressRequest
|
|
24534
|
+
* @return UpdateIngressResponse
|
|
24535
|
+
*/
|
|
23118
24536
|
async updateIngress(request: UpdateIngressRequest): Promise<UpdateIngressResponse> {
|
|
23119
24537
|
let runtime = new $Util.RuntimeOptions({ });
|
|
23120
24538
|
let headers : {[key: string ]: string} = { };
|
|
23121
24539
|
return await this.updateIngressWithOptions(request, headers, runtime);
|
|
23122
24540
|
}
|
|
23123
24541
|
|
|
24542
|
+
/**
|
|
24543
|
+
* @summary Updates a job template.
|
|
24544
|
+
*
|
|
24545
|
+
* @param request UpdateJobRequest
|
|
24546
|
+
* @param headers map
|
|
24547
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24548
|
+
* @return UpdateJobResponse
|
|
24549
|
+
*/
|
|
23124
24550
|
async updateJobWithOptions(request: UpdateJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateJobResponse> {
|
|
23125
24551
|
Util.validateModel(request);
|
|
23126
24552
|
let query : {[key: string ]: any} = { };
|
|
@@ -23324,12 +24750,26 @@ export default class Client extends OpenApi {
|
|
|
23324
24750
|
return $tea.cast<UpdateJobResponse>(await this.callApi(params, req, runtime), new UpdateJobResponse({}));
|
|
23325
24751
|
}
|
|
23326
24752
|
|
|
24753
|
+
/**
|
|
24754
|
+
* @summary Updates a job template.
|
|
24755
|
+
*
|
|
24756
|
+
* @param request UpdateJobRequest
|
|
24757
|
+
* @return UpdateJobResponse
|
|
24758
|
+
*/
|
|
23327
24759
|
async updateJob(request: UpdateJobRequest): Promise<UpdateJobResponse> {
|
|
23328
24760
|
let runtime = new $Util.RuntimeOptions({ });
|
|
23329
24761
|
let headers : {[key: string ]: string} = { };
|
|
23330
24762
|
return await this.updateJobWithOptions(request, headers, runtime);
|
|
23331
24763
|
}
|
|
23332
24764
|
|
|
24765
|
+
/**
|
|
24766
|
+
* @summary Updates the information about a namespace.
|
|
24767
|
+
*
|
|
24768
|
+
* @param request UpdateNamespaceRequest
|
|
24769
|
+
* @param headers map
|
|
24770
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24771
|
+
* @return UpdateNamespaceResponse
|
|
24772
|
+
*/
|
|
23333
24773
|
async updateNamespaceWithOptions(request: UpdateNamespaceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateNamespaceResponse> {
|
|
23334
24774
|
Util.validateModel(request);
|
|
23335
24775
|
let query : {[key: string ]: any} = { };
|
|
@@ -23371,12 +24811,26 @@ export default class Client extends OpenApi {
|
|
|
23371
24811
|
return $tea.cast<UpdateNamespaceResponse>(await this.callApi(params, req, runtime), new UpdateNamespaceResponse({}));
|
|
23372
24812
|
}
|
|
23373
24813
|
|
|
24814
|
+
/**
|
|
24815
|
+
* @summary Updates the information about a namespace.
|
|
24816
|
+
*
|
|
24817
|
+
* @param request UpdateNamespaceRequest
|
|
24818
|
+
* @return UpdateNamespaceResponse
|
|
24819
|
+
*/
|
|
23374
24820
|
async updateNamespace(request: UpdateNamespaceRequest): Promise<UpdateNamespaceResponse> {
|
|
23375
24821
|
let runtime = new $Util.RuntimeOptions({ });
|
|
23376
24822
|
let headers : {[key: string ]: string} = { };
|
|
23377
24823
|
return await this.updateNamespaceWithOptions(request, headers, runtime);
|
|
23378
24824
|
}
|
|
23379
24825
|
|
|
24826
|
+
/**
|
|
24827
|
+
* @summary cn-beijing:test
|
|
24828
|
+
*
|
|
24829
|
+
* @param request UpdateNamespaceVpcRequest
|
|
24830
|
+
* @param headers map
|
|
24831
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24832
|
+
* @return UpdateNamespaceVpcResponse
|
|
24833
|
+
*/
|
|
23380
24834
|
async updateNamespaceVpcWithOptions(request: UpdateNamespaceVpcRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateNamespaceVpcResponse> {
|
|
23381
24835
|
Util.validateModel(request);
|
|
23382
24836
|
let query : {[key: string ]: any} = { };
|
|
@@ -23410,12 +24864,30 @@ export default class Client extends OpenApi {
|
|
|
23410
24864
|
return $tea.cast<UpdateNamespaceVpcResponse>(await this.callApi(params, req, runtime), new UpdateNamespaceVpcResponse({}));
|
|
23411
24865
|
}
|
|
23412
24866
|
|
|
24867
|
+
/**
|
|
24868
|
+
* @summary cn-beijing:test
|
|
24869
|
+
*
|
|
24870
|
+
* @param request UpdateNamespaceVpcRequest
|
|
24871
|
+
* @return UpdateNamespaceVpcResponse
|
|
24872
|
+
*/
|
|
23413
24873
|
async updateNamespaceVpc(request: UpdateNamespaceVpcRequest): Promise<UpdateNamespaceVpcResponse> {
|
|
23414
24874
|
let runtime = new $Util.RuntimeOptions({ });
|
|
23415
24875
|
let headers : {[key: string ]: string} = { };
|
|
23416
24876
|
return await this.updateNamespaceVpcWithOptions(request, headers, runtime);
|
|
23417
24877
|
}
|
|
23418
24878
|
|
|
24879
|
+
/**
|
|
24880
|
+
* @summary The HTTP status code. Valid values:
|
|
24881
|
+
* * **2xx**: The call was successful.
|
|
24882
|
+
* * **3xx**: The call was redirected.
|
|
24883
|
+
* * **4xx**: The call failed.
|
|
24884
|
+
* * **5xx**: A server error occurred.
|
|
24885
|
+
*
|
|
24886
|
+
* @param tmpReq UpdateSecretRequest
|
|
24887
|
+
* @param headers map
|
|
24888
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24889
|
+
* @return UpdateSecretResponse
|
|
24890
|
+
*/
|
|
23419
24891
|
async updateSecretWithOptions(tmpReq: UpdateSecretRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateSecretResponse> {
|
|
23420
24892
|
Util.validateModel(tmpReq);
|
|
23421
24893
|
let request = new UpdateSecretShrinkRequest({ });
|
|
@@ -23455,6 +24927,16 @@ export default class Client extends OpenApi {
|
|
|
23455
24927
|
return $tea.cast<UpdateSecretResponse>(await this.callApi(params, req, runtime), new UpdateSecretResponse({}));
|
|
23456
24928
|
}
|
|
23457
24929
|
|
|
24930
|
+
/**
|
|
24931
|
+
* @summary The HTTP status code. Valid values:
|
|
24932
|
+
* * **2xx**: The call was successful.
|
|
24933
|
+
* * **3xx**: The call was redirected.
|
|
24934
|
+
* * **4xx**: The call failed.
|
|
24935
|
+
* * **5xx**: A server error occurred.
|
|
24936
|
+
*
|
|
24937
|
+
* @param request UpdateSecretRequest
|
|
24938
|
+
* @return UpdateSecretResponse
|
|
24939
|
+
*/
|
|
23458
24940
|
async updateSecret(request: UpdateSecretRequest): Promise<UpdateSecretResponse> {
|
|
23459
24941
|
let runtime = new $Util.RuntimeOptions({ });
|
|
23460
24942
|
let headers : {[key: string ]: string} = { };
|