@alicloud/sae20190506 1.23.0 → 1.23.2
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 +1820 -359
- package/dist/client.js +3434 -1782
- package/dist/client.js.map +1 -1
- package/package.json +7 -7
- package/src/client.ts +2150 -404
package/src/client.ts
CHANGED
|
@@ -46,6 +46,126 @@ export class AclEntryConfig extends $tea.Model {
|
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
+
export class AppStackInstance extends $tea.Model {
|
|
50
|
+
createTime?: number;
|
|
51
|
+
endpoints?: AppStackInstanceEndpoints[];
|
|
52
|
+
instanceId?: string;
|
|
53
|
+
instanceName?: string;
|
|
54
|
+
parameters?: AppStackInstanceParameters[];
|
|
55
|
+
stackId?: string;
|
|
56
|
+
status?: string;
|
|
57
|
+
updateTime?: number;
|
|
58
|
+
static names(): { [key: string]: string } {
|
|
59
|
+
return {
|
|
60
|
+
createTime: 'CreateTime',
|
|
61
|
+
endpoints: 'Endpoints',
|
|
62
|
+
instanceId: 'InstanceId',
|
|
63
|
+
instanceName: 'InstanceName',
|
|
64
|
+
parameters: 'Parameters',
|
|
65
|
+
stackId: 'StackId',
|
|
66
|
+
status: 'Status',
|
|
67
|
+
updateTime: 'UpdateTime',
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
static types(): { [key: string]: any } {
|
|
72
|
+
return {
|
|
73
|
+
createTime: 'number',
|
|
74
|
+
endpoints: { 'type': 'array', 'itemType': AppStackInstanceEndpoints },
|
|
75
|
+
instanceId: 'string',
|
|
76
|
+
instanceName: 'string',
|
|
77
|
+
parameters: { 'type': 'array', 'itemType': AppStackInstanceParameters },
|
|
78
|
+
stackId: 'string',
|
|
79
|
+
status: 'string',
|
|
80
|
+
updateTime: 'number',
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
constructor(map?: { [key: string]: any }) {
|
|
85
|
+
super(map);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export class AppStackResource extends $tea.Model {
|
|
90
|
+
createTime?: number;
|
|
91
|
+
instanceId?: string;
|
|
92
|
+
productCode?: string;
|
|
93
|
+
resourceId?: string;
|
|
94
|
+
resourceName?: string;
|
|
95
|
+
resourceType?: string;
|
|
96
|
+
stackId?: string;
|
|
97
|
+
status?: string;
|
|
98
|
+
static names(): { [key: string]: string } {
|
|
99
|
+
return {
|
|
100
|
+
createTime: 'CreateTime',
|
|
101
|
+
instanceId: 'InstanceId',
|
|
102
|
+
productCode: 'ProductCode',
|
|
103
|
+
resourceId: 'ResourceId',
|
|
104
|
+
resourceName: 'ResourceName',
|
|
105
|
+
resourceType: 'ResourceType',
|
|
106
|
+
stackId: 'StackId',
|
|
107
|
+
status: 'Status',
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
static types(): { [key: string]: any } {
|
|
112
|
+
return {
|
|
113
|
+
createTime: 'number',
|
|
114
|
+
instanceId: 'string',
|
|
115
|
+
productCode: 'string',
|
|
116
|
+
resourceId: 'string',
|
|
117
|
+
resourceName: 'string',
|
|
118
|
+
resourceType: 'string',
|
|
119
|
+
stackId: 'string',
|
|
120
|
+
status: 'string',
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
constructor(map?: { [key: string]: any }) {
|
|
125
|
+
super(map);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export class AppStackTask extends $tea.Model {
|
|
130
|
+
createTime?: number;
|
|
131
|
+
endTime?: number;
|
|
132
|
+
instanceId?: string;
|
|
133
|
+
stackId?: string;
|
|
134
|
+
startTime?: number;
|
|
135
|
+
status?: string;
|
|
136
|
+
steps?: AppStackTaskSteps[];
|
|
137
|
+
taskId?: string;
|
|
138
|
+
static names(): { [key: string]: string } {
|
|
139
|
+
return {
|
|
140
|
+
createTime: 'CreateTime',
|
|
141
|
+
endTime: 'EndTime',
|
|
142
|
+
instanceId: 'InstanceId',
|
|
143
|
+
stackId: 'StackId',
|
|
144
|
+
startTime: 'StartTime',
|
|
145
|
+
status: 'Status',
|
|
146
|
+
steps: 'Steps',
|
|
147
|
+
taskId: 'TaskId',
|
|
148
|
+
};
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
static types(): { [key: string]: any } {
|
|
152
|
+
return {
|
|
153
|
+
createTime: 'number',
|
|
154
|
+
endTime: 'number',
|
|
155
|
+
instanceId: 'string',
|
|
156
|
+
stackId: 'string',
|
|
157
|
+
startTime: 'number',
|
|
158
|
+
status: 'string',
|
|
159
|
+
steps: { 'type': 'array', 'itemType': AppStackTaskSteps },
|
|
160
|
+
taskId: 'string',
|
|
161
|
+
};
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
constructor(map?: { [key: string]: any }) {
|
|
165
|
+
super(map);
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
49
169
|
export class Application extends $tea.Model {
|
|
50
170
|
requestId?: string;
|
|
51
171
|
applicationID?: string;
|
|
@@ -345,6 +465,7 @@ export class BuildPipelineRun extends $tea.Model {
|
|
|
345
465
|
startTime?: number;
|
|
346
466
|
status?: string;
|
|
347
467
|
steps?: BuildPipelineRunSteps[];
|
|
468
|
+
triggerConfig?: BuildPipelineRunTriggerConfig;
|
|
348
469
|
versionId?: string;
|
|
349
470
|
waitDuration?: number;
|
|
350
471
|
static names(): { [key: string]: string } {
|
|
@@ -363,6 +484,7 @@ export class BuildPipelineRun extends $tea.Model {
|
|
|
363
484
|
startTime: 'StartTime',
|
|
364
485
|
status: 'Status',
|
|
365
486
|
steps: 'Steps',
|
|
487
|
+
triggerConfig: 'TriggerConfig',
|
|
366
488
|
versionId: 'VersionId',
|
|
367
489
|
waitDuration: 'WaitDuration',
|
|
368
490
|
};
|
|
@@ -384,6 +506,7 @@ export class BuildPipelineRun extends $tea.Model {
|
|
|
384
506
|
startTime: 'number',
|
|
385
507
|
status: 'string',
|
|
386
508
|
steps: { 'type': 'array', 'itemType': BuildPipelineRunSteps },
|
|
509
|
+
triggerConfig: BuildPipelineRunTriggerConfig,
|
|
387
510
|
versionId: 'string',
|
|
388
511
|
waitDuration: 'number',
|
|
389
512
|
};
|
|
@@ -716,6 +839,7 @@ export class CustomDomain extends $tea.Model {
|
|
|
716
839
|
namespaceID?: string;
|
|
717
840
|
protocol?: string;
|
|
718
841
|
requestId?: string;
|
|
842
|
+
routeConfig?: RouteConfig;
|
|
719
843
|
subdomainCount?: string;
|
|
720
844
|
tlsConfig?: TLSConfig;
|
|
721
845
|
wafConfig?: WAFConfig;
|
|
@@ -731,6 +855,7 @@ export class CustomDomain extends $tea.Model {
|
|
|
731
855
|
namespaceID: 'namespaceID',
|
|
732
856
|
protocol: 'protocol',
|
|
733
857
|
requestId: 'requestId',
|
|
858
|
+
routeConfig: 'routeConfig',
|
|
734
859
|
subdomainCount: 'subdomainCount',
|
|
735
860
|
tlsConfig: 'tlsConfig',
|
|
736
861
|
wafConfig: 'wafConfig',
|
|
@@ -749,6 +874,7 @@ export class CustomDomain extends $tea.Model {
|
|
|
749
874
|
namespaceID: 'string',
|
|
750
875
|
protocol: 'string',
|
|
751
876
|
requestId: 'string',
|
|
877
|
+
routeConfig: RouteConfig,
|
|
752
878
|
subdomainCount: 'string',
|
|
753
879
|
tlsConfig: TLSConfig,
|
|
754
880
|
wafConfig: WAFConfig,
|
|
@@ -1786,6 +1912,59 @@ export class OSSMountPoint extends $tea.Model {
|
|
|
1786
1912
|
}
|
|
1787
1913
|
}
|
|
1788
1914
|
|
|
1915
|
+
export class PathConfig extends $tea.Model {
|
|
1916
|
+
applicationName?: string;
|
|
1917
|
+
path?: string;
|
|
1918
|
+
static names(): { [key: string]: string } {
|
|
1919
|
+
return {
|
|
1920
|
+
applicationName: 'applicationName',
|
|
1921
|
+
path: 'path',
|
|
1922
|
+
};
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
static types(): { [key: string]: any } {
|
|
1926
|
+
return {
|
|
1927
|
+
applicationName: 'string',
|
|
1928
|
+
path: 'string',
|
|
1929
|
+
};
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
constructor(map?: { [key: string]: any }) {
|
|
1933
|
+
super(map);
|
|
1934
|
+
}
|
|
1935
|
+
}
|
|
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
|
+
|
|
1789
1968
|
export class PolicyItem extends $tea.Model {
|
|
1790
1969
|
key?: string;
|
|
1791
1970
|
operator?: string;
|
|
@@ -1959,6 +2138,25 @@ export class PublishApplicationVersionInput extends $tea.Model {
|
|
|
1959
2138
|
}
|
|
1960
2139
|
}
|
|
1961
2140
|
|
|
2141
|
+
export class RouteConfig extends $tea.Model {
|
|
2142
|
+
routes?: PathConfig[];
|
|
2143
|
+
static names(): { [key: string]: string } {
|
|
2144
|
+
return {
|
|
2145
|
+
routes: 'routes',
|
|
2146
|
+
};
|
|
2147
|
+
}
|
|
2148
|
+
|
|
2149
|
+
static types(): { [key: string]: any } {
|
|
2150
|
+
return {
|
|
2151
|
+
routes: { 'type': 'array', 'itemType': PathConfig },
|
|
2152
|
+
};
|
|
2153
|
+
}
|
|
2154
|
+
|
|
2155
|
+
constructor(map?: { [key: string]: any }) {
|
|
2156
|
+
super(map);
|
|
2157
|
+
}
|
|
2158
|
+
}
|
|
2159
|
+
|
|
1962
2160
|
export class RoutePolicy extends $tea.Model {
|
|
1963
2161
|
condition?: string;
|
|
1964
2162
|
policyItems?: PolicyItem[];
|
|
@@ -2032,11 +2230,13 @@ export class SourceCodeAccount extends $tea.Model {
|
|
|
2032
2230
|
avatarUrl?: string;
|
|
2033
2231
|
id?: string;
|
|
2034
2232
|
name?: string;
|
|
2233
|
+
organizations?: SourceCodeAccountOrganizations[];
|
|
2035
2234
|
static names(): { [key: string]: string } {
|
|
2036
2235
|
return {
|
|
2037
2236
|
avatarUrl: 'AvatarUrl',
|
|
2038
2237
|
id: 'Id',
|
|
2039
2238
|
name: 'Name',
|
|
2239
|
+
organizations: 'Organizations',
|
|
2040
2240
|
};
|
|
2041
2241
|
}
|
|
2042
2242
|
|
|
@@ -2045,6 +2245,7 @@ export class SourceCodeAccount extends $tea.Model {
|
|
|
2045
2245
|
avatarUrl: 'string',
|
|
2046
2246
|
id: 'string',
|
|
2047
2247
|
name: 'string',
|
|
2248
|
+
organizations: { 'type': 'array', 'itemType': SourceCodeAccountOrganizations },
|
|
2048
2249
|
};
|
|
2049
2250
|
}
|
|
2050
2251
|
|
|
@@ -2155,6 +2356,34 @@ export class StaticsInfo extends $tea.Model {
|
|
|
2155
2356
|
}
|
|
2156
2357
|
}
|
|
2157
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
|
+
|
|
2158
2387
|
export class TLSConfig extends $tea.Model {
|
|
2159
2388
|
cipherSuites?: string[];
|
|
2160
2389
|
maxVersion?: string;
|
|
@@ -2687,9 +2916,9 @@ export class AbortAndRollbackChangeOrderResponseBody extends $tea.Model {
|
|
|
2687
2916
|
}
|
|
2688
2917
|
|
|
2689
2918
|
export class AbortAndRollbackChangeOrderResponse extends $tea.Model {
|
|
2690
|
-
headers
|
|
2691
|
-
statusCode
|
|
2692
|
-
body
|
|
2919
|
+
headers?: { [key: string]: string };
|
|
2920
|
+
statusCode?: number;
|
|
2921
|
+
body?: AbortAndRollbackChangeOrderResponseBody;
|
|
2693
2922
|
static names(): { [key: string]: string } {
|
|
2694
2923
|
return {
|
|
2695
2924
|
headers: 'headers',
|
|
@@ -2768,9 +2997,9 @@ export class AbortChangeOrderResponseBody extends $tea.Model {
|
|
|
2768
2997
|
}
|
|
2769
2998
|
|
|
2770
2999
|
export class AbortChangeOrderResponse extends $tea.Model {
|
|
2771
|
-
headers
|
|
2772
|
-
statusCode
|
|
2773
|
-
body
|
|
3000
|
+
headers?: { [key: string]: string };
|
|
3001
|
+
statusCode?: number;
|
|
3002
|
+
body?: AbortChangeOrderResponseBody;
|
|
2774
3003
|
static names(): { [key: string]: string } {
|
|
2775
3004
|
return {
|
|
2776
3005
|
headers: 'headers',
|
|
@@ -2795,10 +3024,12 @@ export class AbortChangeOrderResponse extends $tea.Model {
|
|
|
2795
3024
|
export class BatchStartApplicationsRequest extends $tea.Model {
|
|
2796
3025
|
appIds?: string;
|
|
2797
3026
|
namespaceId?: string;
|
|
3027
|
+
version?: string;
|
|
2798
3028
|
static names(): { [key: string]: string } {
|
|
2799
3029
|
return {
|
|
2800
3030
|
appIds: 'AppIds',
|
|
2801
3031
|
namespaceId: 'NamespaceId',
|
|
3032
|
+
version: 'Version',
|
|
2802
3033
|
};
|
|
2803
3034
|
}
|
|
2804
3035
|
|
|
@@ -2806,6 +3037,7 @@ export class BatchStartApplicationsRequest extends $tea.Model {
|
|
|
2806
3037
|
return {
|
|
2807
3038
|
appIds: 'string',
|
|
2808
3039
|
namespaceId: 'string',
|
|
3040
|
+
version: 'string',
|
|
2809
3041
|
};
|
|
2810
3042
|
}
|
|
2811
3043
|
|
|
@@ -2852,9 +3084,9 @@ export class BatchStartApplicationsResponseBody extends $tea.Model {
|
|
|
2852
3084
|
}
|
|
2853
3085
|
|
|
2854
3086
|
export class BatchStartApplicationsResponse extends $tea.Model {
|
|
2855
|
-
headers
|
|
2856
|
-
statusCode
|
|
2857
|
-
body
|
|
3087
|
+
headers?: { [key: string]: string };
|
|
3088
|
+
statusCode?: number;
|
|
3089
|
+
body?: BatchStartApplicationsResponseBody;
|
|
2858
3090
|
static names(): { [key: string]: string } {
|
|
2859
3091
|
return {
|
|
2860
3092
|
headers: 'headers',
|
|
@@ -2879,10 +3111,12 @@ export class BatchStartApplicationsResponse extends $tea.Model {
|
|
|
2879
3111
|
export class BatchStopApplicationsRequest extends $tea.Model {
|
|
2880
3112
|
appIds?: string;
|
|
2881
3113
|
namespaceId?: string;
|
|
3114
|
+
version?: string;
|
|
2882
3115
|
static names(): { [key: string]: string } {
|
|
2883
3116
|
return {
|
|
2884
3117
|
appIds: 'AppIds',
|
|
2885
3118
|
namespaceId: 'NamespaceId',
|
|
3119
|
+
version: 'Version',
|
|
2886
3120
|
};
|
|
2887
3121
|
}
|
|
2888
3122
|
|
|
@@ -2890,6 +3124,7 @@ export class BatchStopApplicationsRequest extends $tea.Model {
|
|
|
2890
3124
|
return {
|
|
2891
3125
|
appIds: 'string',
|
|
2892
3126
|
namespaceId: 'string',
|
|
3127
|
+
version: 'string',
|
|
2893
3128
|
};
|
|
2894
3129
|
}
|
|
2895
3130
|
|
|
@@ -2936,9 +3171,9 @@ export class BatchStopApplicationsResponseBody extends $tea.Model {
|
|
|
2936
3171
|
}
|
|
2937
3172
|
|
|
2938
3173
|
export class BatchStopApplicationsResponse extends $tea.Model {
|
|
2939
|
-
headers
|
|
2940
|
-
statusCode
|
|
2941
|
-
body
|
|
3174
|
+
headers?: { [key: string]: string };
|
|
3175
|
+
statusCode?: number;
|
|
3176
|
+
body?: BatchStopApplicationsResponseBody;
|
|
2942
3177
|
static names(): { [key: string]: string } {
|
|
2943
3178
|
return {
|
|
2944
3179
|
headers: 'headers',
|
|
@@ -3029,9 +3264,9 @@ export class BindSlbResponseBody extends $tea.Model {
|
|
|
3029
3264
|
}
|
|
3030
3265
|
|
|
3031
3266
|
export class BindSlbResponse extends $tea.Model {
|
|
3032
|
-
headers
|
|
3033
|
-
statusCode
|
|
3034
|
-
body
|
|
3267
|
+
headers?: { [key: string]: string };
|
|
3268
|
+
statusCode?: number;
|
|
3269
|
+
body?: BindSlbResponseBody;
|
|
3035
3270
|
static names(): { [key: string]: string } {
|
|
3036
3271
|
return {
|
|
3037
3272
|
headers: 'headers',
|
|
@@ -3113,9 +3348,9 @@ export class ConfirmPipelineBatchResponseBody extends $tea.Model {
|
|
|
3113
3348
|
}
|
|
3114
3349
|
|
|
3115
3350
|
export class ConfirmPipelineBatchResponse extends $tea.Model {
|
|
3116
|
-
headers
|
|
3117
|
-
statusCode
|
|
3118
|
-
body
|
|
3351
|
+
headers?: { [key: string]: string };
|
|
3352
|
+
statusCode?: number;
|
|
3353
|
+
body?: ConfirmPipelineBatchResponseBody;
|
|
3119
3354
|
static names(): { [key: string]: string } {
|
|
3120
3355
|
return {
|
|
3121
3356
|
headers: 'headers',
|
|
@@ -3365,9 +3600,9 @@ export class CreateApplicationResponseBody extends $tea.Model {
|
|
|
3365
3600
|
}
|
|
3366
3601
|
|
|
3367
3602
|
export class CreateApplicationResponse extends $tea.Model {
|
|
3368
|
-
headers
|
|
3369
|
-
statusCode
|
|
3370
|
-
body
|
|
3603
|
+
headers?: { [key: string]: string };
|
|
3604
|
+
statusCode?: number;
|
|
3605
|
+
body?: CreateApplicationResponseBody;
|
|
3371
3606
|
static names(): { [key: string]: string } {
|
|
3372
3607
|
return {
|
|
3373
3608
|
headers: 'headers',
|
|
@@ -3467,9 +3702,9 @@ export class CreateApplicationScalingRuleResponseBody extends $tea.Model {
|
|
|
3467
3702
|
}
|
|
3468
3703
|
|
|
3469
3704
|
export class CreateApplicationScalingRuleResponse extends $tea.Model {
|
|
3470
|
-
headers
|
|
3471
|
-
statusCode
|
|
3472
|
-
body
|
|
3705
|
+
headers?: { [key: string]: string };
|
|
3706
|
+
statusCode?: number;
|
|
3707
|
+
body?: CreateApplicationScalingRuleResponseBody;
|
|
3473
3708
|
static names(): { [key: string]: string } {
|
|
3474
3709
|
return {
|
|
3475
3710
|
headers: 'headers',
|
|
@@ -3557,9 +3792,9 @@ export class CreateConfigMapResponseBody extends $tea.Model {
|
|
|
3557
3792
|
}
|
|
3558
3793
|
|
|
3559
3794
|
export class CreateConfigMapResponse extends $tea.Model {
|
|
3560
|
-
headers
|
|
3561
|
-
statusCode
|
|
3562
|
-
body
|
|
3795
|
+
headers?: { [key: string]: string };
|
|
3796
|
+
statusCode?: number;
|
|
3797
|
+
body?: CreateConfigMapResponseBody;
|
|
3563
3798
|
static names(): { [key: string]: string } {
|
|
3564
3799
|
return {
|
|
3565
3800
|
headers: 'headers',
|
|
@@ -3653,9 +3888,9 @@ export class CreateGreyTagRouteResponseBody extends $tea.Model {
|
|
|
3653
3888
|
}
|
|
3654
3889
|
|
|
3655
3890
|
export class CreateGreyTagRouteResponse extends $tea.Model {
|
|
3656
|
-
headers
|
|
3657
|
-
statusCode
|
|
3658
|
-
body
|
|
3891
|
+
headers?: { [key: string]: string };
|
|
3892
|
+
statusCode?: number;
|
|
3893
|
+
body?: CreateGreyTagRouteResponseBody;
|
|
3659
3894
|
static names(): { [key: string]: string } {
|
|
3660
3895
|
return {
|
|
3661
3896
|
headers: 'headers',
|
|
@@ -3761,9 +3996,9 @@ export class CreateIngressResponseBody extends $tea.Model {
|
|
|
3761
3996
|
}
|
|
3762
3997
|
|
|
3763
3998
|
export class CreateIngressResponse extends $tea.Model {
|
|
3764
|
-
headers
|
|
3765
|
-
statusCode
|
|
3766
|
-
body
|
|
3999
|
+
headers?: { [key: string]: string };
|
|
4000
|
+
statusCode?: number;
|
|
4001
|
+
body?: CreateIngressResponseBody;
|
|
3767
4002
|
static names(): { [key: string]: string } {
|
|
3768
4003
|
return {
|
|
3769
4004
|
headers: 'headers',
|
|
@@ -4001,9 +4236,9 @@ export class CreateJobResponseBody extends $tea.Model {
|
|
|
4001
4236
|
}
|
|
4002
4237
|
|
|
4003
4238
|
export class CreateJobResponse extends $tea.Model {
|
|
4004
|
-
headers
|
|
4005
|
-
statusCode
|
|
4006
|
-
body
|
|
4239
|
+
headers?: { [key: string]: string };
|
|
4240
|
+
statusCode?: number;
|
|
4241
|
+
body?: CreateJobResponseBody;
|
|
4007
4242
|
static names(): { [key: string]: string } {
|
|
4008
4243
|
return {
|
|
4009
4244
|
headers: 'headers',
|
|
@@ -4094,9 +4329,9 @@ export class CreateNamespaceResponseBody extends $tea.Model {
|
|
|
4094
4329
|
}
|
|
4095
4330
|
|
|
4096
4331
|
export class CreateNamespaceResponse extends $tea.Model {
|
|
4097
|
-
headers
|
|
4098
|
-
statusCode
|
|
4099
|
-
body
|
|
4332
|
+
headers?: { [key: string]: string };
|
|
4333
|
+
statusCode?: number;
|
|
4334
|
+
body?: CreateNamespaceResponseBody;
|
|
4100
4335
|
static names(): { [key: string]: string } {
|
|
4101
4336
|
return {
|
|
4102
4337
|
headers: 'headers',
|
|
@@ -4212,9 +4447,9 @@ export class CreateSecretResponseBody extends $tea.Model {
|
|
|
4212
4447
|
}
|
|
4213
4448
|
|
|
4214
4449
|
export class CreateSecretResponse extends $tea.Model {
|
|
4215
|
-
headers
|
|
4216
|
-
statusCode
|
|
4217
|
-
body
|
|
4450
|
+
headers?: { [key: string]: string };
|
|
4451
|
+
statusCode?: number;
|
|
4452
|
+
body?: CreateSecretResponseBody;
|
|
4218
4453
|
static names(): { [key: string]: string } {
|
|
4219
4454
|
return {
|
|
4220
4455
|
headers: 'headers',
|
|
@@ -4293,9 +4528,9 @@ export class DeleteApplicationResponseBody extends $tea.Model {
|
|
|
4293
4528
|
}
|
|
4294
4529
|
|
|
4295
4530
|
export class DeleteApplicationResponse extends $tea.Model {
|
|
4296
|
-
headers
|
|
4297
|
-
statusCode
|
|
4298
|
-
body
|
|
4531
|
+
headers?: { [key: string]: string };
|
|
4532
|
+
statusCode?: number;
|
|
4533
|
+
body?: DeleteApplicationResponseBody;
|
|
4299
4534
|
static names(): { [key: string]: string } {
|
|
4300
4535
|
return {
|
|
4301
4536
|
headers: 'headers',
|
|
@@ -4374,9 +4609,9 @@ export class DeleteApplicationScalingRuleResponseBody extends $tea.Model {
|
|
|
4374
4609
|
}
|
|
4375
4610
|
|
|
4376
4611
|
export class DeleteApplicationScalingRuleResponse extends $tea.Model {
|
|
4377
|
-
headers
|
|
4378
|
-
statusCode
|
|
4379
|
-
body
|
|
4612
|
+
headers?: { [key: string]: string };
|
|
4613
|
+
statusCode?: number;
|
|
4614
|
+
body?: DeleteApplicationScalingRuleResponseBody;
|
|
4380
4615
|
static names(): { [key: string]: string } {
|
|
4381
4616
|
return {
|
|
4382
4617
|
headers: 'headers',
|
|
@@ -4455,9 +4690,9 @@ export class DeleteConfigMapResponseBody extends $tea.Model {
|
|
|
4455
4690
|
}
|
|
4456
4691
|
|
|
4457
4692
|
export class DeleteConfigMapResponse extends $tea.Model {
|
|
4458
|
-
headers
|
|
4459
|
-
statusCode
|
|
4460
|
-
body
|
|
4693
|
+
headers?: { [key: string]: string };
|
|
4694
|
+
statusCode?: number;
|
|
4695
|
+
body?: DeleteConfigMapResponseBody;
|
|
4461
4696
|
static names(): { [key: string]: string } {
|
|
4462
4697
|
return {
|
|
4463
4698
|
headers: 'headers',
|
|
@@ -4536,9 +4771,9 @@ export class DeleteGreyTagRouteResponseBody extends $tea.Model {
|
|
|
4536
4771
|
}
|
|
4537
4772
|
|
|
4538
4773
|
export class DeleteGreyTagRouteResponse extends $tea.Model {
|
|
4539
|
-
headers
|
|
4540
|
-
statusCode
|
|
4541
|
-
body
|
|
4774
|
+
headers?: { [key: string]: string };
|
|
4775
|
+
statusCode?: number;
|
|
4776
|
+
body?: DeleteGreyTagRouteResponseBody;
|
|
4542
4777
|
static names(): { [key: string]: string } {
|
|
4543
4778
|
return {
|
|
4544
4779
|
headers: 'headers',
|
|
@@ -4620,9 +4855,9 @@ export class DeleteHistoryJobResponseBody extends $tea.Model {
|
|
|
4620
4855
|
}
|
|
4621
4856
|
|
|
4622
4857
|
export class DeleteHistoryJobResponse extends $tea.Model {
|
|
4623
|
-
headers
|
|
4624
|
-
statusCode
|
|
4625
|
-
body
|
|
4858
|
+
headers?: { [key: string]: string };
|
|
4859
|
+
statusCode?: number;
|
|
4860
|
+
body?: DeleteHistoryJobResponseBody;
|
|
4626
4861
|
static names(): { [key: string]: string } {
|
|
4627
4862
|
return {
|
|
4628
4863
|
headers: 'headers',
|
|
@@ -4701,9 +4936,9 @@ export class DeleteIngressResponseBody extends $tea.Model {
|
|
|
4701
4936
|
}
|
|
4702
4937
|
|
|
4703
4938
|
export class DeleteIngressResponse extends $tea.Model {
|
|
4704
|
-
headers
|
|
4705
|
-
statusCode
|
|
4706
|
-
body
|
|
4939
|
+
headers?: { [key: string]: string };
|
|
4940
|
+
statusCode?: number;
|
|
4941
|
+
body?: DeleteIngressResponseBody;
|
|
4707
4942
|
static names(): { [key: string]: string } {
|
|
4708
4943
|
return {
|
|
4709
4944
|
headers: 'headers',
|
|
@@ -4782,9 +5017,9 @@ export class DeleteJobResponseBody extends $tea.Model {
|
|
|
4782
5017
|
}
|
|
4783
5018
|
|
|
4784
5019
|
export class DeleteJobResponse extends $tea.Model {
|
|
4785
|
-
headers
|
|
4786
|
-
statusCode
|
|
4787
|
-
body
|
|
5020
|
+
headers?: { [key: string]: string };
|
|
5021
|
+
statusCode?: number;
|
|
5022
|
+
body?: DeleteJobResponseBody;
|
|
4788
5023
|
static names(): { [key: string]: string } {
|
|
4789
5024
|
return {
|
|
4790
5025
|
headers: 'headers',
|
|
@@ -4863,9 +5098,9 @@ export class DeleteNamespaceResponseBody extends $tea.Model {
|
|
|
4863
5098
|
}
|
|
4864
5099
|
|
|
4865
5100
|
export class DeleteNamespaceResponse extends $tea.Model {
|
|
4866
|
-
headers
|
|
4867
|
-
statusCode
|
|
4868
|
-
body
|
|
5101
|
+
headers?: { [key: string]: string };
|
|
5102
|
+
statusCode?: number;
|
|
5103
|
+
body?: DeleteNamespaceResponseBody;
|
|
4869
5104
|
static names(): { [key: string]: string } {
|
|
4870
5105
|
return {
|
|
4871
5106
|
headers: 'headers',
|
|
@@ -4947,9 +5182,9 @@ export class DeleteSecretResponseBody extends $tea.Model {
|
|
|
4947
5182
|
}
|
|
4948
5183
|
|
|
4949
5184
|
export class DeleteSecretResponse extends $tea.Model {
|
|
4950
|
-
headers
|
|
4951
|
-
statusCode
|
|
4952
|
-
body
|
|
5185
|
+
headers?: { [key: string]: string };
|
|
5186
|
+
statusCode?: number;
|
|
5187
|
+
body?: DeleteSecretResponseBody;
|
|
4953
5188
|
static names(): { [key: string]: string } {
|
|
4954
5189
|
return {
|
|
4955
5190
|
headers: 'headers',
|
|
@@ -5199,9 +5434,9 @@ export class DeployApplicationResponseBody extends $tea.Model {
|
|
|
5199
5434
|
}
|
|
5200
5435
|
|
|
5201
5436
|
export class DeployApplicationResponse extends $tea.Model {
|
|
5202
|
-
headers
|
|
5203
|
-
statusCode
|
|
5204
|
-
body
|
|
5437
|
+
headers?: { [key: string]: string };
|
|
5438
|
+
statusCode?: number;
|
|
5439
|
+
body?: DeployApplicationResponseBody;
|
|
5205
5440
|
static names(): { [key: string]: string } {
|
|
5206
5441
|
return {
|
|
5207
5442
|
headers: 'headers',
|
|
@@ -5225,6 +5460,8 @@ export class DeployApplicationResponse extends $tea.Model {
|
|
|
5225
5460
|
|
|
5226
5461
|
export class DescribeAppServiceDetailRequest extends $tea.Model {
|
|
5227
5462
|
appId?: string;
|
|
5463
|
+
nacosInstanceId?: string;
|
|
5464
|
+
nacosNamespaceId?: string;
|
|
5228
5465
|
serviceGroup?: string;
|
|
5229
5466
|
serviceName?: string;
|
|
5230
5467
|
serviceType?: string;
|
|
@@ -5232,6 +5469,8 @@ export class DescribeAppServiceDetailRequest extends $tea.Model {
|
|
|
5232
5469
|
static names(): { [key: string]: string } {
|
|
5233
5470
|
return {
|
|
5234
5471
|
appId: 'AppId',
|
|
5472
|
+
nacosInstanceId: 'NacosInstanceId',
|
|
5473
|
+
nacosNamespaceId: 'NacosNamespaceId',
|
|
5235
5474
|
serviceGroup: 'ServiceGroup',
|
|
5236
5475
|
serviceName: 'ServiceName',
|
|
5237
5476
|
serviceType: 'ServiceType',
|
|
@@ -5242,6 +5481,8 @@ export class DescribeAppServiceDetailRequest extends $tea.Model {
|
|
|
5242
5481
|
static types(): { [key: string]: any } {
|
|
5243
5482
|
return {
|
|
5244
5483
|
appId: 'string',
|
|
5484
|
+
nacosInstanceId: 'string',
|
|
5485
|
+
nacosNamespaceId: 'string',
|
|
5245
5486
|
serviceGroup: 'string',
|
|
5246
5487
|
serviceName: 'string',
|
|
5247
5488
|
serviceType: 'string',
|
|
@@ -5292,9 +5533,9 @@ export class DescribeAppServiceDetailResponseBody extends $tea.Model {
|
|
|
5292
5533
|
}
|
|
5293
5534
|
|
|
5294
5535
|
export class DescribeAppServiceDetailResponse extends $tea.Model {
|
|
5295
|
-
headers
|
|
5296
|
-
statusCode
|
|
5297
|
-
body
|
|
5536
|
+
headers?: { [key: string]: string };
|
|
5537
|
+
statusCode?: number;
|
|
5538
|
+
body?: DescribeAppServiceDetailResponseBody;
|
|
5298
5539
|
static names(): { [key: string]: string } {
|
|
5299
5540
|
return {
|
|
5300
5541
|
headers: 'headers',
|
|
@@ -5376,9 +5617,9 @@ export class DescribeApplicationConfigResponseBody extends $tea.Model {
|
|
|
5376
5617
|
}
|
|
5377
5618
|
|
|
5378
5619
|
export class DescribeApplicationConfigResponse extends $tea.Model {
|
|
5379
|
-
headers
|
|
5380
|
-
statusCode
|
|
5381
|
-
body
|
|
5620
|
+
headers?: { [key: string]: string };
|
|
5621
|
+
statusCode?: number;
|
|
5622
|
+
body?: DescribeApplicationConfigResponseBody;
|
|
5382
5623
|
static names(): { [key: string]: string } {
|
|
5383
5624
|
return {
|
|
5384
5625
|
headers: 'headers',
|
|
@@ -5463,9 +5704,9 @@ export class DescribeApplicationGroupsResponseBody extends $tea.Model {
|
|
|
5463
5704
|
}
|
|
5464
5705
|
|
|
5465
5706
|
export class DescribeApplicationGroupsResponse extends $tea.Model {
|
|
5466
|
-
headers
|
|
5467
|
-
statusCode
|
|
5468
|
-
body
|
|
5707
|
+
headers?: { [key: string]: string };
|
|
5708
|
+
statusCode?: number;
|
|
5709
|
+
body?: DescribeApplicationGroupsResponseBody;
|
|
5469
5710
|
static names(): { [key: string]: string } {
|
|
5470
5711
|
return {
|
|
5471
5712
|
headers: 'headers',
|
|
@@ -5547,9 +5788,9 @@ export class DescribeApplicationImageResponseBody extends $tea.Model {
|
|
|
5547
5788
|
}
|
|
5548
5789
|
|
|
5549
5790
|
export class DescribeApplicationImageResponse extends $tea.Model {
|
|
5550
|
-
headers
|
|
5551
|
-
statusCode
|
|
5552
|
-
body
|
|
5791
|
+
headers?: { [key: string]: string };
|
|
5792
|
+
statusCode?: number;
|
|
5793
|
+
body?: DescribeApplicationImageResponseBody;
|
|
5553
5794
|
static names(): { [key: string]: string } {
|
|
5554
5795
|
return {
|
|
5555
5796
|
headers: 'headers',
|
|
@@ -5640,9 +5881,9 @@ export class DescribeApplicationInstancesResponseBody extends $tea.Model {
|
|
|
5640
5881
|
}
|
|
5641
5882
|
|
|
5642
5883
|
export class DescribeApplicationInstancesResponse extends $tea.Model {
|
|
5643
|
-
headers
|
|
5644
|
-
statusCode
|
|
5645
|
-
body
|
|
5884
|
+
headers?: { [key: string]: string };
|
|
5885
|
+
statusCode?: number;
|
|
5886
|
+
body?: DescribeApplicationInstancesResponseBody;
|
|
5646
5887
|
static names(): { [key: string]: string } {
|
|
5647
5888
|
return {
|
|
5648
5889
|
headers: 'headers',
|
|
@@ -5724,9 +5965,9 @@ export class DescribeApplicationScalingRuleResponseBody extends $tea.Model {
|
|
|
5724
5965
|
}
|
|
5725
5966
|
|
|
5726
5967
|
export class DescribeApplicationScalingRuleResponse extends $tea.Model {
|
|
5727
|
-
headers
|
|
5728
|
-
statusCode
|
|
5729
|
-
body
|
|
5968
|
+
headers?: { [key: string]: string };
|
|
5969
|
+
statusCode?: number;
|
|
5970
|
+
body?: DescribeApplicationScalingRuleResponseBody;
|
|
5730
5971
|
static names(): { [key: string]: string } {
|
|
5731
5972
|
return {
|
|
5732
5973
|
headers: 'headers',
|
|
@@ -5805,9 +6046,9 @@ export class DescribeApplicationScalingRulesResponseBody extends $tea.Model {
|
|
|
5805
6046
|
}
|
|
5806
6047
|
|
|
5807
6048
|
export class DescribeApplicationScalingRulesResponse extends $tea.Model {
|
|
5808
|
-
headers
|
|
5809
|
-
statusCode
|
|
5810
|
-
body
|
|
6049
|
+
headers?: { [key: string]: string };
|
|
6050
|
+
statusCode?: number;
|
|
6051
|
+
body?: DescribeApplicationScalingRulesResponseBody;
|
|
5811
6052
|
static names(): { [key: string]: string } {
|
|
5812
6053
|
return {
|
|
5813
6054
|
headers: 'headers',
|
|
@@ -5886,9 +6127,9 @@ export class DescribeApplicationSlbsResponseBody extends $tea.Model {
|
|
|
5886
6127
|
}
|
|
5887
6128
|
|
|
5888
6129
|
export class DescribeApplicationSlbsResponse extends $tea.Model {
|
|
5889
|
-
headers
|
|
5890
|
-
statusCode
|
|
5891
|
-
body
|
|
6130
|
+
headers?: { [key: string]: string };
|
|
6131
|
+
statusCode?: number;
|
|
6132
|
+
body?: DescribeApplicationSlbsResponseBody;
|
|
5892
6133
|
static names(): { [key: string]: string } {
|
|
5893
6134
|
return {
|
|
5894
6135
|
headers: 'headers',
|
|
@@ -5967,9 +6208,9 @@ export class DescribeApplicationStatusResponseBody extends $tea.Model {
|
|
|
5967
6208
|
}
|
|
5968
6209
|
|
|
5969
6210
|
export class DescribeApplicationStatusResponse extends $tea.Model {
|
|
5970
|
-
headers
|
|
5971
|
-
statusCode
|
|
5972
|
-
body
|
|
6211
|
+
headers?: { [key: string]: string };
|
|
6212
|
+
statusCode?: number;
|
|
6213
|
+
body?: DescribeApplicationStatusResponseBody;
|
|
5973
6214
|
static names(): { [key: string]: string } {
|
|
5974
6215
|
return {
|
|
5975
6216
|
headers: 'headers',
|
|
@@ -6048,9 +6289,9 @@ export class DescribeChangeOrderResponseBody extends $tea.Model {
|
|
|
6048
6289
|
}
|
|
6049
6290
|
|
|
6050
6291
|
export class DescribeChangeOrderResponse extends $tea.Model {
|
|
6051
|
-
headers
|
|
6052
|
-
statusCode
|
|
6053
|
-
body
|
|
6292
|
+
headers?: { [key: string]: string };
|
|
6293
|
+
statusCode?: number;
|
|
6294
|
+
body?: DescribeChangeOrderResponseBody;
|
|
6054
6295
|
static names(): { [key: string]: string } {
|
|
6055
6296
|
return {
|
|
6056
6297
|
headers: 'headers',
|
|
@@ -6132,9 +6373,9 @@ export class DescribeComponentsResponseBody extends $tea.Model {
|
|
|
6132
6373
|
}
|
|
6133
6374
|
|
|
6134
6375
|
export class DescribeComponentsResponse extends $tea.Model {
|
|
6135
|
-
headers
|
|
6136
|
-
statusCode
|
|
6137
|
-
body
|
|
6376
|
+
headers?: { [key: string]: string };
|
|
6377
|
+
statusCode?: number;
|
|
6378
|
+
body?: DescribeComponentsResponseBody;
|
|
6138
6379
|
static names(): { [key: string]: string } {
|
|
6139
6380
|
return {
|
|
6140
6381
|
headers: 'headers',
|
|
@@ -6213,9 +6454,9 @@ export class DescribeConfigMapResponseBody extends $tea.Model {
|
|
|
6213
6454
|
}
|
|
6214
6455
|
|
|
6215
6456
|
export class DescribeConfigMapResponse extends $tea.Model {
|
|
6216
|
-
headers
|
|
6217
|
-
statusCode
|
|
6218
|
-
body
|
|
6457
|
+
headers?: { [key: string]: string };
|
|
6458
|
+
statusCode?: number;
|
|
6459
|
+
body?: DescribeConfigMapResponseBody;
|
|
6219
6460
|
static names(): { [key: string]: string } {
|
|
6220
6461
|
return {
|
|
6221
6462
|
headers: 'headers',
|
|
@@ -6300,9 +6541,9 @@ export class DescribeConfigurationPriceResponseBody extends $tea.Model {
|
|
|
6300
6541
|
}
|
|
6301
6542
|
|
|
6302
6543
|
export class DescribeConfigurationPriceResponse extends $tea.Model {
|
|
6303
|
-
headers
|
|
6304
|
-
statusCode
|
|
6305
|
-
body
|
|
6544
|
+
headers?: { [key: string]: string };
|
|
6545
|
+
statusCode?: number;
|
|
6546
|
+
body?: DescribeConfigurationPriceResponseBody;
|
|
6306
6547
|
static names(): { [key: string]: string } {
|
|
6307
6548
|
return {
|
|
6308
6549
|
headers: 'headers',
|
|
@@ -6362,9 +6603,9 @@ export class DescribeEdasContainersResponseBody extends $tea.Model {
|
|
|
6362
6603
|
}
|
|
6363
6604
|
|
|
6364
6605
|
export class DescribeEdasContainersResponse extends $tea.Model {
|
|
6365
|
-
headers
|
|
6366
|
-
statusCode
|
|
6367
|
-
body
|
|
6606
|
+
headers?: { [key: string]: string };
|
|
6607
|
+
statusCode?: number;
|
|
6608
|
+
body?: DescribeEdasContainersResponseBody;
|
|
6368
6609
|
static names(): { [key: string]: string } {
|
|
6369
6610
|
return {
|
|
6370
6611
|
headers: 'headers',
|
|
@@ -6443,9 +6684,9 @@ export class DescribeGreyTagRouteResponseBody extends $tea.Model {
|
|
|
6443
6684
|
}
|
|
6444
6685
|
|
|
6445
6686
|
export class DescribeGreyTagRouteResponse extends $tea.Model {
|
|
6446
|
-
headers
|
|
6447
|
-
statusCode
|
|
6448
|
-
body
|
|
6687
|
+
headers?: { [key: string]: string };
|
|
6688
|
+
statusCode?: number;
|
|
6689
|
+
body?: DescribeGreyTagRouteResponseBody;
|
|
6449
6690
|
static names(): { [key: string]: string } {
|
|
6450
6691
|
return {
|
|
6451
6692
|
headers: 'headers',
|
|
@@ -6524,9 +6765,9 @@ export class DescribeIngressResponseBody extends $tea.Model {
|
|
|
6524
6765
|
}
|
|
6525
6766
|
|
|
6526
6767
|
export class DescribeIngressResponse extends $tea.Model {
|
|
6527
|
-
headers
|
|
6528
|
-
statusCode
|
|
6529
|
-
body
|
|
6768
|
+
headers?: { [key: string]: string };
|
|
6769
|
+
statusCode?: number;
|
|
6770
|
+
body?: DescribeIngressResponseBody;
|
|
6530
6771
|
static names(): { [key: string]: string } {
|
|
6531
6772
|
return {
|
|
6532
6773
|
headers: 'headers',
|
|
@@ -6605,9 +6846,9 @@ export class DescribeInstanceLogResponseBody extends $tea.Model {
|
|
|
6605
6846
|
}
|
|
6606
6847
|
|
|
6607
6848
|
export class DescribeInstanceLogResponse extends $tea.Model {
|
|
6608
|
-
headers
|
|
6609
|
-
statusCode
|
|
6610
|
-
body
|
|
6849
|
+
headers?: { [key: string]: string };
|
|
6850
|
+
statusCode?: number;
|
|
6851
|
+
body?: DescribeInstanceLogResponseBody;
|
|
6611
6852
|
static names(): { [key: string]: string } {
|
|
6612
6853
|
return {
|
|
6613
6854
|
headers: 'headers',
|
|
@@ -6667,9 +6908,9 @@ export class DescribeInstanceSpecificationsResponseBody extends $tea.Model {
|
|
|
6667
6908
|
}
|
|
6668
6909
|
|
|
6669
6910
|
export class DescribeInstanceSpecificationsResponse extends $tea.Model {
|
|
6670
|
-
headers
|
|
6671
|
-
statusCode
|
|
6672
|
-
body
|
|
6911
|
+
headers?: { [key: string]: string };
|
|
6912
|
+
statusCode?: number;
|
|
6913
|
+
body?: DescribeInstanceSpecificationsResponseBody;
|
|
6673
6914
|
static names(): { [key: string]: string } {
|
|
6674
6915
|
return {
|
|
6675
6916
|
headers: 'headers',
|
|
@@ -6751,9 +6992,9 @@ export class DescribeJobResponseBody extends $tea.Model {
|
|
|
6751
6992
|
}
|
|
6752
6993
|
|
|
6753
6994
|
export class DescribeJobResponse extends $tea.Model {
|
|
6754
|
-
headers
|
|
6755
|
-
statusCode
|
|
6756
|
-
body
|
|
6995
|
+
headers?: { [key: string]: string };
|
|
6996
|
+
statusCode?: number;
|
|
6997
|
+
body?: DescribeJobResponseBody;
|
|
6757
6998
|
static names(): { [key: string]: string } {
|
|
6758
6999
|
return {
|
|
6759
7000
|
headers: 'headers',
|
|
@@ -6841,9 +7082,9 @@ export class DescribeJobHistoryResponseBody extends $tea.Model {
|
|
|
6841
7082
|
}
|
|
6842
7083
|
|
|
6843
7084
|
export class DescribeJobHistoryResponse extends $tea.Model {
|
|
6844
|
-
headers
|
|
6845
|
-
statusCode
|
|
6846
|
-
body
|
|
7085
|
+
headers?: { [key: string]: string };
|
|
7086
|
+
statusCode?: number;
|
|
7087
|
+
body?: DescribeJobHistoryResponseBody;
|
|
6847
7088
|
static names(): { [key: string]: string } {
|
|
6848
7089
|
return {
|
|
6849
7090
|
headers: 'headers',
|
|
@@ -6925,9 +7166,9 @@ export class DescribeJobStatusResponseBody extends $tea.Model {
|
|
|
6925
7166
|
}
|
|
6926
7167
|
|
|
6927
7168
|
export class DescribeJobStatusResponse extends $tea.Model {
|
|
6928
|
-
headers
|
|
6929
|
-
statusCode
|
|
6930
|
-
body
|
|
7169
|
+
headers?: { [key: string]: string };
|
|
7170
|
+
statusCode?: number;
|
|
7171
|
+
body?: DescribeJobStatusResponseBody;
|
|
6931
7172
|
static names(): { [key: string]: string } {
|
|
6932
7173
|
return {
|
|
6933
7174
|
headers: 'headers',
|
|
@@ -7009,9 +7250,9 @@ export class DescribeNamespaceResponseBody extends $tea.Model {
|
|
|
7009
7250
|
}
|
|
7010
7251
|
|
|
7011
7252
|
export class DescribeNamespaceResponse extends $tea.Model {
|
|
7012
|
-
headers
|
|
7013
|
-
statusCode
|
|
7014
|
-
body
|
|
7253
|
+
headers?: { [key: string]: string };
|
|
7254
|
+
statusCode?: number;
|
|
7255
|
+
body?: DescribeNamespaceResponseBody;
|
|
7015
7256
|
static names(): { [key: string]: string } {
|
|
7016
7257
|
return {
|
|
7017
7258
|
headers: 'headers',
|
|
@@ -7093,9 +7334,9 @@ export class DescribeNamespaceListResponseBody extends $tea.Model {
|
|
|
7093
7334
|
}
|
|
7094
7335
|
|
|
7095
7336
|
export class DescribeNamespaceListResponse extends $tea.Model {
|
|
7096
|
-
headers
|
|
7097
|
-
statusCode
|
|
7098
|
-
body
|
|
7337
|
+
headers?: { [key: string]: string };
|
|
7338
|
+
statusCode?: number;
|
|
7339
|
+
body?: DescribeNamespaceListResponseBody;
|
|
7099
7340
|
static names(): { [key: string]: string } {
|
|
7100
7341
|
return {
|
|
7101
7342
|
headers: 'headers',
|
|
@@ -7177,9 +7418,9 @@ export class DescribeNamespaceResourcesResponseBody extends $tea.Model {
|
|
|
7177
7418
|
}
|
|
7178
7419
|
|
|
7179
7420
|
export class DescribeNamespaceResourcesResponse extends $tea.Model {
|
|
7180
|
-
headers
|
|
7181
|
-
statusCode
|
|
7182
|
-
body
|
|
7421
|
+
headers?: { [key: string]: string };
|
|
7422
|
+
statusCode?: number;
|
|
7423
|
+
body?: DescribeNamespaceResourcesResponseBody;
|
|
7183
7424
|
static names(): { [key: string]: string } {
|
|
7184
7425
|
return {
|
|
7185
7426
|
headers: 'headers',
|
|
@@ -7261,9 +7502,9 @@ export class DescribeNamespacesResponseBody extends $tea.Model {
|
|
|
7261
7502
|
}
|
|
7262
7503
|
|
|
7263
7504
|
export class DescribeNamespacesResponse extends $tea.Model {
|
|
7264
|
-
headers
|
|
7265
|
-
statusCode
|
|
7266
|
-
body
|
|
7505
|
+
headers?: { [key: string]: string };
|
|
7506
|
+
statusCode?: number;
|
|
7507
|
+
body?: DescribeNamespacesResponseBody;
|
|
7267
7508
|
static names(): { [key: string]: string } {
|
|
7268
7509
|
return {
|
|
7269
7510
|
headers: 'headers',
|
|
@@ -7342,9 +7583,9 @@ export class DescribePipelineResponseBody extends $tea.Model {
|
|
|
7342
7583
|
}
|
|
7343
7584
|
|
|
7344
7585
|
export class DescribePipelineResponse extends $tea.Model {
|
|
7345
|
-
headers
|
|
7346
|
-
statusCode
|
|
7347
|
-
body
|
|
7586
|
+
headers?: { [key: string]: string };
|
|
7587
|
+
statusCode?: number;
|
|
7588
|
+
body?: DescribePipelineResponseBody;
|
|
7348
7589
|
static names(): { [key: string]: string } {
|
|
7349
7590
|
return {
|
|
7350
7591
|
headers: 'headers',
|
|
@@ -7395,9 +7636,9 @@ export class DescribeRegionsResponseBody extends $tea.Model {
|
|
|
7395
7636
|
}
|
|
7396
7637
|
|
|
7397
7638
|
export class DescribeRegionsResponse extends $tea.Model {
|
|
7398
|
-
headers
|
|
7399
|
-
statusCode
|
|
7400
|
-
body
|
|
7639
|
+
headers?: { [key: string]: string };
|
|
7640
|
+
statusCode?: number;
|
|
7641
|
+
body?: DescribeRegionsResponseBody;
|
|
7401
7642
|
static names(): { [key: string]: string } {
|
|
7402
7643
|
return {
|
|
7403
7644
|
headers: 'headers',
|
|
@@ -7479,9 +7720,9 @@ export class DescribeSecretResponseBody extends $tea.Model {
|
|
|
7479
7720
|
}
|
|
7480
7721
|
|
|
7481
7722
|
export class DescribeSecretResponse extends $tea.Model {
|
|
7482
|
-
headers
|
|
7483
|
-
statusCode
|
|
7484
|
-
body
|
|
7723
|
+
headers?: { [key: string]: string };
|
|
7724
|
+
statusCode?: number;
|
|
7725
|
+
body?: DescribeSecretResponseBody;
|
|
7485
7726
|
static names(): { [key: string]: string } {
|
|
7486
7727
|
return {
|
|
7487
7728
|
headers: 'headers',
|
|
@@ -7560,9 +7801,9 @@ export class DisableApplicationScalingRuleResponseBody extends $tea.Model {
|
|
|
7560
7801
|
}
|
|
7561
7802
|
|
|
7562
7803
|
export class DisableApplicationScalingRuleResponse extends $tea.Model {
|
|
7563
|
-
headers
|
|
7564
|
-
statusCode
|
|
7565
|
-
body
|
|
7804
|
+
headers?: { [key: string]: string };
|
|
7805
|
+
statusCode?: number;
|
|
7806
|
+
body?: DisableApplicationScalingRuleResponseBody;
|
|
7566
7807
|
static names(): { [key: string]: string } {
|
|
7567
7808
|
return {
|
|
7568
7809
|
headers: 'headers',
|
|
@@ -7641,9 +7882,9 @@ export class EnableApplicationScalingRuleResponseBody extends $tea.Model {
|
|
|
7641
7882
|
}
|
|
7642
7883
|
|
|
7643
7884
|
export class EnableApplicationScalingRuleResponse extends $tea.Model {
|
|
7644
|
-
headers
|
|
7645
|
-
statusCode
|
|
7646
|
-
body
|
|
7885
|
+
headers?: { [key: string]: string };
|
|
7886
|
+
statusCode?: number;
|
|
7887
|
+
body?: EnableApplicationScalingRuleResponseBody;
|
|
7647
7888
|
static names(): { [key: string]: string } {
|
|
7648
7889
|
return {
|
|
7649
7890
|
headers: 'headers',
|
|
@@ -7749,9 +7990,9 @@ export class ExecJobResponseBody extends $tea.Model {
|
|
|
7749
7990
|
}
|
|
7750
7991
|
|
|
7751
7992
|
export class ExecJobResponse extends $tea.Model {
|
|
7752
|
-
headers
|
|
7753
|
-
statusCode
|
|
7754
|
-
body
|
|
7993
|
+
headers?: { [key: string]: string };
|
|
7994
|
+
statusCode?: number;
|
|
7995
|
+
body?: ExecJobResponseBody;
|
|
7755
7996
|
static names(): { [key: string]: string } {
|
|
7756
7997
|
return {
|
|
7757
7998
|
headers: 'headers',
|
|
@@ -7774,6 +8015,8 @@ export class ExecJobResponse extends $tea.Model {
|
|
|
7774
8015
|
}
|
|
7775
8016
|
|
|
7776
8017
|
export class GetArmsTopNMetricRequest extends $tea.Model {
|
|
8018
|
+
appSource?: string;
|
|
8019
|
+
cpuStrategy?: string;
|
|
7777
8020
|
endTime?: number;
|
|
7778
8021
|
limit?: number;
|
|
7779
8022
|
orderBy?: string;
|
|
@@ -7781,6 +8024,8 @@ export class GetArmsTopNMetricRequest extends $tea.Model {
|
|
|
7781
8024
|
startTime?: number;
|
|
7782
8025
|
static names(): { [key: string]: string } {
|
|
7783
8026
|
return {
|
|
8027
|
+
appSource: 'AppSource',
|
|
8028
|
+
cpuStrategy: 'CpuStrategy',
|
|
7784
8029
|
endTime: 'EndTime',
|
|
7785
8030
|
limit: 'Limit',
|
|
7786
8031
|
orderBy: 'OrderBy',
|
|
@@ -7791,6 +8036,8 @@ export class GetArmsTopNMetricRequest extends $tea.Model {
|
|
|
7791
8036
|
|
|
7792
8037
|
static types(): { [key: string]: any } {
|
|
7793
8038
|
return {
|
|
8039
|
+
appSource: 'string',
|
|
8040
|
+
cpuStrategy: 'string',
|
|
7794
8041
|
endTime: 'number',
|
|
7795
8042
|
limit: 'number',
|
|
7796
8043
|
orderBy: 'string',
|
|
@@ -7836,9 +8083,9 @@ export class GetArmsTopNMetricResponseBody extends $tea.Model {
|
|
|
7836
8083
|
}
|
|
7837
8084
|
|
|
7838
8085
|
export class GetArmsTopNMetricResponse extends $tea.Model {
|
|
7839
|
-
headers
|
|
7840
|
-
statusCode
|
|
7841
|
-
body
|
|
8086
|
+
headers?: { [key: string]: string };
|
|
8087
|
+
statusCode?: number;
|
|
8088
|
+
body?: GetArmsTopNMetricResponseBody;
|
|
7842
8089
|
static names(): { [key: string]: string } {
|
|
7843
8090
|
return {
|
|
7844
8091
|
headers: 'headers',
|
|
@@ -7861,10 +8108,14 @@ export class GetArmsTopNMetricResponse extends $tea.Model {
|
|
|
7861
8108
|
}
|
|
7862
8109
|
|
|
7863
8110
|
export class GetAvailabilityMetricRequest extends $tea.Model {
|
|
8111
|
+
appSource?: string;
|
|
8112
|
+
cpuStrategy?: string;
|
|
7864
8113
|
limit?: number;
|
|
7865
8114
|
regionId?: string;
|
|
7866
8115
|
static names(): { [key: string]: string } {
|
|
7867
8116
|
return {
|
|
8117
|
+
appSource: 'AppSource',
|
|
8118
|
+
cpuStrategy: 'CpuStrategy',
|
|
7868
8119
|
limit: 'Limit',
|
|
7869
8120
|
regionId: 'RegionId',
|
|
7870
8121
|
};
|
|
@@ -7872,6 +8123,8 @@ export class GetAvailabilityMetricRequest extends $tea.Model {
|
|
|
7872
8123
|
|
|
7873
8124
|
static types(): { [key: string]: any } {
|
|
7874
8125
|
return {
|
|
8126
|
+
appSource: 'string',
|
|
8127
|
+
cpuStrategy: 'string',
|
|
7875
8128
|
limit: 'number',
|
|
7876
8129
|
regionId: 'string',
|
|
7877
8130
|
};
|
|
@@ -7914,9 +8167,9 @@ export class GetAvailabilityMetricResponseBody extends $tea.Model {
|
|
|
7914
8167
|
}
|
|
7915
8168
|
|
|
7916
8169
|
export class GetAvailabilityMetricResponse extends $tea.Model {
|
|
7917
|
-
headers
|
|
7918
|
-
statusCode
|
|
7919
|
-
body
|
|
8170
|
+
headers?: { [key: string]: string };
|
|
8171
|
+
statusCode?: number;
|
|
8172
|
+
body?: GetAvailabilityMetricResponseBody;
|
|
7920
8173
|
static names(): { [key: string]: string } {
|
|
7921
8174
|
return {
|
|
7922
8175
|
headers: 'headers',
|
|
@@ -7939,12 +8192,16 @@ export class GetAvailabilityMetricResponse extends $tea.Model {
|
|
|
7939
8192
|
}
|
|
7940
8193
|
|
|
7941
8194
|
export class GetChangeOrderMetricRequest extends $tea.Model {
|
|
8195
|
+
appSource?: string;
|
|
8196
|
+
cpuStrategy?: string;
|
|
7942
8197
|
createTime?: string;
|
|
7943
8198
|
limit?: number;
|
|
7944
8199
|
orderBy?: string;
|
|
7945
8200
|
regionId?: string;
|
|
7946
8201
|
static names(): { [key: string]: string } {
|
|
7947
8202
|
return {
|
|
8203
|
+
appSource: 'AppSource',
|
|
8204
|
+
cpuStrategy: 'CpuStrategy',
|
|
7948
8205
|
createTime: 'CreateTime',
|
|
7949
8206
|
limit: 'Limit',
|
|
7950
8207
|
orderBy: 'OrderBy',
|
|
@@ -7954,6 +8211,8 @@ export class GetChangeOrderMetricRequest extends $tea.Model {
|
|
|
7954
8211
|
|
|
7955
8212
|
static types(): { [key: string]: any } {
|
|
7956
8213
|
return {
|
|
8214
|
+
appSource: 'string',
|
|
8215
|
+
cpuStrategy: 'string',
|
|
7957
8216
|
createTime: 'string',
|
|
7958
8217
|
limit: 'number',
|
|
7959
8218
|
orderBy: 'string',
|
|
@@ -7998,9 +8257,9 @@ export class GetChangeOrderMetricResponseBody extends $tea.Model {
|
|
|
7998
8257
|
}
|
|
7999
8258
|
|
|
8000
8259
|
export class GetChangeOrderMetricResponse extends $tea.Model {
|
|
8001
|
-
headers
|
|
8002
|
-
statusCode
|
|
8003
|
-
body
|
|
8260
|
+
headers?: { [key: string]: string };
|
|
8261
|
+
statusCode?: number;
|
|
8262
|
+
body?: GetChangeOrderMetricResponseBody;
|
|
8004
8263
|
static names(): { [key: string]: string } {
|
|
8005
8264
|
return {
|
|
8006
8265
|
headers: 'headers',
|
|
@@ -8023,10 +8282,14 @@ export class GetChangeOrderMetricResponse extends $tea.Model {
|
|
|
8023
8282
|
}
|
|
8024
8283
|
|
|
8025
8284
|
export class GetScaleAppMetricRequest extends $tea.Model {
|
|
8285
|
+
appSource?: string;
|
|
8286
|
+
cpuStrategy?: string;
|
|
8026
8287
|
limit?: number;
|
|
8027
8288
|
regionId?: string;
|
|
8028
8289
|
static names(): { [key: string]: string } {
|
|
8029
8290
|
return {
|
|
8291
|
+
appSource: 'AppSource',
|
|
8292
|
+
cpuStrategy: 'CpuStrategy',
|
|
8030
8293
|
limit: 'Limit',
|
|
8031
8294
|
regionId: 'RegionId',
|
|
8032
8295
|
};
|
|
@@ -8034,6 +8297,8 @@ export class GetScaleAppMetricRequest extends $tea.Model {
|
|
|
8034
8297
|
|
|
8035
8298
|
static types(): { [key: string]: any } {
|
|
8036
8299
|
return {
|
|
8300
|
+
appSource: 'string',
|
|
8301
|
+
cpuStrategy: 'string',
|
|
8037
8302
|
limit: 'number',
|
|
8038
8303
|
regionId: 'string',
|
|
8039
8304
|
};
|
|
@@ -8076,9 +8341,9 @@ export class GetScaleAppMetricResponseBody extends $tea.Model {
|
|
|
8076
8341
|
}
|
|
8077
8342
|
|
|
8078
8343
|
export class GetScaleAppMetricResponse extends $tea.Model {
|
|
8079
|
-
headers
|
|
8080
|
-
statusCode
|
|
8081
|
-
body
|
|
8344
|
+
headers?: { [key: string]: string };
|
|
8345
|
+
statusCode?: number;
|
|
8346
|
+
body?: GetScaleAppMetricResponseBody;
|
|
8082
8347
|
static names(): { [key: string]: string } {
|
|
8083
8348
|
return {
|
|
8084
8349
|
headers: 'headers',
|
|
@@ -8101,12 +8366,16 @@ export class GetScaleAppMetricResponse extends $tea.Model {
|
|
|
8101
8366
|
}
|
|
8102
8367
|
|
|
8103
8368
|
export class GetWarningEventMetricRequest extends $tea.Model {
|
|
8369
|
+
appSource?: string;
|
|
8370
|
+
cpuStrategy?: string;
|
|
8104
8371
|
endTime?: number;
|
|
8105
8372
|
limit?: number;
|
|
8106
8373
|
regionId?: string;
|
|
8107
8374
|
startTime?: number;
|
|
8108
8375
|
static names(): { [key: string]: string } {
|
|
8109
8376
|
return {
|
|
8377
|
+
appSource: 'AppSource',
|
|
8378
|
+
cpuStrategy: 'CpuStrategy',
|
|
8110
8379
|
endTime: 'EndTime',
|
|
8111
8380
|
limit: 'Limit',
|
|
8112
8381
|
regionId: 'RegionId',
|
|
@@ -8116,6 +8385,8 @@ export class GetWarningEventMetricRequest extends $tea.Model {
|
|
|
8116
8385
|
|
|
8117
8386
|
static types(): { [key: string]: any } {
|
|
8118
8387
|
return {
|
|
8388
|
+
appSource: 'string',
|
|
8389
|
+
cpuStrategy: 'string',
|
|
8119
8390
|
endTime: 'number',
|
|
8120
8391
|
limit: 'number',
|
|
8121
8392
|
regionId: 'string',
|
|
@@ -8160,9 +8431,9 @@ export class GetWarningEventMetricResponseBody extends $tea.Model {
|
|
|
8160
8431
|
}
|
|
8161
8432
|
|
|
8162
8433
|
export class GetWarningEventMetricResponse extends $tea.Model {
|
|
8163
|
-
headers
|
|
8164
|
-
statusCode
|
|
8165
|
-
body
|
|
8434
|
+
headers?: { [key: string]: string };
|
|
8435
|
+
statusCode?: number;
|
|
8436
|
+
body?: GetWarningEventMetricResponseBody;
|
|
8166
8437
|
static names(): { [key: string]: string } {
|
|
8167
8438
|
return {
|
|
8168
8439
|
headers: 'headers',
|
|
@@ -8259,9 +8530,9 @@ export class ListAppEventsResponseBody extends $tea.Model {
|
|
|
8259
8530
|
}
|
|
8260
8531
|
|
|
8261
8532
|
export class ListAppEventsResponse extends $tea.Model {
|
|
8262
|
-
headers
|
|
8263
|
-
statusCode
|
|
8264
|
-
body
|
|
8533
|
+
headers?: { [key: string]: string };
|
|
8534
|
+
statusCode?: number;
|
|
8535
|
+
body?: ListAppEventsResponseBody;
|
|
8265
8536
|
static names(): { [key: string]: string } {
|
|
8266
8537
|
return {
|
|
8267
8538
|
headers: 'headers',
|
|
@@ -8349,9 +8620,9 @@ export class ListAppServicesPageResponseBody extends $tea.Model {
|
|
|
8349
8620
|
}
|
|
8350
8621
|
|
|
8351
8622
|
export class ListAppServicesPageResponse extends $tea.Model {
|
|
8352
|
-
headers
|
|
8353
|
-
statusCode
|
|
8354
|
-
body
|
|
8623
|
+
headers?: { [key: string]: string };
|
|
8624
|
+
statusCode?: number;
|
|
8625
|
+
body?: ListAppServicesPageResponseBody;
|
|
8355
8626
|
static names(): { [key: string]: string } {
|
|
8356
8627
|
return {
|
|
8357
8628
|
headers: 'headers',
|
|
@@ -8427,9 +8698,9 @@ export class ListAppVersionsResponseBody extends $tea.Model {
|
|
|
8427
8698
|
}
|
|
8428
8699
|
|
|
8429
8700
|
export class ListAppVersionsResponse extends $tea.Model {
|
|
8430
|
-
headers
|
|
8431
|
-
statusCode
|
|
8432
|
-
body
|
|
8701
|
+
headers?: { [key: string]: string };
|
|
8702
|
+
statusCode?: number;
|
|
8703
|
+
body?: ListAppVersionsResponseBody;
|
|
8433
8704
|
static names(): { [key: string]: string } {
|
|
8434
8705
|
return {
|
|
8435
8706
|
headers: 'headers',
|
|
@@ -8541,9 +8812,9 @@ export class ListApplicationsResponseBody extends $tea.Model {
|
|
|
8541
8812
|
}
|
|
8542
8813
|
|
|
8543
8814
|
export class ListApplicationsResponse extends $tea.Model {
|
|
8544
|
-
headers
|
|
8545
|
-
statusCode
|
|
8546
|
-
body
|
|
8815
|
+
headers?: { [key: string]: string };
|
|
8816
|
+
statusCode?: number;
|
|
8817
|
+
body?: ListApplicationsResponseBody;
|
|
8547
8818
|
static names(): { [key: string]: string } {
|
|
8548
8819
|
return {
|
|
8549
8820
|
headers: 'headers',
|
|
@@ -8637,9 +8908,9 @@ export class ListChangeOrdersResponseBody extends $tea.Model {
|
|
|
8637
8908
|
}
|
|
8638
8909
|
|
|
8639
8910
|
export class ListChangeOrdersResponse extends $tea.Model {
|
|
8640
|
-
headers
|
|
8641
|
-
statusCode
|
|
8642
|
-
body
|
|
8911
|
+
headers?: { [key: string]: string };
|
|
8912
|
+
statusCode?: number;
|
|
8913
|
+
body?: ListChangeOrdersResponseBody;
|
|
8643
8914
|
static names(): { [key: string]: string } {
|
|
8644
8915
|
return {
|
|
8645
8916
|
headers: 'headers',
|
|
@@ -8718,9 +8989,9 @@ export class ListConsumedServicesResponseBody extends $tea.Model {
|
|
|
8718
8989
|
}
|
|
8719
8990
|
|
|
8720
8991
|
export class ListConsumedServicesResponse extends $tea.Model {
|
|
8721
|
-
headers
|
|
8722
|
-
statusCode
|
|
8723
|
-
body
|
|
8992
|
+
headers?: { [key: string]: string };
|
|
8993
|
+
statusCode?: number;
|
|
8994
|
+
body?: ListConsumedServicesResponseBody;
|
|
8724
8995
|
static names(): { [key: string]: string } {
|
|
8725
8996
|
return {
|
|
8726
8997
|
headers: 'headers',
|
|
@@ -8799,9 +9070,9 @@ export class ListGreyTagRouteResponseBody extends $tea.Model {
|
|
|
8799
9070
|
}
|
|
8800
9071
|
|
|
8801
9072
|
export class ListGreyTagRouteResponse extends $tea.Model {
|
|
8802
|
-
headers
|
|
8803
|
-
statusCode
|
|
8804
|
-
body
|
|
9073
|
+
headers?: { [key: string]: string };
|
|
9074
|
+
statusCode?: number;
|
|
9075
|
+
body?: ListGreyTagRouteResponseBody;
|
|
8805
9076
|
static names(): { [key: string]: string } {
|
|
8806
9077
|
return {
|
|
8807
9078
|
headers: 'headers',
|
|
@@ -8883,9 +9154,9 @@ export class ListIngressesResponseBody extends $tea.Model {
|
|
|
8883
9154
|
}
|
|
8884
9155
|
|
|
8885
9156
|
export class ListIngressesResponse extends $tea.Model {
|
|
8886
|
-
headers
|
|
8887
|
-
statusCode
|
|
8888
|
-
body
|
|
9157
|
+
headers?: { [key: string]: string };
|
|
9158
|
+
statusCode?: number;
|
|
9159
|
+
body?: ListIngressesResponseBody;
|
|
8889
9160
|
static names(): { [key: string]: string } {
|
|
8890
9161
|
return {
|
|
8891
9162
|
headers: 'headers',
|
|
@@ -8997,9 +9268,9 @@ export class ListJobsResponseBody extends $tea.Model {
|
|
|
8997
9268
|
}
|
|
8998
9269
|
|
|
8999
9270
|
export class ListJobsResponse extends $tea.Model {
|
|
9000
|
-
headers
|
|
9001
|
-
statusCode
|
|
9002
|
-
body
|
|
9271
|
+
headers?: { [key: string]: string };
|
|
9272
|
+
statusCode?: number;
|
|
9273
|
+
body?: ListJobsResponseBody;
|
|
9003
9274
|
static names(): { [key: string]: string } {
|
|
9004
9275
|
return {
|
|
9005
9276
|
headers: 'headers',
|
|
@@ -9084,9 +9355,9 @@ export class ListLogConfigsResponseBody extends $tea.Model {
|
|
|
9084
9355
|
}
|
|
9085
9356
|
|
|
9086
9357
|
export class ListLogConfigsResponse extends $tea.Model {
|
|
9087
|
-
headers
|
|
9088
|
-
statusCode
|
|
9089
|
-
body
|
|
9358
|
+
headers?: { [key: string]: string };
|
|
9359
|
+
statusCode?: number;
|
|
9360
|
+
body?: ListLogConfigsResponseBody;
|
|
9090
9361
|
static names(): { [key: string]: string } {
|
|
9091
9362
|
return {
|
|
9092
9363
|
headers: 'headers',
|
|
@@ -9180,9 +9451,9 @@ export class ListNamespaceChangeOrdersResponseBody extends $tea.Model {
|
|
|
9180
9451
|
}
|
|
9181
9452
|
|
|
9182
9453
|
export class ListNamespaceChangeOrdersResponse extends $tea.Model {
|
|
9183
|
-
headers
|
|
9184
|
-
statusCode
|
|
9185
|
-
body
|
|
9454
|
+
headers?: { [key: string]: string };
|
|
9455
|
+
statusCode?: number;
|
|
9456
|
+
body?: ListNamespaceChangeOrdersResponseBody;
|
|
9186
9457
|
static names(): { [key: string]: string } {
|
|
9187
9458
|
return {
|
|
9188
9459
|
headers: 'headers',
|
|
@@ -9261,9 +9532,9 @@ export class ListNamespacedConfigMapsResponseBody extends $tea.Model {
|
|
|
9261
9532
|
}
|
|
9262
9533
|
|
|
9263
9534
|
export class ListNamespacedConfigMapsResponse extends $tea.Model {
|
|
9264
|
-
headers
|
|
9265
|
-
statusCode
|
|
9266
|
-
body
|
|
9535
|
+
headers?: { [key: string]: string };
|
|
9536
|
+
statusCode?: number;
|
|
9537
|
+
body?: ListNamespacedConfigMapsResponseBody;
|
|
9267
9538
|
static names(): { [key: string]: string } {
|
|
9268
9539
|
return {
|
|
9269
9540
|
headers: 'headers',
|
|
@@ -9342,9 +9613,9 @@ export class ListPublishedServicesResponseBody extends $tea.Model {
|
|
|
9342
9613
|
}
|
|
9343
9614
|
|
|
9344
9615
|
export class ListPublishedServicesResponse extends $tea.Model {
|
|
9345
|
-
headers
|
|
9346
|
-
statusCode
|
|
9347
|
-
body
|
|
9616
|
+
headers?: { [key: string]: string };
|
|
9617
|
+
statusCode?: number;
|
|
9618
|
+
body?: ListPublishedServicesResponseBody;
|
|
9348
9619
|
static names(): { [key: string]: string } {
|
|
9349
9620
|
return {
|
|
9350
9621
|
headers: 'headers',
|
|
@@ -9423,9 +9694,9 @@ export class ListSecretsResponseBody extends $tea.Model {
|
|
|
9423
9694
|
}
|
|
9424
9695
|
|
|
9425
9696
|
export class ListSecretsResponse extends $tea.Model {
|
|
9426
|
-
headers
|
|
9427
|
-
statusCode
|
|
9428
|
-
body
|
|
9697
|
+
headers?: { [key: string]: string };
|
|
9698
|
+
statusCode?: number;
|
|
9699
|
+
body?: ListSecretsResponseBody;
|
|
9429
9700
|
static names(): { [key: string]: string } {
|
|
9430
9701
|
return {
|
|
9431
9702
|
headers: 'headers',
|
|
@@ -9516,9 +9787,9 @@ export class ListTagResourcesResponseBody extends $tea.Model {
|
|
|
9516
9787
|
}
|
|
9517
9788
|
|
|
9518
9789
|
export class ListTagResourcesResponse extends $tea.Model {
|
|
9519
|
-
headers
|
|
9520
|
-
statusCode
|
|
9521
|
-
body
|
|
9790
|
+
headers?: { [key: string]: string };
|
|
9791
|
+
statusCode?: number;
|
|
9792
|
+
body?: ListTagResourcesResponseBody;
|
|
9522
9793
|
static names(): { [key: string]: string } {
|
|
9523
9794
|
return {
|
|
9524
9795
|
headers: 'headers',
|
|
@@ -9563,9 +9834,9 @@ export class OpenSaeServiceResponseBody extends $tea.Model {
|
|
|
9563
9834
|
}
|
|
9564
9835
|
|
|
9565
9836
|
export class OpenSaeServiceResponse extends $tea.Model {
|
|
9566
|
-
headers
|
|
9567
|
-
statusCode
|
|
9568
|
-
body
|
|
9837
|
+
headers?: { [key: string]: string };
|
|
9838
|
+
statusCode?: number;
|
|
9839
|
+
body?: OpenSaeServiceResponseBody;
|
|
9569
9840
|
static names(): { [key: string]: string } {
|
|
9570
9841
|
return {
|
|
9571
9842
|
headers: 'headers',
|
|
@@ -9644,9 +9915,9 @@ export class QueryResourceStaticsResponseBody extends $tea.Model {
|
|
|
9644
9915
|
}
|
|
9645
9916
|
|
|
9646
9917
|
export class QueryResourceStaticsResponse extends $tea.Model {
|
|
9647
|
-
headers
|
|
9648
|
-
statusCode
|
|
9649
|
-
body
|
|
9918
|
+
headers?: { [key: string]: string };
|
|
9919
|
+
statusCode?: number;
|
|
9920
|
+
body?: QueryResourceStaticsResponseBody;
|
|
9650
9921
|
static names(): { [key: string]: string } {
|
|
9651
9922
|
return {
|
|
9652
9923
|
headers: 'headers',
|
|
@@ -9728,9 +9999,9 @@ export class ReduceApplicationCapacityByInstanceIdsResponseBody extends $tea.Mod
|
|
|
9728
9999
|
}
|
|
9729
10000
|
|
|
9730
10001
|
export class ReduceApplicationCapacityByInstanceIdsResponse extends $tea.Model {
|
|
9731
|
-
headers
|
|
9732
|
-
statusCode
|
|
9733
|
-
body
|
|
10002
|
+
headers?: { [key: string]: string };
|
|
10003
|
+
statusCode?: number;
|
|
10004
|
+
body?: ReduceApplicationCapacityByInstanceIdsResponseBody;
|
|
9734
10005
|
static names(): { [key: string]: string } {
|
|
9735
10006
|
return {
|
|
9736
10007
|
headers: 'headers',
|
|
@@ -9818,9 +10089,9 @@ export class RescaleApplicationResponseBody extends $tea.Model {
|
|
|
9818
10089
|
}
|
|
9819
10090
|
|
|
9820
10091
|
export class RescaleApplicationResponse extends $tea.Model {
|
|
9821
|
-
headers
|
|
9822
|
-
statusCode
|
|
9823
|
-
body
|
|
10092
|
+
headers?: { [key: string]: string };
|
|
10093
|
+
statusCode?: number;
|
|
10094
|
+
body?: RescaleApplicationResponseBody;
|
|
9824
10095
|
static names(): { [key: string]: string } {
|
|
9825
10096
|
return {
|
|
9826
10097
|
headers: 'headers',
|
|
@@ -9905,9 +10176,9 @@ export class RescaleApplicationVerticallyResponseBody extends $tea.Model {
|
|
|
9905
10176
|
}
|
|
9906
10177
|
|
|
9907
10178
|
export class RescaleApplicationVerticallyResponse extends $tea.Model {
|
|
9908
|
-
headers
|
|
9909
|
-
statusCode
|
|
9910
|
-
body
|
|
10179
|
+
headers?: { [key: string]: string };
|
|
10180
|
+
statusCode?: number;
|
|
10181
|
+
body?: RescaleApplicationVerticallyResponseBody;
|
|
9911
10182
|
static names(): { [key: string]: string } {
|
|
9912
10183
|
return {
|
|
9913
10184
|
headers: 'headers',
|
|
@@ -9995,9 +10266,9 @@ export class RestartApplicationResponseBody extends $tea.Model {
|
|
|
9995
10266
|
}
|
|
9996
10267
|
|
|
9997
10268
|
export class RestartApplicationResponse extends $tea.Model {
|
|
9998
|
-
headers
|
|
9999
|
-
statusCode
|
|
10000
|
-
body
|
|
10269
|
+
headers?: { [key: string]: string };
|
|
10270
|
+
statusCode?: number;
|
|
10271
|
+
body?: RestartApplicationResponseBody;
|
|
10001
10272
|
static names(): { [key: string]: string } {
|
|
10002
10273
|
return {
|
|
10003
10274
|
headers: 'headers',
|
|
@@ -10079,9 +10350,9 @@ export class RestartInstancesResponseBody extends $tea.Model {
|
|
|
10079
10350
|
}
|
|
10080
10351
|
|
|
10081
10352
|
export class RestartInstancesResponse extends $tea.Model {
|
|
10082
|
-
headers
|
|
10083
|
-
statusCode
|
|
10084
|
-
body
|
|
10353
|
+
headers?: { [key: string]: string };
|
|
10354
|
+
statusCode?: number;
|
|
10355
|
+
body?: RestartInstancesResponseBody;
|
|
10085
10356
|
static names(): { [key: string]: string } {
|
|
10086
10357
|
return {
|
|
10087
10358
|
headers: 'headers',
|
|
@@ -10178,9 +10449,9 @@ export class RollbackApplicationResponseBody extends $tea.Model {
|
|
|
10178
10449
|
}
|
|
10179
10450
|
|
|
10180
10451
|
export class RollbackApplicationResponse extends $tea.Model {
|
|
10181
|
-
headers
|
|
10182
|
-
statusCode
|
|
10183
|
-
body
|
|
10452
|
+
headers?: { [key: string]: string };
|
|
10453
|
+
statusCode?: number;
|
|
10454
|
+
body?: RollbackApplicationResponseBody;
|
|
10184
10455
|
static names(): { [key: string]: string } {
|
|
10185
10456
|
return {
|
|
10186
10457
|
headers: 'headers',
|
|
@@ -10259,9 +10530,9 @@ export class StartApplicationResponseBody extends $tea.Model {
|
|
|
10259
10530
|
}
|
|
10260
10531
|
|
|
10261
10532
|
export class StartApplicationResponse extends $tea.Model {
|
|
10262
|
-
headers
|
|
10263
|
-
statusCode
|
|
10264
|
-
body
|
|
10533
|
+
headers?: { [key: string]: string };
|
|
10534
|
+
statusCode?: number;
|
|
10535
|
+
body?: StartApplicationResponseBody;
|
|
10265
10536
|
static names(): { [key: string]: string } {
|
|
10266
10537
|
return {
|
|
10267
10538
|
headers: 'headers',
|
|
@@ -10340,9 +10611,9 @@ export class StopApplicationResponseBody extends $tea.Model {
|
|
|
10340
10611
|
}
|
|
10341
10612
|
|
|
10342
10613
|
export class StopApplicationResponse extends $tea.Model {
|
|
10343
|
-
headers
|
|
10344
|
-
statusCode
|
|
10345
|
-
body
|
|
10614
|
+
headers?: { [key: string]: string };
|
|
10615
|
+
statusCode?: number;
|
|
10616
|
+
body?: StopApplicationResponseBody;
|
|
10346
10617
|
static names(): { [key: string]: string } {
|
|
10347
10618
|
return {
|
|
10348
10619
|
headers: 'headers',
|
|
@@ -10424,9 +10695,9 @@ export class SuspendJobResponseBody extends $tea.Model {
|
|
|
10424
10695
|
}
|
|
10425
10696
|
|
|
10426
10697
|
export class SuspendJobResponse extends $tea.Model {
|
|
10427
|
-
headers
|
|
10428
|
-
statusCode
|
|
10429
|
-
body
|
|
10698
|
+
headers?: { [key: string]: string };
|
|
10699
|
+
statusCode?: number;
|
|
10700
|
+
body?: SuspendJobResponseBody;
|
|
10430
10701
|
static names(): { [key: string]: string } {
|
|
10431
10702
|
return {
|
|
10432
10703
|
headers: 'headers',
|
|
@@ -10514,9 +10785,9 @@ export class TagResourcesResponseBody extends $tea.Model {
|
|
|
10514
10785
|
}
|
|
10515
10786
|
|
|
10516
10787
|
export class TagResourcesResponse extends $tea.Model {
|
|
10517
|
-
headers
|
|
10518
|
-
statusCode
|
|
10519
|
-
body
|
|
10788
|
+
headers?: { [key: string]: string };
|
|
10789
|
+
statusCode?: number;
|
|
10790
|
+
body?: TagResourcesResponseBody;
|
|
10520
10791
|
static names(): { [key: string]: string } {
|
|
10521
10792
|
return {
|
|
10522
10793
|
headers: 'headers',
|
|
@@ -10601,9 +10872,9 @@ export class UnbindSlbResponseBody extends $tea.Model {
|
|
|
10601
10872
|
}
|
|
10602
10873
|
|
|
10603
10874
|
export class UnbindSlbResponse extends $tea.Model {
|
|
10604
|
-
headers
|
|
10605
|
-
statusCode
|
|
10606
|
-
body
|
|
10875
|
+
headers?: { [key: string]: string };
|
|
10876
|
+
statusCode?: number;
|
|
10877
|
+
body?: UnbindSlbResponseBody;
|
|
10607
10878
|
static names(): { [key: string]: string } {
|
|
10608
10879
|
return {
|
|
10609
10880
|
headers: 'headers',
|
|
@@ -10694,9 +10965,9 @@ export class UntagResourcesResponseBody extends $tea.Model {
|
|
|
10694
10965
|
}
|
|
10695
10966
|
|
|
10696
10967
|
export class UntagResourcesResponse extends $tea.Model {
|
|
10697
|
-
headers
|
|
10698
|
-
statusCode
|
|
10699
|
-
body
|
|
10968
|
+
headers?: { [key: string]: string };
|
|
10969
|
+
statusCode?: number;
|
|
10970
|
+
body?: UntagResourcesResponseBody;
|
|
10700
10971
|
static names(): { [key: string]: string } {
|
|
10701
10972
|
return {
|
|
10702
10973
|
headers: 'headers',
|
|
@@ -10775,9 +11046,9 @@ export class UpdateAppSecurityGroupResponseBody extends $tea.Model {
|
|
|
10775
11046
|
}
|
|
10776
11047
|
|
|
10777
11048
|
export class UpdateAppSecurityGroupResponse extends $tea.Model {
|
|
10778
|
-
headers
|
|
10779
|
-
statusCode
|
|
10780
|
-
body
|
|
11049
|
+
headers?: { [key: string]: string };
|
|
11050
|
+
statusCode?: number;
|
|
11051
|
+
body?: UpdateAppSecurityGroupResponseBody;
|
|
10781
11052
|
static names(): { [key: string]: string } {
|
|
10782
11053
|
return {
|
|
10783
11054
|
headers: 'headers',
|
|
@@ -10856,9 +11127,9 @@ export class UpdateApplicationDescriptionResponseBody extends $tea.Model {
|
|
|
10856
11127
|
}
|
|
10857
11128
|
|
|
10858
11129
|
export class UpdateApplicationDescriptionResponse extends $tea.Model {
|
|
10859
|
-
headers
|
|
10860
|
-
statusCode
|
|
10861
|
-
body
|
|
11130
|
+
headers?: { [key: string]: string };
|
|
11131
|
+
statusCode?: number;
|
|
11132
|
+
body?: UpdateApplicationDescriptionResponseBody;
|
|
10862
11133
|
static names(): { [key: string]: string } {
|
|
10863
11134
|
return {
|
|
10864
11135
|
headers: 'headers',
|
|
@@ -10952,9 +11223,9 @@ export class UpdateApplicationScalingRuleResponseBody extends $tea.Model {
|
|
|
10952
11223
|
}
|
|
10953
11224
|
|
|
10954
11225
|
export class UpdateApplicationScalingRuleResponse extends $tea.Model {
|
|
10955
|
-
headers
|
|
10956
|
-
statusCode
|
|
10957
|
-
body
|
|
11226
|
+
headers?: { [key: string]: string };
|
|
11227
|
+
statusCode?: number;
|
|
11228
|
+
body?: UpdateApplicationScalingRuleResponseBody;
|
|
10958
11229
|
static names(): { [key: string]: string } {
|
|
10959
11230
|
return {
|
|
10960
11231
|
headers: 'headers',
|
|
@@ -11033,9 +11304,9 @@ export class UpdateApplicationVswitchesResponseBody extends $tea.Model {
|
|
|
11033
11304
|
}
|
|
11034
11305
|
|
|
11035
11306
|
export class UpdateApplicationVswitchesResponse extends $tea.Model {
|
|
11036
|
-
headers
|
|
11037
|
-
statusCode
|
|
11038
|
-
body
|
|
11307
|
+
headers?: { [key: string]: string };
|
|
11308
|
+
statusCode?: number;
|
|
11309
|
+
body?: UpdateApplicationVswitchesResponseBody;
|
|
11039
11310
|
static names(): { [key: string]: string } {
|
|
11040
11311
|
return {
|
|
11041
11312
|
headers: 'headers',
|
|
@@ -11120,9 +11391,9 @@ export class UpdateConfigMapResponseBody extends $tea.Model {
|
|
|
11120
11391
|
}
|
|
11121
11392
|
|
|
11122
11393
|
export class UpdateConfigMapResponse extends $tea.Model {
|
|
11123
|
-
headers
|
|
11124
|
-
statusCode
|
|
11125
|
-
body
|
|
11394
|
+
headers?: { [key: string]: string };
|
|
11395
|
+
statusCode?: number;
|
|
11396
|
+
body?: UpdateConfigMapResponseBody;
|
|
11126
11397
|
static names(): { [key: string]: string } {
|
|
11127
11398
|
return {
|
|
11128
11399
|
headers: 'headers',
|
|
@@ -11213,9 +11484,9 @@ export class UpdateGreyTagRouteResponseBody extends $tea.Model {
|
|
|
11213
11484
|
}
|
|
11214
11485
|
|
|
11215
11486
|
export class UpdateGreyTagRouteResponse extends $tea.Model {
|
|
11216
|
-
headers
|
|
11217
|
-
statusCode
|
|
11218
|
-
body
|
|
11487
|
+
headers?: { [key: string]: string };
|
|
11488
|
+
statusCode?: number;
|
|
11489
|
+
body?: UpdateGreyTagRouteResponseBody;
|
|
11219
11490
|
static names(): { [key: string]: string } {
|
|
11220
11491
|
return {
|
|
11221
11492
|
headers: 'headers',
|
|
@@ -11318,9 +11589,9 @@ export class UpdateIngressResponseBody extends $tea.Model {
|
|
|
11318
11589
|
}
|
|
11319
11590
|
|
|
11320
11591
|
export class UpdateIngressResponse extends $tea.Model {
|
|
11321
|
-
headers
|
|
11322
|
-
statusCode
|
|
11323
|
-
body
|
|
11592
|
+
headers?: { [key: string]: string };
|
|
11593
|
+
statusCode?: number;
|
|
11594
|
+
body?: UpdateIngressResponseBody;
|
|
11324
11595
|
static names(): { [key: string]: string } {
|
|
11325
11596
|
return {
|
|
11326
11597
|
headers: 'headers',
|
|
@@ -11531,9 +11802,9 @@ export class UpdateJobResponseBody extends $tea.Model {
|
|
|
11531
11802
|
}
|
|
11532
11803
|
|
|
11533
11804
|
export class UpdateJobResponse extends $tea.Model {
|
|
11534
|
-
headers
|
|
11535
|
-
statusCode
|
|
11536
|
-
body
|
|
11805
|
+
headers?: { [key: string]: string };
|
|
11806
|
+
statusCode?: number;
|
|
11807
|
+
body?: UpdateJobResponseBody;
|
|
11537
11808
|
static names(): { [key: string]: string } {
|
|
11538
11809
|
return {
|
|
11539
11810
|
headers: 'headers',
|
|
@@ -11624,9 +11895,9 @@ export class UpdateNamespaceResponseBody extends $tea.Model {
|
|
|
11624
11895
|
}
|
|
11625
11896
|
|
|
11626
11897
|
export class UpdateNamespaceResponse extends $tea.Model {
|
|
11627
|
-
headers
|
|
11628
|
-
statusCode
|
|
11629
|
-
body
|
|
11898
|
+
headers?: { [key: string]: string };
|
|
11899
|
+
statusCode?: number;
|
|
11900
|
+
body?: UpdateNamespaceResponseBody;
|
|
11630
11901
|
static names(): { [key: string]: string } {
|
|
11631
11902
|
return {
|
|
11632
11903
|
headers: 'headers',
|
|
@@ -11708,9 +11979,9 @@ export class UpdateNamespaceVpcResponseBody extends $tea.Model {
|
|
|
11708
11979
|
}
|
|
11709
11980
|
|
|
11710
11981
|
export class UpdateNamespaceVpcResponse extends $tea.Model {
|
|
11711
|
-
headers
|
|
11712
|
-
statusCode
|
|
11713
|
-
body
|
|
11982
|
+
headers?: { [key: string]: string };
|
|
11983
|
+
statusCode?: number;
|
|
11984
|
+
body?: UpdateNamespaceVpcResponseBody;
|
|
11714
11985
|
static names(): { [key: string]: string } {
|
|
11715
11986
|
return {
|
|
11716
11987
|
headers: 'headers',
|
|
@@ -11820,9 +12091,9 @@ export class UpdateSecretResponseBody extends $tea.Model {
|
|
|
11820
12091
|
}
|
|
11821
12092
|
|
|
11822
12093
|
export class UpdateSecretResponse extends $tea.Model {
|
|
11823
|
-
headers
|
|
11824
|
-
statusCode
|
|
11825
|
-
body
|
|
12094
|
+
headers?: { [key: string]: string };
|
|
12095
|
+
statusCode?: number;
|
|
12096
|
+
body?: UpdateSecretResponseBody;
|
|
11826
12097
|
static names(): { [key: string]: string } {
|
|
11827
12098
|
return {
|
|
11828
12099
|
headers: 'headers',
|
|
@@ -11844,38 +12115,23 @@ export class UpdateSecretResponse extends $tea.Model {
|
|
|
11844
12115
|
}
|
|
11845
12116
|
}
|
|
11846
12117
|
|
|
11847
|
-
export class
|
|
11848
|
-
|
|
11849
|
-
|
|
11850
|
-
|
|
11851
|
-
runCommand?: string;
|
|
11852
|
-
runtimeType?: string;
|
|
11853
|
-
runtimeVersion?: string;
|
|
11854
|
-
tomcatConfig?: TomcatConfig;
|
|
11855
|
-
workingDir?: string;
|
|
12118
|
+
export class AppStackInstanceEndpoints extends $tea.Model {
|
|
12119
|
+
address?: string;
|
|
12120
|
+
name?: string;
|
|
12121
|
+
protocol?: string;
|
|
11856
12122
|
static names(): { [key: string]: string } {
|
|
11857
12123
|
return {
|
|
11858
|
-
|
|
11859
|
-
|
|
11860
|
-
|
|
11861
|
-
runCommand: 'RunCommand',
|
|
11862
|
-
runtimeType: 'RuntimeType',
|
|
11863
|
-
runtimeVersion: 'RuntimeVersion',
|
|
11864
|
-
tomcatConfig: 'TomcatConfig',
|
|
11865
|
-
workingDir: 'WorkingDir',
|
|
12124
|
+
address: 'Address',
|
|
12125
|
+
name: 'Name',
|
|
12126
|
+
protocol: 'Protocol',
|
|
11866
12127
|
};
|
|
11867
12128
|
}
|
|
11868
12129
|
|
|
11869
12130
|
static types(): { [key: string]: any } {
|
|
11870
12131
|
return {
|
|
11871
|
-
|
|
11872
|
-
|
|
11873
|
-
|
|
11874
|
-
runCommand: 'string',
|
|
11875
|
-
runtimeType: 'string',
|
|
11876
|
-
runtimeVersion: 'string',
|
|
11877
|
-
tomcatConfig: TomcatConfig,
|
|
11878
|
-
workingDir: 'string',
|
|
12132
|
+
address: 'string',
|
|
12133
|
+
name: 'string',
|
|
12134
|
+
protocol: 'string',
|
|
11879
12135
|
};
|
|
11880
12136
|
}
|
|
11881
12137
|
|
|
@@ -11884,32 +12140,137 @@ export class BuildPipelineBuildConfig extends $tea.Model {
|
|
|
11884
12140
|
}
|
|
11885
12141
|
}
|
|
11886
12142
|
|
|
11887
|
-
export class
|
|
11888
|
-
|
|
11889
|
-
|
|
11890
|
-
commitId?: string;
|
|
11891
|
-
commitUrl?: string;
|
|
11892
|
-
provider?: string;
|
|
11893
|
-
repoFullName?: string;
|
|
11894
|
-
repoId?: string;
|
|
12143
|
+
export class AppStackInstanceParameters extends $tea.Model {
|
|
12144
|
+
name?: string;
|
|
12145
|
+
value?: string;
|
|
11895
12146
|
static names(): { [key: string]: string } {
|
|
11896
12147
|
return {
|
|
11897
|
-
|
|
11898
|
-
|
|
11899
|
-
commitId: 'CommitId',
|
|
11900
|
-
commitUrl: 'CommitUrl',
|
|
11901
|
-
provider: 'Provider',
|
|
11902
|
-
repoFullName: 'RepoFullName',
|
|
11903
|
-
repoId: 'RepoId',
|
|
12148
|
+
name: 'Name',
|
|
12149
|
+
value: 'Value',
|
|
11904
12150
|
};
|
|
11905
12151
|
}
|
|
11906
12152
|
|
|
11907
12153
|
static types(): { [key: string]: any } {
|
|
11908
12154
|
return {
|
|
11909
|
-
|
|
11910
|
-
|
|
12155
|
+
name: 'string',
|
|
12156
|
+
value: 'string',
|
|
12157
|
+
};
|
|
12158
|
+
}
|
|
12159
|
+
|
|
12160
|
+
constructor(map?: { [key: string]: any }) {
|
|
12161
|
+
super(map);
|
|
12162
|
+
}
|
|
12163
|
+
}
|
|
12164
|
+
|
|
12165
|
+
export class AppStackTaskSteps extends $tea.Model {
|
|
12166
|
+
code?: string;
|
|
12167
|
+
duration?: number;
|
|
12168
|
+
endTime?: number;
|
|
12169
|
+
id?: string;
|
|
12170
|
+
message?: string;
|
|
12171
|
+
name?: string;
|
|
12172
|
+
startTime?: number;
|
|
12173
|
+
status?: string;
|
|
12174
|
+
static names(): { [key: string]: string } {
|
|
12175
|
+
return {
|
|
12176
|
+
code: 'Code',
|
|
12177
|
+
duration: 'Duration',
|
|
12178
|
+
endTime: 'EndTime',
|
|
12179
|
+
id: 'Id',
|
|
12180
|
+
message: 'Message',
|
|
12181
|
+
name: 'Name',
|
|
12182
|
+
startTime: 'StartTime',
|
|
12183
|
+
status: 'Status',
|
|
12184
|
+
};
|
|
12185
|
+
}
|
|
12186
|
+
|
|
12187
|
+
static types(): { [key: string]: any } {
|
|
12188
|
+
return {
|
|
12189
|
+
code: 'string',
|
|
12190
|
+
duration: 'number',
|
|
12191
|
+
endTime: 'number',
|
|
12192
|
+
id: 'string',
|
|
12193
|
+
message: 'string',
|
|
12194
|
+
name: 'string',
|
|
12195
|
+
startTime: 'number',
|
|
12196
|
+
status: 'string',
|
|
12197
|
+
};
|
|
12198
|
+
}
|
|
12199
|
+
|
|
12200
|
+
constructor(map?: { [key: string]: any }) {
|
|
12201
|
+
super(map);
|
|
12202
|
+
}
|
|
12203
|
+
}
|
|
12204
|
+
|
|
12205
|
+
export class BuildPipelineBuildConfig extends $tea.Model {
|
|
12206
|
+
beforeBuildCommand?: string;
|
|
12207
|
+
buildType?: string;
|
|
12208
|
+
dockerfilePath?: string;
|
|
12209
|
+
runCommand?: string;
|
|
12210
|
+
runtimeType?: string;
|
|
12211
|
+
runtimeVersion?: string;
|
|
12212
|
+
tomcatConfig?: TomcatConfig;
|
|
12213
|
+
workingDir?: string;
|
|
12214
|
+
static names(): { [key: string]: string } {
|
|
12215
|
+
return {
|
|
12216
|
+
beforeBuildCommand: 'BeforeBuildCommand',
|
|
12217
|
+
buildType: 'BuildType',
|
|
12218
|
+
dockerfilePath: 'DockerfilePath',
|
|
12219
|
+
runCommand: 'RunCommand',
|
|
12220
|
+
runtimeType: 'RuntimeType',
|
|
12221
|
+
runtimeVersion: 'RuntimeVersion',
|
|
12222
|
+
tomcatConfig: 'TomcatConfig',
|
|
12223
|
+
workingDir: 'WorkingDir',
|
|
12224
|
+
};
|
|
12225
|
+
}
|
|
12226
|
+
|
|
12227
|
+
static types(): { [key: string]: any } {
|
|
12228
|
+
return {
|
|
12229
|
+
beforeBuildCommand: 'string',
|
|
12230
|
+
buildType: 'string',
|
|
12231
|
+
dockerfilePath: 'string',
|
|
12232
|
+
runCommand: 'string',
|
|
12233
|
+
runtimeType: 'string',
|
|
12234
|
+
runtimeVersion: 'string',
|
|
12235
|
+
tomcatConfig: TomcatConfig,
|
|
12236
|
+
workingDir: 'string',
|
|
12237
|
+
};
|
|
12238
|
+
}
|
|
12239
|
+
|
|
12240
|
+
constructor(map?: { [key: string]: any }) {
|
|
12241
|
+
super(map);
|
|
12242
|
+
}
|
|
12243
|
+
}
|
|
12244
|
+
|
|
12245
|
+
export class BuildPipelineCodeConfig extends $tea.Model {
|
|
12246
|
+
accountId?: string;
|
|
12247
|
+
branchName?: string;
|
|
12248
|
+
commitId?: string;
|
|
12249
|
+
commitUrl?: string;
|
|
12250
|
+
organizationId?: string;
|
|
12251
|
+
provider?: string;
|
|
12252
|
+
repoFullName?: string;
|
|
12253
|
+
repoId?: string;
|
|
12254
|
+
static names(): { [key: string]: string } {
|
|
12255
|
+
return {
|
|
12256
|
+
accountId: 'AccountId',
|
|
12257
|
+
branchName: 'BranchName',
|
|
12258
|
+
commitId: 'CommitId',
|
|
12259
|
+
commitUrl: 'CommitUrl',
|
|
12260
|
+
organizationId: 'OrganizationId',
|
|
12261
|
+
provider: 'Provider',
|
|
12262
|
+
repoFullName: 'RepoFullName',
|
|
12263
|
+
repoId: 'RepoId',
|
|
12264
|
+
};
|
|
12265
|
+
}
|
|
12266
|
+
|
|
12267
|
+
static types(): { [key: string]: any } {
|
|
12268
|
+
return {
|
|
12269
|
+
accountId: 'string',
|
|
12270
|
+
branchName: 'string',
|
|
11911
12271
|
commitId: 'string',
|
|
11912
12272
|
commitUrl: 'string',
|
|
12273
|
+
organizationId: 'string',
|
|
11913
12274
|
provider: 'string',
|
|
11914
12275
|
repoFullName: 'string',
|
|
11915
12276
|
repoId: 'string',
|
|
@@ -12004,10 +12365,12 @@ export class BuildPipelinePackageConfig extends $tea.Model {
|
|
|
12004
12365
|
|
|
12005
12366
|
export class BuildPipelineTriggerConfig extends $tea.Model {
|
|
12006
12367
|
branchName?: string;
|
|
12368
|
+
tagName?: string;
|
|
12007
12369
|
type?: string;
|
|
12008
12370
|
static names(): { [key: string]: string } {
|
|
12009
12371
|
return {
|
|
12010
12372
|
branchName: 'BranchName',
|
|
12373
|
+
tagName: 'TagName',
|
|
12011
12374
|
type: 'Type',
|
|
12012
12375
|
};
|
|
12013
12376
|
}
|
|
@@ -12015,6 +12378,7 @@ export class BuildPipelineTriggerConfig extends $tea.Model {
|
|
|
12015
12378
|
static types(): { [key: string]: any } {
|
|
12016
12379
|
return {
|
|
12017
12380
|
branchName: 'string',
|
|
12381
|
+
tagName: 'string',
|
|
12018
12382
|
type: 'string',
|
|
12019
12383
|
};
|
|
12020
12384
|
}
|
|
@@ -12026,10 +12390,12 @@ export class BuildPipelineTriggerConfig extends $tea.Model {
|
|
|
12026
12390
|
|
|
12027
12391
|
export class BuildPipelineRunBuildConfigTrigger extends $tea.Model {
|
|
12028
12392
|
branchName?: string;
|
|
12393
|
+
tagName?: string;
|
|
12029
12394
|
type?: string;
|
|
12030
12395
|
static names(): { [key: string]: string } {
|
|
12031
12396
|
return {
|
|
12032
12397
|
branchName: 'BranchName',
|
|
12398
|
+
tagName: 'TagName',
|
|
12033
12399
|
type: 'Type',
|
|
12034
12400
|
};
|
|
12035
12401
|
}
|
|
@@ -12037,6 +12403,7 @@ export class BuildPipelineRunBuildConfigTrigger extends $tea.Model {
|
|
|
12037
12403
|
static types(): { [key: string]: any } {
|
|
12038
12404
|
return {
|
|
12039
12405
|
branchName: 'string',
|
|
12406
|
+
tagName: 'string',
|
|
12040
12407
|
type: 'string',
|
|
12041
12408
|
};
|
|
12042
12409
|
}
|
|
@@ -12094,7 +12461,7 @@ export class BuildPipelineRunCodeConfig extends $tea.Model {
|
|
|
12094
12461
|
branchName?: string;
|
|
12095
12462
|
commitId?: string;
|
|
12096
12463
|
commitUrl?: string;
|
|
12097
|
-
|
|
12464
|
+
organizationId?: string;
|
|
12098
12465
|
provider?: string;
|
|
12099
12466
|
repoFullName?: string;
|
|
12100
12467
|
repoId?: string;
|
|
@@ -12104,7 +12471,7 @@ export class BuildPipelineRunCodeConfig extends $tea.Model {
|
|
|
12104
12471
|
branchName: 'BranchName',
|
|
12105
12472
|
commitId: 'CommitId',
|
|
12106
12473
|
commitUrl: 'CommitUrl',
|
|
12107
|
-
|
|
12474
|
+
organizationId: 'OrganizationId',
|
|
12108
12475
|
provider: 'Provider',
|
|
12109
12476
|
repoFullName: 'RepoFullName',
|
|
12110
12477
|
repoId: 'RepoId',
|
|
@@ -12117,7 +12484,7 @@ export class BuildPipelineRunCodeConfig extends $tea.Model {
|
|
|
12117
12484
|
branchName: 'string',
|
|
12118
12485
|
commitId: 'string',
|
|
12119
12486
|
commitUrl: 'string',
|
|
12120
|
-
|
|
12487
|
+
organizationId: 'string',
|
|
12121
12488
|
provider: 'string',
|
|
12122
12489
|
repoFullName: 'string',
|
|
12123
12490
|
repoId: 'string',
|
|
@@ -12250,6 +12617,31 @@ export class BuildPipelineRunSteps extends $tea.Model {
|
|
|
12250
12617
|
}
|
|
12251
12618
|
}
|
|
12252
12619
|
|
|
12620
|
+
export class BuildPipelineRunTriggerConfig extends $tea.Model {
|
|
12621
|
+
branchName?: string;
|
|
12622
|
+
tagName?: string;
|
|
12623
|
+
type?: string;
|
|
12624
|
+
static names(): { [key: string]: string } {
|
|
12625
|
+
return {
|
|
12626
|
+
branchName: 'BranchName',
|
|
12627
|
+
tagName: 'TagName',
|
|
12628
|
+
type: 'Type',
|
|
12629
|
+
};
|
|
12630
|
+
}
|
|
12631
|
+
|
|
12632
|
+
static types(): { [key: string]: any } {
|
|
12633
|
+
return {
|
|
12634
|
+
branchName: 'string',
|
|
12635
|
+
tagName: 'string',
|
|
12636
|
+
type: 'string',
|
|
12637
|
+
};
|
|
12638
|
+
}
|
|
12639
|
+
|
|
12640
|
+
constructor(map?: { [key: string]: any }) {
|
|
12641
|
+
super(map);
|
|
12642
|
+
}
|
|
12643
|
+
}
|
|
12644
|
+
|
|
12253
12645
|
export class PriceEstimateOutputAppsUsages extends $tea.Model {
|
|
12254
12646
|
amount?: number;
|
|
12255
12647
|
id?: string;
|
|
@@ -12487,6 +12879,59 @@ export class SLSConfigCollectConfigs extends $tea.Model {
|
|
|
12487
12879
|
}
|
|
12488
12880
|
}
|
|
12489
12881
|
|
|
12882
|
+
export class SourceCodeAccountOrganizations extends $tea.Model {
|
|
12883
|
+
avatarUrl?: string;
|
|
12884
|
+
id?: string;
|
|
12885
|
+
name?: string;
|
|
12886
|
+
static names(): { [key: string]: string } {
|
|
12887
|
+
return {
|
|
12888
|
+
avatarUrl: 'AvatarUrl',
|
|
12889
|
+
id: 'Id',
|
|
12890
|
+
name: 'Name',
|
|
12891
|
+
};
|
|
12892
|
+
}
|
|
12893
|
+
|
|
12894
|
+
static types(): { [key: string]: any } {
|
|
12895
|
+
return {
|
|
12896
|
+
avatarUrl: 'string',
|
|
12897
|
+
id: 'string',
|
|
12898
|
+
name: 'string',
|
|
12899
|
+
};
|
|
12900
|
+
}
|
|
12901
|
+
|
|
12902
|
+
constructor(map?: { [key: string]: any }) {
|
|
12903
|
+
super(map);
|
|
12904
|
+
}
|
|
12905
|
+
}
|
|
12906
|
+
|
|
12907
|
+
export class SubmenuItems extends $tea.Model {
|
|
12908
|
+
defaultSelected?: boolean;
|
|
12909
|
+
itemDesc?: string;
|
|
12910
|
+
itemType?: string;
|
|
12911
|
+
relatingItems?: string[];
|
|
12912
|
+
static names(): { [key: string]: string } {
|
|
12913
|
+
return {
|
|
12914
|
+
defaultSelected: 'DefaultSelected',
|
|
12915
|
+
itemDesc: 'ItemDesc',
|
|
12916
|
+
itemType: 'ItemType',
|
|
12917
|
+
relatingItems: 'RelatingItems',
|
|
12918
|
+
};
|
|
12919
|
+
}
|
|
12920
|
+
|
|
12921
|
+
static types(): { [key: string]: any } {
|
|
12922
|
+
return {
|
|
12923
|
+
defaultSelected: 'boolean',
|
|
12924
|
+
itemDesc: 'string',
|
|
12925
|
+
itemType: 'string',
|
|
12926
|
+
relatingItems: { 'type': 'array', 'itemType': 'string' },
|
|
12927
|
+
};
|
|
12928
|
+
}
|
|
12929
|
+
|
|
12930
|
+
constructor(map?: { [key: string]: any }) {
|
|
12931
|
+
super(map);
|
|
12932
|
+
}
|
|
12933
|
+
}
|
|
12934
|
+
|
|
12490
12935
|
export class AbortAndRollbackChangeOrderResponseBodyData extends $tea.Model {
|
|
12491
12936
|
changeOrderId?: string;
|
|
12492
12937
|
static names(): { [key: string]: string } {
|
|
@@ -13130,6 +13575,9 @@ export class DescribeAppServiceDetailResponseBodyData extends $tea.Model {
|
|
|
13130
13575
|
metadata?: { [key: string]: any };
|
|
13131
13576
|
methods?: DescribeAppServiceDetailResponseBodyDataMethods[];
|
|
13132
13577
|
serviceName?: string;
|
|
13578
|
+
servicePorts?: number[];
|
|
13579
|
+
serviceProtocol?: string;
|
|
13580
|
+
serviceTags?: string[];
|
|
13133
13581
|
serviceType?: string;
|
|
13134
13582
|
springApplicationName?: string;
|
|
13135
13583
|
version?: string;
|
|
@@ -13141,6 +13589,9 @@ export class DescribeAppServiceDetailResponseBodyData extends $tea.Model {
|
|
|
13141
13589
|
metadata: 'Metadata',
|
|
13142
13590
|
methods: 'Methods',
|
|
13143
13591
|
serviceName: 'ServiceName',
|
|
13592
|
+
servicePorts: 'ServicePorts',
|
|
13593
|
+
serviceProtocol: 'ServiceProtocol',
|
|
13594
|
+
serviceTags: 'ServiceTags',
|
|
13144
13595
|
serviceType: 'ServiceType',
|
|
13145
13596
|
springApplicationName: 'SpringApplicationName',
|
|
13146
13597
|
version: 'Version',
|
|
@@ -13155,6 +13606,9 @@ export class DescribeAppServiceDetailResponseBodyData extends $tea.Model {
|
|
|
13155
13606
|
metadata: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
13156
13607
|
methods: { 'type': 'array', 'itemType': DescribeAppServiceDetailResponseBodyDataMethods },
|
|
13157
13608
|
serviceName: 'string',
|
|
13609
|
+
servicePorts: { 'type': 'array', 'itemType': 'number' },
|
|
13610
|
+
serviceProtocol: 'string',
|
|
13611
|
+
serviceTags: { 'type': 'array', 'itemType': 'string' },
|
|
13158
13612
|
serviceType: 'string',
|
|
13159
13613
|
springApplicationName: 'string',
|
|
13160
13614
|
version: 'string',
|
|
@@ -18267,6 +18721,14 @@ export default class Client extends OpenApi {
|
|
|
18267
18721
|
return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
|
|
18268
18722
|
}
|
|
18269
18723
|
|
|
18724
|
+
/**
|
|
18725
|
+
* @summary ba386059-69b1-4e65-b1e5-0682d9fa\\*\\*\\*\\*
|
|
18726
|
+
*
|
|
18727
|
+
* @param request AbortAndRollbackChangeOrderRequest
|
|
18728
|
+
* @param headers map
|
|
18729
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18730
|
+
* @return AbortAndRollbackChangeOrderResponse
|
|
18731
|
+
*/
|
|
18270
18732
|
async abortAndRollbackChangeOrderWithOptions(request: AbortAndRollbackChangeOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<AbortAndRollbackChangeOrderResponse> {
|
|
18271
18733
|
Util.validateModel(request);
|
|
18272
18734
|
let query : {[key: string ]: any} = { };
|
|
@@ -18292,12 +18754,24 @@ export default class Client extends OpenApi {
|
|
|
18292
18754
|
return $tea.cast<AbortAndRollbackChangeOrderResponse>(await this.callApi(params, req, runtime), new AbortAndRollbackChangeOrderResponse({}));
|
|
18293
18755
|
}
|
|
18294
18756
|
|
|
18757
|
+
/**
|
|
18758
|
+
* @summary ba386059-69b1-4e65-b1e5-0682d9fa\\*\\*\\*\\*
|
|
18759
|
+
*
|
|
18760
|
+
* @param request AbortAndRollbackChangeOrderRequest
|
|
18761
|
+
* @return AbortAndRollbackChangeOrderResponse
|
|
18762
|
+
*/
|
|
18295
18763
|
async abortAndRollbackChangeOrder(request: AbortAndRollbackChangeOrderRequest): Promise<AbortAndRollbackChangeOrderResponse> {
|
|
18296
18764
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18297
18765
|
let headers : {[key: string ]: string} = { };
|
|
18298
18766
|
return await this.abortAndRollbackChangeOrderWithOptions(request, headers, runtime);
|
|
18299
18767
|
}
|
|
18300
18768
|
|
|
18769
|
+
/**
|
|
18770
|
+
* @param request AbortChangeOrderRequest
|
|
18771
|
+
* @param headers map
|
|
18772
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18773
|
+
* @return AbortChangeOrderResponse
|
|
18774
|
+
*/
|
|
18301
18775
|
async abortChangeOrderWithOptions(request: AbortChangeOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<AbortChangeOrderResponse> {
|
|
18302
18776
|
Util.validateModel(request);
|
|
18303
18777
|
let query : {[key: string ]: any} = { };
|
|
@@ -18323,12 +18797,24 @@ export default class Client extends OpenApi {
|
|
|
18323
18797
|
return $tea.cast<AbortChangeOrderResponse>(await this.callApi(params, req, runtime), new AbortChangeOrderResponse({}));
|
|
18324
18798
|
}
|
|
18325
18799
|
|
|
18800
|
+
/**
|
|
18801
|
+
* @param request AbortChangeOrderRequest
|
|
18802
|
+
* @return AbortChangeOrderResponse
|
|
18803
|
+
*/
|
|
18326
18804
|
async abortChangeOrder(request: AbortChangeOrderRequest): Promise<AbortChangeOrderResponse> {
|
|
18327
18805
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18328
18806
|
let headers : {[key: string ]: string} = { };
|
|
18329
18807
|
return await this.abortChangeOrderWithOptions(request, headers, runtime);
|
|
18330
18808
|
}
|
|
18331
18809
|
|
|
18810
|
+
/**
|
|
18811
|
+
* @summary cn-shanghai
|
|
18812
|
+
*
|
|
18813
|
+
* @param request BatchStartApplicationsRequest
|
|
18814
|
+
* @param headers map
|
|
18815
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18816
|
+
* @return BatchStartApplicationsResponse
|
|
18817
|
+
*/
|
|
18332
18818
|
async batchStartApplicationsWithOptions(request: BatchStartApplicationsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BatchStartApplicationsResponse> {
|
|
18333
18819
|
Util.validateModel(request);
|
|
18334
18820
|
let query : {[key: string ]: any} = { };
|
|
@@ -18340,6 +18826,10 @@ export default class Client extends OpenApi {
|
|
|
18340
18826
|
query["NamespaceId"] = request.namespaceId;
|
|
18341
18827
|
}
|
|
18342
18828
|
|
|
18829
|
+
if (!Util.isUnset(request.version)) {
|
|
18830
|
+
query["Version"] = request.version;
|
|
18831
|
+
}
|
|
18832
|
+
|
|
18343
18833
|
let req = new $OpenApi.OpenApiRequest({
|
|
18344
18834
|
headers: headers,
|
|
18345
18835
|
query: OpenApiUtil.query(query),
|
|
@@ -18358,12 +18848,24 @@ export default class Client extends OpenApi {
|
|
|
18358
18848
|
return $tea.cast<BatchStartApplicationsResponse>(await this.callApi(params, req, runtime), new BatchStartApplicationsResponse({}));
|
|
18359
18849
|
}
|
|
18360
18850
|
|
|
18851
|
+
/**
|
|
18852
|
+
* @summary cn-shanghai
|
|
18853
|
+
*
|
|
18854
|
+
* @param request BatchStartApplicationsRequest
|
|
18855
|
+
* @return BatchStartApplicationsResponse
|
|
18856
|
+
*/
|
|
18361
18857
|
async batchStartApplications(request: BatchStartApplicationsRequest): Promise<BatchStartApplicationsResponse> {
|
|
18362
18858
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18363
18859
|
let headers : {[key: string ]: string} = { };
|
|
18364
18860
|
return await this.batchStartApplicationsWithOptions(request, headers, runtime);
|
|
18365
18861
|
}
|
|
18366
18862
|
|
|
18863
|
+
/**
|
|
18864
|
+
* @param request BatchStopApplicationsRequest
|
|
18865
|
+
* @param headers map
|
|
18866
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18867
|
+
* @return BatchStopApplicationsResponse
|
|
18868
|
+
*/
|
|
18367
18869
|
async batchStopApplicationsWithOptions(request: BatchStopApplicationsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BatchStopApplicationsResponse> {
|
|
18368
18870
|
Util.validateModel(request);
|
|
18369
18871
|
let query : {[key: string ]: any} = { };
|
|
@@ -18375,6 +18877,10 @@ export default class Client extends OpenApi {
|
|
|
18375
18877
|
query["NamespaceId"] = request.namespaceId;
|
|
18376
18878
|
}
|
|
18377
18879
|
|
|
18880
|
+
if (!Util.isUnset(request.version)) {
|
|
18881
|
+
query["Version"] = request.version;
|
|
18882
|
+
}
|
|
18883
|
+
|
|
18378
18884
|
let req = new $OpenApi.OpenApiRequest({
|
|
18379
18885
|
headers: headers,
|
|
18380
18886
|
query: OpenApiUtil.query(query),
|
|
@@ -18393,12 +18899,22 @@ export default class Client extends OpenApi {
|
|
|
18393
18899
|
return $tea.cast<BatchStopApplicationsResponse>(await this.callApi(params, req, runtime), new BatchStopApplicationsResponse({}));
|
|
18394
18900
|
}
|
|
18395
18901
|
|
|
18902
|
+
/**
|
|
18903
|
+
* @param request BatchStopApplicationsRequest
|
|
18904
|
+
* @return BatchStopApplicationsResponse
|
|
18905
|
+
*/
|
|
18396
18906
|
async batchStopApplications(request: BatchStopApplicationsRequest): Promise<BatchStopApplicationsResponse> {
|
|
18397
18907
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18398
18908
|
let headers : {[key: string ]: string} = { };
|
|
18399
18909
|
return await this.batchStopApplicationsWithOptions(request, headers, runtime);
|
|
18400
18910
|
}
|
|
18401
18911
|
|
|
18912
|
+
/**
|
|
18913
|
+
* @param request BindSlbRequest
|
|
18914
|
+
* @param headers map
|
|
18915
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18916
|
+
* @return BindSlbResponse
|
|
18917
|
+
*/
|
|
18402
18918
|
async bindSlbWithOptions(request: BindSlbRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BindSlbResponse> {
|
|
18403
18919
|
Util.validateModel(request);
|
|
18404
18920
|
let query : {[key: string ]: any} = { };
|
|
@@ -18440,12 +18956,22 @@ export default class Client extends OpenApi {
|
|
|
18440
18956
|
return $tea.cast<BindSlbResponse>(await this.callApi(params, req, runtime), new BindSlbResponse({}));
|
|
18441
18957
|
}
|
|
18442
18958
|
|
|
18959
|
+
/**
|
|
18960
|
+
* @param request BindSlbRequest
|
|
18961
|
+
* @return BindSlbResponse
|
|
18962
|
+
*/
|
|
18443
18963
|
async bindSlb(request: BindSlbRequest): Promise<BindSlbResponse> {
|
|
18444
18964
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18445
18965
|
let headers : {[key: string ]: string} = { };
|
|
18446
18966
|
return await this.bindSlbWithOptions(request, headers, runtime);
|
|
18447
18967
|
}
|
|
18448
18968
|
|
|
18969
|
+
/**
|
|
18970
|
+
* @param request ConfirmPipelineBatchRequest
|
|
18971
|
+
* @param headers map
|
|
18972
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18973
|
+
* @return ConfirmPipelineBatchResponse
|
|
18974
|
+
*/
|
|
18449
18975
|
async confirmPipelineBatchWithOptions(request: ConfirmPipelineBatchRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ConfirmPipelineBatchResponse> {
|
|
18450
18976
|
Util.validateModel(request);
|
|
18451
18977
|
let query : {[key: string ]: any} = { };
|
|
@@ -18475,12 +19001,22 @@ export default class Client extends OpenApi {
|
|
|
18475
19001
|
return $tea.cast<ConfirmPipelineBatchResponse>(await this.callApi(params, req, runtime), new ConfirmPipelineBatchResponse({}));
|
|
18476
19002
|
}
|
|
18477
19003
|
|
|
19004
|
+
/**
|
|
19005
|
+
* @param request ConfirmPipelineBatchRequest
|
|
19006
|
+
* @return ConfirmPipelineBatchResponse
|
|
19007
|
+
*/
|
|
18478
19008
|
async confirmPipelineBatch(request: ConfirmPipelineBatchRequest): Promise<ConfirmPipelineBatchResponse> {
|
|
18479
19009
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18480
19010
|
let headers : {[key: string ]: string} = { };
|
|
18481
19011
|
return await this.confirmPipelineBatchWithOptions(request, headers, runtime);
|
|
18482
19012
|
}
|
|
18483
19013
|
|
|
19014
|
+
/**
|
|
19015
|
+
* @param request CreateApplicationRequest
|
|
19016
|
+
* @param headers map
|
|
19017
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19018
|
+
* @return CreateApplicationResponse
|
|
19019
|
+
*/
|
|
18484
19020
|
async createApplicationWithOptions(request: CreateApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateApplicationResponse> {
|
|
18485
19021
|
Util.validateModel(request);
|
|
18486
19022
|
let query : {[key: string ]: any} = { };
|
|
@@ -18736,6 +19272,10 @@ export default class Client extends OpenApi {
|
|
|
18736
19272
|
return $tea.cast<CreateApplicationResponse>(await this.callApi(params, req, runtime), new CreateApplicationResponse({}));
|
|
18737
19273
|
}
|
|
18738
19274
|
|
|
19275
|
+
/**
|
|
19276
|
+
* @param request CreateApplicationRequest
|
|
19277
|
+
* @return CreateApplicationResponse
|
|
19278
|
+
*/
|
|
18739
19279
|
async createApplication(request: CreateApplicationRequest): Promise<CreateApplicationResponse> {
|
|
18740
19280
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18741
19281
|
let headers : {[key: string ]: string} = { };
|
|
@@ -18743,16 +19283,18 @@ export default class Client extends OpenApi {
|
|
|
18743
19283
|
}
|
|
18744
19284
|
|
|
18745
19285
|
/**
|
|
18746
|
-
|
|
18747
|
-
|
|
18748
|
-
|
|
18749
|
-
|
|
18750
|
-
|
|
18751
|
-
|
|
18752
|
-
|
|
18753
|
-
|
|
18754
|
-
|
|
18755
|
-
|
|
19286
|
+
* @summary Null
|
|
19287
|
+
*
|
|
19288
|
+
* @description The HTTP status code. Take note of the following rules:
|
|
19289
|
+
* * **2xx**: The call was successful.
|
|
19290
|
+
* * **3xx**: The call was redirected.
|
|
19291
|
+
* * **4xx**: The call failed.
|
|
19292
|
+
* * **5xx**: A server error occurred.
|
|
19293
|
+
*
|
|
19294
|
+
* @param request CreateApplicationScalingRuleRequest
|
|
19295
|
+
* @param headers map
|
|
19296
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19297
|
+
* @return CreateApplicationScalingRuleResponse
|
|
18756
19298
|
*/
|
|
18757
19299
|
async createApplicationScalingRuleWithOptions(request: CreateApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateApplicationScalingRuleResponse> {
|
|
18758
19300
|
Util.validateModel(request);
|
|
@@ -18808,14 +19350,16 @@ export default class Client extends OpenApi {
|
|
|
18808
19350
|
}
|
|
18809
19351
|
|
|
18810
19352
|
/**
|
|
18811
|
-
|
|
18812
|
-
|
|
18813
|
-
|
|
18814
|
-
|
|
18815
|
-
|
|
18816
|
-
|
|
18817
|
-
|
|
18818
|
-
|
|
19353
|
+
* @summary Null
|
|
19354
|
+
*
|
|
19355
|
+
* @description The HTTP status code. Take note of the following rules:
|
|
19356
|
+
* * **2xx**: The call was successful.
|
|
19357
|
+
* * **3xx**: The call was redirected.
|
|
19358
|
+
* * **4xx**: The call failed.
|
|
19359
|
+
* * **5xx**: A server error occurred.
|
|
19360
|
+
*
|
|
19361
|
+
* @param request CreateApplicationScalingRuleRequest
|
|
19362
|
+
* @return CreateApplicationScalingRuleResponse
|
|
18819
19363
|
*/
|
|
18820
19364
|
async createApplicationScalingRule(request: CreateApplicationScalingRuleRequest): Promise<CreateApplicationScalingRuleResponse> {
|
|
18821
19365
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -18823,6 +19367,14 @@ export default class Client extends OpenApi {
|
|
|
18823
19367
|
return await this.createApplicationScalingRuleWithOptions(request, headers, runtime);
|
|
18824
19368
|
}
|
|
18825
19369
|
|
|
19370
|
+
/**
|
|
19371
|
+
* @summary name
|
|
19372
|
+
*
|
|
19373
|
+
* @param request CreateConfigMapRequest
|
|
19374
|
+
* @param headers map
|
|
19375
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19376
|
+
* @return CreateConfigMapResponse
|
|
19377
|
+
*/
|
|
18826
19378
|
async createConfigMapWithOptions(request: CreateConfigMapRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateConfigMapResponse> {
|
|
18827
19379
|
Util.validateModel(request);
|
|
18828
19380
|
let query : {[key: string ]: any} = { };
|
|
@@ -18862,6 +19414,12 @@ export default class Client extends OpenApi {
|
|
|
18862
19414
|
return $tea.cast<CreateConfigMapResponse>(await this.callApi(params, req, runtime), new CreateConfigMapResponse({}));
|
|
18863
19415
|
}
|
|
18864
19416
|
|
|
19417
|
+
/**
|
|
19418
|
+
* @summary name
|
|
19419
|
+
*
|
|
19420
|
+
* @param request CreateConfigMapRequest
|
|
19421
|
+
* @return CreateConfigMapResponse
|
|
19422
|
+
*/
|
|
18865
19423
|
async createConfigMap(request: CreateConfigMapRequest): Promise<CreateConfigMapResponse> {
|
|
18866
19424
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18867
19425
|
let headers : {[key: string ]: string} = { };
|
|
@@ -18869,12 +19427,14 @@ export default class Client extends OpenApi {
|
|
|
18869
19427
|
}
|
|
18870
19428
|
|
|
18871
19429
|
/**
|
|
18872
|
-
|
|
18873
|
-
|
|
18874
|
-
|
|
18875
|
-
|
|
18876
|
-
|
|
18877
|
-
|
|
19430
|
+
* @summary Creates a canary release rule for a Spring Cloud or Dubbo application.
|
|
19431
|
+
*
|
|
19432
|
+
* @description > You can configure only one canary release rule for each application.
|
|
19433
|
+
*
|
|
19434
|
+
* @param request CreateGreyTagRouteRequest
|
|
19435
|
+
* @param headers map
|
|
19436
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19437
|
+
* @return CreateGreyTagRouteResponse
|
|
18878
19438
|
*/
|
|
18879
19439
|
async createGreyTagRouteWithOptions(request: CreateGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateGreyTagRouteResponse> {
|
|
18880
19440
|
Util.validateModel(request);
|
|
@@ -18922,10 +19482,12 @@ export default class Client extends OpenApi {
|
|
|
18922
19482
|
}
|
|
18923
19483
|
|
|
18924
19484
|
/**
|
|
18925
|
-
|
|
18926
|
-
|
|
18927
|
-
|
|
18928
|
-
|
|
19485
|
+
* @summary Creates a canary release rule for a Spring Cloud or Dubbo application.
|
|
19486
|
+
*
|
|
19487
|
+
* @description > You can configure only one canary release rule for each application.
|
|
19488
|
+
*
|
|
19489
|
+
* @param request CreateGreyTagRouteRequest
|
|
19490
|
+
* @return CreateGreyTagRouteResponse
|
|
18929
19491
|
*/
|
|
18930
19492
|
async createGreyTagRoute(request: CreateGreyTagRouteRequest): Promise<CreateGreyTagRouteResponse> {
|
|
18931
19493
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -18933,6 +19495,14 @@ export default class Client extends OpenApi {
|
|
|
18933
19495
|
return await this.createGreyTagRouteWithOptions(request, headers, runtime);
|
|
18934
19496
|
}
|
|
18935
19497
|
|
|
19498
|
+
/**
|
|
19499
|
+
* @summary {"appId":"395b60e4-0550-458d-9c54-a265d036\\*\\*\\*\\*","containerPort":8080}
|
|
19500
|
+
*
|
|
19501
|
+
* @param request CreateIngressRequest
|
|
19502
|
+
* @param headers map
|
|
19503
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19504
|
+
* @return CreateIngressResponse
|
|
19505
|
+
*/
|
|
18936
19506
|
async createIngressWithOptions(request: CreateIngressRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateIngressResponse> {
|
|
18937
19507
|
Util.validateModel(request);
|
|
18938
19508
|
let query : {[key: string ]: any} = { };
|
|
@@ -18996,12 +19566,26 @@ export default class Client extends OpenApi {
|
|
|
18996
19566
|
return $tea.cast<CreateIngressResponse>(await this.callApi(params, req, runtime), new CreateIngressResponse({}));
|
|
18997
19567
|
}
|
|
18998
19568
|
|
|
19569
|
+
/**
|
|
19570
|
+
* @summary {"appId":"395b60e4-0550-458d-9c54-a265d036\\*\\*\\*\\*","containerPort":8080}
|
|
19571
|
+
*
|
|
19572
|
+
* @param request CreateIngressRequest
|
|
19573
|
+
* @return CreateIngressResponse
|
|
19574
|
+
*/
|
|
18999
19575
|
async createIngress(request: CreateIngressRequest): Promise<CreateIngressResponse> {
|
|
19000
19576
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19001
19577
|
let headers : {[key: string ]: string} = { };
|
|
19002
19578
|
return await this.createIngressWithOptions(request, headers, runtime);
|
|
19003
19579
|
}
|
|
19004
19580
|
|
|
19581
|
+
/**
|
|
19582
|
+
* @summary Updates a job template.
|
|
19583
|
+
*
|
|
19584
|
+
* @param request CreateJobRequest
|
|
19585
|
+
* @param headers map
|
|
19586
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19587
|
+
* @return CreateJobResponse
|
|
19588
|
+
*/
|
|
19005
19589
|
async createJobWithOptions(request: CreateJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateJobResponse> {
|
|
19006
19590
|
Util.validateModel(request);
|
|
19007
19591
|
let query : {[key: string ]: any} = { };
|
|
@@ -19241,12 +19825,26 @@ export default class Client extends OpenApi {
|
|
|
19241
19825
|
return $tea.cast<CreateJobResponse>(await this.callApi(params, req, runtime), new CreateJobResponse({}));
|
|
19242
19826
|
}
|
|
19243
19827
|
|
|
19828
|
+
/**
|
|
19829
|
+
* @summary Updates a job template.
|
|
19830
|
+
*
|
|
19831
|
+
* @param request CreateJobRequest
|
|
19832
|
+
* @return CreateJobResponse
|
|
19833
|
+
*/
|
|
19244
19834
|
async createJob(request: CreateJobRequest): Promise<CreateJobResponse> {
|
|
19245
19835
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19246
19836
|
let headers : {[key: string ]: string} = { };
|
|
19247
19837
|
return await this.createJobWithOptions(request, headers, runtime);
|
|
19248
19838
|
}
|
|
19249
19839
|
|
|
19840
|
+
/**
|
|
19841
|
+
* @summary desc
|
|
19842
|
+
*
|
|
19843
|
+
* @param request CreateNamespaceRequest
|
|
19844
|
+
* @param headers map
|
|
19845
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19846
|
+
* @return CreateNamespaceResponse
|
|
19847
|
+
*/
|
|
19250
19848
|
async createNamespaceWithOptions(request: CreateNamespaceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateNamespaceResponse> {
|
|
19251
19849
|
Util.validateModel(request);
|
|
19252
19850
|
let query : {[key: string ]: any} = { };
|
|
@@ -19288,12 +19886,26 @@ export default class Client extends OpenApi {
|
|
|
19288
19886
|
return $tea.cast<CreateNamespaceResponse>(await this.callApi(params, req, runtime), new CreateNamespaceResponse({}));
|
|
19289
19887
|
}
|
|
19290
19888
|
|
|
19889
|
+
/**
|
|
19890
|
+
* @summary desc
|
|
19891
|
+
*
|
|
19892
|
+
* @param request CreateNamespaceRequest
|
|
19893
|
+
* @return CreateNamespaceResponse
|
|
19894
|
+
*/
|
|
19291
19895
|
async createNamespace(request: CreateNamespaceRequest): Promise<CreateNamespaceResponse> {
|
|
19292
19896
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19293
19897
|
let headers : {[key: string ]: string} = { };
|
|
19294
19898
|
return await this.createNamespaceWithOptions(request, headers, runtime);
|
|
19295
19899
|
}
|
|
19296
19900
|
|
|
19901
|
+
/**
|
|
19902
|
+
* @summary Null
|
|
19903
|
+
*
|
|
19904
|
+
* @param tmpReq CreateSecretRequest
|
|
19905
|
+
* @param headers map
|
|
19906
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19907
|
+
* @return CreateSecretResponse
|
|
19908
|
+
*/
|
|
19297
19909
|
async createSecretWithOptions(tmpReq: CreateSecretRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateSecretResponse> {
|
|
19298
19910
|
Util.validateModel(tmpReq);
|
|
19299
19911
|
let request = new CreateSecretShrinkRequest({ });
|
|
@@ -19337,12 +19949,24 @@ export default class Client extends OpenApi {
|
|
|
19337
19949
|
return $tea.cast<CreateSecretResponse>(await this.callApi(params, req, runtime), new CreateSecretResponse({}));
|
|
19338
19950
|
}
|
|
19339
19951
|
|
|
19952
|
+
/**
|
|
19953
|
+
* @summary Null
|
|
19954
|
+
*
|
|
19955
|
+
* @param request CreateSecretRequest
|
|
19956
|
+
* @return CreateSecretResponse
|
|
19957
|
+
*/
|
|
19340
19958
|
async createSecret(request: CreateSecretRequest): Promise<CreateSecretResponse> {
|
|
19341
19959
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19342
19960
|
let headers : {[key: string ]: string} = { };
|
|
19343
19961
|
return await this.createSecretWithOptions(request, headers, runtime);
|
|
19344
19962
|
}
|
|
19345
19963
|
|
|
19964
|
+
/**
|
|
19965
|
+
* @param request DeleteApplicationRequest
|
|
19966
|
+
* @param headers map
|
|
19967
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19968
|
+
* @return DeleteApplicationResponse
|
|
19969
|
+
*/
|
|
19346
19970
|
async deleteApplicationWithOptions(request: DeleteApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteApplicationResponse> {
|
|
19347
19971
|
Util.validateModel(request);
|
|
19348
19972
|
let query : {[key: string ]: any} = { };
|
|
@@ -19368,12 +19992,24 @@ export default class Client extends OpenApi {
|
|
|
19368
19992
|
return $tea.cast<DeleteApplicationResponse>(await this.callApi(params, req, runtime), new DeleteApplicationResponse({}));
|
|
19369
19993
|
}
|
|
19370
19994
|
|
|
19995
|
+
/**
|
|
19996
|
+
* @param request DeleteApplicationRequest
|
|
19997
|
+
* @return DeleteApplicationResponse
|
|
19998
|
+
*/
|
|
19371
19999
|
async deleteApplication(request: DeleteApplicationRequest): Promise<DeleteApplicationResponse> {
|
|
19372
20000
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19373
20001
|
let headers : {[key: string ]: string} = { };
|
|
19374
20002
|
return await this.deleteApplicationWithOptions(request, headers, runtime);
|
|
19375
20003
|
}
|
|
19376
20004
|
|
|
20005
|
+
/**
|
|
20006
|
+
* @summary 7171a6ca-d1cd-4928-8642-7d5cfe69\\*\\*\\*\\*
|
|
20007
|
+
*
|
|
20008
|
+
* @param request DeleteApplicationScalingRuleRequest
|
|
20009
|
+
* @param headers map
|
|
20010
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20011
|
+
* @return DeleteApplicationScalingRuleResponse
|
|
20012
|
+
*/
|
|
19377
20013
|
async deleteApplicationScalingRuleWithOptions(request: DeleteApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteApplicationScalingRuleResponse> {
|
|
19378
20014
|
Util.validateModel(request);
|
|
19379
20015
|
let query : {[key: string ]: any} = { };
|
|
@@ -19403,12 +20039,24 @@ export default class Client extends OpenApi {
|
|
|
19403
20039
|
return $tea.cast<DeleteApplicationScalingRuleResponse>(await this.callApi(params, req, runtime), new DeleteApplicationScalingRuleResponse({}));
|
|
19404
20040
|
}
|
|
19405
20041
|
|
|
20042
|
+
/**
|
|
20043
|
+
* @summary 7171a6ca-d1cd-4928-8642-7d5cfe69\\*\\*\\*\\*
|
|
20044
|
+
*
|
|
20045
|
+
* @param request DeleteApplicationScalingRuleRequest
|
|
20046
|
+
* @return DeleteApplicationScalingRuleResponse
|
|
20047
|
+
*/
|
|
19406
20048
|
async deleteApplicationScalingRule(request: DeleteApplicationScalingRuleRequest): Promise<DeleteApplicationScalingRuleResponse> {
|
|
19407
20049
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19408
20050
|
let headers : {[key: string ]: string} = { };
|
|
19409
20051
|
return await this.deleteApplicationScalingRuleWithOptions(request, headers, runtime);
|
|
19410
20052
|
}
|
|
19411
20053
|
|
|
20054
|
+
/**
|
|
20055
|
+
* @param request DeleteConfigMapRequest
|
|
20056
|
+
* @param headers map
|
|
20057
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20058
|
+
* @return DeleteConfigMapResponse
|
|
20059
|
+
*/
|
|
19412
20060
|
async deleteConfigMapWithOptions(request: DeleteConfigMapRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteConfigMapResponse> {
|
|
19413
20061
|
Util.validateModel(request);
|
|
19414
20062
|
let query : {[key: string ]: any} = { };
|
|
@@ -19434,12 +20082,24 @@ export default class Client extends OpenApi {
|
|
|
19434
20082
|
return $tea.cast<DeleteConfigMapResponse>(await this.callApi(params, req, runtime), new DeleteConfigMapResponse({}));
|
|
19435
20083
|
}
|
|
19436
20084
|
|
|
20085
|
+
/**
|
|
20086
|
+
* @param request DeleteConfigMapRequest
|
|
20087
|
+
* @return DeleteConfigMapResponse
|
|
20088
|
+
*/
|
|
19437
20089
|
async deleteConfigMap(request: DeleteConfigMapRequest): Promise<DeleteConfigMapResponse> {
|
|
19438
20090
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19439
20091
|
let headers : {[key: string ]: string} = { };
|
|
19440
20092
|
return await this.deleteConfigMapWithOptions(request, headers, runtime);
|
|
19441
20093
|
}
|
|
19442
20094
|
|
|
20095
|
+
/**
|
|
20096
|
+
* @summary 1
|
|
20097
|
+
*
|
|
20098
|
+
* @param request DeleteGreyTagRouteRequest
|
|
20099
|
+
* @param headers map
|
|
20100
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20101
|
+
* @return DeleteGreyTagRouteResponse
|
|
20102
|
+
*/
|
|
19443
20103
|
async deleteGreyTagRouteWithOptions(request: DeleteGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteGreyTagRouteResponse> {
|
|
19444
20104
|
Util.validateModel(request);
|
|
19445
20105
|
let query : {[key: string ]: any} = { };
|
|
@@ -19465,12 +20125,26 @@ export default class Client extends OpenApi {
|
|
|
19465
20125
|
return $tea.cast<DeleteGreyTagRouteResponse>(await this.callApi(params, req, runtime), new DeleteGreyTagRouteResponse({}));
|
|
19466
20126
|
}
|
|
19467
20127
|
|
|
20128
|
+
/**
|
|
20129
|
+
* @summary 1
|
|
20130
|
+
*
|
|
20131
|
+
* @param request DeleteGreyTagRouteRequest
|
|
20132
|
+
* @return DeleteGreyTagRouteResponse
|
|
20133
|
+
*/
|
|
19468
20134
|
async deleteGreyTagRoute(request: DeleteGreyTagRouteRequest): Promise<DeleteGreyTagRouteResponse> {
|
|
19469
20135
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19470
20136
|
let headers : {[key: string ]: string} = { };
|
|
19471
20137
|
return await this.deleteGreyTagRouteWithOptions(request, headers, runtime);
|
|
19472
20138
|
}
|
|
19473
20139
|
|
|
20140
|
+
/**
|
|
20141
|
+
* @summary Deletes a job.
|
|
20142
|
+
*
|
|
20143
|
+
* @param request DeleteHistoryJobRequest
|
|
20144
|
+
* @param headers map
|
|
20145
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20146
|
+
* @return DeleteHistoryJobResponse
|
|
20147
|
+
*/
|
|
19474
20148
|
async deleteHistoryJobWithOptions(request: DeleteHistoryJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteHistoryJobResponse> {
|
|
19475
20149
|
Util.validateModel(request);
|
|
19476
20150
|
let query : {[key: string ]: any} = { };
|
|
@@ -19500,12 +20174,24 @@ export default class Client extends OpenApi {
|
|
|
19500
20174
|
return $tea.cast<DeleteHistoryJobResponse>(await this.callApi(params, req, runtime), new DeleteHistoryJobResponse({}));
|
|
19501
20175
|
}
|
|
19502
20176
|
|
|
20177
|
+
/**
|
|
20178
|
+
* @summary Deletes a job.
|
|
20179
|
+
*
|
|
20180
|
+
* @param request DeleteHistoryJobRequest
|
|
20181
|
+
* @return DeleteHistoryJobResponse
|
|
20182
|
+
*/
|
|
19503
20183
|
async deleteHistoryJob(request: DeleteHistoryJobRequest): Promise<DeleteHistoryJobResponse> {
|
|
19504
20184
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19505
20185
|
let headers : {[key: string ]: string} = { };
|
|
19506
20186
|
return await this.deleteHistoryJobWithOptions(request, headers, runtime);
|
|
19507
20187
|
}
|
|
19508
20188
|
|
|
20189
|
+
/**
|
|
20190
|
+
* @param request DeleteIngressRequest
|
|
20191
|
+
* @param headers map
|
|
20192
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20193
|
+
* @return DeleteIngressResponse
|
|
20194
|
+
*/
|
|
19509
20195
|
async deleteIngressWithOptions(request: DeleteIngressRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteIngressResponse> {
|
|
19510
20196
|
Util.validateModel(request);
|
|
19511
20197
|
let query : {[key: string ]: any} = { };
|
|
@@ -19531,12 +20217,24 @@ export default class Client extends OpenApi {
|
|
|
19531
20217
|
return $tea.cast<DeleteIngressResponse>(await this.callApi(params, req, runtime), new DeleteIngressResponse({}));
|
|
19532
20218
|
}
|
|
19533
20219
|
|
|
20220
|
+
/**
|
|
20221
|
+
* @param request DeleteIngressRequest
|
|
20222
|
+
* @return DeleteIngressResponse
|
|
20223
|
+
*/
|
|
19534
20224
|
async deleteIngress(request: DeleteIngressRequest): Promise<DeleteIngressResponse> {
|
|
19535
20225
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19536
20226
|
let headers : {[key: string ]: string} = { };
|
|
19537
20227
|
return await this.deleteIngressWithOptions(request, headers, runtime);
|
|
19538
20228
|
}
|
|
19539
20229
|
|
|
20230
|
+
/**
|
|
20231
|
+
* @summary Deletes a job template.
|
|
20232
|
+
*
|
|
20233
|
+
* @param request DeleteJobRequest
|
|
20234
|
+
* @param headers map
|
|
20235
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20236
|
+
* @return DeleteJobResponse
|
|
20237
|
+
*/
|
|
19540
20238
|
async deleteJobWithOptions(request: DeleteJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteJobResponse> {
|
|
19541
20239
|
Util.validateModel(request);
|
|
19542
20240
|
let query : {[key: string ]: any} = { };
|
|
@@ -19562,12 +20260,24 @@ export default class Client extends OpenApi {
|
|
|
19562
20260
|
return $tea.cast<DeleteJobResponse>(await this.callApi(params, req, runtime), new DeleteJobResponse({}));
|
|
19563
20261
|
}
|
|
19564
20262
|
|
|
20263
|
+
/**
|
|
20264
|
+
* @summary Deletes a job template.
|
|
20265
|
+
*
|
|
20266
|
+
* @param request DeleteJobRequest
|
|
20267
|
+
* @return DeleteJobResponse
|
|
20268
|
+
*/
|
|
19565
20269
|
async deleteJob(request: DeleteJobRequest): Promise<DeleteJobResponse> {
|
|
19566
20270
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19567
20271
|
let headers : {[key: string ]: string} = { };
|
|
19568
20272
|
return await this.deleteJobWithOptions(request, headers, runtime);
|
|
19569
20273
|
}
|
|
19570
20274
|
|
|
20275
|
+
/**
|
|
20276
|
+
* @param request DeleteNamespaceRequest
|
|
20277
|
+
* @param headers map
|
|
20278
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20279
|
+
* @return DeleteNamespaceResponse
|
|
20280
|
+
*/
|
|
19571
20281
|
async deleteNamespaceWithOptions(request: DeleteNamespaceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteNamespaceResponse> {
|
|
19572
20282
|
Util.validateModel(request);
|
|
19573
20283
|
let query : {[key: string ]: any} = { };
|
|
@@ -19597,12 +20307,24 @@ export default class Client extends OpenApi {
|
|
|
19597
20307
|
return $tea.cast<DeleteNamespaceResponse>(await this.callApi(params, req, runtime), new DeleteNamespaceResponse({}));
|
|
19598
20308
|
}
|
|
19599
20309
|
|
|
19600
|
-
|
|
20310
|
+
/**
|
|
20311
|
+
* @param request DeleteNamespaceRequest
|
|
20312
|
+
* @return DeleteNamespaceResponse
|
|
20313
|
+
*/
|
|
20314
|
+
async deleteNamespace(request: DeleteNamespaceRequest): Promise<DeleteNamespaceResponse> {
|
|
19601
20315
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19602
20316
|
let headers : {[key: string ]: string} = { };
|
|
19603
20317
|
return await this.deleteNamespaceWithOptions(request, headers, runtime);
|
|
19604
20318
|
}
|
|
19605
20319
|
|
|
20320
|
+
/**
|
|
20321
|
+
* @summary Deletes a Secret.
|
|
20322
|
+
*
|
|
20323
|
+
* @param request DeleteSecretRequest
|
|
20324
|
+
* @param headers map
|
|
20325
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20326
|
+
* @return DeleteSecretResponse
|
|
20327
|
+
*/
|
|
19606
20328
|
async deleteSecretWithOptions(request: DeleteSecretRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteSecretResponse> {
|
|
19607
20329
|
Util.validateModel(request);
|
|
19608
20330
|
let query : {[key: string ]: any} = { };
|
|
@@ -19632,12 +20354,26 @@ export default class Client extends OpenApi {
|
|
|
19632
20354
|
return $tea.cast<DeleteSecretResponse>(await this.callApi(params, req, runtime), new DeleteSecretResponse({}));
|
|
19633
20355
|
}
|
|
19634
20356
|
|
|
20357
|
+
/**
|
|
20358
|
+
* @summary Deletes a Secret.
|
|
20359
|
+
*
|
|
20360
|
+
* @param request DeleteSecretRequest
|
|
20361
|
+
* @return DeleteSecretResponse
|
|
20362
|
+
*/
|
|
19635
20363
|
async deleteSecret(request: DeleteSecretRequest): Promise<DeleteSecretResponse> {
|
|
19636
20364
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19637
20365
|
let headers : {[key: string ]: string} = { };
|
|
19638
20366
|
return await this.deleteSecretWithOptions(request, headers, runtime);
|
|
19639
20367
|
}
|
|
19640
20368
|
|
|
20369
|
+
/**
|
|
20370
|
+
* @summary Deploys an application.
|
|
20371
|
+
*
|
|
20372
|
+
* @param request DeployApplicationRequest
|
|
20373
|
+
* @param headers map
|
|
20374
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20375
|
+
* @return DeployApplicationResponse
|
|
20376
|
+
*/
|
|
19641
20377
|
async deployApplicationWithOptions(request: DeployApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeployApplicationResponse> {
|
|
19642
20378
|
Util.validateModel(request);
|
|
19643
20379
|
let query : {[key: string ]: any} = { };
|
|
@@ -19893,12 +20629,26 @@ export default class Client extends OpenApi {
|
|
|
19893
20629
|
return $tea.cast<DeployApplicationResponse>(await this.callApi(params, req, runtime), new DeployApplicationResponse({}));
|
|
19894
20630
|
}
|
|
19895
20631
|
|
|
20632
|
+
/**
|
|
20633
|
+
* @summary Deploys an application.
|
|
20634
|
+
*
|
|
20635
|
+
* @param request DeployApplicationRequest
|
|
20636
|
+
* @return DeployApplicationResponse
|
|
20637
|
+
*/
|
|
19896
20638
|
async deployApplication(request: DeployApplicationRequest): Promise<DeployApplicationResponse> {
|
|
19897
20639
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19898
20640
|
let headers : {[key: string ]: string} = { };
|
|
19899
20641
|
return await this.deployApplicationWithOptions(request, headers, runtime);
|
|
19900
20642
|
}
|
|
19901
20643
|
|
|
20644
|
+
/**
|
|
20645
|
+
* @summary Queries the metadata details of the service of an application.
|
|
20646
|
+
*
|
|
20647
|
+
* @param request DescribeAppServiceDetailRequest
|
|
20648
|
+
* @param headers map
|
|
20649
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20650
|
+
* @return DescribeAppServiceDetailResponse
|
|
20651
|
+
*/
|
|
19902
20652
|
async describeAppServiceDetailWithOptions(request: DescribeAppServiceDetailRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeAppServiceDetailResponse> {
|
|
19903
20653
|
Util.validateModel(request);
|
|
19904
20654
|
let query : {[key: string ]: any} = { };
|
|
@@ -19906,6 +20656,14 @@ export default class Client extends OpenApi {
|
|
|
19906
20656
|
query["AppId"] = request.appId;
|
|
19907
20657
|
}
|
|
19908
20658
|
|
|
20659
|
+
if (!Util.isUnset(request.nacosInstanceId)) {
|
|
20660
|
+
query["NacosInstanceId"] = request.nacosInstanceId;
|
|
20661
|
+
}
|
|
20662
|
+
|
|
20663
|
+
if (!Util.isUnset(request.nacosNamespaceId)) {
|
|
20664
|
+
query["NacosNamespaceId"] = request.nacosNamespaceId;
|
|
20665
|
+
}
|
|
20666
|
+
|
|
19909
20667
|
if (!Util.isUnset(request.serviceGroup)) {
|
|
19910
20668
|
query["ServiceGroup"] = request.serviceGroup;
|
|
19911
20669
|
}
|
|
@@ -19940,12 +20698,24 @@ export default class Client extends OpenApi {
|
|
|
19940
20698
|
return $tea.cast<DescribeAppServiceDetailResponse>(await this.callApi(params, req, runtime), new DescribeAppServiceDetailResponse({}));
|
|
19941
20699
|
}
|
|
19942
20700
|
|
|
20701
|
+
/**
|
|
20702
|
+
* @summary Queries the metadata details of the service of an application.
|
|
20703
|
+
*
|
|
20704
|
+
* @param request DescribeAppServiceDetailRequest
|
|
20705
|
+
* @return DescribeAppServiceDetailResponse
|
|
20706
|
+
*/
|
|
19943
20707
|
async describeAppServiceDetail(request: DescribeAppServiceDetailRequest): Promise<DescribeAppServiceDetailResponse> {
|
|
19944
20708
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19945
20709
|
let headers : {[key: string ]: string} = { };
|
|
19946
20710
|
return await this.describeAppServiceDetailWithOptions(request, headers, runtime);
|
|
19947
20711
|
}
|
|
19948
20712
|
|
|
20713
|
+
/**
|
|
20714
|
+
* @param request DescribeApplicationConfigRequest
|
|
20715
|
+
* @param headers map
|
|
20716
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20717
|
+
* @return DescribeApplicationConfigResponse
|
|
20718
|
+
*/
|
|
19949
20719
|
async describeApplicationConfigWithOptions(request: DescribeApplicationConfigRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationConfigResponse> {
|
|
19950
20720
|
Util.validateModel(request);
|
|
19951
20721
|
let query : {[key: string ]: any} = { };
|
|
@@ -19975,12 +20745,22 @@ export default class Client extends OpenApi {
|
|
|
19975
20745
|
return $tea.cast<DescribeApplicationConfigResponse>(await this.callApi(params, req, runtime), new DescribeApplicationConfigResponse({}));
|
|
19976
20746
|
}
|
|
19977
20747
|
|
|
20748
|
+
/**
|
|
20749
|
+
* @param request DescribeApplicationConfigRequest
|
|
20750
|
+
* @return DescribeApplicationConfigResponse
|
|
20751
|
+
*/
|
|
19978
20752
|
async describeApplicationConfig(request: DescribeApplicationConfigRequest): Promise<DescribeApplicationConfigResponse> {
|
|
19979
20753
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19980
20754
|
let headers : {[key: string ]: string} = { };
|
|
19981
20755
|
return await this.describeApplicationConfigWithOptions(request, headers, runtime);
|
|
19982
20756
|
}
|
|
19983
20757
|
|
|
20758
|
+
/**
|
|
20759
|
+
* @param request DescribeApplicationGroupsRequest
|
|
20760
|
+
* @param headers map
|
|
20761
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20762
|
+
* @return DescribeApplicationGroupsResponse
|
|
20763
|
+
*/
|
|
19984
20764
|
async describeApplicationGroupsWithOptions(request: DescribeApplicationGroupsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationGroupsResponse> {
|
|
19985
20765
|
Util.validateModel(request);
|
|
19986
20766
|
let query : {[key: string ]: any} = { };
|
|
@@ -20014,12 +20794,22 @@ export default class Client extends OpenApi {
|
|
|
20014
20794
|
return $tea.cast<DescribeApplicationGroupsResponse>(await this.callApi(params, req, runtime), new DescribeApplicationGroupsResponse({}));
|
|
20015
20795
|
}
|
|
20016
20796
|
|
|
20797
|
+
/**
|
|
20798
|
+
* @param request DescribeApplicationGroupsRequest
|
|
20799
|
+
* @return DescribeApplicationGroupsResponse
|
|
20800
|
+
*/
|
|
20017
20801
|
async describeApplicationGroups(request: DescribeApplicationGroupsRequest): Promise<DescribeApplicationGroupsResponse> {
|
|
20018
20802
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20019
20803
|
let headers : {[key: string ]: string} = { };
|
|
20020
20804
|
return await this.describeApplicationGroupsWithOptions(request, headers, runtime);
|
|
20021
20805
|
}
|
|
20022
20806
|
|
|
20807
|
+
/**
|
|
20808
|
+
* @param request DescribeApplicationImageRequest
|
|
20809
|
+
* @param headers map
|
|
20810
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20811
|
+
* @return DescribeApplicationImageResponse
|
|
20812
|
+
*/
|
|
20023
20813
|
async describeApplicationImageWithOptions(request: DescribeApplicationImageRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationImageResponse> {
|
|
20024
20814
|
Util.validateModel(request);
|
|
20025
20815
|
let query : {[key: string ]: any} = { };
|
|
@@ -20049,12 +20839,24 @@ export default class Client extends OpenApi {
|
|
|
20049
20839
|
return $tea.cast<DescribeApplicationImageResponse>(await this.callApi(params, req, runtime), new DescribeApplicationImageResponse({}));
|
|
20050
20840
|
}
|
|
20051
20841
|
|
|
20842
|
+
/**
|
|
20843
|
+
* @param request DescribeApplicationImageRequest
|
|
20844
|
+
* @return DescribeApplicationImageResponse
|
|
20845
|
+
*/
|
|
20052
20846
|
async describeApplicationImage(request: DescribeApplicationImageRequest): Promise<DescribeApplicationImageResponse> {
|
|
20053
20847
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20054
20848
|
let headers : {[key: string ]: string} = { };
|
|
20055
20849
|
return await this.describeApplicationImageWithOptions(request, headers, runtime);
|
|
20056
20850
|
}
|
|
20057
20851
|
|
|
20852
|
+
/**
|
|
20853
|
+
* @summary Queries application instances.
|
|
20854
|
+
*
|
|
20855
|
+
* @param request DescribeApplicationInstancesRequest
|
|
20856
|
+
* @param headers map
|
|
20857
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20858
|
+
* @return DescribeApplicationInstancesResponse
|
|
20859
|
+
*/
|
|
20058
20860
|
async describeApplicationInstancesWithOptions(request: DescribeApplicationInstancesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationInstancesResponse> {
|
|
20059
20861
|
Util.validateModel(request);
|
|
20060
20862
|
let query : {[key: string ]: any} = { };
|
|
@@ -20096,12 +20898,26 @@ export default class Client extends OpenApi {
|
|
|
20096
20898
|
return $tea.cast<DescribeApplicationInstancesResponse>(await this.callApi(params, req, runtime), new DescribeApplicationInstancesResponse({}));
|
|
20097
20899
|
}
|
|
20098
20900
|
|
|
20901
|
+
/**
|
|
20902
|
+
* @summary Queries application instances.
|
|
20903
|
+
*
|
|
20904
|
+
* @param request DescribeApplicationInstancesRequest
|
|
20905
|
+
* @return DescribeApplicationInstancesResponse
|
|
20906
|
+
*/
|
|
20099
20907
|
async describeApplicationInstances(request: DescribeApplicationInstancesRequest): Promise<DescribeApplicationInstancesResponse> {
|
|
20100
20908
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20101
20909
|
let headers : {[key: string ]: string} = { };
|
|
20102
20910
|
return await this.describeApplicationInstancesWithOptions(request, headers, runtime);
|
|
20103
20911
|
}
|
|
20104
20912
|
|
|
20913
|
+
/**
|
|
20914
|
+
* @summary Queries a specified auto scaling policy of an application.
|
|
20915
|
+
*
|
|
20916
|
+
* @param request DescribeApplicationScalingRuleRequest
|
|
20917
|
+
* @param headers map
|
|
20918
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20919
|
+
* @return DescribeApplicationScalingRuleResponse
|
|
20920
|
+
*/
|
|
20105
20921
|
async describeApplicationScalingRuleWithOptions(request: DescribeApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationScalingRuleResponse> {
|
|
20106
20922
|
Util.validateModel(request);
|
|
20107
20923
|
let query : {[key: string ]: any} = { };
|
|
@@ -20131,12 +20947,26 @@ export default class Client extends OpenApi {
|
|
|
20131
20947
|
return $tea.cast<DescribeApplicationScalingRuleResponse>(await this.callApi(params, req, runtime), new DescribeApplicationScalingRuleResponse({}));
|
|
20132
20948
|
}
|
|
20133
20949
|
|
|
20950
|
+
/**
|
|
20951
|
+
* @summary Queries a specified auto scaling policy of an application.
|
|
20952
|
+
*
|
|
20953
|
+
* @param request DescribeApplicationScalingRuleRequest
|
|
20954
|
+
* @return DescribeApplicationScalingRuleResponse
|
|
20955
|
+
*/
|
|
20134
20956
|
async describeApplicationScalingRule(request: DescribeApplicationScalingRuleRequest): Promise<DescribeApplicationScalingRuleResponse> {
|
|
20135
20957
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20136
20958
|
let headers : {[key: string ]: string} = { };
|
|
20137
20959
|
return await this.describeApplicationScalingRuleWithOptions(request, headers, runtime);
|
|
20138
20960
|
}
|
|
20139
20961
|
|
|
20962
|
+
/**
|
|
20963
|
+
* @summary Queries the auto scaling policies of an application.
|
|
20964
|
+
*
|
|
20965
|
+
* @param request DescribeApplicationScalingRulesRequest
|
|
20966
|
+
* @param headers map
|
|
20967
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20968
|
+
* @return DescribeApplicationScalingRulesResponse
|
|
20969
|
+
*/
|
|
20140
20970
|
async describeApplicationScalingRulesWithOptions(request: DescribeApplicationScalingRulesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationScalingRulesResponse> {
|
|
20141
20971
|
Util.validateModel(request);
|
|
20142
20972
|
let query : {[key: string ]: any} = { };
|
|
@@ -20162,12 +20992,26 @@ export default class Client extends OpenApi {
|
|
|
20162
20992
|
return $tea.cast<DescribeApplicationScalingRulesResponse>(await this.callApi(params, req, runtime), new DescribeApplicationScalingRulesResponse({}));
|
|
20163
20993
|
}
|
|
20164
20994
|
|
|
20995
|
+
/**
|
|
20996
|
+
* @summary Queries the auto scaling policies of an application.
|
|
20997
|
+
*
|
|
20998
|
+
* @param request DescribeApplicationScalingRulesRequest
|
|
20999
|
+
* @return DescribeApplicationScalingRulesResponse
|
|
21000
|
+
*/
|
|
20165
21001
|
async describeApplicationScalingRules(request: DescribeApplicationScalingRulesRequest): Promise<DescribeApplicationScalingRulesResponse> {
|
|
20166
21002
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20167
21003
|
let headers : {[key: string ]: string} = { };
|
|
20168
21004
|
return await this.describeApplicationScalingRulesWithOptions(request, headers, runtime);
|
|
20169
21005
|
}
|
|
20170
21006
|
|
|
21007
|
+
/**
|
|
21008
|
+
* @summary 017f39b8-dfa4-4e16-a84b-1dcee4b1\\*\\*\\*\\*
|
|
21009
|
+
*
|
|
21010
|
+
* @param request DescribeApplicationSlbsRequest
|
|
21011
|
+
* @param headers map
|
|
21012
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21013
|
+
* @return DescribeApplicationSlbsResponse
|
|
21014
|
+
*/
|
|
20171
21015
|
async describeApplicationSlbsWithOptions(request: DescribeApplicationSlbsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationSlbsResponse> {
|
|
20172
21016
|
Util.validateModel(request);
|
|
20173
21017
|
let query : {[key: string ]: any} = { };
|
|
@@ -20193,12 +21037,24 @@ export default class Client extends OpenApi {
|
|
|
20193
21037
|
return $tea.cast<DescribeApplicationSlbsResponse>(await this.callApi(params, req, runtime), new DescribeApplicationSlbsResponse({}));
|
|
20194
21038
|
}
|
|
20195
21039
|
|
|
21040
|
+
/**
|
|
21041
|
+
* @summary 017f39b8-dfa4-4e16-a84b-1dcee4b1\\*\\*\\*\\*
|
|
21042
|
+
*
|
|
21043
|
+
* @param request DescribeApplicationSlbsRequest
|
|
21044
|
+
* @return DescribeApplicationSlbsResponse
|
|
21045
|
+
*/
|
|
20196
21046
|
async describeApplicationSlbs(request: DescribeApplicationSlbsRequest): Promise<DescribeApplicationSlbsResponse> {
|
|
20197
21047
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20198
21048
|
let headers : {[key: string ]: string} = { };
|
|
20199
21049
|
return await this.describeApplicationSlbsWithOptions(request, headers, runtime);
|
|
20200
21050
|
}
|
|
20201
21051
|
|
|
21052
|
+
/**
|
|
21053
|
+
* @param request DescribeApplicationStatusRequest
|
|
21054
|
+
* @param headers map
|
|
21055
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21056
|
+
* @return DescribeApplicationStatusResponse
|
|
21057
|
+
*/
|
|
20202
21058
|
async describeApplicationStatusWithOptions(request: DescribeApplicationStatusRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationStatusResponse> {
|
|
20203
21059
|
Util.validateModel(request);
|
|
20204
21060
|
let query : {[key: string ]: any} = { };
|
|
@@ -20224,12 +21080,22 @@ export default class Client extends OpenApi {
|
|
|
20224
21080
|
return $tea.cast<DescribeApplicationStatusResponse>(await this.callApi(params, req, runtime), new DescribeApplicationStatusResponse({}));
|
|
20225
21081
|
}
|
|
20226
21082
|
|
|
21083
|
+
/**
|
|
21084
|
+
* @param request DescribeApplicationStatusRequest
|
|
21085
|
+
* @return DescribeApplicationStatusResponse
|
|
21086
|
+
*/
|
|
20227
21087
|
async describeApplicationStatus(request: DescribeApplicationStatusRequest): Promise<DescribeApplicationStatusResponse> {
|
|
20228
21088
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20229
21089
|
let headers : {[key: string ]: string} = { };
|
|
20230
21090
|
return await this.describeApplicationStatusWithOptions(request, headers, runtime);
|
|
20231
21091
|
}
|
|
20232
21092
|
|
|
21093
|
+
/**
|
|
21094
|
+
* @param request DescribeChangeOrderRequest
|
|
21095
|
+
* @param headers map
|
|
21096
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21097
|
+
* @return DescribeChangeOrderResponse
|
|
21098
|
+
*/
|
|
20233
21099
|
async describeChangeOrderWithOptions(request: DescribeChangeOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeChangeOrderResponse> {
|
|
20234
21100
|
Util.validateModel(request);
|
|
20235
21101
|
let query : {[key: string ]: any} = { };
|
|
@@ -20255,12 +21121,22 @@ export default class Client extends OpenApi {
|
|
|
20255
21121
|
return $tea.cast<DescribeChangeOrderResponse>(await this.callApi(params, req, runtime), new DescribeChangeOrderResponse({}));
|
|
20256
21122
|
}
|
|
20257
21123
|
|
|
21124
|
+
/**
|
|
21125
|
+
* @param request DescribeChangeOrderRequest
|
|
21126
|
+
* @return DescribeChangeOrderResponse
|
|
21127
|
+
*/
|
|
20258
21128
|
async describeChangeOrder(request: DescribeChangeOrderRequest): Promise<DescribeChangeOrderResponse> {
|
|
20259
21129
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20260
21130
|
let headers : {[key: string ]: string} = { };
|
|
20261
21131
|
return await this.describeChangeOrderWithOptions(request, headers, runtime);
|
|
20262
21132
|
}
|
|
20263
21133
|
|
|
21134
|
+
/**
|
|
21135
|
+
* @param request DescribeComponentsRequest
|
|
21136
|
+
* @param headers map
|
|
21137
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21138
|
+
* @return DescribeComponentsResponse
|
|
21139
|
+
*/
|
|
20264
21140
|
async describeComponentsWithOptions(request: DescribeComponentsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeComponentsResponse> {
|
|
20265
21141
|
Util.validateModel(request);
|
|
20266
21142
|
let query : {[key: string ]: any} = { };
|
|
@@ -20290,12 +21166,22 @@ export default class Client extends OpenApi {
|
|
|
20290
21166
|
return $tea.cast<DescribeComponentsResponse>(await this.callApi(params, req, runtime), new DescribeComponentsResponse({}));
|
|
20291
21167
|
}
|
|
20292
21168
|
|
|
21169
|
+
/**
|
|
21170
|
+
* @param request DescribeComponentsRequest
|
|
21171
|
+
* @return DescribeComponentsResponse
|
|
21172
|
+
*/
|
|
20293
21173
|
async describeComponents(request: DescribeComponentsRequest): Promise<DescribeComponentsResponse> {
|
|
20294
21174
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20295
21175
|
let headers : {[key: string ]: string} = { };
|
|
20296
21176
|
return await this.describeComponentsWithOptions(request, headers, runtime);
|
|
20297
21177
|
}
|
|
20298
21178
|
|
|
21179
|
+
/**
|
|
21180
|
+
* @param request DescribeConfigMapRequest
|
|
21181
|
+
* @param headers map
|
|
21182
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21183
|
+
* @return DescribeConfigMapResponse
|
|
21184
|
+
*/
|
|
20299
21185
|
async describeConfigMapWithOptions(request: DescribeConfigMapRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeConfigMapResponse> {
|
|
20300
21186
|
Util.validateModel(request);
|
|
20301
21187
|
let query : {[key: string ]: any} = { };
|
|
@@ -20321,12 +21207,22 @@ export default class Client extends OpenApi {
|
|
|
20321
21207
|
return $tea.cast<DescribeConfigMapResponse>(await this.callApi(params, req, runtime), new DescribeConfigMapResponse({}));
|
|
20322
21208
|
}
|
|
20323
21209
|
|
|
21210
|
+
/**
|
|
21211
|
+
* @param request DescribeConfigMapRequest
|
|
21212
|
+
* @return DescribeConfigMapResponse
|
|
21213
|
+
*/
|
|
20324
21214
|
async describeConfigMap(request: DescribeConfigMapRequest): Promise<DescribeConfigMapResponse> {
|
|
20325
21215
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20326
21216
|
let headers : {[key: string ]: string} = { };
|
|
20327
21217
|
return await this.describeConfigMapWithOptions(request, headers, runtime);
|
|
20328
21218
|
}
|
|
20329
21219
|
|
|
21220
|
+
/**
|
|
21221
|
+
* @param request DescribeConfigurationPriceRequest
|
|
21222
|
+
* @param headers map
|
|
21223
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21224
|
+
* @return DescribeConfigurationPriceResponse
|
|
21225
|
+
*/
|
|
20330
21226
|
async describeConfigurationPriceWithOptions(request: DescribeConfigurationPriceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeConfigurationPriceResponse> {
|
|
20331
21227
|
Util.validateModel(request);
|
|
20332
21228
|
let query : {[key: string ]: any} = { };
|
|
@@ -20360,12 +21256,21 @@ export default class Client extends OpenApi {
|
|
|
20360
21256
|
return $tea.cast<DescribeConfigurationPriceResponse>(await this.callApi(params, req, runtime), new DescribeConfigurationPriceResponse({}));
|
|
20361
21257
|
}
|
|
20362
21258
|
|
|
21259
|
+
/**
|
|
21260
|
+
* @param request DescribeConfigurationPriceRequest
|
|
21261
|
+
* @return DescribeConfigurationPriceResponse
|
|
21262
|
+
*/
|
|
20363
21263
|
async describeConfigurationPrice(request: DescribeConfigurationPriceRequest): Promise<DescribeConfigurationPriceResponse> {
|
|
20364
21264
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20365
21265
|
let headers : {[key: string ]: string} = { };
|
|
20366
21266
|
return await this.describeConfigurationPriceWithOptions(request, headers, runtime);
|
|
20367
21267
|
}
|
|
20368
21268
|
|
|
21269
|
+
/**
|
|
21270
|
+
* @param headers map
|
|
21271
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21272
|
+
* @return DescribeEdasContainersResponse
|
|
21273
|
+
*/
|
|
20369
21274
|
async describeEdasContainersWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeEdasContainersResponse> {
|
|
20370
21275
|
let req = new $OpenApi.OpenApiRequest({
|
|
20371
21276
|
headers: headers,
|
|
@@ -20384,12 +21289,23 @@ export default class Client extends OpenApi {
|
|
|
20384
21289
|
return $tea.cast<DescribeEdasContainersResponse>(await this.callApi(params, req, runtime), new DescribeEdasContainersResponse({}));
|
|
20385
21290
|
}
|
|
20386
21291
|
|
|
21292
|
+
/**
|
|
21293
|
+
* @return DescribeEdasContainersResponse
|
|
21294
|
+
*/
|
|
20387
21295
|
async describeEdasContainers(): Promise<DescribeEdasContainersResponse> {
|
|
20388
21296
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20389
21297
|
let headers : {[key: string ]: string} = { };
|
|
20390
21298
|
return await this.describeEdasContainersWithOptions(headers, runtime);
|
|
20391
21299
|
}
|
|
20392
21300
|
|
|
21301
|
+
/**
|
|
21302
|
+
* @summary Queries the details of a canary release rule based on the specified rule ID.
|
|
21303
|
+
*
|
|
21304
|
+
* @param request DescribeGreyTagRouteRequest
|
|
21305
|
+
* @param headers map
|
|
21306
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21307
|
+
* @return DescribeGreyTagRouteResponse
|
|
21308
|
+
*/
|
|
20393
21309
|
async describeGreyTagRouteWithOptions(request: DescribeGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeGreyTagRouteResponse> {
|
|
20394
21310
|
Util.validateModel(request);
|
|
20395
21311
|
let query : {[key: string ]: any} = { };
|
|
@@ -20415,12 +21331,24 @@ export default class Client extends OpenApi {
|
|
|
20415
21331
|
return $tea.cast<DescribeGreyTagRouteResponse>(await this.callApi(params, req, runtime), new DescribeGreyTagRouteResponse({}));
|
|
20416
21332
|
}
|
|
20417
21333
|
|
|
21334
|
+
/**
|
|
21335
|
+
* @summary Queries the details of a canary release rule based on the specified rule ID.
|
|
21336
|
+
*
|
|
21337
|
+
* @param request DescribeGreyTagRouteRequest
|
|
21338
|
+
* @return DescribeGreyTagRouteResponse
|
|
21339
|
+
*/
|
|
20418
21340
|
async describeGreyTagRoute(request: DescribeGreyTagRouteRequest): Promise<DescribeGreyTagRouteResponse> {
|
|
20419
21341
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20420
21342
|
let headers : {[key: string ]: string} = { };
|
|
20421
21343
|
return await this.describeGreyTagRouteWithOptions(request, headers, runtime);
|
|
20422
21344
|
}
|
|
20423
21345
|
|
|
21346
|
+
/**
|
|
21347
|
+
* @param request DescribeIngressRequest
|
|
21348
|
+
* @param headers map
|
|
21349
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21350
|
+
* @return DescribeIngressResponse
|
|
21351
|
+
*/
|
|
20424
21352
|
async describeIngressWithOptions(request: DescribeIngressRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeIngressResponse> {
|
|
20425
21353
|
Util.validateModel(request);
|
|
20426
21354
|
let query : {[key: string ]: any} = { };
|
|
@@ -20446,12 +21374,22 @@ export default class Client extends OpenApi {
|
|
|
20446
21374
|
return $tea.cast<DescribeIngressResponse>(await this.callApi(params, req, runtime), new DescribeIngressResponse({}));
|
|
20447
21375
|
}
|
|
20448
21376
|
|
|
21377
|
+
/**
|
|
21378
|
+
* @param request DescribeIngressRequest
|
|
21379
|
+
* @return DescribeIngressResponse
|
|
21380
|
+
*/
|
|
20449
21381
|
async describeIngress(request: DescribeIngressRequest): Promise<DescribeIngressResponse> {
|
|
20450
21382
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20451
21383
|
let headers : {[key: string ]: string} = { };
|
|
20452
21384
|
return await this.describeIngressWithOptions(request, headers, runtime);
|
|
20453
21385
|
}
|
|
20454
21386
|
|
|
21387
|
+
/**
|
|
21388
|
+
* @param request DescribeInstanceLogRequest
|
|
21389
|
+
* @param headers map
|
|
21390
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21391
|
+
* @return DescribeInstanceLogResponse
|
|
21392
|
+
*/
|
|
20455
21393
|
async describeInstanceLogWithOptions(request: DescribeInstanceLogRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceLogResponse> {
|
|
20456
21394
|
Util.validateModel(request);
|
|
20457
21395
|
let query : {[key: string ]: any} = { };
|
|
@@ -20477,12 +21415,21 @@ export default class Client extends OpenApi {
|
|
|
20477
21415
|
return $tea.cast<DescribeInstanceLogResponse>(await this.callApi(params, req, runtime), new DescribeInstanceLogResponse({}));
|
|
20478
21416
|
}
|
|
20479
21417
|
|
|
21418
|
+
/**
|
|
21419
|
+
* @param request DescribeInstanceLogRequest
|
|
21420
|
+
* @return DescribeInstanceLogResponse
|
|
21421
|
+
*/
|
|
20480
21422
|
async describeInstanceLog(request: DescribeInstanceLogRequest): Promise<DescribeInstanceLogResponse> {
|
|
20481
21423
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20482
21424
|
let headers : {[key: string ]: string} = { };
|
|
20483
21425
|
return await this.describeInstanceLogWithOptions(request, headers, runtime);
|
|
20484
21426
|
}
|
|
20485
21427
|
|
|
21428
|
+
/**
|
|
21429
|
+
* @param headers map
|
|
21430
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21431
|
+
* @return DescribeInstanceSpecificationsResponse
|
|
21432
|
+
*/
|
|
20486
21433
|
async describeInstanceSpecificationsWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceSpecificationsResponse> {
|
|
20487
21434
|
let req = new $OpenApi.OpenApiRequest({
|
|
20488
21435
|
headers: headers,
|
|
@@ -20501,12 +21448,23 @@ export default class Client extends OpenApi {
|
|
|
20501
21448
|
return $tea.cast<DescribeInstanceSpecificationsResponse>(await this.callApi(params, req, runtime), new DescribeInstanceSpecificationsResponse({}));
|
|
20502
21449
|
}
|
|
20503
21450
|
|
|
21451
|
+
/**
|
|
21452
|
+
* @return DescribeInstanceSpecificationsResponse
|
|
21453
|
+
*/
|
|
20504
21454
|
async describeInstanceSpecifications(): Promise<DescribeInstanceSpecificationsResponse> {
|
|
20505
21455
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20506
21456
|
let headers : {[key: string ]: string} = { };
|
|
20507
21457
|
return await this.describeInstanceSpecificationsWithOptions(headers, runtime);
|
|
20508
21458
|
}
|
|
20509
21459
|
|
|
21460
|
+
/**
|
|
21461
|
+
* @summary Queries the configurations of a job template.
|
|
21462
|
+
*
|
|
21463
|
+
* @param request DescribeJobRequest
|
|
21464
|
+
* @param headers map
|
|
21465
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21466
|
+
* @return DescribeJobResponse
|
|
21467
|
+
*/
|
|
20510
21468
|
async describeJobWithOptions(request: DescribeJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeJobResponse> {
|
|
20511
21469
|
Util.validateModel(request);
|
|
20512
21470
|
let query : {[key: string ]: any} = { };
|
|
@@ -20536,12 +21494,26 @@ export default class Client extends OpenApi {
|
|
|
20536
21494
|
return $tea.cast<DescribeJobResponse>(await this.callApi(params, req, runtime), new DescribeJobResponse({}));
|
|
20537
21495
|
}
|
|
20538
21496
|
|
|
21497
|
+
/**
|
|
21498
|
+
* @summary Queries the configurations of a job template.
|
|
21499
|
+
*
|
|
21500
|
+
* @param request DescribeJobRequest
|
|
21501
|
+
* @return DescribeJobResponse
|
|
21502
|
+
*/
|
|
20539
21503
|
async describeJob(request: DescribeJobRequest): Promise<DescribeJobResponse> {
|
|
20540
21504
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20541
21505
|
let headers : {[key: string ]: string} = { };
|
|
20542
21506
|
return await this.describeJobWithOptions(request, headers, runtime);
|
|
20543
21507
|
}
|
|
20544
21508
|
|
|
21509
|
+
/**
|
|
21510
|
+
* @summary Query the information about jobs.
|
|
21511
|
+
*
|
|
21512
|
+
* @param request DescribeJobHistoryRequest
|
|
21513
|
+
* @param headers map
|
|
21514
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21515
|
+
* @return DescribeJobHistoryResponse
|
|
21516
|
+
*/
|
|
20545
21517
|
async describeJobHistoryWithOptions(request: DescribeJobHistoryRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeJobHistoryResponse> {
|
|
20546
21518
|
Util.validateModel(request);
|
|
20547
21519
|
let query : {[key: string ]: any} = { };
|
|
@@ -20579,12 +21551,26 @@ export default class Client extends OpenApi {
|
|
|
20579
21551
|
return $tea.cast<DescribeJobHistoryResponse>(await this.callApi(params, req, runtime), new DescribeJobHistoryResponse({}));
|
|
20580
21552
|
}
|
|
20581
21553
|
|
|
21554
|
+
/**
|
|
21555
|
+
* @summary Query the information about jobs.
|
|
21556
|
+
*
|
|
21557
|
+
* @param request DescribeJobHistoryRequest
|
|
21558
|
+
* @return DescribeJobHistoryResponse
|
|
21559
|
+
*/
|
|
20582
21560
|
async describeJobHistory(request: DescribeJobHistoryRequest): Promise<DescribeJobHistoryResponse> {
|
|
20583
21561
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20584
21562
|
let headers : {[key: string ]: string} = { };
|
|
20585
21563
|
return await this.describeJobHistoryWithOptions(request, headers, runtime);
|
|
20586
21564
|
}
|
|
20587
21565
|
|
|
21566
|
+
/**
|
|
21567
|
+
* @summary Queries the status of a job.
|
|
21568
|
+
*
|
|
21569
|
+
* @param request DescribeJobStatusRequest
|
|
21570
|
+
* @param headers map
|
|
21571
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21572
|
+
* @return DescribeJobStatusResponse
|
|
21573
|
+
*/
|
|
20588
21574
|
async describeJobStatusWithOptions(request: DescribeJobStatusRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeJobStatusResponse> {
|
|
20589
21575
|
Util.validateModel(request);
|
|
20590
21576
|
let query : {[key: string ]: any} = { };
|
|
@@ -20614,12 +21600,26 @@ export default class Client extends OpenApi {
|
|
|
20614
21600
|
return $tea.cast<DescribeJobStatusResponse>(await this.callApi(params, req, runtime), new DescribeJobStatusResponse({}));
|
|
20615
21601
|
}
|
|
20616
21602
|
|
|
21603
|
+
/**
|
|
21604
|
+
* @summary Queries the status of a job.
|
|
21605
|
+
*
|
|
21606
|
+
* @param request DescribeJobStatusRequest
|
|
21607
|
+
* @return DescribeJobStatusResponse
|
|
21608
|
+
*/
|
|
20617
21609
|
async describeJobStatus(request: DescribeJobStatusRequest): Promise<DescribeJobStatusResponse> {
|
|
20618
21610
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20619
21611
|
let headers : {[key: string ]: string} = { };
|
|
20620
21612
|
return await this.describeJobStatusWithOptions(request, headers, runtime);
|
|
20621
21613
|
}
|
|
20622
21614
|
|
|
21615
|
+
/**
|
|
21616
|
+
* @summary Queries the details of a namespace.
|
|
21617
|
+
*
|
|
21618
|
+
* @param request DescribeNamespaceRequest
|
|
21619
|
+
* @param headers map
|
|
21620
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21621
|
+
* @return DescribeNamespaceResponse
|
|
21622
|
+
*/
|
|
20623
21623
|
async describeNamespaceWithOptions(request: DescribeNamespaceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNamespaceResponse> {
|
|
20624
21624
|
Util.validateModel(request);
|
|
20625
21625
|
let query : {[key: string ]: any} = { };
|
|
@@ -20649,12 +21649,24 @@ export default class Client extends OpenApi {
|
|
|
20649
21649
|
return $tea.cast<DescribeNamespaceResponse>(await this.callApi(params, req, runtime), new DescribeNamespaceResponse({}));
|
|
20650
21650
|
}
|
|
20651
21651
|
|
|
21652
|
+
/**
|
|
21653
|
+
* @summary Queries the details of a namespace.
|
|
21654
|
+
*
|
|
21655
|
+
* @param request DescribeNamespaceRequest
|
|
21656
|
+
* @return DescribeNamespaceResponse
|
|
21657
|
+
*/
|
|
20652
21658
|
async describeNamespace(request: DescribeNamespaceRequest): Promise<DescribeNamespaceResponse> {
|
|
20653
21659
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20654
21660
|
let headers : {[key: string ]: string} = { };
|
|
20655
21661
|
return await this.describeNamespaceWithOptions(request, headers, runtime);
|
|
20656
21662
|
}
|
|
20657
21663
|
|
|
21664
|
+
/**
|
|
21665
|
+
* @param request DescribeNamespaceListRequest
|
|
21666
|
+
* @param headers map
|
|
21667
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21668
|
+
* @return DescribeNamespaceListResponse
|
|
21669
|
+
*/
|
|
20658
21670
|
async describeNamespaceListWithOptions(request: DescribeNamespaceListRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNamespaceListResponse> {
|
|
20659
21671
|
Util.validateModel(request);
|
|
20660
21672
|
let query : {[key: string ]: any} = { };
|
|
@@ -20684,12 +21696,22 @@ export default class Client extends OpenApi {
|
|
|
20684
21696
|
return $tea.cast<DescribeNamespaceListResponse>(await this.callApi(params, req, runtime), new DescribeNamespaceListResponse({}));
|
|
20685
21697
|
}
|
|
20686
21698
|
|
|
21699
|
+
/**
|
|
21700
|
+
* @param request DescribeNamespaceListRequest
|
|
21701
|
+
* @return DescribeNamespaceListResponse
|
|
21702
|
+
*/
|
|
20687
21703
|
async describeNamespaceList(request: DescribeNamespaceListRequest): Promise<DescribeNamespaceListResponse> {
|
|
20688
21704
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20689
21705
|
let headers : {[key: string ]: string} = { };
|
|
20690
21706
|
return await this.describeNamespaceListWithOptions(request, headers, runtime);
|
|
20691
21707
|
}
|
|
20692
21708
|
|
|
21709
|
+
/**
|
|
21710
|
+
* @param request DescribeNamespaceResourcesRequest
|
|
21711
|
+
* @param headers map
|
|
21712
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21713
|
+
* @return DescribeNamespaceResourcesResponse
|
|
21714
|
+
*/
|
|
20693
21715
|
async describeNamespaceResourcesWithOptions(request: DescribeNamespaceResourcesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNamespaceResourcesResponse> {
|
|
20694
21716
|
Util.validateModel(request);
|
|
20695
21717
|
let query : {[key: string ]: any} = { };
|
|
@@ -20719,12 +21741,24 @@ export default class Client extends OpenApi {
|
|
|
20719
21741
|
return $tea.cast<DescribeNamespaceResourcesResponse>(await this.callApi(params, req, runtime), new DescribeNamespaceResourcesResponse({}));
|
|
20720
21742
|
}
|
|
20721
21743
|
|
|
21744
|
+
/**
|
|
21745
|
+
* @param request DescribeNamespaceResourcesRequest
|
|
21746
|
+
* @return DescribeNamespaceResourcesResponse
|
|
21747
|
+
*/
|
|
20722
21748
|
async describeNamespaceResources(request: DescribeNamespaceResourcesRequest): Promise<DescribeNamespaceResourcesResponse> {
|
|
20723
21749
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20724
21750
|
let headers : {[key: string ]: string} = { };
|
|
20725
21751
|
return await this.describeNamespaceResourcesWithOptions(request, headers, runtime);
|
|
20726
21752
|
}
|
|
20727
21753
|
|
|
21754
|
+
/**
|
|
21755
|
+
* @summary Queries the details of namespaces.
|
|
21756
|
+
*
|
|
21757
|
+
* @param request DescribeNamespacesRequest
|
|
21758
|
+
* @param headers map
|
|
21759
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21760
|
+
* @return DescribeNamespacesResponse
|
|
21761
|
+
*/
|
|
20728
21762
|
async describeNamespacesWithOptions(request: DescribeNamespacesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNamespacesResponse> {
|
|
20729
21763
|
Util.validateModel(request);
|
|
20730
21764
|
let query : {[key: string ]: any} = { };
|
|
@@ -20754,12 +21788,26 @@ export default class Client extends OpenApi {
|
|
|
20754
21788
|
return $tea.cast<DescribeNamespacesResponse>(await this.callApi(params, req, runtime), new DescribeNamespacesResponse({}));
|
|
20755
21789
|
}
|
|
20756
21790
|
|
|
21791
|
+
/**
|
|
21792
|
+
* @summary Queries the details of namespaces.
|
|
21793
|
+
*
|
|
21794
|
+
* @param request DescribeNamespacesRequest
|
|
21795
|
+
* @return DescribeNamespacesResponse
|
|
21796
|
+
*/
|
|
20757
21797
|
async describeNamespaces(request: DescribeNamespacesRequest): Promise<DescribeNamespacesResponse> {
|
|
20758
21798
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20759
21799
|
let headers : {[key: string ]: string} = { };
|
|
20760
21800
|
return await this.describeNamespacesWithOptions(request, headers, runtime);
|
|
20761
21801
|
}
|
|
20762
21802
|
|
|
21803
|
+
/**
|
|
21804
|
+
* @summary Queries the information of a batch.
|
|
21805
|
+
*
|
|
21806
|
+
* @param request DescribePipelineRequest
|
|
21807
|
+
* @param headers map
|
|
21808
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21809
|
+
* @return DescribePipelineResponse
|
|
21810
|
+
*/
|
|
20763
21811
|
async describePipelineWithOptions(request: DescribePipelineRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribePipelineResponse> {
|
|
20764
21812
|
Util.validateModel(request);
|
|
20765
21813
|
let query : {[key: string ]: any} = { };
|
|
@@ -20785,12 +21833,25 @@ export default class Client extends OpenApi {
|
|
|
20785
21833
|
return $tea.cast<DescribePipelineResponse>(await this.callApi(params, req, runtime), new DescribePipelineResponse({}));
|
|
20786
21834
|
}
|
|
20787
21835
|
|
|
21836
|
+
/**
|
|
21837
|
+
* @summary Queries the information of a batch.
|
|
21838
|
+
*
|
|
21839
|
+
* @param request DescribePipelineRequest
|
|
21840
|
+
* @return DescribePipelineResponse
|
|
21841
|
+
*/
|
|
20788
21842
|
async describePipeline(request: DescribePipelineRequest): Promise<DescribePipelineResponse> {
|
|
20789
21843
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20790
21844
|
let headers : {[key: string ]: string} = { };
|
|
20791
21845
|
return await this.describePipelineWithOptions(request, headers, runtime);
|
|
20792
21846
|
}
|
|
20793
21847
|
|
|
21848
|
+
/**
|
|
21849
|
+
* @summary Queries available regions.
|
|
21850
|
+
*
|
|
21851
|
+
* @param headers map
|
|
21852
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21853
|
+
* @return DescribeRegionsResponse
|
|
21854
|
+
*/
|
|
20794
21855
|
async describeRegionsWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse> {
|
|
20795
21856
|
let req = new $OpenApi.OpenApiRequest({
|
|
20796
21857
|
headers: headers,
|
|
@@ -20809,12 +21870,25 @@ export default class Client extends OpenApi {
|
|
|
20809
21870
|
return $tea.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
20810
21871
|
}
|
|
20811
21872
|
|
|
21873
|
+
/**
|
|
21874
|
+
* @summary Queries available regions.
|
|
21875
|
+
*
|
|
21876
|
+
* @return DescribeRegionsResponse
|
|
21877
|
+
*/
|
|
20812
21878
|
async describeRegions(): Promise<DescribeRegionsResponse> {
|
|
20813
21879
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20814
21880
|
let headers : {[key: string ]: string} = { };
|
|
20815
21881
|
return await this.describeRegionsWithOptions(headers, runtime);
|
|
20816
21882
|
}
|
|
20817
21883
|
|
|
21884
|
+
/**
|
|
21885
|
+
* @summary Queries the details of a Secret instance.
|
|
21886
|
+
*
|
|
21887
|
+
* @param request DescribeSecretRequest
|
|
21888
|
+
* @param headers map
|
|
21889
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21890
|
+
* @return DescribeSecretResponse
|
|
21891
|
+
*/
|
|
20818
21892
|
async describeSecretWithOptions(request: DescribeSecretRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeSecretResponse> {
|
|
20819
21893
|
Util.validateModel(request);
|
|
20820
21894
|
let query : {[key: string ]: any} = { };
|
|
@@ -20844,12 +21918,24 @@ export default class Client extends OpenApi {
|
|
|
20844
21918
|
return $tea.cast<DescribeSecretResponse>(await this.callApi(params, req, runtime), new DescribeSecretResponse({}));
|
|
20845
21919
|
}
|
|
20846
21920
|
|
|
21921
|
+
/**
|
|
21922
|
+
* @summary Queries the details of a Secret instance.
|
|
21923
|
+
*
|
|
21924
|
+
* @param request DescribeSecretRequest
|
|
21925
|
+
* @return DescribeSecretResponse
|
|
21926
|
+
*/
|
|
20847
21927
|
async describeSecret(request: DescribeSecretRequest): Promise<DescribeSecretResponse> {
|
|
20848
21928
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20849
21929
|
let headers : {[key: string ]: string} = { };
|
|
20850
21930
|
return await this.describeSecretWithOptions(request, headers, runtime);
|
|
20851
21931
|
}
|
|
20852
21932
|
|
|
21933
|
+
/**
|
|
21934
|
+
* @param request DisableApplicationScalingRuleRequest
|
|
21935
|
+
* @param headers map
|
|
21936
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21937
|
+
* @return DisableApplicationScalingRuleResponse
|
|
21938
|
+
*/
|
|
20853
21939
|
async disableApplicationScalingRuleWithOptions(request: DisableApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DisableApplicationScalingRuleResponse> {
|
|
20854
21940
|
Util.validateModel(request);
|
|
20855
21941
|
let query : {[key: string ]: any} = { };
|
|
@@ -20879,12 +21965,24 @@ export default class Client extends OpenApi {
|
|
|
20879
21965
|
return $tea.cast<DisableApplicationScalingRuleResponse>(await this.callApi(params, req, runtime), new DisableApplicationScalingRuleResponse({}));
|
|
20880
21966
|
}
|
|
20881
21967
|
|
|
21968
|
+
/**
|
|
21969
|
+
* @param request DisableApplicationScalingRuleRequest
|
|
21970
|
+
* @return DisableApplicationScalingRuleResponse
|
|
21971
|
+
*/
|
|
20882
21972
|
async disableApplicationScalingRule(request: DisableApplicationScalingRuleRequest): Promise<DisableApplicationScalingRuleResponse> {
|
|
20883
21973
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20884
21974
|
let headers : {[key: string ]: string} = { };
|
|
20885
21975
|
return await this.disableApplicationScalingRuleWithOptions(request, headers, runtime);
|
|
20886
21976
|
}
|
|
20887
21977
|
|
|
21978
|
+
/**
|
|
21979
|
+
* @summary Enables an auto scaling policy for an application.
|
|
21980
|
+
*
|
|
21981
|
+
* @param request EnableApplicationScalingRuleRequest
|
|
21982
|
+
* @param headers map
|
|
21983
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21984
|
+
* @return EnableApplicationScalingRuleResponse
|
|
21985
|
+
*/
|
|
20888
21986
|
async enableApplicationScalingRuleWithOptions(request: EnableApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<EnableApplicationScalingRuleResponse> {
|
|
20889
21987
|
Util.validateModel(request);
|
|
20890
21988
|
let query : {[key: string ]: any} = { };
|
|
@@ -20914,12 +22012,24 @@ export default class Client extends OpenApi {
|
|
|
20914
22012
|
return $tea.cast<EnableApplicationScalingRuleResponse>(await this.callApi(params, req, runtime), new EnableApplicationScalingRuleResponse({}));
|
|
20915
22013
|
}
|
|
20916
22014
|
|
|
22015
|
+
/**
|
|
22016
|
+
* @summary Enables an auto scaling policy for an application.
|
|
22017
|
+
*
|
|
22018
|
+
* @param request EnableApplicationScalingRuleRequest
|
|
22019
|
+
* @return EnableApplicationScalingRuleResponse
|
|
22020
|
+
*/
|
|
20917
22021
|
async enableApplicationScalingRule(request: EnableApplicationScalingRuleRequest): Promise<EnableApplicationScalingRuleResponse> {
|
|
20918
22022
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20919
22023
|
let headers : {[key: string ]: string} = { };
|
|
20920
22024
|
return await this.enableApplicationScalingRuleWithOptions(request, headers, runtime);
|
|
20921
22025
|
}
|
|
20922
22026
|
|
|
22027
|
+
/**
|
|
22028
|
+
* @param request ExecJobRequest
|
|
22029
|
+
* @param headers map
|
|
22030
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22031
|
+
* @return ExecJobResponse
|
|
22032
|
+
*/
|
|
20923
22033
|
async execJobWithOptions(request: ExecJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ExecJobResponse> {
|
|
20924
22034
|
Util.validateModel(request);
|
|
20925
22035
|
let query : {[key: string ]: any} = { };
|
|
@@ -20981,15 +22091,35 @@ export default class Client extends OpenApi {
|
|
|
20981
22091
|
return $tea.cast<ExecJobResponse>(await this.callApi(params, req, runtime), new ExecJobResponse({}));
|
|
20982
22092
|
}
|
|
20983
22093
|
|
|
22094
|
+
/**
|
|
22095
|
+
* @param request ExecJobRequest
|
|
22096
|
+
* @return ExecJobResponse
|
|
22097
|
+
*/
|
|
20984
22098
|
async execJob(request: ExecJobRequest): Promise<ExecJobResponse> {
|
|
20985
22099
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20986
22100
|
let headers : {[key: string ]: string} = { };
|
|
20987
22101
|
return await this.execJobWithOptions(request, headers, runtime);
|
|
20988
22102
|
}
|
|
20989
22103
|
|
|
22104
|
+
/**
|
|
22105
|
+
* @summary Queries the top N applications in Application Monitoring.
|
|
22106
|
+
*
|
|
22107
|
+
* @param request GetArmsTopNMetricRequest
|
|
22108
|
+
* @param headers map
|
|
22109
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22110
|
+
* @return GetArmsTopNMetricResponse
|
|
22111
|
+
*/
|
|
20990
22112
|
async getArmsTopNMetricWithOptions(request: GetArmsTopNMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetArmsTopNMetricResponse> {
|
|
20991
22113
|
Util.validateModel(request);
|
|
20992
22114
|
let query : {[key: string ]: any} = { };
|
|
22115
|
+
if (!Util.isUnset(request.appSource)) {
|
|
22116
|
+
query["AppSource"] = request.appSource;
|
|
22117
|
+
}
|
|
22118
|
+
|
|
22119
|
+
if (!Util.isUnset(request.cpuStrategy)) {
|
|
22120
|
+
query["CpuStrategy"] = request.cpuStrategy;
|
|
22121
|
+
}
|
|
22122
|
+
|
|
20993
22123
|
if (!Util.isUnset(request.endTime)) {
|
|
20994
22124
|
query["EndTime"] = request.endTime;
|
|
20995
22125
|
}
|
|
@@ -21028,15 +22158,37 @@ export default class Client extends OpenApi {
|
|
|
21028
22158
|
return $tea.cast<GetArmsTopNMetricResponse>(await this.callApi(params, req, runtime), new GetArmsTopNMetricResponse({}));
|
|
21029
22159
|
}
|
|
21030
22160
|
|
|
22161
|
+
/**
|
|
22162
|
+
* @summary Queries the top N applications in Application Monitoring.
|
|
22163
|
+
*
|
|
22164
|
+
* @param request GetArmsTopNMetricRequest
|
|
22165
|
+
* @return GetArmsTopNMetricResponse
|
|
22166
|
+
*/
|
|
21031
22167
|
async getArmsTopNMetric(request: GetArmsTopNMetricRequest): Promise<GetArmsTopNMetricResponse> {
|
|
21032
22168
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21033
22169
|
let headers : {[key: string ]: string} = { };
|
|
21034
22170
|
return await this.getArmsTopNMetricWithOptions(request, headers, runtime);
|
|
21035
22171
|
}
|
|
21036
22172
|
|
|
22173
|
+
/**
|
|
22174
|
+
* @summary Queries the top N applications in which abnormal instances exist. The applications are sorted by the total number of abnormal instances.
|
|
22175
|
+
*
|
|
22176
|
+
* @param request GetAvailabilityMetricRequest
|
|
22177
|
+
* @param headers map
|
|
22178
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22179
|
+
* @return GetAvailabilityMetricResponse
|
|
22180
|
+
*/
|
|
21037
22181
|
async getAvailabilityMetricWithOptions(request: GetAvailabilityMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetAvailabilityMetricResponse> {
|
|
21038
22182
|
Util.validateModel(request);
|
|
21039
22183
|
let query : {[key: string ]: any} = { };
|
|
22184
|
+
if (!Util.isUnset(request.appSource)) {
|
|
22185
|
+
query["AppSource"] = request.appSource;
|
|
22186
|
+
}
|
|
22187
|
+
|
|
22188
|
+
if (!Util.isUnset(request.cpuStrategy)) {
|
|
22189
|
+
query["CpuStrategy"] = request.cpuStrategy;
|
|
22190
|
+
}
|
|
22191
|
+
|
|
21040
22192
|
if (!Util.isUnset(request.limit)) {
|
|
21041
22193
|
query["Limit"] = request.limit;
|
|
21042
22194
|
}
|
|
@@ -21063,15 +22215,37 @@ export default class Client extends OpenApi {
|
|
|
21063
22215
|
return $tea.cast<GetAvailabilityMetricResponse>(await this.callApi(params, req, runtime), new GetAvailabilityMetricResponse({}));
|
|
21064
22216
|
}
|
|
21065
22217
|
|
|
22218
|
+
/**
|
|
22219
|
+
* @summary Queries the top N applications in which abnormal instances exist. The applications are sorted by the total number of abnormal instances.
|
|
22220
|
+
*
|
|
22221
|
+
* @param request GetAvailabilityMetricRequest
|
|
22222
|
+
* @return GetAvailabilityMetricResponse
|
|
22223
|
+
*/
|
|
21066
22224
|
async getAvailabilityMetric(request: GetAvailabilityMetricRequest): Promise<GetAvailabilityMetricResponse> {
|
|
21067
22225
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21068
22226
|
let headers : {[key: string ]: string} = { };
|
|
21069
22227
|
return await this.getAvailabilityMetricWithOptions(request, headers, runtime);
|
|
21070
22228
|
}
|
|
21071
22229
|
|
|
22230
|
+
/**
|
|
22231
|
+
* @summary Queries top N applications in abnormal change orders.
|
|
22232
|
+
*
|
|
22233
|
+
* @param request GetChangeOrderMetricRequest
|
|
22234
|
+
* @param headers map
|
|
22235
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22236
|
+
* @return GetChangeOrderMetricResponse
|
|
22237
|
+
*/
|
|
21072
22238
|
async getChangeOrderMetricWithOptions(request: GetChangeOrderMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetChangeOrderMetricResponse> {
|
|
21073
22239
|
Util.validateModel(request);
|
|
21074
22240
|
let query : {[key: string ]: any} = { };
|
|
22241
|
+
if (!Util.isUnset(request.appSource)) {
|
|
22242
|
+
query["AppSource"] = request.appSource;
|
|
22243
|
+
}
|
|
22244
|
+
|
|
22245
|
+
if (!Util.isUnset(request.cpuStrategy)) {
|
|
22246
|
+
query["CpuStrategy"] = request.cpuStrategy;
|
|
22247
|
+
}
|
|
22248
|
+
|
|
21075
22249
|
if (!Util.isUnset(request.createTime)) {
|
|
21076
22250
|
query["CreateTime"] = request.createTime;
|
|
21077
22251
|
}
|
|
@@ -21106,15 +22280,37 @@ export default class Client extends OpenApi {
|
|
|
21106
22280
|
return $tea.cast<GetChangeOrderMetricResponse>(await this.callApi(params, req, runtime), new GetChangeOrderMetricResponse({}));
|
|
21107
22281
|
}
|
|
21108
22282
|
|
|
22283
|
+
/**
|
|
22284
|
+
* @summary Queries top N applications in abnormal change orders.
|
|
22285
|
+
*
|
|
22286
|
+
* @param request GetChangeOrderMetricRequest
|
|
22287
|
+
* @return GetChangeOrderMetricResponse
|
|
22288
|
+
*/
|
|
21109
22289
|
async getChangeOrderMetric(request: GetChangeOrderMetricRequest): Promise<GetChangeOrderMetricResponse> {
|
|
21110
22290
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21111
22291
|
let headers : {[key: string ]: string} = { };
|
|
21112
22292
|
return await this.getChangeOrderMetricWithOptions(request, headers, runtime);
|
|
21113
22293
|
}
|
|
21114
22294
|
|
|
22295
|
+
/**
|
|
22296
|
+
* @summary Queries the top N applications in which auto scaling takes effect.
|
|
22297
|
+
*
|
|
22298
|
+
* @param request GetScaleAppMetricRequest
|
|
22299
|
+
* @param headers map
|
|
22300
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22301
|
+
* @return GetScaleAppMetricResponse
|
|
22302
|
+
*/
|
|
21115
22303
|
async getScaleAppMetricWithOptions(request: GetScaleAppMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetScaleAppMetricResponse> {
|
|
21116
22304
|
Util.validateModel(request);
|
|
21117
22305
|
let query : {[key: string ]: any} = { };
|
|
22306
|
+
if (!Util.isUnset(request.appSource)) {
|
|
22307
|
+
query["AppSource"] = request.appSource;
|
|
22308
|
+
}
|
|
22309
|
+
|
|
22310
|
+
if (!Util.isUnset(request.cpuStrategy)) {
|
|
22311
|
+
query["CpuStrategy"] = request.cpuStrategy;
|
|
22312
|
+
}
|
|
22313
|
+
|
|
21118
22314
|
if (!Util.isUnset(request.limit)) {
|
|
21119
22315
|
query["Limit"] = request.limit;
|
|
21120
22316
|
}
|
|
@@ -21141,15 +22337,37 @@ export default class Client extends OpenApi {
|
|
|
21141
22337
|
return $tea.cast<GetScaleAppMetricResponse>(await this.callApi(params, req, runtime), new GetScaleAppMetricResponse({}));
|
|
21142
22338
|
}
|
|
21143
22339
|
|
|
22340
|
+
/**
|
|
22341
|
+
* @summary Queries the top N applications in which auto scaling takes effect.
|
|
22342
|
+
*
|
|
22343
|
+
* @param request GetScaleAppMetricRequest
|
|
22344
|
+
* @return GetScaleAppMetricResponse
|
|
22345
|
+
*/
|
|
21144
22346
|
async getScaleAppMetric(request: GetScaleAppMetricRequest): Promise<GetScaleAppMetricResponse> {
|
|
21145
22347
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21146
22348
|
let headers : {[key: string ]: string} = { };
|
|
21147
22349
|
return await this.getScaleAppMetricWithOptions(request, headers, runtime);
|
|
21148
22350
|
}
|
|
21149
22351
|
|
|
22352
|
+
/**
|
|
22353
|
+
* @summary Queries the top N applications in which Warning events occur.
|
|
22354
|
+
*
|
|
22355
|
+
* @param request GetWarningEventMetricRequest
|
|
22356
|
+
* @param headers map
|
|
22357
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22358
|
+
* @return GetWarningEventMetricResponse
|
|
22359
|
+
*/
|
|
21150
22360
|
async getWarningEventMetricWithOptions(request: GetWarningEventMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetWarningEventMetricResponse> {
|
|
21151
22361
|
Util.validateModel(request);
|
|
21152
22362
|
let query : {[key: string ]: any} = { };
|
|
22363
|
+
if (!Util.isUnset(request.appSource)) {
|
|
22364
|
+
query["AppSource"] = request.appSource;
|
|
22365
|
+
}
|
|
22366
|
+
|
|
22367
|
+
if (!Util.isUnset(request.cpuStrategy)) {
|
|
22368
|
+
query["CpuStrategy"] = request.cpuStrategy;
|
|
22369
|
+
}
|
|
22370
|
+
|
|
21153
22371
|
if (!Util.isUnset(request.endTime)) {
|
|
21154
22372
|
query["EndTime"] = request.endTime;
|
|
21155
22373
|
}
|
|
@@ -21184,12 +22402,26 @@ export default class Client extends OpenApi {
|
|
|
21184
22402
|
return $tea.cast<GetWarningEventMetricResponse>(await this.callApi(params, req, runtime), new GetWarningEventMetricResponse({}));
|
|
21185
22403
|
}
|
|
21186
22404
|
|
|
22405
|
+
/**
|
|
22406
|
+
* @summary Queries the top N applications in which Warning events occur.
|
|
22407
|
+
*
|
|
22408
|
+
* @param request GetWarningEventMetricRequest
|
|
22409
|
+
* @return GetWarningEventMetricResponse
|
|
22410
|
+
*/
|
|
21187
22411
|
async getWarningEventMetric(request: GetWarningEventMetricRequest): Promise<GetWarningEventMetricResponse> {
|
|
21188
22412
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21189
22413
|
let headers : {[key: string ]: string} = { };
|
|
21190
22414
|
return await this.getWarningEventMetricWithOptions(request, headers, runtime);
|
|
21191
22415
|
}
|
|
21192
22416
|
|
|
22417
|
+
/**
|
|
22418
|
+
* @summary Queries the events that occurred in an application.
|
|
22419
|
+
*
|
|
22420
|
+
* @param request ListAppEventsRequest
|
|
22421
|
+
* @param headers map
|
|
22422
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22423
|
+
* @return ListAppEventsResponse
|
|
22424
|
+
*/
|
|
21193
22425
|
async listAppEventsWithOptions(request: ListAppEventsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListAppEventsResponse> {
|
|
21194
22426
|
Util.validateModel(request);
|
|
21195
22427
|
let query : {[key: string ]: any} = { };
|
|
@@ -21243,12 +22475,26 @@ export default class Client extends OpenApi {
|
|
|
21243
22475
|
return $tea.cast<ListAppEventsResponse>(await this.callApi(params, req, runtime), new ListAppEventsResponse({}));
|
|
21244
22476
|
}
|
|
21245
22477
|
|
|
22478
|
+
/**
|
|
22479
|
+
* @summary Queries the events that occurred in an application.
|
|
22480
|
+
*
|
|
22481
|
+
* @param request ListAppEventsRequest
|
|
22482
|
+
* @return ListAppEventsResponse
|
|
22483
|
+
*/
|
|
21246
22484
|
async listAppEvents(request: ListAppEventsRequest): Promise<ListAppEventsResponse> {
|
|
21247
22485
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21248
22486
|
let headers : {[key: string ]: string} = { };
|
|
21249
22487
|
return await this.listAppEventsWithOptions(request, headers, runtime);
|
|
21250
22488
|
}
|
|
21251
22489
|
|
|
22490
|
+
/**
|
|
22491
|
+
* @summary 6dcc8c9e-d3da-478a-a066-86dcf820\\*\\*\\*\\*
|
|
22492
|
+
*
|
|
22493
|
+
* @param request ListAppServicesPageRequest
|
|
22494
|
+
* @param headers map
|
|
22495
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22496
|
+
* @return ListAppServicesPageResponse
|
|
22497
|
+
*/
|
|
21252
22498
|
async listAppServicesPageWithOptions(request: ListAppServicesPageRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListAppServicesPageResponse> {
|
|
21253
22499
|
Util.validateModel(request);
|
|
21254
22500
|
let query : {[key: string ]: any} = { };
|
|
@@ -21286,12 +22532,26 @@ export default class Client extends OpenApi {
|
|
|
21286
22532
|
return $tea.cast<ListAppServicesPageResponse>(await this.callApi(params, req, runtime), new ListAppServicesPageResponse({}));
|
|
21287
22533
|
}
|
|
21288
22534
|
|
|
22535
|
+
/**
|
|
22536
|
+
* @summary 6dcc8c9e-d3da-478a-a066-86dcf820\\*\\*\\*\\*
|
|
22537
|
+
*
|
|
22538
|
+
* @param request ListAppServicesPageRequest
|
|
22539
|
+
* @return ListAppServicesPageResponse
|
|
22540
|
+
*/
|
|
21289
22541
|
async listAppServicesPage(request: ListAppServicesPageRequest): Promise<ListAppServicesPageResponse> {
|
|
21290
22542
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21291
22543
|
let headers : {[key: string ]: string} = { };
|
|
21292
22544
|
return await this.listAppServicesPageWithOptions(request, headers, runtime);
|
|
21293
22545
|
}
|
|
21294
22546
|
|
|
22547
|
+
/**
|
|
22548
|
+
* @summary 7171a6ca-d1cd-4928-8642-7d5cfe69\\*\\*\\*\\*
|
|
22549
|
+
*
|
|
22550
|
+
* @param request ListAppVersionsRequest
|
|
22551
|
+
* @param headers map
|
|
22552
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22553
|
+
* @return ListAppVersionsResponse
|
|
22554
|
+
*/
|
|
21295
22555
|
async listAppVersionsWithOptions(request: ListAppVersionsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListAppVersionsResponse> {
|
|
21296
22556
|
Util.validateModel(request);
|
|
21297
22557
|
let query : {[key: string ]: any} = { };
|
|
@@ -21317,12 +22577,26 @@ export default class Client extends OpenApi {
|
|
|
21317
22577
|
return $tea.cast<ListAppVersionsResponse>(await this.callApi(params, req, runtime), new ListAppVersionsResponse({}));
|
|
21318
22578
|
}
|
|
21319
22579
|
|
|
22580
|
+
/**
|
|
22581
|
+
* @summary 7171a6ca-d1cd-4928-8642-7d5cfe69\\*\\*\\*\\*
|
|
22582
|
+
*
|
|
22583
|
+
* @param request ListAppVersionsRequest
|
|
22584
|
+
* @return ListAppVersionsResponse
|
|
22585
|
+
*/
|
|
21320
22586
|
async listAppVersions(request: ListAppVersionsRequest): Promise<ListAppVersionsResponse> {
|
|
21321
22587
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21322
22588
|
let headers : {[key: string ]: string} = { };
|
|
21323
22589
|
return await this.listAppVersionsWithOptions(request, headers, runtime);
|
|
21324
22590
|
}
|
|
21325
22591
|
|
|
22592
|
+
/**
|
|
22593
|
+
* @summary The ID of the namespace.
|
|
22594
|
+
*
|
|
22595
|
+
* @param request ListApplicationsRequest
|
|
22596
|
+
* @param headers map
|
|
22597
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22598
|
+
* @return ListApplicationsResponse
|
|
22599
|
+
*/
|
|
21326
22600
|
async listApplicationsWithOptions(request: ListApplicationsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListApplicationsResponse> {
|
|
21327
22601
|
Util.validateModel(request);
|
|
21328
22602
|
let query : {[key: string ]: any} = { };
|
|
@@ -21384,12 +22658,24 @@ export default class Client extends OpenApi {
|
|
|
21384
22658
|
return $tea.cast<ListApplicationsResponse>(await this.callApi(params, req, runtime), new ListApplicationsResponse({}));
|
|
21385
22659
|
}
|
|
21386
22660
|
|
|
22661
|
+
/**
|
|
22662
|
+
* @summary The ID of the namespace.
|
|
22663
|
+
*
|
|
22664
|
+
* @param request ListApplicationsRequest
|
|
22665
|
+
* @return ListApplicationsResponse
|
|
22666
|
+
*/
|
|
21387
22667
|
async listApplications(request: ListApplicationsRequest): Promise<ListApplicationsResponse> {
|
|
21388
22668
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21389
22669
|
let headers : {[key: string ]: string} = { };
|
|
21390
22670
|
return await this.listApplicationsWithOptions(request, headers, runtime);
|
|
21391
22671
|
}
|
|
21392
22672
|
|
|
22673
|
+
/**
|
|
22674
|
+
* @param request ListChangeOrdersRequest
|
|
22675
|
+
* @param headers map
|
|
22676
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22677
|
+
* @return ListChangeOrdersResponse
|
|
22678
|
+
*/
|
|
21393
22679
|
async listChangeOrdersWithOptions(request: ListChangeOrdersRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListChangeOrdersResponse> {
|
|
21394
22680
|
Util.validateModel(request);
|
|
21395
22681
|
let query : {[key: string ]: any} = { };
|
|
@@ -21435,12 +22721,24 @@ export default class Client extends OpenApi {
|
|
|
21435
22721
|
return $tea.cast<ListChangeOrdersResponse>(await this.callApi(params, req, runtime), new ListChangeOrdersResponse({}));
|
|
21436
22722
|
}
|
|
21437
22723
|
|
|
22724
|
+
/**
|
|
22725
|
+
* @param request ListChangeOrdersRequest
|
|
22726
|
+
* @return ListChangeOrdersResponse
|
|
22727
|
+
*/
|
|
21438
22728
|
async listChangeOrders(request: ListChangeOrdersRequest): Promise<ListChangeOrdersResponse> {
|
|
21439
22729
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21440
22730
|
let headers : {[key: string ]: string} = { };
|
|
21441
22731
|
return await this.listChangeOrdersWithOptions(request, headers, runtime);
|
|
21442
22732
|
}
|
|
21443
22733
|
|
|
22734
|
+
/**
|
|
22735
|
+
* @summary b2a8a925-477a-4ed7-b825-d5e22500\\*\\*\\*\\*
|
|
22736
|
+
*
|
|
22737
|
+
* @param request ListConsumedServicesRequest
|
|
22738
|
+
* @param headers map
|
|
22739
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22740
|
+
* @return ListConsumedServicesResponse
|
|
22741
|
+
*/
|
|
21444
22742
|
async listConsumedServicesWithOptions(request: ListConsumedServicesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListConsumedServicesResponse> {
|
|
21445
22743
|
Util.validateModel(request);
|
|
21446
22744
|
let query : {[key: string ]: any} = { };
|
|
@@ -21466,6 +22764,12 @@ export default class Client extends OpenApi {
|
|
|
21466
22764
|
return $tea.cast<ListConsumedServicesResponse>(await this.callApi(params, req, runtime), new ListConsumedServicesResponse({}));
|
|
21467
22765
|
}
|
|
21468
22766
|
|
|
22767
|
+
/**
|
|
22768
|
+
* @summary b2a8a925-477a-4ed7-b825-d5e22500\\*\\*\\*\\*
|
|
22769
|
+
*
|
|
22770
|
+
* @param request ListConsumedServicesRequest
|
|
22771
|
+
* @return ListConsumedServicesResponse
|
|
22772
|
+
*/
|
|
21469
22773
|
async listConsumedServices(request: ListConsumedServicesRequest): Promise<ListConsumedServicesResponse> {
|
|
21470
22774
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21471
22775
|
let headers : {[key: string ]: string} = { };
|
|
@@ -21473,12 +22777,14 @@ export default class Client extends OpenApi {
|
|
|
21473
22777
|
}
|
|
21474
22778
|
|
|
21475
22779
|
/**
|
|
21476
|
-
|
|
21477
|
-
|
|
21478
|
-
|
|
21479
|
-
|
|
21480
|
-
|
|
21481
|
-
|
|
22780
|
+
* @summary Queries the details of a canary release rule based on an application ID.
|
|
22781
|
+
*
|
|
22782
|
+
* @description > You can configure only one canary release rule for each application.
|
|
22783
|
+
*
|
|
22784
|
+
* @param request ListGreyTagRouteRequest
|
|
22785
|
+
* @param headers map
|
|
22786
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22787
|
+
* @return ListGreyTagRouteResponse
|
|
21482
22788
|
*/
|
|
21483
22789
|
async listGreyTagRouteWithOptions(request: ListGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListGreyTagRouteResponse> {
|
|
21484
22790
|
Util.validateModel(request);
|
|
@@ -21506,10 +22812,12 @@ export default class Client extends OpenApi {
|
|
|
21506
22812
|
}
|
|
21507
22813
|
|
|
21508
22814
|
/**
|
|
21509
|
-
|
|
21510
|
-
|
|
21511
|
-
|
|
21512
|
-
|
|
22815
|
+
* @summary Queries the details of a canary release rule based on an application ID.
|
|
22816
|
+
*
|
|
22817
|
+
* @description > You can configure only one canary release rule for each application.
|
|
22818
|
+
*
|
|
22819
|
+
* @param request ListGreyTagRouteRequest
|
|
22820
|
+
* @return ListGreyTagRouteResponse
|
|
21513
22821
|
*/
|
|
21514
22822
|
async listGreyTagRoute(request: ListGreyTagRouteRequest): Promise<ListGreyTagRouteResponse> {
|
|
21515
22823
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -21517,6 +22825,16 @@ export default class Client extends OpenApi {
|
|
|
21517
22825
|
return await this.listGreyTagRouteWithOptions(request, headers, runtime);
|
|
21518
22826
|
}
|
|
21519
22827
|
|
|
22828
|
+
/**
|
|
22829
|
+
* @summary The returned message.
|
|
22830
|
+
* * **success** is returned when the request succeeds.
|
|
22831
|
+
* * An error code is returned when the request fails.
|
|
22832
|
+
*
|
|
22833
|
+
* @param request ListIngressesRequest
|
|
22834
|
+
* @param headers map
|
|
22835
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22836
|
+
* @return ListIngressesResponse
|
|
22837
|
+
*/
|
|
21520
22838
|
async listIngressesWithOptions(request: ListIngressesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListIngressesResponse> {
|
|
21521
22839
|
Util.validateModel(request);
|
|
21522
22840
|
let query : {[key: string ]: any} = { };
|
|
@@ -21546,12 +22864,28 @@ export default class Client extends OpenApi {
|
|
|
21546
22864
|
return $tea.cast<ListIngressesResponse>(await this.callApi(params, req, runtime), new ListIngressesResponse({}));
|
|
21547
22865
|
}
|
|
21548
22866
|
|
|
22867
|
+
/**
|
|
22868
|
+
* @summary The returned message.
|
|
22869
|
+
* * **success** is returned when the request succeeds.
|
|
22870
|
+
* * An error code is returned when the request fails.
|
|
22871
|
+
*
|
|
22872
|
+
* @param request ListIngressesRequest
|
|
22873
|
+
* @return ListIngressesResponse
|
|
22874
|
+
*/
|
|
21549
22875
|
async listIngresses(request: ListIngressesRequest): Promise<ListIngressesResponse> {
|
|
21550
22876
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21551
22877
|
let headers : {[key: string ]: string} = { };
|
|
21552
22878
|
return await this.listIngressesWithOptions(request, headers, runtime);
|
|
21553
22879
|
}
|
|
21554
22880
|
|
|
22881
|
+
/**
|
|
22882
|
+
* @summary Queries the information about job templates.
|
|
22883
|
+
*
|
|
22884
|
+
* @param request ListJobsRequest
|
|
22885
|
+
* @param headers map
|
|
22886
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22887
|
+
* @return ListJobsResponse
|
|
22888
|
+
*/
|
|
21555
22889
|
async listJobsWithOptions(request: ListJobsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListJobsResponse> {
|
|
21556
22890
|
Util.validateModel(request);
|
|
21557
22891
|
let query : {[key: string ]: any} = { };
|
|
@@ -21613,12 +22947,26 @@ export default class Client extends OpenApi {
|
|
|
21613
22947
|
return $tea.cast<ListJobsResponse>(await this.callApi(params, req, runtime), new ListJobsResponse({}));
|
|
21614
22948
|
}
|
|
21615
22949
|
|
|
22950
|
+
/**
|
|
22951
|
+
* @summary Queries the information about job templates.
|
|
22952
|
+
*
|
|
22953
|
+
* @param request ListJobsRequest
|
|
22954
|
+
* @return ListJobsResponse
|
|
22955
|
+
*/
|
|
21616
22956
|
async listJobs(request: ListJobsRequest): Promise<ListJobsResponse> {
|
|
21617
22957
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21618
22958
|
let headers : {[key: string ]: string} = { };
|
|
21619
22959
|
return await this.listJobsWithOptions(request, headers, runtime);
|
|
21620
22960
|
}
|
|
21621
22961
|
|
|
22962
|
+
/**
|
|
22963
|
+
* @summary 56f77b65-788d-442a-9885-7f20d91f\\*\\*\\*\\*
|
|
22964
|
+
*
|
|
22965
|
+
* @param request ListLogConfigsRequest
|
|
22966
|
+
* @param headers map
|
|
22967
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
22968
|
+
* @return ListLogConfigsResponse
|
|
22969
|
+
*/
|
|
21622
22970
|
async listLogConfigsWithOptions(request: ListLogConfigsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListLogConfigsResponse> {
|
|
21623
22971
|
Util.validateModel(request);
|
|
21624
22972
|
let query : {[key: string ]: any} = { };
|
|
@@ -21652,12 +23000,24 @@ export default class Client extends OpenApi {
|
|
|
21652
23000
|
return $tea.cast<ListLogConfigsResponse>(await this.callApi(params, req, runtime), new ListLogConfigsResponse({}));
|
|
21653
23001
|
}
|
|
21654
23002
|
|
|
23003
|
+
/**
|
|
23004
|
+
* @summary 56f77b65-788d-442a-9885-7f20d91f\\*\\*\\*\\*
|
|
23005
|
+
*
|
|
23006
|
+
* @param request ListLogConfigsRequest
|
|
23007
|
+
* @return ListLogConfigsResponse
|
|
23008
|
+
*/
|
|
21655
23009
|
async listLogConfigs(request: ListLogConfigsRequest): Promise<ListLogConfigsResponse> {
|
|
21656
23010
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21657
23011
|
let headers : {[key: string ]: string} = { };
|
|
21658
23012
|
return await this.listLogConfigsWithOptions(request, headers, runtime);
|
|
21659
23013
|
}
|
|
21660
23014
|
|
|
23015
|
+
/**
|
|
23016
|
+
* @param request ListNamespaceChangeOrdersRequest
|
|
23017
|
+
* @param headers map
|
|
23018
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23019
|
+
* @return ListNamespaceChangeOrdersResponse
|
|
23020
|
+
*/
|
|
21661
23021
|
async listNamespaceChangeOrdersWithOptions(request: ListNamespaceChangeOrdersRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListNamespaceChangeOrdersResponse> {
|
|
21662
23022
|
Util.validateModel(request);
|
|
21663
23023
|
let query : {[key: string ]: any} = { };
|
|
@@ -21703,12 +23063,24 @@ export default class Client extends OpenApi {
|
|
|
21703
23063
|
return $tea.cast<ListNamespaceChangeOrdersResponse>(await this.callApi(params, req, runtime), new ListNamespaceChangeOrdersResponse({}));
|
|
21704
23064
|
}
|
|
21705
23065
|
|
|
23066
|
+
/**
|
|
23067
|
+
* @param request ListNamespaceChangeOrdersRequest
|
|
23068
|
+
* @return ListNamespaceChangeOrdersResponse
|
|
23069
|
+
*/
|
|
21706
23070
|
async listNamespaceChangeOrders(request: ListNamespaceChangeOrdersRequest): Promise<ListNamespaceChangeOrdersResponse> {
|
|
21707
23071
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21708
23072
|
let headers : {[key: string ]: string} = { };
|
|
21709
23073
|
return await this.listNamespaceChangeOrdersWithOptions(request, headers, runtime);
|
|
21710
23074
|
}
|
|
21711
23075
|
|
|
23076
|
+
/**
|
|
23077
|
+
* @summary Queries the ConfigMap instances in a namespace.
|
|
23078
|
+
*
|
|
23079
|
+
* @param request ListNamespacedConfigMapsRequest
|
|
23080
|
+
* @param headers map
|
|
23081
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23082
|
+
* @return ListNamespacedConfigMapsResponse
|
|
23083
|
+
*/
|
|
21712
23084
|
async listNamespacedConfigMapsWithOptions(request: ListNamespacedConfigMapsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListNamespacedConfigMapsResponse> {
|
|
21713
23085
|
Util.validateModel(request);
|
|
21714
23086
|
let query : {[key: string ]: any} = { };
|
|
@@ -21734,12 +23106,26 @@ export default class Client extends OpenApi {
|
|
|
21734
23106
|
return $tea.cast<ListNamespacedConfigMapsResponse>(await this.callApi(params, req, runtime), new ListNamespacedConfigMapsResponse({}));
|
|
21735
23107
|
}
|
|
21736
23108
|
|
|
23109
|
+
/**
|
|
23110
|
+
* @summary Queries the ConfigMap instances in a namespace.
|
|
23111
|
+
*
|
|
23112
|
+
* @param request ListNamespacedConfigMapsRequest
|
|
23113
|
+
* @return ListNamespacedConfigMapsResponse
|
|
23114
|
+
*/
|
|
21737
23115
|
async listNamespacedConfigMaps(request: ListNamespacedConfigMapsRequest): Promise<ListNamespacedConfigMapsResponse> {
|
|
21738
23116
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21739
23117
|
let headers : {[key: string ]: string} = { };
|
|
21740
23118
|
return await this.listNamespacedConfigMapsWithOptions(request, headers, runtime);
|
|
21741
23119
|
}
|
|
21742
23120
|
|
|
23121
|
+
/**
|
|
23122
|
+
* @summary b2a8a925-477a-4ed7-b825-d5e22500\\*\\*\\*\\*
|
|
23123
|
+
*
|
|
23124
|
+
* @param request ListPublishedServicesRequest
|
|
23125
|
+
* @param headers map
|
|
23126
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23127
|
+
* @return ListPublishedServicesResponse
|
|
23128
|
+
*/
|
|
21743
23129
|
async listPublishedServicesWithOptions(request: ListPublishedServicesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListPublishedServicesResponse> {
|
|
21744
23130
|
Util.validateModel(request);
|
|
21745
23131
|
let query : {[key: string ]: any} = { };
|
|
@@ -21765,12 +23151,26 @@ export default class Client extends OpenApi {
|
|
|
21765
23151
|
return $tea.cast<ListPublishedServicesResponse>(await this.callApi(params, req, runtime), new ListPublishedServicesResponse({}));
|
|
21766
23152
|
}
|
|
21767
23153
|
|
|
23154
|
+
/**
|
|
23155
|
+
* @summary b2a8a925-477a-4ed7-b825-d5e22500\\*\\*\\*\\*
|
|
23156
|
+
*
|
|
23157
|
+
* @param request ListPublishedServicesRequest
|
|
23158
|
+
* @return ListPublishedServicesResponse
|
|
23159
|
+
*/
|
|
21768
23160
|
async listPublishedServices(request: ListPublishedServicesRequest): Promise<ListPublishedServicesResponse> {
|
|
21769
23161
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21770
23162
|
let headers : {[key: string ]: string} = { };
|
|
21771
23163
|
return await this.listPublishedServicesWithOptions(request, headers, runtime);
|
|
21772
23164
|
}
|
|
21773
23165
|
|
|
23166
|
+
/**
|
|
23167
|
+
* @summary Queries the information about Secrets in a namespace.
|
|
23168
|
+
*
|
|
23169
|
+
* @param request ListSecretsRequest
|
|
23170
|
+
* @param headers map
|
|
23171
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23172
|
+
* @return ListSecretsResponse
|
|
23173
|
+
*/
|
|
21774
23174
|
async listSecretsWithOptions(request: ListSecretsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListSecretsResponse> {
|
|
21775
23175
|
Util.validateModel(request);
|
|
21776
23176
|
let query : {[key: string ]: any} = { };
|
|
@@ -21796,12 +23196,26 @@ export default class Client extends OpenApi {
|
|
|
21796
23196
|
return $tea.cast<ListSecretsResponse>(await this.callApi(params, req, runtime), new ListSecretsResponse({}));
|
|
21797
23197
|
}
|
|
21798
23198
|
|
|
23199
|
+
/**
|
|
23200
|
+
* @summary Queries the information about Secrets in a namespace.
|
|
23201
|
+
*
|
|
23202
|
+
* @param request ListSecretsRequest
|
|
23203
|
+
* @return ListSecretsResponse
|
|
23204
|
+
*/
|
|
21799
23205
|
async listSecrets(request: ListSecretsRequest): Promise<ListSecretsResponse> {
|
|
21800
23206
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21801
23207
|
let headers : {[key: string ]: string} = { };
|
|
21802
23208
|
return await this.listSecretsWithOptions(request, headers, runtime);
|
|
21803
23209
|
}
|
|
21804
23210
|
|
|
23211
|
+
/**
|
|
23212
|
+
* @summary Queries the mapping relationships between applications and tags.
|
|
23213
|
+
*
|
|
23214
|
+
* @param request ListTagResourcesRequest
|
|
23215
|
+
* @param headers map
|
|
23216
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23217
|
+
* @return ListTagResourcesResponse
|
|
23218
|
+
*/
|
|
21805
23219
|
async listTagResourcesWithOptions(request: ListTagResourcesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse> {
|
|
21806
23220
|
Util.validateModel(request);
|
|
21807
23221
|
let query : {[key: string ]: any} = { };
|
|
@@ -21843,6 +23257,12 @@ export default class Client extends OpenApi {
|
|
|
21843
23257
|
return $tea.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
|
|
21844
23258
|
}
|
|
21845
23259
|
|
|
23260
|
+
/**
|
|
23261
|
+
* @summary Queries the mapping relationships between applications and tags.
|
|
23262
|
+
*
|
|
23263
|
+
* @param request ListTagResourcesRequest
|
|
23264
|
+
* @return ListTagResourcesResponse
|
|
23265
|
+
*/
|
|
21846
23266
|
async listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse> {
|
|
21847
23267
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21848
23268
|
let headers : {[key: string ]: string} = { };
|
|
@@ -21850,11 +23270,13 @@ export default class Client extends OpenApi {
|
|
|
21850
23270
|
}
|
|
21851
23271
|
|
|
21852
23272
|
/**
|
|
21853
|
-
|
|
21854
|
-
|
|
21855
|
-
|
|
21856
|
-
|
|
21857
|
-
|
|
23273
|
+
* @summary Activates the Serverless App Engine (SAE) service for free.
|
|
23274
|
+
*
|
|
23275
|
+
* @description > Make sure that your account balance is greater than 0. Otherwise, the SAE service cannot be activated.
|
|
23276
|
+
*
|
|
23277
|
+
* @param headers map
|
|
23278
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23279
|
+
* @return OpenSaeServiceResponse
|
|
21858
23280
|
*/
|
|
21859
23281
|
async openSaeServiceWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<OpenSaeServiceResponse> {
|
|
21860
23282
|
let req = new $OpenApi.OpenApiRequest({
|
|
@@ -21875,9 +23297,11 @@ export default class Client extends OpenApi {
|
|
|
21875
23297
|
}
|
|
21876
23298
|
|
|
21877
23299
|
/**
|
|
21878
|
-
|
|
21879
|
-
|
|
21880
|
-
|
|
23300
|
+
* @summary Activates the Serverless App Engine (SAE) service for free.
|
|
23301
|
+
*
|
|
23302
|
+
* @description > Make sure that your account balance is greater than 0. Otherwise, the SAE service cannot be activated.
|
|
23303
|
+
*
|
|
23304
|
+
* @return OpenSaeServiceResponse
|
|
21881
23305
|
*/
|
|
21882
23306
|
async openSaeService(): Promise<OpenSaeServiceResponse> {
|
|
21883
23307
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -21885,6 +23309,14 @@ export default class Client extends OpenApi {
|
|
|
21885
23309
|
return await this.openSaeServiceWithOptions(headers, runtime);
|
|
21886
23310
|
}
|
|
21887
23311
|
|
|
23312
|
+
/**
|
|
23313
|
+
* @summary Queries the resource usage of an application.
|
|
23314
|
+
*
|
|
23315
|
+
* @param request QueryResourceStaticsRequest
|
|
23316
|
+
* @param headers map
|
|
23317
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23318
|
+
* @return QueryResourceStaticsResponse
|
|
23319
|
+
*/
|
|
21888
23320
|
async queryResourceStaticsWithOptions(request: QueryResourceStaticsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryResourceStaticsResponse> {
|
|
21889
23321
|
Util.validateModel(request);
|
|
21890
23322
|
let query : {[key: string ]: any} = { };
|
|
@@ -21910,12 +23342,26 @@ export default class Client extends OpenApi {
|
|
|
21910
23342
|
return $tea.cast<QueryResourceStaticsResponse>(await this.callApi(params, req, runtime), new QueryResourceStaticsResponse({}));
|
|
21911
23343
|
}
|
|
21912
23344
|
|
|
23345
|
+
/**
|
|
23346
|
+
* @summary Queries the resource usage of an application.
|
|
23347
|
+
*
|
|
23348
|
+
* @param request QueryResourceStaticsRequest
|
|
23349
|
+
* @return QueryResourceStaticsResponse
|
|
23350
|
+
*/
|
|
21913
23351
|
async queryResourceStatics(request: QueryResourceStaticsRequest): Promise<QueryResourceStaticsResponse> {
|
|
21914
23352
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21915
23353
|
let headers : {[key: string ]: string} = { };
|
|
21916
23354
|
return await this.queryResourceStaticsWithOptions(request, headers, runtime);
|
|
21917
23355
|
}
|
|
21918
23356
|
|
|
23357
|
+
/**
|
|
23358
|
+
* @summary Reduces capacity by instance IDs.
|
|
23359
|
+
*
|
|
23360
|
+
* @param request ReduceApplicationCapacityByInstanceIdsRequest
|
|
23361
|
+
* @param headers map
|
|
23362
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23363
|
+
* @return ReduceApplicationCapacityByInstanceIdsResponse
|
|
23364
|
+
*/
|
|
21919
23365
|
async reduceApplicationCapacityByInstanceIdsWithOptions(request: ReduceApplicationCapacityByInstanceIdsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ReduceApplicationCapacityByInstanceIdsResponse> {
|
|
21920
23366
|
Util.validateModel(request);
|
|
21921
23367
|
let query : {[key: string ]: any} = { };
|
|
@@ -21945,12 +23391,26 @@ export default class Client extends OpenApi {
|
|
|
21945
23391
|
return $tea.cast<ReduceApplicationCapacityByInstanceIdsResponse>(await this.callApi(params, req, runtime), new ReduceApplicationCapacityByInstanceIdsResponse({}));
|
|
21946
23392
|
}
|
|
21947
23393
|
|
|
23394
|
+
/**
|
|
23395
|
+
* @summary Reduces capacity by instance IDs.
|
|
23396
|
+
*
|
|
23397
|
+
* @param request ReduceApplicationCapacityByInstanceIdsRequest
|
|
23398
|
+
* @return ReduceApplicationCapacityByInstanceIdsResponse
|
|
23399
|
+
*/
|
|
21948
23400
|
async reduceApplicationCapacityByInstanceIds(request: ReduceApplicationCapacityByInstanceIdsRequest): Promise<ReduceApplicationCapacityByInstanceIdsResponse> {
|
|
21949
23401
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21950
23402
|
let headers : {[key: string ]: string} = { };
|
|
21951
23403
|
return await this.reduceApplicationCapacityByInstanceIdsWithOptions(request, headers, runtime);
|
|
21952
23404
|
}
|
|
21953
23405
|
|
|
23406
|
+
/**
|
|
23407
|
+
* @summary Scales an application.
|
|
23408
|
+
*
|
|
23409
|
+
* @param request RescaleApplicationRequest
|
|
23410
|
+
* @param headers map
|
|
23411
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23412
|
+
* @return RescaleApplicationResponse
|
|
23413
|
+
*/
|
|
21954
23414
|
async rescaleApplicationWithOptions(request: RescaleApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RescaleApplicationResponse> {
|
|
21955
23415
|
Util.validateModel(request);
|
|
21956
23416
|
let query : {[key: string ]: any} = { };
|
|
@@ -21992,12 +23452,26 @@ export default class Client extends OpenApi {
|
|
|
21992
23452
|
return $tea.cast<RescaleApplicationResponse>(await this.callApi(params, req, runtime), new RescaleApplicationResponse({}));
|
|
21993
23453
|
}
|
|
21994
23454
|
|
|
23455
|
+
/**
|
|
23456
|
+
* @summary Scales an application.
|
|
23457
|
+
*
|
|
23458
|
+
* @param request RescaleApplicationRequest
|
|
23459
|
+
* @return RescaleApplicationResponse
|
|
23460
|
+
*/
|
|
21995
23461
|
async rescaleApplication(request: RescaleApplicationRequest): Promise<RescaleApplicationResponse> {
|
|
21996
23462
|
let runtime = new $Util.RuntimeOptions({ });
|
|
21997
23463
|
let headers : {[key: string ]: string} = { };
|
|
21998
23464
|
return await this.rescaleApplicationWithOptions(request, headers, runtime);
|
|
21999
23465
|
}
|
|
22000
23466
|
|
|
23467
|
+
/**
|
|
23468
|
+
* @summary Changes the instance specifications of an application.
|
|
23469
|
+
*
|
|
23470
|
+
* @param request RescaleApplicationVerticallyRequest
|
|
23471
|
+
* @param headers map
|
|
23472
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23473
|
+
* @return RescaleApplicationVerticallyResponse
|
|
23474
|
+
*/
|
|
22001
23475
|
async rescaleApplicationVerticallyWithOptions(request: RescaleApplicationVerticallyRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RescaleApplicationVerticallyResponse> {
|
|
22002
23476
|
Util.validateModel(request);
|
|
22003
23477
|
let query : {[key: string ]: any} = { };
|
|
@@ -22031,12 +23505,26 @@ export default class Client extends OpenApi {
|
|
|
22031
23505
|
return $tea.cast<RescaleApplicationVerticallyResponse>(await this.callApi(params, req, runtime), new RescaleApplicationVerticallyResponse({}));
|
|
22032
23506
|
}
|
|
22033
23507
|
|
|
23508
|
+
/**
|
|
23509
|
+
* @summary Changes the instance specifications of an application.
|
|
23510
|
+
*
|
|
23511
|
+
* @param request RescaleApplicationVerticallyRequest
|
|
23512
|
+
* @return RescaleApplicationVerticallyResponse
|
|
23513
|
+
*/
|
|
22034
23514
|
async rescaleApplicationVertically(request: RescaleApplicationVerticallyRequest): Promise<RescaleApplicationVerticallyResponse> {
|
|
22035
23515
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22036
23516
|
let headers : {[key: string ]: string} = { };
|
|
22037
23517
|
return await this.rescaleApplicationVerticallyWithOptions(request, headers, runtime);
|
|
22038
23518
|
}
|
|
22039
23519
|
|
|
23520
|
+
/**
|
|
23521
|
+
* @summary Restarts an application.
|
|
23522
|
+
*
|
|
23523
|
+
* @param request RestartApplicationRequest
|
|
23524
|
+
* @param headers map
|
|
23525
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23526
|
+
* @return RestartApplicationResponse
|
|
23527
|
+
*/
|
|
22040
23528
|
async restartApplicationWithOptions(request: RestartApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RestartApplicationResponse> {
|
|
22041
23529
|
Util.validateModel(request);
|
|
22042
23530
|
let query : {[key: string ]: any} = { };
|
|
@@ -22074,12 +23562,26 @@ export default class Client extends OpenApi {
|
|
|
22074
23562
|
return $tea.cast<RestartApplicationResponse>(await this.callApi(params, req, runtime), new RestartApplicationResponse({}));
|
|
22075
23563
|
}
|
|
22076
23564
|
|
|
23565
|
+
/**
|
|
23566
|
+
* @summary Restarts an application.
|
|
23567
|
+
*
|
|
23568
|
+
* @param request RestartApplicationRequest
|
|
23569
|
+
* @return RestartApplicationResponse
|
|
23570
|
+
*/
|
|
22077
23571
|
async restartApplication(request: RestartApplicationRequest): Promise<RestartApplicationResponse> {
|
|
22078
23572
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22079
23573
|
let headers : {[key: string ]: string} = { };
|
|
22080
23574
|
return await this.restartApplicationWithOptions(request, headers, runtime);
|
|
22081
23575
|
}
|
|
22082
23576
|
|
|
23577
|
+
/**
|
|
23578
|
+
* @summary Restarts one or more instances in an application.
|
|
23579
|
+
*
|
|
23580
|
+
* @param request RestartInstancesRequest
|
|
23581
|
+
* @param headers map
|
|
23582
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23583
|
+
* @return RestartInstancesResponse
|
|
23584
|
+
*/
|
|
22083
23585
|
async restartInstancesWithOptions(request: RestartInstancesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RestartInstancesResponse> {
|
|
22084
23586
|
Util.validateModel(request);
|
|
22085
23587
|
let query : {[key: string ]: any} = { };
|
|
@@ -22109,12 +23611,26 @@ export default class Client extends OpenApi {
|
|
|
22109
23611
|
return $tea.cast<RestartInstancesResponse>(await this.callApi(params, req, runtime), new RestartInstancesResponse({}));
|
|
22110
23612
|
}
|
|
22111
23613
|
|
|
23614
|
+
/**
|
|
23615
|
+
* @summary Restarts one or more instances in an application.
|
|
23616
|
+
*
|
|
23617
|
+
* @param request RestartInstancesRequest
|
|
23618
|
+
* @return RestartInstancesResponse
|
|
23619
|
+
*/
|
|
22112
23620
|
async restartInstances(request: RestartInstancesRequest): Promise<RestartInstancesResponse> {
|
|
22113
23621
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22114
23622
|
let headers : {[key: string ]: string} = { };
|
|
22115
23623
|
return await this.restartInstancesWithOptions(request, headers, runtime);
|
|
22116
23624
|
}
|
|
22117
23625
|
|
|
23626
|
+
/**
|
|
23627
|
+
* @summary Rolls back an application.
|
|
23628
|
+
*
|
|
23629
|
+
* @param request RollbackApplicationRequest
|
|
23630
|
+
* @param headers map
|
|
23631
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23632
|
+
* @return RollbackApplicationResponse
|
|
23633
|
+
*/
|
|
22118
23634
|
async rollbackApplicationWithOptions(request: RollbackApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RollbackApplicationResponse> {
|
|
22119
23635
|
Util.validateModel(request);
|
|
22120
23636
|
let query : {[key: string ]: any} = { };
|
|
@@ -22164,12 +23680,26 @@ export default class Client extends OpenApi {
|
|
|
22164
23680
|
return $tea.cast<RollbackApplicationResponse>(await this.callApi(params, req, runtime), new RollbackApplicationResponse({}));
|
|
22165
23681
|
}
|
|
22166
23682
|
|
|
23683
|
+
/**
|
|
23684
|
+
* @summary Rolls back an application.
|
|
23685
|
+
*
|
|
23686
|
+
* @param request RollbackApplicationRequest
|
|
23687
|
+
* @return RollbackApplicationResponse
|
|
23688
|
+
*/
|
|
22167
23689
|
async rollbackApplication(request: RollbackApplicationRequest): Promise<RollbackApplicationResponse> {
|
|
22168
23690
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22169
23691
|
let headers : {[key: string ]: string} = { };
|
|
22170
23692
|
return await this.rollbackApplicationWithOptions(request, headers, runtime);
|
|
22171
23693
|
}
|
|
22172
23694
|
|
|
23695
|
+
/**
|
|
23696
|
+
* @summary Starts an application.
|
|
23697
|
+
*
|
|
23698
|
+
* @param request StartApplicationRequest
|
|
23699
|
+
* @param headers map
|
|
23700
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23701
|
+
* @return StartApplicationResponse
|
|
23702
|
+
*/
|
|
22173
23703
|
async startApplicationWithOptions(request: StartApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<StartApplicationResponse> {
|
|
22174
23704
|
Util.validateModel(request);
|
|
22175
23705
|
let query : {[key: string ]: any} = { };
|
|
@@ -22195,12 +23725,26 @@ export default class Client extends OpenApi {
|
|
|
22195
23725
|
return $tea.cast<StartApplicationResponse>(await this.callApi(params, req, runtime), new StartApplicationResponse({}));
|
|
22196
23726
|
}
|
|
22197
23727
|
|
|
23728
|
+
/**
|
|
23729
|
+
* @summary Starts an application.
|
|
23730
|
+
*
|
|
23731
|
+
* @param request StartApplicationRequest
|
|
23732
|
+
* @return StartApplicationResponse
|
|
23733
|
+
*/
|
|
22198
23734
|
async startApplication(request: StartApplicationRequest): Promise<StartApplicationResponse> {
|
|
22199
23735
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22200
23736
|
let headers : {[key: string ]: string} = { };
|
|
22201
23737
|
return await this.startApplicationWithOptions(request, headers, runtime);
|
|
22202
23738
|
}
|
|
22203
23739
|
|
|
23740
|
+
/**
|
|
23741
|
+
* @summary 0099b7be-5f5b-4512-a7fc-56049ef1\\*\\*\\*\\*
|
|
23742
|
+
*
|
|
23743
|
+
* @param request StopApplicationRequest
|
|
23744
|
+
* @param headers map
|
|
23745
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23746
|
+
* @return StopApplicationResponse
|
|
23747
|
+
*/
|
|
22204
23748
|
async stopApplicationWithOptions(request: StopApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<StopApplicationResponse> {
|
|
22205
23749
|
Util.validateModel(request);
|
|
22206
23750
|
let query : {[key: string ]: any} = { };
|
|
@@ -22226,12 +23770,26 @@ export default class Client extends OpenApi {
|
|
|
22226
23770
|
return $tea.cast<StopApplicationResponse>(await this.callApi(params, req, runtime), new StopApplicationResponse({}));
|
|
22227
23771
|
}
|
|
22228
23772
|
|
|
23773
|
+
/**
|
|
23774
|
+
* @summary 0099b7be-5f5b-4512-a7fc-56049ef1\\*\\*\\*\\*
|
|
23775
|
+
*
|
|
23776
|
+
* @param request StopApplicationRequest
|
|
23777
|
+
* @return StopApplicationResponse
|
|
23778
|
+
*/
|
|
22229
23779
|
async stopApplication(request: StopApplicationRequest): Promise<StopApplicationResponse> {
|
|
22230
23780
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22231
23781
|
let headers : {[key: string ]: string} = { };
|
|
22232
23782
|
return await this.stopApplicationWithOptions(request, headers, runtime);
|
|
22233
23783
|
}
|
|
22234
23784
|
|
|
23785
|
+
/**
|
|
23786
|
+
* @summary Suspends a job.
|
|
23787
|
+
*
|
|
23788
|
+
* @param request SuspendJobRequest
|
|
23789
|
+
* @param headers map
|
|
23790
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23791
|
+
* @return SuspendJobResponse
|
|
23792
|
+
*/
|
|
22235
23793
|
async suspendJobWithOptions(request: SuspendJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<SuspendJobResponse> {
|
|
22236
23794
|
Util.validateModel(request);
|
|
22237
23795
|
let query : {[key: string ]: any} = { };
|
|
@@ -22261,12 +23819,26 @@ export default class Client extends OpenApi {
|
|
|
22261
23819
|
return $tea.cast<SuspendJobResponse>(await this.callApi(params, req, runtime), new SuspendJobResponse({}));
|
|
22262
23820
|
}
|
|
22263
23821
|
|
|
23822
|
+
/**
|
|
23823
|
+
* @summary Suspends a job.
|
|
23824
|
+
*
|
|
23825
|
+
* @param request SuspendJobRequest
|
|
23826
|
+
* @return SuspendJobResponse
|
|
23827
|
+
*/
|
|
22264
23828
|
async suspendJob(request: SuspendJobRequest): Promise<SuspendJobResponse> {
|
|
22265
23829
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22266
23830
|
let headers : {[key: string ]: string} = { };
|
|
22267
23831
|
return await this.suspendJobWithOptions(request, headers, runtime);
|
|
22268
23832
|
}
|
|
22269
23833
|
|
|
23834
|
+
/**
|
|
23835
|
+
* @summary cn-beijing
|
|
23836
|
+
*
|
|
23837
|
+
* @param request TagResourcesRequest
|
|
23838
|
+
* @param headers map
|
|
23839
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23840
|
+
* @return TagResourcesResponse
|
|
23841
|
+
*/
|
|
22270
23842
|
async tagResourcesWithOptions(request: TagResourcesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse> {
|
|
22271
23843
|
Util.validateModel(request);
|
|
22272
23844
|
let body : {[key: string ]: any} = { };
|
|
@@ -22304,12 +23876,26 @@ export default class Client extends OpenApi {
|
|
|
22304
23876
|
return $tea.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
|
|
22305
23877
|
}
|
|
22306
23878
|
|
|
23879
|
+
/**
|
|
23880
|
+
* @summary cn-beijing
|
|
23881
|
+
*
|
|
23882
|
+
* @param request TagResourcesRequest
|
|
23883
|
+
* @return TagResourcesResponse
|
|
23884
|
+
*/
|
|
22307
23885
|
async tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse> {
|
|
22308
23886
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22309
23887
|
let headers : {[key: string ]: string} = { };
|
|
22310
23888
|
return await this.tagResourcesWithOptions(request, headers, runtime);
|
|
22311
23889
|
}
|
|
22312
23890
|
|
|
23891
|
+
/**
|
|
23892
|
+
* @summary 0099b7be-5f5b-4512-a7fc-56049ef1\\*\\*\\*\\*
|
|
23893
|
+
*
|
|
23894
|
+
* @param request UnbindSlbRequest
|
|
23895
|
+
* @param headers map
|
|
23896
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23897
|
+
* @return UnbindSlbResponse
|
|
23898
|
+
*/
|
|
22313
23899
|
async unbindSlbWithOptions(request: UnbindSlbRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UnbindSlbResponse> {
|
|
22314
23900
|
Util.validateModel(request);
|
|
22315
23901
|
let query : {[key: string ]: any} = { };
|
|
@@ -22343,12 +23929,24 @@ export default class Client extends OpenApi {
|
|
|
22343
23929
|
return $tea.cast<UnbindSlbResponse>(await this.callApi(params, req, runtime), new UnbindSlbResponse({}));
|
|
22344
23930
|
}
|
|
22345
23931
|
|
|
23932
|
+
/**
|
|
23933
|
+
* @summary 0099b7be-5f5b-4512-a7fc-56049ef1\\*\\*\\*\\*
|
|
23934
|
+
*
|
|
23935
|
+
* @param request UnbindSlbRequest
|
|
23936
|
+
* @return UnbindSlbResponse
|
|
23937
|
+
*/
|
|
22346
23938
|
async unbindSlb(request: UnbindSlbRequest): Promise<UnbindSlbResponse> {
|
|
22347
23939
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22348
23940
|
let headers : {[key: string ]: string} = { };
|
|
22349
23941
|
return await this.unbindSlbWithOptions(request, headers, runtime);
|
|
22350
23942
|
}
|
|
22351
23943
|
|
|
23944
|
+
/**
|
|
23945
|
+
* @param request UntagResourcesRequest
|
|
23946
|
+
* @param headers map
|
|
23947
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
23948
|
+
* @return UntagResourcesResponse
|
|
23949
|
+
*/
|
|
22352
23950
|
async untagResourcesWithOptions(request: UntagResourcesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse> {
|
|
22353
23951
|
Util.validateModel(request);
|
|
22354
23952
|
let query : {[key: string ]: any} = { };
|
|
@@ -22390,12 +23988,24 @@ export default class Client extends OpenApi {
|
|
|
22390
23988
|
return $tea.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
|
|
22391
23989
|
}
|
|
22392
23990
|
|
|
23991
|
+
/**
|
|
23992
|
+
* @param request UntagResourcesRequest
|
|
23993
|
+
* @return UntagResourcesResponse
|
|
23994
|
+
*/
|
|
22393
23995
|
async untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse> {
|
|
22394
23996
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22395
23997
|
let headers : {[key: string ]: string} = { };
|
|
22396
23998
|
return await this.untagResourcesWithOptions(request, headers, runtime);
|
|
22397
23999
|
}
|
|
22398
24000
|
|
|
24001
|
+
/**
|
|
24002
|
+
* @summary 017f39b8-dfa4-4e16-a84b-1dcee4b1\\*\\*\\*\\*
|
|
24003
|
+
*
|
|
24004
|
+
* @param request UpdateAppSecurityGroupRequest
|
|
24005
|
+
* @param headers map
|
|
24006
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24007
|
+
* @return UpdateAppSecurityGroupResponse
|
|
24008
|
+
*/
|
|
22399
24009
|
async updateAppSecurityGroupWithOptions(request: UpdateAppSecurityGroupRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateAppSecurityGroupResponse> {
|
|
22400
24010
|
Util.validateModel(request);
|
|
22401
24011
|
let query : {[key: string ]: any} = { };
|
|
@@ -22425,12 +24035,26 @@ export default class Client extends OpenApi {
|
|
|
22425
24035
|
return $tea.cast<UpdateAppSecurityGroupResponse>(await this.callApi(params, req, runtime), new UpdateAppSecurityGroupResponse({}));
|
|
22426
24036
|
}
|
|
22427
24037
|
|
|
24038
|
+
/**
|
|
24039
|
+
* @summary 017f39b8-dfa4-4e16-a84b-1dcee4b1\\*\\*\\*\\*
|
|
24040
|
+
*
|
|
24041
|
+
* @param request UpdateAppSecurityGroupRequest
|
|
24042
|
+
* @return UpdateAppSecurityGroupResponse
|
|
24043
|
+
*/
|
|
22428
24044
|
async updateAppSecurityGroup(request: UpdateAppSecurityGroupRequest): Promise<UpdateAppSecurityGroupResponse> {
|
|
22429
24045
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22430
24046
|
let headers : {[key: string ]: string} = { };
|
|
22431
24047
|
return await this.updateAppSecurityGroupWithOptions(request, headers, runtime);
|
|
22432
24048
|
}
|
|
22433
24049
|
|
|
24050
|
+
/**
|
|
24051
|
+
* @summary 更新应用描述信息
|
|
24052
|
+
*
|
|
24053
|
+
* @param request UpdateApplicationDescriptionRequest
|
|
24054
|
+
* @param headers map
|
|
24055
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24056
|
+
* @return UpdateApplicationDescriptionResponse
|
|
24057
|
+
*/
|
|
22434
24058
|
async updateApplicationDescriptionWithOptions(request: UpdateApplicationDescriptionRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationDescriptionResponse> {
|
|
22435
24059
|
Util.validateModel(request);
|
|
22436
24060
|
let query : {[key: string ]: any} = { };
|
|
@@ -22460,6 +24084,12 @@ export default class Client extends OpenApi {
|
|
|
22460
24084
|
return $tea.cast<UpdateApplicationDescriptionResponse>(await this.callApi(params, req, runtime), new UpdateApplicationDescriptionResponse({}));
|
|
22461
24085
|
}
|
|
22462
24086
|
|
|
24087
|
+
/**
|
|
24088
|
+
* @summary 更新应用描述信息
|
|
24089
|
+
*
|
|
24090
|
+
* @param request UpdateApplicationDescriptionRequest
|
|
24091
|
+
* @return UpdateApplicationDescriptionResponse
|
|
24092
|
+
*/
|
|
22463
24093
|
async updateApplicationDescription(request: UpdateApplicationDescriptionRequest): Promise<UpdateApplicationDescriptionResponse> {
|
|
22464
24094
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22465
24095
|
let headers : {[key: string ]: string} = { };
|
|
@@ -22467,13 +24097,15 @@ export default class Client extends OpenApi {
|
|
|
22467
24097
|
}
|
|
22468
24098
|
|
|
22469
24099
|
/**
|
|
22470
|
-
|
|
22471
|
-
|
|
22472
|
-
|
|
22473
|
-
|
|
22474
|
-
|
|
22475
|
-
|
|
22476
|
-
|
|
24100
|
+
* @summary Updates the auto scaling policy of an application.
|
|
24101
|
+
*
|
|
24102
|
+
* @description ##
|
|
24103
|
+
* 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.
|
|
24104
|
+
*
|
|
24105
|
+
* @param request UpdateApplicationScalingRuleRequest
|
|
24106
|
+
* @param headers map
|
|
24107
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24108
|
+
* @return UpdateApplicationScalingRuleResponse
|
|
22477
24109
|
*/
|
|
22478
24110
|
async updateApplicationScalingRuleWithOptions(request: UpdateApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationScalingRuleResponse> {
|
|
22479
24111
|
Util.validateModel(request);
|
|
@@ -22521,11 +24153,13 @@ export default class Client extends OpenApi {
|
|
|
22521
24153
|
}
|
|
22522
24154
|
|
|
22523
24155
|
/**
|
|
22524
|
-
|
|
22525
|
-
|
|
22526
|
-
|
|
22527
|
-
|
|
22528
|
-
|
|
24156
|
+
* @summary Updates the auto scaling policy of an application.
|
|
24157
|
+
*
|
|
24158
|
+
* @description ##
|
|
24159
|
+
* 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.
|
|
24160
|
+
*
|
|
24161
|
+
* @param request UpdateApplicationScalingRuleRequest
|
|
24162
|
+
* @return UpdateApplicationScalingRuleResponse
|
|
22529
24163
|
*/
|
|
22530
24164
|
async updateApplicationScalingRule(request: UpdateApplicationScalingRuleRequest): Promise<UpdateApplicationScalingRuleResponse> {
|
|
22531
24165
|
let runtime = new $Util.RuntimeOptions({ });
|
|
@@ -22533,6 +24167,12 @@ export default class Client extends OpenApi {
|
|
|
22533
24167
|
return await this.updateApplicationScalingRuleWithOptions(request, headers, runtime);
|
|
22534
24168
|
}
|
|
22535
24169
|
|
|
24170
|
+
/**
|
|
24171
|
+
* @param request UpdateApplicationVswitchesRequest
|
|
24172
|
+
* @param headers map
|
|
24173
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24174
|
+
* @return UpdateApplicationVswitchesResponse
|
|
24175
|
+
*/
|
|
22536
24176
|
async updateApplicationVswitchesWithOptions(request: UpdateApplicationVswitchesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationVswitchesResponse> {
|
|
22537
24177
|
Util.validateModel(request);
|
|
22538
24178
|
let query : {[key: string ]: any} = { };
|
|
@@ -22562,12 +24202,24 @@ export default class Client extends OpenApi {
|
|
|
22562
24202
|
return $tea.cast<UpdateApplicationVswitchesResponse>(await this.callApi(params, req, runtime), new UpdateApplicationVswitchesResponse({}));
|
|
22563
24203
|
}
|
|
22564
24204
|
|
|
24205
|
+
/**
|
|
24206
|
+
* @param request UpdateApplicationVswitchesRequest
|
|
24207
|
+
* @return UpdateApplicationVswitchesResponse
|
|
24208
|
+
*/
|
|
22565
24209
|
async updateApplicationVswitches(request: UpdateApplicationVswitchesRequest): Promise<UpdateApplicationVswitchesResponse> {
|
|
22566
24210
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22567
24211
|
let headers : {[key: string ]: string} = { };
|
|
22568
24212
|
return await this.updateApplicationVswitchesWithOptions(request, headers, runtime);
|
|
22569
24213
|
}
|
|
22570
24214
|
|
|
24215
|
+
/**
|
|
24216
|
+
* @summary 1
|
|
24217
|
+
*
|
|
24218
|
+
* @param request UpdateConfigMapRequest
|
|
24219
|
+
* @param headers map
|
|
24220
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24221
|
+
* @return UpdateConfigMapResponse
|
|
24222
|
+
*/
|
|
22571
24223
|
async updateConfigMapWithOptions(request: UpdateConfigMapRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateConfigMapResponse> {
|
|
22572
24224
|
Util.validateModel(request);
|
|
22573
24225
|
let query : {[key: string ]: any} = { };
|
|
@@ -22603,12 +24255,26 @@ export default class Client extends OpenApi {
|
|
|
22603
24255
|
return $tea.cast<UpdateConfigMapResponse>(await this.callApi(params, req, runtime), new UpdateConfigMapResponse({}));
|
|
22604
24256
|
}
|
|
22605
24257
|
|
|
24258
|
+
/**
|
|
24259
|
+
* @summary 1
|
|
24260
|
+
*
|
|
24261
|
+
* @param request UpdateConfigMapRequest
|
|
24262
|
+
* @return UpdateConfigMapResponse
|
|
24263
|
+
*/
|
|
22606
24264
|
async updateConfigMap(request: UpdateConfigMapRequest): Promise<UpdateConfigMapResponse> {
|
|
22607
24265
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22608
24266
|
let headers : {[key: string ]: string} = { };
|
|
22609
24267
|
return await this.updateConfigMapWithOptions(request, headers, runtime);
|
|
22610
24268
|
}
|
|
22611
24269
|
|
|
24270
|
+
/**
|
|
24271
|
+
* @summary Updates a canary release rule.
|
|
24272
|
+
*
|
|
24273
|
+
* @param request UpdateGreyTagRouteRequest
|
|
24274
|
+
* @param headers map
|
|
24275
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24276
|
+
* @return UpdateGreyTagRouteResponse
|
|
24277
|
+
*/
|
|
22612
24278
|
async updateGreyTagRouteWithOptions(request: UpdateGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateGreyTagRouteResponse> {
|
|
22613
24279
|
Util.validateModel(request);
|
|
22614
24280
|
let query : {[key: string ]: any} = { };
|
|
@@ -22650,12 +24316,24 @@ export default class Client extends OpenApi {
|
|
|
22650
24316
|
return $tea.cast<UpdateGreyTagRouteResponse>(await this.callApi(params, req, runtime), new UpdateGreyTagRouteResponse({}));
|
|
22651
24317
|
}
|
|
22652
24318
|
|
|
24319
|
+
/**
|
|
24320
|
+
* @summary Updates a canary release rule.
|
|
24321
|
+
*
|
|
24322
|
+
* @param request UpdateGreyTagRouteRequest
|
|
24323
|
+
* @return UpdateGreyTagRouteResponse
|
|
24324
|
+
*/
|
|
22653
24325
|
async updateGreyTagRoute(request: UpdateGreyTagRouteRequest): Promise<UpdateGreyTagRouteResponse> {
|
|
22654
24326
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22655
24327
|
let headers : {[key: string ]: string} = { };
|
|
22656
24328
|
return await this.updateGreyTagRouteWithOptions(request, headers, runtime);
|
|
22657
24329
|
}
|
|
22658
24330
|
|
|
24331
|
+
/**
|
|
24332
|
+
* @param request UpdateIngressRequest
|
|
24333
|
+
* @param headers map
|
|
24334
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24335
|
+
* @return UpdateIngressResponse
|
|
24336
|
+
*/
|
|
22659
24337
|
async updateIngressWithOptions(request: UpdateIngressRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateIngressResponse> {
|
|
22660
24338
|
Util.validateModel(request);
|
|
22661
24339
|
let query : {[key: string ]: any} = { };
|
|
@@ -22715,12 +24393,24 @@ export default class Client extends OpenApi {
|
|
|
22715
24393
|
return $tea.cast<UpdateIngressResponse>(await this.callApi(params, req, runtime), new UpdateIngressResponse({}));
|
|
22716
24394
|
}
|
|
22717
24395
|
|
|
24396
|
+
/**
|
|
24397
|
+
* @param request UpdateIngressRequest
|
|
24398
|
+
* @return UpdateIngressResponse
|
|
24399
|
+
*/
|
|
22718
24400
|
async updateIngress(request: UpdateIngressRequest): Promise<UpdateIngressResponse> {
|
|
22719
24401
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22720
24402
|
let headers : {[key: string ]: string} = { };
|
|
22721
24403
|
return await this.updateIngressWithOptions(request, headers, runtime);
|
|
22722
24404
|
}
|
|
22723
24405
|
|
|
24406
|
+
/**
|
|
24407
|
+
* @summary Updates a job template.
|
|
24408
|
+
*
|
|
24409
|
+
* @param request UpdateJobRequest
|
|
24410
|
+
* @param headers map
|
|
24411
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24412
|
+
* @return UpdateJobResponse
|
|
24413
|
+
*/
|
|
22724
24414
|
async updateJobWithOptions(request: UpdateJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateJobResponse> {
|
|
22725
24415
|
Util.validateModel(request);
|
|
22726
24416
|
let query : {[key: string ]: any} = { };
|
|
@@ -22924,12 +24614,26 @@ export default class Client extends OpenApi {
|
|
|
22924
24614
|
return $tea.cast<UpdateJobResponse>(await this.callApi(params, req, runtime), new UpdateJobResponse({}));
|
|
22925
24615
|
}
|
|
22926
24616
|
|
|
24617
|
+
/**
|
|
24618
|
+
* @summary Updates a job template.
|
|
24619
|
+
*
|
|
24620
|
+
* @param request UpdateJobRequest
|
|
24621
|
+
* @return UpdateJobResponse
|
|
24622
|
+
*/
|
|
22927
24623
|
async updateJob(request: UpdateJobRequest): Promise<UpdateJobResponse> {
|
|
22928
24624
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22929
24625
|
let headers : {[key: string ]: string} = { };
|
|
22930
24626
|
return await this.updateJobWithOptions(request, headers, runtime);
|
|
22931
24627
|
}
|
|
22932
24628
|
|
|
24629
|
+
/**
|
|
24630
|
+
* @summary Updates the information about a namespace.
|
|
24631
|
+
*
|
|
24632
|
+
* @param request UpdateNamespaceRequest
|
|
24633
|
+
* @param headers map
|
|
24634
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24635
|
+
* @return UpdateNamespaceResponse
|
|
24636
|
+
*/
|
|
22933
24637
|
async updateNamespaceWithOptions(request: UpdateNamespaceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateNamespaceResponse> {
|
|
22934
24638
|
Util.validateModel(request);
|
|
22935
24639
|
let query : {[key: string ]: any} = { };
|
|
@@ -22971,12 +24675,26 @@ export default class Client extends OpenApi {
|
|
|
22971
24675
|
return $tea.cast<UpdateNamespaceResponse>(await this.callApi(params, req, runtime), new UpdateNamespaceResponse({}));
|
|
22972
24676
|
}
|
|
22973
24677
|
|
|
24678
|
+
/**
|
|
24679
|
+
* @summary Updates the information about a namespace.
|
|
24680
|
+
*
|
|
24681
|
+
* @param request UpdateNamespaceRequest
|
|
24682
|
+
* @return UpdateNamespaceResponse
|
|
24683
|
+
*/
|
|
22974
24684
|
async updateNamespace(request: UpdateNamespaceRequest): Promise<UpdateNamespaceResponse> {
|
|
22975
24685
|
let runtime = new $Util.RuntimeOptions({ });
|
|
22976
24686
|
let headers : {[key: string ]: string} = { };
|
|
22977
24687
|
return await this.updateNamespaceWithOptions(request, headers, runtime);
|
|
22978
24688
|
}
|
|
22979
24689
|
|
|
24690
|
+
/**
|
|
24691
|
+
* @summary cn-beijing:test
|
|
24692
|
+
*
|
|
24693
|
+
* @param request UpdateNamespaceVpcRequest
|
|
24694
|
+
* @param headers map
|
|
24695
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24696
|
+
* @return UpdateNamespaceVpcResponse
|
|
24697
|
+
*/
|
|
22980
24698
|
async updateNamespaceVpcWithOptions(request: UpdateNamespaceVpcRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateNamespaceVpcResponse> {
|
|
22981
24699
|
Util.validateModel(request);
|
|
22982
24700
|
let query : {[key: string ]: any} = { };
|
|
@@ -23010,12 +24728,30 @@ export default class Client extends OpenApi {
|
|
|
23010
24728
|
return $tea.cast<UpdateNamespaceVpcResponse>(await this.callApi(params, req, runtime), new UpdateNamespaceVpcResponse({}));
|
|
23011
24729
|
}
|
|
23012
24730
|
|
|
24731
|
+
/**
|
|
24732
|
+
* @summary cn-beijing:test
|
|
24733
|
+
*
|
|
24734
|
+
* @param request UpdateNamespaceVpcRequest
|
|
24735
|
+
* @return UpdateNamespaceVpcResponse
|
|
24736
|
+
*/
|
|
23013
24737
|
async updateNamespaceVpc(request: UpdateNamespaceVpcRequest): Promise<UpdateNamespaceVpcResponse> {
|
|
23014
24738
|
let runtime = new $Util.RuntimeOptions({ });
|
|
23015
24739
|
let headers : {[key: string ]: string} = { };
|
|
23016
24740
|
return await this.updateNamespaceVpcWithOptions(request, headers, runtime);
|
|
23017
24741
|
}
|
|
23018
24742
|
|
|
24743
|
+
/**
|
|
24744
|
+
* @summary The HTTP status code. Valid values:
|
|
24745
|
+
* * **2xx**: The call was successful.
|
|
24746
|
+
* * **3xx**: The call was redirected.
|
|
24747
|
+
* * **4xx**: The call failed.
|
|
24748
|
+
* * **5xx**: A server error occurred.
|
|
24749
|
+
*
|
|
24750
|
+
* @param tmpReq UpdateSecretRequest
|
|
24751
|
+
* @param headers map
|
|
24752
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24753
|
+
* @return UpdateSecretResponse
|
|
24754
|
+
*/
|
|
23019
24755
|
async updateSecretWithOptions(tmpReq: UpdateSecretRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateSecretResponse> {
|
|
23020
24756
|
Util.validateModel(tmpReq);
|
|
23021
24757
|
let request = new UpdateSecretShrinkRequest({ });
|
|
@@ -23055,6 +24791,16 @@ export default class Client extends OpenApi {
|
|
|
23055
24791
|
return $tea.cast<UpdateSecretResponse>(await this.callApi(params, req, runtime), new UpdateSecretResponse({}));
|
|
23056
24792
|
}
|
|
23057
24793
|
|
|
24794
|
+
/**
|
|
24795
|
+
* @summary The HTTP status code. Valid values:
|
|
24796
|
+
* * **2xx**: The call was successful.
|
|
24797
|
+
* * **3xx**: The call was redirected.
|
|
24798
|
+
* * **4xx**: The call failed.
|
|
24799
|
+
* * **5xx**: A server error occurred.
|
|
24800
|
+
*
|
|
24801
|
+
* @param request UpdateSecretRequest
|
|
24802
|
+
* @return UpdateSecretResponse
|
|
24803
|
+
*/
|
|
23058
24804
|
async updateSecret(request: UpdateSecretRequest): Promise<UpdateSecretResponse> {
|
|
23059
24805
|
let runtime = new $Util.RuntimeOptions({ });
|
|
23060
24806
|
let headers : {[key: string ]: string} = { };
|