@alicloud/sae20190506 1.23.0 → 1.23.1
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 +475 -301
- package/dist/client.js +2068 -1736
- package/dist/client.js.map +1 -1
- package/package.json +6 -6
- package/src/client.ts +703 -303
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,28 @@ 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
|
+
|
|
1789
1937
|
export class PolicyItem extends $tea.Model {
|
|
1790
1938
|
key?: string;
|
|
1791
1939
|
operator?: string;
|
|
@@ -1959,6 +2107,25 @@ export class PublishApplicationVersionInput extends $tea.Model {
|
|
|
1959
2107
|
}
|
|
1960
2108
|
}
|
|
1961
2109
|
|
|
2110
|
+
export class RouteConfig extends $tea.Model {
|
|
2111
|
+
routes?: PathConfig[];
|
|
2112
|
+
static names(): { [key: string]: string } {
|
|
2113
|
+
return {
|
|
2114
|
+
routes: 'routes',
|
|
2115
|
+
};
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
static types(): { [key: string]: any } {
|
|
2119
|
+
return {
|
|
2120
|
+
routes: { 'type': 'array', 'itemType': PathConfig },
|
|
2121
|
+
};
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
constructor(map?: { [key: string]: any }) {
|
|
2125
|
+
super(map);
|
|
2126
|
+
}
|
|
2127
|
+
}
|
|
2128
|
+
|
|
1962
2129
|
export class RoutePolicy extends $tea.Model {
|
|
1963
2130
|
condition?: string;
|
|
1964
2131
|
policyItems?: PolicyItem[];
|
|
@@ -2032,11 +2199,13 @@ export class SourceCodeAccount extends $tea.Model {
|
|
|
2032
2199
|
avatarUrl?: string;
|
|
2033
2200
|
id?: string;
|
|
2034
2201
|
name?: string;
|
|
2202
|
+
organizations?: SourceCodeAccountOrganizations[];
|
|
2035
2203
|
static names(): { [key: string]: string } {
|
|
2036
2204
|
return {
|
|
2037
2205
|
avatarUrl: 'AvatarUrl',
|
|
2038
2206
|
id: 'Id',
|
|
2039
2207
|
name: 'Name',
|
|
2208
|
+
organizations: 'Organizations',
|
|
2040
2209
|
};
|
|
2041
2210
|
}
|
|
2042
2211
|
|
|
@@ -2045,6 +2214,7 @@ export class SourceCodeAccount extends $tea.Model {
|
|
|
2045
2214
|
avatarUrl: 'string',
|
|
2046
2215
|
id: 'string',
|
|
2047
2216
|
name: 'string',
|
|
2217
|
+
organizations: { 'type': 'array', 'itemType': SourceCodeAccountOrganizations },
|
|
2048
2218
|
};
|
|
2049
2219
|
}
|
|
2050
2220
|
|
|
@@ -2687,9 +2857,9 @@ export class AbortAndRollbackChangeOrderResponseBody extends $tea.Model {
|
|
|
2687
2857
|
}
|
|
2688
2858
|
|
|
2689
2859
|
export class AbortAndRollbackChangeOrderResponse extends $tea.Model {
|
|
2690
|
-
headers
|
|
2691
|
-
statusCode
|
|
2692
|
-
body
|
|
2860
|
+
headers?: { [key: string]: string };
|
|
2861
|
+
statusCode?: number;
|
|
2862
|
+
body?: AbortAndRollbackChangeOrderResponseBody;
|
|
2693
2863
|
static names(): { [key: string]: string } {
|
|
2694
2864
|
return {
|
|
2695
2865
|
headers: 'headers',
|
|
@@ -2768,9 +2938,9 @@ export class AbortChangeOrderResponseBody extends $tea.Model {
|
|
|
2768
2938
|
}
|
|
2769
2939
|
|
|
2770
2940
|
export class AbortChangeOrderResponse extends $tea.Model {
|
|
2771
|
-
headers
|
|
2772
|
-
statusCode
|
|
2773
|
-
body
|
|
2941
|
+
headers?: { [key: string]: string };
|
|
2942
|
+
statusCode?: number;
|
|
2943
|
+
body?: AbortChangeOrderResponseBody;
|
|
2774
2944
|
static names(): { [key: string]: string } {
|
|
2775
2945
|
return {
|
|
2776
2946
|
headers: 'headers',
|
|
@@ -2795,10 +2965,12 @@ export class AbortChangeOrderResponse extends $tea.Model {
|
|
|
2795
2965
|
export class BatchStartApplicationsRequest extends $tea.Model {
|
|
2796
2966
|
appIds?: string;
|
|
2797
2967
|
namespaceId?: string;
|
|
2968
|
+
version?: string;
|
|
2798
2969
|
static names(): { [key: string]: string } {
|
|
2799
2970
|
return {
|
|
2800
2971
|
appIds: 'AppIds',
|
|
2801
2972
|
namespaceId: 'NamespaceId',
|
|
2973
|
+
version: 'Version',
|
|
2802
2974
|
};
|
|
2803
2975
|
}
|
|
2804
2976
|
|
|
@@ -2806,6 +2978,7 @@ export class BatchStartApplicationsRequest extends $tea.Model {
|
|
|
2806
2978
|
return {
|
|
2807
2979
|
appIds: 'string',
|
|
2808
2980
|
namespaceId: 'string',
|
|
2981
|
+
version: 'string',
|
|
2809
2982
|
};
|
|
2810
2983
|
}
|
|
2811
2984
|
|
|
@@ -2852,9 +3025,9 @@ export class BatchStartApplicationsResponseBody extends $tea.Model {
|
|
|
2852
3025
|
}
|
|
2853
3026
|
|
|
2854
3027
|
export class BatchStartApplicationsResponse extends $tea.Model {
|
|
2855
|
-
headers
|
|
2856
|
-
statusCode
|
|
2857
|
-
body
|
|
3028
|
+
headers?: { [key: string]: string };
|
|
3029
|
+
statusCode?: number;
|
|
3030
|
+
body?: BatchStartApplicationsResponseBody;
|
|
2858
3031
|
static names(): { [key: string]: string } {
|
|
2859
3032
|
return {
|
|
2860
3033
|
headers: 'headers',
|
|
@@ -2879,10 +3052,12 @@ export class BatchStartApplicationsResponse extends $tea.Model {
|
|
|
2879
3052
|
export class BatchStopApplicationsRequest extends $tea.Model {
|
|
2880
3053
|
appIds?: string;
|
|
2881
3054
|
namespaceId?: string;
|
|
3055
|
+
version?: string;
|
|
2882
3056
|
static names(): { [key: string]: string } {
|
|
2883
3057
|
return {
|
|
2884
3058
|
appIds: 'AppIds',
|
|
2885
3059
|
namespaceId: 'NamespaceId',
|
|
3060
|
+
version: 'Version',
|
|
2886
3061
|
};
|
|
2887
3062
|
}
|
|
2888
3063
|
|
|
@@ -2890,6 +3065,7 @@ export class BatchStopApplicationsRequest extends $tea.Model {
|
|
|
2890
3065
|
return {
|
|
2891
3066
|
appIds: 'string',
|
|
2892
3067
|
namespaceId: 'string',
|
|
3068
|
+
version: 'string',
|
|
2893
3069
|
};
|
|
2894
3070
|
}
|
|
2895
3071
|
|
|
@@ -2936,9 +3112,9 @@ export class BatchStopApplicationsResponseBody extends $tea.Model {
|
|
|
2936
3112
|
}
|
|
2937
3113
|
|
|
2938
3114
|
export class BatchStopApplicationsResponse extends $tea.Model {
|
|
2939
|
-
headers
|
|
2940
|
-
statusCode
|
|
2941
|
-
body
|
|
3115
|
+
headers?: { [key: string]: string };
|
|
3116
|
+
statusCode?: number;
|
|
3117
|
+
body?: BatchStopApplicationsResponseBody;
|
|
2942
3118
|
static names(): { [key: string]: string } {
|
|
2943
3119
|
return {
|
|
2944
3120
|
headers: 'headers',
|
|
@@ -3029,9 +3205,9 @@ export class BindSlbResponseBody extends $tea.Model {
|
|
|
3029
3205
|
}
|
|
3030
3206
|
|
|
3031
3207
|
export class BindSlbResponse extends $tea.Model {
|
|
3032
|
-
headers
|
|
3033
|
-
statusCode
|
|
3034
|
-
body
|
|
3208
|
+
headers?: { [key: string]: string };
|
|
3209
|
+
statusCode?: number;
|
|
3210
|
+
body?: BindSlbResponseBody;
|
|
3035
3211
|
static names(): { [key: string]: string } {
|
|
3036
3212
|
return {
|
|
3037
3213
|
headers: 'headers',
|
|
@@ -3113,9 +3289,9 @@ export class ConfirmPipelineBatchResponseBody extends $tea.Model {
|
|
|
3113
3289
|
}
|
|
3114
3290
|
|
|
3115
3291
|
export class ConfirmPipelineBatchResponse extends $tea.Model {
|
|
3116
|
-
headers
|
|
3117
|
-
statusCode
|
|
3118
|
-
body
|
|
3292
|
+
headers?: { [key: string]: string };
|
|
3293
|
+
statusCode?: number;
|
|
3294
|
+
body?: ConfirmPipelineBatchResponseBody;
|
|
3119
3295
|
static names(): { [key: string]: string } {
|
|
3120
3296
|
return {
|
|
3121
3297
|
headers: 'headers',
|
|
@@ -3365,9 +3541,9 @@ export class CreateApplicationResponseBody extends $tea.Model {
|
|
|
3365
3541
|
}
|
|
3366
3542
|
|
|
3367
3543
|
export class CreateApplicationResponse extends $tea.Model {
|
|
3368
|
-
headers
|
|
3369
|
-
statusCode
|
|
3370
|
-
body
|
|
3544
|
+
headers?: { [key: string]: string };
|
|
3545
|
+
statusCode?: number;
|
|
3546
|
+
body?: CreateApplicationResponseBody;
|
|
3371
3547
|
static names(): { [key: string]: string } {
|
|
3372
3548
|
return {
|
|
3373
3549
|
headers: 'headers',
|
|
@@ -3467,9 +3643,9 @@ export class CreateApplicationScalingRuleResponseBody extends $tea.Model {
|
|
|
3467
3643
|
}
|
|
3468
3644
|
|
|
3469
3645
|
export class CreateApplicationScalingRuleResponse extends $tea.Model {
|
|
3470
|
-
headers
|
|
3471
|
-
statusCode
|
|
3472
|
-
body
|
|
3646
|
+
headers?: { [key: string]: string };
|
|
3647
|
+
statusCode?: number;
|
|
3648
|
+
body?: CreateApplicationScalingRuleResponseBody;
|
|
3473
3649
|
static names(): { [key: string]: string } {
|
|
3474
3650
|
return {
|
|
3475
3651
|
headers: 'headers',
|
|
@@ -3557,9 +3733,9 @@ export class CreateConfigMapResponseBody extends $tea.Model {
|
|
|
3557
3733
|
}
|
|
3558
3734
|
|
|
3559
3735
|
export class CreateConfigMapResponse extends $tea.Model {
|
|
3560
|
-
headers
|
|
3561
|
-
statusCode
|
|
3562
|
-
body
|
|
3736
|
+
headers?: { [key: string]: string };
|
|
3737
|
+
statusCode?: number;
|
|
3738
|
+
body?: CreateConfigMapResponseBody;
|
|
3563
3739
|
static names(): { [key: string]: string } {
|
|
3564
3740
|
return {
|
|
3565
3741
|
headers: 'headers',
|
|
@@ -3653,9 +3829,9 @@ export class CreateGreyTagRouteResponseBody extends $tea.Model {
|
|
|
3653
3829
|
}
|
|
3654
3830
|
|
|
3655
3831
|
export class CreateGreyTagRouteResponse extends $tea.Model {
|
|
3656
|
-
headers
|
|
3657
|
-
statusCode
|
|
3658
|
-
body
|
|
3832
|
+
headers?: { [key: string]: string };
|
|
3833
|
+
statusCode?: number;
|
|
3834
|
+
body?: CreateGreyTagRouteResponseBody;
|
|
3659
3835
|
static names(): { [key: string]: string } {
|
|
3660
3836
|
return {
|
|
3661
3837
|
headers: 'headers',
|
|
@@ -3761,9 +3937,9 @@ export class CreateIngressResponseBody extends $tea.Model {
|
|
|
3761
3937
|
}
|
|
3762
3938
|
|
|
3763
3939
|
export class CreateIngressResponse extends $tea.Model {
|
|
3764
|
-
headers
|
|
3765
|
-
statusCode
|
|
3766
|
-
body
|
|
3940
|
+
headers?: { [key: string]: string };
|
|
3941
|
+
statusCode?: number;
|
|
3942
|
+
body?: CreateIngressResponseBody;
|
|
3767
3943
|
static names(): { [key: string]: string } {
|
|
3768
3944
|
return {
|
|
3769
3945
|
headers: 'headers',
|
|
@@ -4001,9 +4177,9 @@ export class CreateJobResponseBody extends $tea.Model {
|
|
|
4001
4177
|
}
|
|
4002
4178
|
|
|
4003
4179
|
export class CreateJobResponse extends $tea.Model {
|
|
4004
|
-
headers
|
|
4005
|
-
statusCode
|
|
4006
|
-
body
|
|
4180
|
+
headers?: { [key: string]: string };
|
|
4181
|
+
statusCode?: number;
|
|
4182
|
+
body?: CreateJobResponseBody;
|
|
4007
4183
|
static names(): { [key: string]: string } {
|
|
4008
4184
|
return {
|
|
4009
4185
|
headers: 'headers',
|
|
@@ -4094,9 +4270,9 @@ export class CreateNamespaceResponseBody extends $tea.Model {
|
|
|
4094
4270
|
}
|
|
4095
4271
|
|
|
4096
4272
|
export class CreateNamespaceResponse extends $tea.Model {
|
|
4097
|
-
headers
|
|
4098
|
-
statusCode
|
|
4099
|
-
body
|
|
4273
|
+
headers?: { [key: string]: string };
|
|
4274
|
+
statusCode?: number;
|
|
4275
|
+
body?: CreateNamespaceResponseBody;
|
|
4100
4276
|
static names(): { [key: string]: string } {
|
|
4101
4277
|
return {
|
|
4102
4278
|
headers: 'headers',
|
|
@@ -4212,9 +4388,9 @@ export class CreateSecretResponseBody extends $tea.Model {
|
|
|
4212
4388
|
}
|
|
4213
4389
|
|
|
4214
4390
|
export class CreateSecretResponse extends $tea.Model {
|
|
4215
|
-
headers
|
|
4216
|
-
statusCode
|
|
4217
|
-
body
|
|
4391
|
+
headers?: { [key: string]: string };
|
|
4392
|
+
statusCode?: number;
|
|
4393
|
+
body?: CreateSecretResponseBody;
|
|
4218
4394
|
static names(): { [key: string]: string } {
|
|
4219
4395
|
return {
|
|
4220
4396
|
headers: 'headers',
|
|
@@ -4293,9 +4469,9 @@ export class DeleteApplicationResponseBody extends $tea.Model {
|
|
|
4293
4469
|
}
|
|
4294
4470
|
|
|
4295
4471
|
export class DeleteApplicationResponse extends $tea.Model {
|
|
4296
|
-
headers
|
|
4297
|
-
statusCode
|
|
4298
|
-
body
|
|
4472
|
+
headers?: { [key: string]: string };
|
|
4473
|
+
statusCode?: number;
|
|
4474
|
+
body?: DeleteApplicationResponseBody;
|
|
4299
4475
|
static names(): { [key: string]: string } {
|
|
4300
4476
|
return {
|
|
4301
4477
|
headers: 'headers',
|
|
@@ -4374,9 +4550,9 @@ export class DeleteApplicationScalingRuleResponseBody extends $tea.Model {
|
|
|
4374
4550
|
}
|
|
4375
4551
|
|
|
4376
4552
|
export class DeleteApplicationScalingRuleResponse extends $tea.Model {
|
|
4377
|
-
headers
|
|
4378
|
-
statusCode
|
|
4379
|
-
body
|
|
4553
|
+
headers?: { [key: string]: string };
|
|
4554
|
+
statusCode?: number;
|
|
4555
|
+
body?: DeleteApplicationScalingRuleResponseBody;
|
|
4380
4556
|
static names(): { [key: string]: string } {
|
|
4381
4557
|
return {
|
|
4382
4558
|
headers: 'headers',
|
|
@@ -4455,9 +4631,9 @@ export class DeleteConfigMapResponseBody extends $tea.Model {
|
|
|
4455
4631
|
}
|
|
4456
4632
|
|
|
4457
4633
|
export class DeleteConfigMapResponse extends $tea.Model {
|
|
4458
|
-
headers
|
|
4459
|
-
statusCode
|
|
4460
|
-
body
|
|
4634
|
+
headers?: { [key: string]: string };
|
|
4635
|
+
statusCode?: number;
|
|
4636
|
+
body?: DeleteConfigMapResponseBody;
|
|
4461
4637
|
static names(): { [key: string]: string } {
|
|
4462
4638
|
return {
|
|
4463
4639
|
headers: 'headers',
|
|
@@ -4536,9 +4712,9 @@ export class DeleteGreyTagRouteResponseBody extends $tea.Model {
|
|
|
4536
4712
|
}
|
|
4537
4713
|
|
|
4538
4714
|
export class DeleteGreyTagRouteResponse extends $tea.Model {
|
|
4539
|
-
headers
|
|
4540
|
-
statusCode
|
|
4541
|
-
body
|
|
4715
|
+
headers?: { [key: string]: string };
|
|
4716
|
+
statusCode?: number;
|
|
4717
|
+
body?: DeleteGreyTagRouteResponseBody;
|
|
4542
4718
|
static names(): { [key: string]: string } {
|
|
4543
4719
|
return {
|
|
4544
4720
|
headers: 'headers',
|
|
@@ -4620,9 +4796,9 @@ export class DeleteHistoryJobResponseBody extends $tea.Model {
|
|
|
4620
4796
|
}
|
|
4621
4797
|
|
|
4622
4798
|
export class DeleteHistoryJobResponse extends $tea.Model {
|
|
4623
|
-
headers
|
|
4624
|
-
statusCode
|
|
4625
|
-
body
|
|
4799
|
+
headers?: { [key: string]: string };
|
|
4800
|
+
statusCode?: number;
|
|
4801
|
+
body?: DeleteHistoryJobResponseBody;
|
|
4626
4802
|
static names(): { [key: string]: string } {
|
|
4627
4803
|
return {
|
|
4628
4804
|
headers: 'headers',
|
|
@@ -4701,9 +4877,9 @@ export class DeleteIngressResponseBody extends $tea.Model {
|
|
|
4701
4877
|
}
|
|
4702
4878
|
|
|
4703
4879
|
export class DeleteIngressResponse extends $tea.Model {
|
|
4704
|
-
headers
|
|
4705
|
-
statusCode
|
|
4706
|
-
body
|
|
4880
|
+
headers?: { [key: string]: string };
|
|
4881
|
+
statusCode?: number;
|
|
4882
|
+
body?: DeleteIngressResponseBody;
|
|
4707
4883
|
static names(): { [key: string]: string } {
|
|
4708
4884
|
return {
|
|
4709
4885
|
headers: 'headers',
|
|
@@ -4782,9 +4958,9 @@ export class DeleteJobResponseBody extends $tea.Model {
|
|
|
4782
4958
|
}
|
|
4783
4959
|
|
|
4784
4960
|
export class DeleteJobResponse extends $tea.Model {
|
|
4785
|
-
headers
|
|
4786
|
-
statusCode
|
|
4787
|
-
body
|
|
4961
|
+
headers?: { [key: string]: string };
|
|
4962
|
+
statusCode?: number;
|
|
4963
|
+
body?: DeleteJobResponseBody;
|
|
4788
4964
|
static names(): { [key: string]: string } {
|
|
4789
4965
|
return {
|
|
4790
4966
|
headers: 'headers',
|
|
@@ -4863,9 +5039,9 @@ export class DeleteNamespaceResponseBody extends $tea.Model {
|
|
|
4863
5039
|
}
|
|
4864
5040
|
|
|
4865
5041
|
export class DeleteNamespaceResponse extends $tea.Model {
|
|
4866
|
-
headers
|
|
4867
|
-
statusCode
|
|
4868
|
-
body
|
|
5042
|
+
headers?: { [key: string]: string };
|
|
5043
|
+
statusCode?: number;
|
|
5044
|
+
body?: DeleteNamespaceResponseBody;
|
|
4869
5045
|
static names(): { [key: string]: string } {
|
|
4870
5046
|
return {
|
|
4871
5047
|
headers: 'headers',
|
|
@@ -4947,9 +5123,9 @@ export class DeleteSecretResponseBody extends $tea.Model {
|
|
|
4947
5123
|
}
|
|
4948
5124
|
|
|
4949
5125
|
export class DeleteSecretResponse extends $tea.Model {
|
|
4950
|
-
headers
|
|
4951
|
-
statusCode
|
|
4952
|
-
body
|
|
5126
|
+
headers?: { [key: string]: string };
|
|
5127
|
+
statusCode?: number;
|
|
5128
|
+
body?: DeleteSecretResponseBody;
|
|
4953
5129
|
static names(): { [key: string]: string } {
|
|
4954
5130
|
return {
|
|
4955
5131
|
headers: 'headers',
|
|
@@ -5199,9 +5375,9 @@ export class DeployApplicationResponseBody extends $tea.Model {
|
|
|
5199
5375
|
}
|
|
5200
5376
|
|
|
5201
5377
|
export class DeployApplicationResponse extends $tea.Model {
|
|
5202
|
-
headers
|
|
5203
|
-
statusCode
|
|
5204
|
-
body
|
|
5378
|
+
headers?: { [key: string]: string };
|
|
5379
|
+
statusCode?: number;
|
|
5380
|
+
body?: DeployApplicationResponseBody;
|
|
5205
5381
|
static names(): { [key: string]: string } {
|
|
5206
5382
|
return {
|
|
5207
5383
|
headers: 'headers',
|
|
@@ -5292,9 +5468,9 @@ export class DescribeAppServiceDetailResponseBody extends $tea.Model {
|
|
|
5292
5468
|
}
|
|
5293
5469
|
|
|
5294
5470
|
export class DescribeAppServiceDetailResponse extends $tea.Model {
|
|
5295
|
-
headers
|
|
5296
|
-
statusCode
|
|
5297
|
-
body
|
|
5471
|
+
headers?: { [key: string]: string };
|
|
5472
|
+
statusCode?: number;
|
|
5473
|
+
body?: DescribeAppServiceDetailResponseBody;
|
|
5298
5474
|
static names(): { [key: string]: string } {
|
|
5299
5475
|
return {
|
|
5300
5476
|
headers: 'headers',
|
|
@@ -5376,9 +5552,9 @@ export class DescribeApplicationConfigResponseBody extends $tea.Model {
|
|
|
5376
5552
|
}
|
|
5377
5553
|
|
|
5378
5554
|
export class DescribeApplicationConfigResponse extends $tea.Model {
|
|
5379
|
-
headers
|
|
5380
|
-
statusCode
|
|
5381
|
-
body
|
|
5555
|
+
headers?: { [key: string]: string };
|
|
5556
|
+
statusCode?: number;
|
|
5557
|
+
body?: DescribeApplicationConfigResponseBody;
|
|
5382
5558
|
static names(): { [key: string]: string } {
|
|
5383
5559
|
return {
|
|
5384
5560
|
headers: 'headers',
|
|
@@ -5463,9 +5639,9 @@ export class DescribeApplicationGroupsResponseBody extends $tea.Model {
|
|
|
5463
5639
|
}
|
|
5464
5640
|
|
|
5465
5641
|
export class DescribeApplicationGroupsResponse extends $tea.Model {
|
|
5466
|
-
headers
|
|
5467
|
-
statusCode
|
|
5468
|
-
body
|
|
5642
|
+
headers?: { [key: string]: string };
|
|
5643
|
+
statusCode?: number;
|
|
5644
|
+
body?: DescribeApplicationGroupsResponseBody;
|
|
5469
5645
|
static names(): { [key: string]: string } {
|
|
5470
5646
|
return {
|
|
5471
5647
|
headers: 'headers',
|
|
@@ -5547,9 +5723,9 @@ export class DescribeApplicationImageResponseBody extends $tea.Model {
|
|
|
5547
5723
|
}
|
|
5548
5724
|
|
|
5549
5725
|
export class DescribeApplicationImageResponse extends $tea.Model {
|
|
5550
|
-
headers
|
|
5551
|
-
statusCode
|
|
5552
|
-
body
|
|
5726
|
+
headers?: { [key: string]: string };
|
|
5727
|
+
statusCode?: number;
|
|
5728
|
+
body?: DescribeApplicationImageResponseBody;
|
|
5553
5729
|
static names(): { [key: string]: string } {
|
|
5554
5730
|
return {
|
|
5555
5731
|
headers: 'headers',
|
|
@@ -5640,9 +5816,9 @@ export class DescribeApplicationInstancesResponseBody extends $tea.Model {
|
|
|
5640
5816
|
}
|
|
5641
5817
|
|
|
5642
5818
|
export class DescribeApplicationInstancesResponse extends $tea.Model {
|
|
5643
|
-
headers
|
|
5644
|
-
statusCode
|
|
5645
|
-
body
|
|
5819
|
+
headers?: { [key: string]: string };
|
|
5820
|
+
statusCode?: number;
|
|
5821
|
+
body?: DescribeApplicationInstancesResponseBody;
|
|
5646
5822
|
static names(): { [key: string]: string } {
|
|
5647
5823
|
return {
|
|
5648
5824
|
headers: 'headers',
|
|
@@ -5724,9 +5900,9 @@ export class DescribeApplicationScalingRuleResponseBody extends $tea.Model {
|
|
|
5724
5900
|
}
|
|
5725
5901
|
|
|
5726
5902
|
export class DescribeApplicationScalingRuleResponse extends $tea.Model {
|
|
5727
|
-
headers
|
|
5728
|
-
statusCode
|
|
5729
|
-
body
|
|
5903
|
+
headers?: { [key: string]: string };
|
|
5904
|
+
statusCode?: number;
|
|
5905
|
+
body?: DescribeApplicationScalingRuleResponseBody;
|
|
5730
5906
|
static names(): { [key: string]: string } {
|
|
5731
5907
|
return {
|
|
5732
5908
|
headers: 'headers',
|
|
@@ -5805,9 +5981,9 @@ export class DescribeApplicationScalingRulesResponseBody extends $tea.Model {
|
|
|
5805
5981
|
}
|
|
5806
5982
|
|
|
5807
5983
|
export class DescribeApplicationScalingRulesResponse extends $tea.Model {
|
|
5808
|
-
headers
|
|
5809
|
-
statusCode
|
|
5810
|
-
body
|
|
5984
|
+
headers?: { [key: string]: string };
|
|
5985
|
+
statusCode?: number;
|
|
5986
|
+
body?: DescribeApplicationScalingRulesResponseBody;
|
|
5811
5987
|
static names(): { [key: string]: string } {
|
|
5812
5988
|
return {
|
|
5813
5989
|
headers: 'headers',
|
|
@@ -5886,9 +6062,9 @@ export class DescribeApplicationSlbsResponseBody extends $tea.Model {
|
|
|
5886
6062
|
}
|
|
5887
6063
|
|
|
5888
6064
|
export class DescribeApplicationSlbsResponse extends $tea.Model {
|
|
5889
|
-
headers
|
|
5890
|
-
statusCode
|
|
5891
|
-
body
|
|
6065
|
+
headers?: { [key: string]: string };
|
|
6066
|
+
statusCode?: number;
|
|
6067
|
+
body?: DescribeApplicationSlbsResponseBody;
|
|
5892
6068
|
static names(): { [key: string]: string } {
|
|
5893
6069
|
return {
|
|
5894
6070
|
headers: 'headers',
|
|
@@ -5967,9 +6143,9 @@ export class DescribeApplicationStatusResponseBody extends $tea.Model {
|
|
|
5967
6143
|
}
|
|
5968
6144
|
|
|
5969
6145
|
export class DescribeApplicationStatusResponse extends $tea.Model {
|
|
5970
|
-
headers
|
|
5971
|
-
statusCode
|
|
5972
|
-
body
|
|
6146
|
+
headers?: { [key: string]: string };
|
|
6147
|
+
statusCode?: number;
|
|
6148
|
+
body?: DescribeApplicationStatusResponseBody;
|
|
5973
6149
|
static names(): { [key: string]: string } {
|
|
5974
6150
|
return {
|
|
5975
6151
|
headers: 'headers',
|
|
@@ -6048,9 +6224,9 @@ export class DescribeChangeOrderResponseBody extends $tea.Model {
|
|
|
6048
6224
|
}
|
|
6049
6225
|
|
|
6050
6226
|
export class DescribeChangeOrderResponse extends $tea.Model {
|
|
6051
|
-
headers
|
|
6052
|
-
statusCode
|
|
6053
|
-
body
|
|
6227
|
+
headers?: { [key: string]: string };
|
|
6228
|
+
statusCode?: number;
|
|
6229
|
+
body?: DescribeChangeOrderResponseBody;
|
|
6054
6230
|
static names(): { [key: string]: string } {
|
|
6055
6231
|
return {
|
|
6056
6232
|
headers: 'headers',
|
|
@@ -6132,9 +6308,9 @@ export class DescribeComponentsResponseBody extends $tea.Model {
|
|
|
6132
6308
|
}
|
|
6133
6309
|
|
|
6134
6310
|
export class DescribeComponentsResponse extends $tea.Model {
|
|
6135
|
-
headers
|
|
6136
|
-
statusCode
|
|
6137
|
-
body
|
|
6311
|
+
headers?: { [key: string]: string };
|
|
6312
|
+
statusCode?: number;
|
|
6313
|
+
body?: DescribeComponentsResponseBody;
|
|
6138
6314
|
static names(): { [key: string]: string } {
|
|
6139
6315
|
return {
|
|
6140
6316
|
headers: 'headers',
|
|
@@ -6213,9 +6389,9 @@ export class DescribeConfigMapResponseBody extends $tea.Model {
|
|
|
6213
6389
|
}
|
|
6214
6390
|
|
|
6215
6391
|
export class DescribeConfigMapResponse extends $tea.Model {
|
|
6216
|
-
headers
|
|
6217
|
-
statusCode
|
|
6218
|
-
body
|
|
6392
|
+
headers?: { [key: string]: string };
|
|
6393
|
+
statusCode?: number;
|
|
6394
|
+
body?: DescribeConfigMapResponseBody;
|
|
6219
6395
|
static names(): { [key: string]: string } {
|
|
6220
6396
|
return {
|
|
6221
6397
|
headers: 'headers',
|
|
@@ -6300,9 +6476,9 @@ export class DescribeConfigurationPriceResponseBody extends $tea.Model {
|
|
|
6300
6476
|
}
|
|
6301
6477
|
|
|
6302
6478
|
export class DescribeConfigurationPriceResponse extends $tea.Model {
|
|
6303
|
-
headers
|
|
6304
|
-
statusCode
|
|
6305
|
-
body
|
|
6479
|
+
headers?: { [key: string]: string };
|
|
6480
|
+
statusCode?: number;
|
|
6481
|
+
body?: DescribeConfigurationPriceResponseBody;
|
|
6306
6482
|
static names(): { [key: string]: string } {
|
|
6307
6483
|
return {
|
|
6308
6484
|
headers: 'headers',
|
|
@@ -6362,9 +6538,9 @@ export class DescribeEdasContainersResponseBody extends $tea.Model {
|
|
|
6362
6538
|
}
|
|
6363
6539
|
|
|
6364
6540
|
export class DescribeEdasContainersResponse extends $tea.Model {
|
|
6365
|
-
headers
|
|
6366
|
-
statusCode
|
|
6367
|
-
body
|
|
6541
|
+
headers?: { [key: string]: string };
|
|
6542
|
+
statusCode?: number;
|
|
6543
|
+
body?: DescribeEdasContainersResponseBody;
|
|
6368
6544
|
static names(): { [key: string]: string } {
|
|
6369
6545
|
return {
|
|
6370
6546
|
headers: 'headers',
|
|
@@ -6443,9 +6619,9 @@ export class DescribeGreyTagRouteResponseBody extends $tea.Model {
|
|
|
6443
6619
|
}
|
|
6444
6620
|
|
|
6445
6621
|
export class DescribeGreyTagRouteResponse extends $tea.Model {
|
|
6446
|
-
headers
|
|
6447
|
-
statusCode
|
|
6448
|
-
body
|
|
6622
|
+
headers?: { [key: string]: string };
|
|
6623
|
+
statusCode?: number;
|
|
6624
|
+
body?: DescribeGreyTagRouteResponseBody;
|
|
6449
6625
|
static names(): { [key: string]: string } {
|
|
6450
6626
|
return {
|
|
6451
6627
|
headers: 'headers',
|
|
@@ -6524,9 +6700,9 @@ export class DescribeIngressResponseBody extends $tea.Model {
|
|
|
6524
6700
|
}
|
|
6525
6701
|
|
|
6526
6702
|
export class DescribeIngressResponse extends $tea.Model {
|
|
6527
|
-
headers
|
|
6528
|
-
statusCode
|
|
6529
|
-
body
|
|
6703
|
+
headers?: { [key: string]: string };
|
|
6704
|
+
statusCode?: number;
|
|
6705
|
+
body?: DescribeIngressResponseBody;
|
|
6530
6706
|
static names(): { [key: string]: string } {
|
|
6531
6707
|
return {
|
|
6532
6708
|
headers: 'headers',
|
|
@@ -6605,9 +6781,9 @@ export class DescribeInstanceLogResponseBody extends $tea.Model {
|
|
|
6605
6781
|
}
|
|
6606
6782
|
|
|
6607
6783
|
export class DescribeInstanceLogResponse extends $tea.Model {
|
|
6608
|
-
headers
|
|
6609
|
-
statusCode
|
|
6610
|
-
body
|
|
6784
|
+
headers?: { [key: string]: string };
|
|
6785
|
+
statusCode?: number;
|
|
6786
|
+
body?: DescribeInstanceLogResponseBody;
|
|
6611
6787
|
static names(): { [key: string]: string } {
|
|
6612
6788
|
return {
|
|
6613
6789
|
headers: 'headers',
|
|
@@ -6667,9 +6843,9 @@ export class DescribeInstanceSpecificationsResponseBody extends $tea.Model {
|
|
|
6667
6843
|
}
|
|
6668
6844
|
|
|
6669
6845
|
export class DescribeInstanceSpecificationsResponse extends $tea.Model {
|
|
6670
|
-
headers
|
|
6671
|
-
statusCode
|
|
6672
|
-
body
|
|
6846
|
+
headers?: { [key: string]: string };
|
|
6847
|
+
statusCode?: number;
|
|
6848
|
+
body?: DescribeInstanceSpecificationsResponseBody;
|
|
6673
6849
|
static names(): { [key: string]: string } {
|
|
6674
6850
|
return {
|
|
6675
6851
|
headers: 'headers',
|
|
@@ -6751,9 +6927,9 @@ export class DescribeJobResponseBody extends $tea.Model {
|
|
|
6751
6927
|
}
|
|
6752
6928
|
|
|
6753
6929
|
export class DescribeJobResponse extends $tea.Model {
|
|
6754
|
-
headers
|
|
6755
|
-
statusCode
|
|
6756
|
-
body
|
|
6930
|
+
headers?: { [key: string]: string };
|
|
6931
|
+
statusCode?: number;
|
|
6932
|
+
body?: DescribeJobResponseBody;
|
|
6757
6933
|
static names(): { [key: string]: string } {
|
|
6758
6934
|
return {
|
|
6759
6935
|
headers: 'headers',
|
|
@@ -6841,9 +7017,9 @@ export class DescribeJobHistoryResponseBody extends $tea.Model {
|
|
|
6841
7017
|
}
|
|
6842
7018
|
|
|
6843
7019
|
export class DescribeJobHistoryResponse extends $tea.Model {
|
|
6844
|
-
headers
|
|
6845
|
-
statusCode
|
|
6846
|
-
body
|
|
7020
|
+
headers?: { [key: string]: string };
|
|
7021
|
+
statusCode?: number;
|
|
7022
|
+
body?: DescribeJobHistoryResponseBody;
|
|
6847
7023
|
static names(): { [key: string]: string } {
|
|
6848
7024
|
return {
|
|
6849
7025
|
headers: 'headers',
|
|
@@ -6925,9 +7101,9 @@ export class DescribeJobStatusResponseBody extends $tea.Model {
|
|
|
6925
7101
|
}
|
|
6926
7102
|
|
|
6927
7103
|
export class DescribeJobStatusResponse extends $tea.Model {
|
|
6928
|
-
headers
|
|
6929
|
-
statusCode
|
|
6930
|
-
body
|
|
7104
|
+
headers?: { [key: string]: string };
|
|
7105
|
+
statusCode?: number;
|
|
7106
|
+
body?: DescribeJobStatusResponseBody;
|
|
6931
7107
|
static names(): { [key: string]: string } {
|
|
6932
7108
|
return {
|
|
6933
7109
|
headers: 'headers',
|
|
@@ -7009,9 +7185,9 @@ export class DescribeNamespaceResponseBody extends $tea.Model {
|
|
|
7009
7185
|
}
|
|
7010
7186
|
|
|
7011
7187
|
export class DescribeNamespaceResponse extends $tea.Model {
|
|
7012
|
-
headers
|
|
7013
|
-
statusCode
|
|
7014
|
-
body
|
|
7188
|
+
headers?: { [key: string]: string };
|
|
7189
|
+
statusCode?: number;
|
|
7190
|
+
body?: DescribeNamespaceResponseBody;
|
|
7015
7191
|
static names(): { [key: string]: string } {
|
|
7016
7192
|
return {
|
|
7017
7193
|
headers: 'headers',
|
|
@@ -7093,9 +7269,9 @@ export class DescribeNamespaceListResponseBody extends $tea.Model {
|
|
|
7093
7269
|
}
|
|
7094
7270
|
|
|
7095
7271
|
export class DescribeNamespaceListResponse extends $tea.Model {
|
|
7096
|
-
headers
|
|
7097
|
-
statusCode
|
|
7098
|
-
body
|
|
7272
|
+
headers?: { [key: string]: string };
|
|
7273
|
+
statusCode?: number;
|
|
7274
|
+
body?: DescribeNamespaceListResponseBody;
|
|
7099
7275
|
static names(): { [key: string]: string } {
|
|
7100
7276
|
return {
|
|
7101
7277
|
headers: 'headers',
|
|
@@ -7177,9 +7353,9 @@ export class DescribeNamespaceResourcesResponseBody extends $tea.Model {
|
|
|
7177
7353
|
}
|
|
7178
7354
|
|
|
7179
7355
|
export class DescribeNamespaceResourcesResponse extends $tea.Model {
|
|
7180
|
-
headers
|
|
7181
|
-
statusCode
|
|
7182
|
-
body
|
|
7356
|
+
headers?: { [key: string]: string };
|
|
7357
|
+
statusCode?: number;
|
|
7358
|
+
body?: DescribeNamespaceResourcesResponseBody;
|
|
7183
7359
|
static names(): { [key: string]: string } {
|
|
7184
7360
|
return {
|
|
7185
7361
|
headers: 'headers',
|
|
@@ -7261,9 +7437,9 @@ export class DescribeNamespacesResponseBody extends $tea.Model {
|
|
|
7261
7437
|
}
|
|
7262
7438
|
|
|
7263
7439
|
export class DescribeNamespacesResponse extends $tea.Model {
|
|
7264
|
-
headers
|
|
7265
|
-
statusCode
|
|
7266
|
-
body
|
|
7440
|
+
headers?: { [key: string]: string };
|
|
7441
|
+
statusCode?: number;
|
|
7442
|
+
body?: DescribeNamespacesResponseBody;
|
|
7267
7443
|
static names(): { [key: string]: string } {
|
|
7268
7444
|
return {
|
|
7269
7445
|
headers: 'headers',
|
|
@@ -7342,9 +7518,9 @@ export class DescribePipelineResponseBody extends $tea.Model {
|
|
|
7342
7518
|
}
|
|
7343
7519
|
|
|
7344
7520
|
export class DescribePipelineResponse extends $tea.Model {
|
|
7345
|
-
headers
|
|
7346
|
-
statusCode
|
|
7347
|
-
body
|
|
7521
|
+
headers?: { [key: string]: string };
|
|
7522
|
+
statusCode?: number;
|
|
7523
|
+
body?: DescribePipelineResponseBody;
|
|
7348
7524
|
static names(): { [key: string]: string } {
|
|
7349
7525
|
return {
|
|
7350
7526
|
headers: 'headers',
|
|
@@ -7395,9 +7571,9 @@ export class DescribeRegionsResponseBody extends $tea.Model {
|
|
|
7395
7571
|
}
|
|
7396
7572
|
|
|
7397
7573
|
export class DescribeRegionsResponse extends $tea.Model {
|
|
7398
|
-
headers
|
|
7399
|
-
statusCode
|
|
7400
|
-
body
|
|
7574
|
+
headers?: { [key: string]: string };
|
|
7575
|
+
statusCode?: number;
|
|
7576
|
+
body?: DescribeRegionsResponseBody;
|
|
7401
7577
|
static names(): { [key: string]: string } {
|
|
7402
7578
|
return {
|
|
7403
7579
|
headers: 'headers',
|
|
@@ -7479,9 +7655,9 @@ export class DescribeSecretResponseBody extends $tea.Model {
|
|
|
7479
7655
|
}
|
|
7480
7656
|
|
|
7481
7657
|
export class DescribeSecretResponse extends $tea.Model {
|
|
7482
|
-
headers
|
|
7483
|
-
statusCode
|
|
7484
|
-
body
|
|
7658
|
+
headers?: { [key: string]: string };
|
|
7659
|
+
statusCode?: number;
|
|
7660
|
+
body?: DescribeSecretResponseBody;
|
|
7485
7661
|
static names(): { [key: string]: string } {
|
|
7486
7662
|
return {
|
|
7487
7663
|
headers: 'headers',
|
|
@@ -7560,9 +7736,9 @@ export class DisableApplicationScalingRuleResponseBody extends $tea.Model {
|
|
|
7560
7736
|
}
|
|
7561
7737
|
|
|
7562
7738
|
export class DisableApplicationScalingRuleResponse extends $tea.Model {
|
|
7563
|
-
headers
|
|
7564
|
-
statusCode
|
|
7565
|
-
body
|
|
7739
|
+
headers?: { [key: string]: string };
|
|
7740
|
+
statusCode?: number;
|
|
7741
|
+
body?: DisableApplicationScalingRuleResponseBody;
|
|
7566
7742
|
static names(): { [key: string]: string } {
|
|
7567
7743
|
return {
|
|
7568
7744
|
headers: 'headers',
|
|
@@ -7641,9 +7817,9 @@ export class EnableApplicationScalingRuleResponseBody extends $tea.Model {
|
|
|
7641
7817
|
}
|
|
7642
7818
|
|
|
7643
7819
|
export class EnableApplicationScalingRuleResponse extends $tea.Model {
|
|
7644
|
-
headers
|
|
7645
|
-
statusCode
|
|
7646
|
-
body
|
|
7820
|
+
headers?: { [key: string]: string };
|
|
7821
|
+
statusCode?: number;
|
|
7822
|
+
body?: EnableApplicationScalingRuleResponseBody;
|
|
7647
7823
|
static names(): { [key: string]: string } {
|
|
7648
7824
|
return {
|
|
7649
7825
|
headers: 'headers',
|
|
@@ -7749,9 +7925,9 @@ export class ExecJobResponseBody extends $tea.Model {
|
|
|
7749
7925
|
}
|
|
7750
7926
|
|
|
7751
7927
|
export class ExecJobResponse extends $tea.Model {
|
|
7752
|
-
headers
|
|
7753
|
-
statusCode
|
|
7754
|
-
body
|
|
7928
|
+
headers?: { [key: string]: string };
|
|
7929
|
+
statusCode?: number;
|
|
7930
|
+
body?: ExecJobResponseBody;
|
|
7755
7931
|
static names(): { [key: string]: string } {
|
|
7756
7932
|
return {
|
|
7757
7933
|
headers: 'headers',
|
|
@@ -7774,6 +7950,8 @@ export class ExecJobResponse extends $tea.Model {
|
|
|
7774
7950
|
}
|
|
7775
7951
|
|
|
7776
7952
|
export class GetArmsTopNMetricRequest extends $tea.Model {
|
|
7953
|
+
appSource?: string;
|
|
7954
|
+
cpuStrategy?: string;
|
|
7777
7955
|
endTime?: number;
|
|
7778
7956
|
limit?: number;
|
|
7779
7957
|
orderBy?: string;
|
|
@@ -7781,6 +7959,8 @@ export class GetArmsTopNMetricRequest extends $tea.Model {
|
|
|
7781
7959
|
startTime?: number;
|
|
7782
7960
|
static names(): { [key: string]: string } {
|
|
7783
7961
|
return {
|
|
7962
|
+
appSource: 'AppSource',
|
|
7963
|
+
cpuStrategy: 'CpuStrategy',
|
|
7784
7964
|
endTime: 'EndTime',
|
|
7785
7965
|
limit: 'Limit',
|
|
7786
7966
|
orderBy: 'OrderBy',
|
|
@@ -7791,6 +7971,8 @@ export class GetArmsTopNMetricRequest extends $tea.Model {
|
|
|
7791
7971
|
|
|
7792
7972
|
static types(): { [key: string]: any } {
|
|
7793
7973
|
return {
|
|
7974
|
+
appSource: 'string',
|
|
7975
|
+
cpuStrategy: 'string',
|
|
7794
7976
|
endTime: 'number',
|
|
7795
7977
|
limit: 'number',
|
|
7796
7978
|
orderBy: 'string',
|
|
@@ -7836,9 +8018,9 @@ export class GetArmsTopNMetricResponseBody extends $tea.Model {
|
|
|
7836
8018
|
}
|
|
7837
8019
|
|
|
7838
8020
|
export class GetArmsTopNMetricResponse extends $tea.Model {
|
|
7839
|
-
headers
|
|
7840
|
-
statusCode
|
|
7841
|
-
body
|
|
8021
|
+
headers?: { [key: string]: string };
|
|
8022
|
+
statusCode?: number;
|
|
8023
|
+
body?: GetArmsTopNMetricResponseBody;
|
|
7842
8024
|
static names(): { [key: string]: string } {
|
|
7843
8025
|
return {
|
|
7844
8026
|
headers: 'headers',
|
|
@@ -7861,10 +8043,14 @@ export class GetArmsTopNMetricResponse extends $tea.Model {
|
|
|
7861
8043
|
}
|
|
7862
8044
|
|
|
7863
8045
|
export class GetAvailabilityMetricRequest extends $tea.Model {
|
|
8046
|
+
appSource?: string;
|
|
8047
|
+
cpuStrategy?: string;
|
|
7864
8048
|
limit?: number;
|
|
7865
8049
|
regionId?: string;
|
|
7866
8050
|
static names(): { [key: string]: string } {
|
|
7867
8051
|
return {
|
|
8052
|
+
appSource: 'AppSource',
|
|
8053
|
+
cpuStrategy: 'CpuStrategy',
|
|
7868
8054
|
limit: 'Limit',
|
|
7869
8055
|
regionId: 'RegionId',
|
|
7870
8056
|
};
|
|
@@ -7872,6 +8058,8 @@ export class GetAvailabilityMetricRequest extends $tea.Model {
|
|
|
7872
8058
|
|
|
7873
8059
|
static types(): { [key: string]: any } {
|
|
7874
8060
|
return {
|
|
8061
|
+
appSource: 'string',
|
|
8062
|
+
cpuStrategy: 'string',
|
|
7875
8063
|
limit: 'number',
|
|
7876
8064
|
regionId: 'string',
|
|
7877
8065
|
};
|
|
@@ -7914,9 +8102,9 @@ export class GetAvailabilityMetricResponseBody extends $tea.Model {
|
|
|
7914
8102
|
}
|
|
7915
8103
|
|
|
7916
8104
|
export class GetAvailabilityMetricResponse extends $tea.Model {
|
|
7917
|
-
headers
|
|
7918
|
-
statusCode
|
|
7919
|
-
body
|
|
8105
|
+
headers?: { [key: string]: string };
|
|
8106
|
+
statusCode?: number;
|
|
8107
|
+
body?: GetAvailabilityMetricResponseBody;
|
|
7920
8108
|
static names(): { [key: string]: string } {
|
|
7921
8109
|
return {
|
|
7922
8110
|
headers: 'headers',
|
|
@@ -7939,12 +8127,16 @@ export class GetAvailabilityMetricResponse extends $tea.Model {
|
|
|
7939
8127
|
}
|
|
7940
8128
|
|
|
7941
8129
|
export class GetChangeOrderMetricRequest extends $tea.Model {
|
|
8130
|
+
appSource?: string;
|
|
8131
|
+
cpuStrategy?: string;
|
|
7942
8132
|
createTime?: string;
|
|
7943
8133
|
limit?: number;
|
|
7944
8134
|
orderBy?: string;
|
|
7945
8135
|
regionId?: string;
|
|
7946
8136
|
static names(): { [key: string]: string } {
|
|
7947
8137
|
return {
|
|
8138
|
+
appSource: 'AppSource',
|
|
8139
|
+
cpuStrategy: 'CpuStrategy',
|
|
7948
8140
|
createTime: 'CreateTime',
|
|
7949
8141
|
limit: 'Limit',
|
|
7950
8142
|
orderBy: 'OrderBy',
|
|
@@ -7954,6 +8146,8 @@ export class GetChangeOrderMetricRequest extends $tea.Model {
|
|
|
7954
8146
|
|
|
7955
8147
|
static types(): { [key: string]: any } {
|
|
7956
8148
|
return {
|
|
8149
|
+
appSource: 'string',
|
|
8150
|
+
cpuStrategy: 'string',
|
|
7957
8151
|
createTime: 'string',
|
|
7958
8152
|
limit: 'number',
|
|
7959
8153
|
orderBy: 'string',
|
|
@@ -7998,9 +8192,9 @@ export class GetChangeOrderMetricResponseBody extends $tea.Model {
|
|
|
7998
8192
|
}
|
|
7999
8193
|
|
|
8000
8194
|
export class GetChangeOrderMetricResponse extends $tea.Model {
|
|
8001
|
-
headers
|
|
8002
|
-
statusCode
|
|
8003
|
-
body
|
|
8195
|
+
headers?: { [key: string]: string };
|
|
8196
|
+
statusCode?: number;
|
|
8197
|
+
body?: GetChangeOrderMetricResponseBody;
|
|
8004
8198
|
static names(): { [key: string]: string } {
|
|
8005
8199
|
return {
|
|
8006
8200
|
headers: 'headers',
|
|
@@ -8023,10 +8217,14 @@ export class GetChangeOrderMetricResponse extends $tea.Model {
|
|
|
8023
8217
|
}
|
|
8024
8218
|
|
|
8025
8219
|
export class GetScaleAppMetricRequest extends $tea.Model {
|
|
8220
|
+
appSource?: string;
|
|
8221
|
+
cpuStrategy?: string;
|
|
8026
8222
|
limit?: number;
|
|
8027
8223
|
regionId?: string;
|
|
8028
8224
|
static names(): { [key: string]: string } {
|
|
8029
8225
|
return {
|
|
8226
|
+
appSource: 'AppSource',
|
|
8227
|
+
cpuStrategy: 'CpuStrategy',
|
|
8030
8228
|
limit: 'Limit',
|
|
8031
8229
|
regionId: 'RegionId',
|
|
8032
8230
|
};
|
|
@@ -8034,6 +8232,8 @@ export class GetScaleAppMetricRequest extends $tea.Model {
|
|
|
8034
8232
|
|
|
8035
8233
|
static types(): { [key: string]: any } {
|
|
8036
8234
|
return {
|
|
8235
|
+
appSource: 'string',
|
|
8236
|
+
cpuStrategy: 'string',
|
|
8037
8237
|
limit: 'number',
|
|
8038
8238
|
regionId: 'string',
|
|
8039
8239
|
};
|
|
@@ -8076,9 +8276,9 @@ export class GetScaleAppMetricResponseBody extends $tea.Model {
|
|
|
8076
8276
|
}
|
|
8077
8277
|
|
|
8078
8278
|
export class GetScaleAppMetricResponse extends $tea.Model {
|
|
8079
|
-
headers
|
|
8080
|
-
statusCode
|
|
8081
|
-
body
|
|
8279
|
+
headers?: { [key: string]: string };
|
|
8280
|
+
statusCode?: number;
|
|
8281
|
+
body?: GetScaleAppMetricResponseBody;
|
|
8082
8282
|
static names(): { [key: string]: string } {
|
|
8083
8283
|
return {
|
|
8084
8284
|
headers: 'headers',
|
|
@@ -8101,12 +8301,16 @@ export class GetScaleAppMetricResponse extends $tea.Model {
|
|
|
8101
8301
|
}
|
|
8102
8302
|
|
|
8103
8303
|
export class GetWarningEventMetricRequest extends $tea.Model {
|
|
8304
|
+
appSource?: string;
|
|
8305
|
+
cpuStrategy?: string;
|
|
8104
8306
|
endTime?: number;
|
|
8105
8307
|
limit?: number;
|
|
8106
8308
|
regionId?: string;
|
|
8107
8309
|
startTime?: number;
|
|
8108
8310
|
static names(): { [key: string]: string } {
|
|
8109
8311
|
return {
|
|
8312
|
+
appSource: 'AppSource',
|
|
8313
|
+
cpuStrategy: 'CpuStrategy',
|
|
8110
8314
|
endTime: 'EndTime',
|
|
8111
8315
|
limit: 'Limit',
|
|
8112
8316
|
regionId: 'RegionId',
|
|
@@ -8116,6 +8320,8 @@ export class GetWarningEventMetricRequest extends $tea.Model {
|
|
|
8116
8320
|
|
|
8117
8321
|
static types(): { [key: string]: any } {
|
|
8118
8322
|
return {
|
|
8323
|
+
appSource: 'string',
|
|
8324
|
+
cpuStrategy: 'string',
|
|
8119
8325
|
endTime: 'number',
|
|
8120
8326
|
limit: 'number',
|
|
8121
8327
|
regionId: 'string',
|
|
@@ -8160,9 +8366,9 @@ export class GetWarningEventMetricResponseBody extends $tea.Model {
|
|
|
8160
8366
|
}
|
|
8161
8367
|
|
|
8162
8368
|
export class GetWarningEventMetricResponse extends $tea.Model {
|
|
8163
|
-
headers
|
|
8164
|
-
statusCode
|
|
8165
|
-
body
|
|
8369
|
+
headers?: { [key: string]: string };
|
|
8370
|
+
statusCode?: number;
|
|
8371
|
+
body?: GetWarningEventMetricResponseBody;
|
|
8166
8372
|
static names(): { [key: string]: string } {
|
|
8167
8373
|
return {
|
|
8168
8374
|
headers: 'headers',
|
|
@@ -8259,9 +8465,9 @@ export class ListAppEventsResponseBody extends $tea.Model {
|
|
|
8259
8465
|
}
|
|
8260
8466
|
|
|
8261
8467
|
export class ListAppEventsResponse extends $tea.Model {
|
|
8262
|
-
headers
|
|
8263
|
-
statusCode
|
|
8264
|
-
body
|
|
8468
|
+
headers?: { [key: string]: string };
|
|
8469
|
+
statusCode?: number;
|
|
8470
|
+
body?: ListAppEventsResponseBody;
|
|
8265
8471
|
static names(): { [key: string]: string } {
|
|
8266
8472
|
return {
|
|
8267
8473
|
headers: 'headers',
|
|
@@ -8349,9 +8555,9 @@ export class ListAppServicesPageResponseBody extends $tea.Model {
|
|
|
8349
8555
|
}
|
|
8350
8556
|
|
|
8351
8557
|
export class ListAppServicesPageResponse extends $tea.Model {
|
|
8352
|
-
headers
|
|
8353
|
-
statusCode
|
|
8354
|
-
body
|
|
8558
|
+
headers?: { [key: string]: string };
|
|
8559
|
+
statusCode?: number;
|
|
8560
|
+
body?: ListAppServicesPageResponseBody;
|
|
8355
8561
|
static names(): { [key: string]: string } {
|
|
8356
8562
|
return {
|
|
8357
8563
|
headers: 'headers',
|
|
@@ -8427,9 +8633,9 @@ export class ListAppVersionsResponseBody extends $tea.Model {
|
|
|
8427
8633
|
}
|
|
8428
8634
|
|
|
8429
8635
|
export class ListAppVersionsResponse extends $tea.Model {
|
|
8430
|
-
headers
|
|
8431
|
-
statusCode
|
|
8432
|
-
body
|
|
8636
|
+
headers?: { [key: string]: string };
|
|
8637
|
+
statusCode?: number;
|
|
8638
|
+
body?: ListAppVersionsResponseBody;
|
|
8433
8639
|
static names(): { [key: string]: string } {
|
|
8434
8640
|
return {
|
|
8435
8641
|
headers: 'headers',
|
|
@@ -8541,9 +8747,9 @@ export class ListApplicationsResponseBody extends $tea.Model {
|
|
|
8541
8747
|
}
|
|
8542
8748
|
|
|
8543
8749
|
export class ListApplicationsResponse extends $tea.Model {
|
|
8544
|
-
headers
|
|
8545
|
-
statusCode
|
|
8546
|
-
body
|
|
8750
|
+
headers?: { [key: string]: string };
|
|
8751
|
+
statusCode?: number;
|
|
8752
|
+
body?: ListApplicationsResponseBody;
|
|
8547
8753
|
static names(): { [key: string]: string } {
|
|
8548
8754
|
return {
|
|
8549
8755
|
headers: 'headers',
|
|
@@ -8637,9 +8843,9 @@ export class ListChangeOrdersResponseBody extends $tea.Model {
|
|
|
8637
8843
|
}
|
|
8638
8844
|
|
|
8639
8845
|
export class ListChangeOrdersResponse extends $tea.Model {
|
|
8640
|
-
headers
|
|
8641
|
-
statusCode
|
|
8642
|
-
body
|
|
8846
|
+
headers?: { [key: string]: string };
|
|
8847
|
+
statusCode?: number;
|
|
8848
|
+
body?: ListChangeOrdersResponseBody;
|
|
8643
8849
|
static names(): { [key: string]: string } {
|
|
8644
8850
|
return {
|
|
8645
8851
|
headers: 'headers',
|
|
@@ -8718,9 +8924,9 @@ export class ListConsumedServicesResponseBody extends $tea.Model {
|
|
|
8718
8924
|
}
|
|
8719
8925
|
|
|
8720
8926
|
export class ListConsumedServicesResponse extends $tea.Model {
|
|
8721
|
-
headers
|
|
8722
|
-
statusCode
|
|
8723
|
-
body
|
|
8927
|
+
headers?: { [key: string]: string };
|
|
8928
|
+
statusCode?: number;
|
|
8929
|
+
body?: ListConsumedServicesResponseBody;
|
|
8724
8930
|
static names(): { [key: string]: string } {
|
|
8725
8931
|
return {
|
|
8726
8932
|
headers: 'headers',
|
|
@@ -8799,9 +9005,9 @@ export class ListGreyTagRouteResponseBody extends $tea.Model {
|
|
|
8799
9005
|
}
|
|
8800
9006
|
|
|
8801
9007
|
export class ListGreyTagRouteResponse extends $tea.Model {
|
|
8802
|
-
headers
|
|
8803
|
-
statusCode
|
|
8804
|
-
body
|
|
9008
|
+
headers?: { [key: string]: string };
|
|
9009
|
+
statusCode?: number;
|
|
9010
|
+
body?: ListGreyTagRouteResponseBody;
|
|
8805
9011
|
static names(): { [key: string]: string } {
|
|
8806
9012
|
return {
|
|
8807
9013
|
headers: 'headers',
|
|
@@ -8883,9 +9089,9 @@ export class ListIngressesResponseBody extends $tea.Model {
|
|
|
8883
9089
|
}
|
|
8884
9090
|
|
|
8885
9091
|
export class ListIngressesResponse extends $tea.Model {
|
|
8886
|
-
headers
|
|
8887
|
-
statusCode
|
|
8888
|
-
body
|
|
9092
|
+
headers?: { [key: string]: string };
|
|
9093
|
+
statusCode?: number;
|
|
9094
|
+
body?: ListIngressesResponseBody;
|
|
8889
9095
|
static names(): { [key: string]: string } {
|
|
8890
9096
|
return {
|
|
8891
9097
|
headers: 'headers',
|
|
@@ -8997,9 +9203,9 @@ export class ListJobsResponseBody extends $tea.Model {
|
|
|
8997
9203
|
}
|
|
8998
9204
|
|
|
8999
9205
|
export class ListJobsResponse extends $tea.Model {
|
|
9000
|
-
headers
|
|
9001
|
-
statusCode
|
|
9002
|
-
body
|
|
9206
|
+
headers?: { [key: string]: string };
|
|
9207
|
+
statusCode?: number;
|
|
9208
|
+
body?: ListJobsResponseBody;
|
|
9003
9209
|
static names(): { [key: string]: string } {
|
|
9004
9210
|
return {
|
|
9005
9211
|
headers: 'headers',
|
|
@@ -9084,9 +9290,9 @@ export class ListLogConfigsResponseBody extends $tea.Model {
|
|
|
9084
9290
|
}
|
|
9085
9291
|
|
|
9086
9292
|
export class ListLogConfigsResponse extends $tea.Model {
|
|
9087
|
-
headers
|
|
9088
|
-
statusCode
|
|
9089
|
-
body
|
|
9293
|
+
headers?: { [key: string]: string };
|
|
9294
|
+
statusCode?: number;
|
|
9295
|
+
body?: ListLogConfigsResponseBody;
|
|
9090
9296
|
static names(): { [key: string]: string } {
|
|
9091
9297
|
return {
|
|
9092
9298
|
headers: 'headers',
|
|
@@ -9180,9 +9386,9 @@ export class ListNamespaceChangeOrdersResponseBody extends $tea.Model {
|
|
|
9180
9386
|
}
|
|
9181
9387
|
|
|
9182
9388
|
export class ListNamespaceChangeOrdersResponse extends $tea.Model {
|
|
9183
|
-
headers
|
|
9184
|
-
statusCode
|
|
9185
|
-
body
|
|
9389
|
+
headers?: { [key: string]: string };
|
|
9390
|
+
statusCode?: number;
|
|
9391
|
+
body?: ListNamespaceChangeOrdersResponseBody;
|
|
9186
9392
|
static names(): { [key: string]: string } {
|
|
9187
9393
|
return {
|
|
9188
9394
|
headers: 'headers',
|
|
@@ -9261,9 +9467,9 @@ export class ListNamespacedConfigMapsResponseBody extends $tea.Model {
|
|
|
9261
9467
|
}
|
|
9262
9468
|
|
|
9263
9469
|
export class ListNamespacedConfigMapsResponse extends $tea.Model {
|
|
9264
|
-
headers
|
|
9265
|
-
statusCode
|
|
9266
|
-
body
|
|
9470
|
+
headers?: { [key: string]: string };
|
|
9471
|
+
statusCode?: number;
|
|
9472
|
+
body?: ListNamespacedConfigMapsResponseBody;
|
|
9267
9473
|
static names(): { [key: string]: string } {
|
|
9268
9474
|
return {
|
|
9269
9475
|
headers: 'headers',
|
|
@@ -9342,9 +9548,9 @@ export class ListPublishedServicesResponseBody extends $tea.Model {
|
|
|
9342
9548
|
}
|
|
9343
9549
|
|
|
9344
9550
|
export class ListPublishedServicesResponse extends $tea.Model {
|
|
9345
|
-
headers
|
|
9346
|
-
statusCode
|
|
9347
|
-
body
|
|
9551
|
+
headers?: { [key: string]: string };
|
|
9552
|
+
statusCode?: number;
|
|
9553
|
+
body?: ListPublishedServicesResponseBody;
|
|
9348
9554
|
static names(): { [key: string]: string } {
|
|
9349
9555
|
return {
|
|
9350
9556
|
headers: 'headers',
|
|
@@ -9423,9 +9629,9 @@ export class ListSecretsResponseBody extends $tea.Model {
|
|
|
9423
9629
|
}
|
|
9424
9630
|
|
|
9425
9631
|
export class ListSecretsResponse extends $tea.Model {
|
|
9426
|
-
headers
|
|
9427
|
-
statusCode
|
|
9428
|
-
body
|
|
9632
|
+
headers?: { [key: string]: string };
|
|
9633
|
+
statusCode?: number;
|
|
9634
|
+
body?: ListSecretsResponseBody;
|
|
9429
9635
|
static names(): { [key: string]: string } {
|
|
9430
9636
|
return {
|
|
9431
9637
|
headers: 'headers',
|
|
@@ -9516,9 +9722,9 @@ export class ListTagResourcesResponseBody extends $tea.Model {
|
|
|
9516
9722
|
}
|
|
9517
9723
|
|
|
9518
9724
|
export class ListTagResourcesResponse extends $tea.Model {
|
|
9519
|
-
headers
|
|
9520
|
-
statusCode
|
|
9521
|
-
body
|
|
9725
|
+
headers?: { [key: string]: string };
|
|
9726
|
+
statusCode?: number;
|
|
9727
|
+
body?: ListTagResourcesResponseBody;
|
|
9522
9728
|
static names(): { [key: string]: string } {
|
|
9523
9729
|
return {
|
|
9524
9730
|
headers: 'headers',
|
|
@@ -9563,9 +9769,9 @@ export class OpenSaeServiceResponseBody extends $tea.Model {
|
|
|
9563
9769
|
}
|
|
9564
9770
|
|
|
9565
9771
|
export class OpenSaeServiceResponse extends $tea.Model {
|
|
9566
|
-
headers
|
|
9567
|
-
statusCode
|
|
9568
|
-
body
|
|
9772
|
+
headers?: { [key: string]: string };
|
|
9773
|
+
statusCode?: number;
|
|
9774
|
+
body?: OpenSaeServiceResponseBody;
|
|
9569
9775
|
static names(): { [key: string]: string } {
|
|
9570
9776
|
return {
|
|
9571
9777
|
headers: 'headers',
|
|
@@ -9644,9 +9850,9 @@ export class QueryResourceStaticsResponseBody extends $tea.Model {
|
|
|
9644
9850
|
}
|
|
9645
9851
|
|
|
9646
9852
|
export class QueryResourceStaticsResponse extends $tea.Model {
|
|
9647
|
-
headers
|
|
9648
|
-
statusCode
|
|
9649
|
-
body
|
|
9853
|
+
headers?: { [key: string]: string };
|
|
9854
|
+
statusCode?: number;
|
|
9855
|
+
body?: QueryResourceStaticsResponseBody;
|
|
9650
9856
|
static names(): { [key: string]: string } {
|
|
9651
9857
|
return {
|
|
9652
9858
|
headers: 'headers',
|
|
@@ -9728,9 +9934,9 @@ export class ReduceApplicationCapacityByInstanceIdsResponseBody extends $tea.Mod
|
|
|
9728
9934
|
}
|
|
9729
9935
|
|
|
9730
9936
|
export class ReduceApplicationCapacityByInstanceIdsResponse extends $tea.Model {
|
|
9731
|
-
headers
|
|
9732
|
-
statusCode
|
|
9733
|
-
body
|
|
9937
|
+
headers?: { [key: string]: string };
|
|
9938
|
+
statusCode?: number;
|
|
9939
|
+
body?: ReduceApplicationCapacityByInstanceIdsResponseBody;
|
|
9734
9940
|
static names(): { [key: string]: string } {
|
|
9735
9941
|
return {
|
|
9736
9942
|
headers: 'headers',
|
|
@@ -9818,9 +10024,9 @@ export class RescaleApplicationResponseBody extends $tea.Model {
|
|
|
9818
10024
|
}
|
|
9819
10025
|
|
|
9820
10026
|
export class RescaleApplicationResponse extends $tea.Model {
|
|
9821
|
-
headers
|
|
9822
|
-
statusCode
|
|
9823
|
-
body
|
|
10027
|
+
headers?: { [key: string]: string };
|
|
10028
|
+
statusCode?: number;
|
|
10029
|
+
body?: RescaleApplicationResponseBody;
|
|
9824
10030
|
static names(): { [key: string]: string } {
|
|
9825
10031
|
return {
|
|
9826
10032
|
headers: 'headers',
|
|
@@ -9905,9 +10111,9 @@ export class RescaleApplicationVerticallyResponseBody extends $tea.Model {
|
|
|
9905
10111
|
}
|
|
9906
10112
|
|
|
9907
10113
|
export class RescaleApplicationVerticallyResponse extends $tea.Model {
|
|
9908
|
-
headers
|
|
9909
|
-
statusCode
|
|
9910
|
-
body
|
|
10114
|
+
headers?: { [key: string]: string };
|
|
10115
|
+
statusCode?: number;
|
|
10116
|
+
body?: RescaleApplicationVerticallyResponseBody;
|
|
9911
10117
|
static names(): { [key: string]: string } {
|
|
9912
10118
|
return {
|
|
9913
10119
|
headers: 'headers',
|
|
@@ -9995,9 +10201,9 @@ export class RestartApplicationResponseBody extends $tea.Model {
|
|
|
9995
10201
|
}
|
|
9996
10202
|
|
|
9997
10203
|
export class RestartApplicationResponse extends $tea.Model {
|
|
9998
|
-
headers
|
|
9999
|
-
statusCode
|
|
10000
|
-
body
|
|
10204
|
+
headers?: { [key: string]: string };
|
|
10205
|
+
statusCode?: number;
|
|
10206
|
+
body?: RestartApplicationResponseBody;
|
|
10001
10207
|
static names(): { [key: string]: string } {
|
|
10002
10208
|
return {
|
|
10003
10209
|
headers: 'headers',
|
|
@@ -10079,9 +10285,9 @@ export class RestartInstancesResponseBody extends $tea.Model {
|
|
|
10079
10285
|
}
|
|
10080
10286
|
|
|
10081
10287
|
export class RestartInstancesResponse extends $tea.Model {
|
|
10082
|
-
headers
|
|
10083
|
-
statusCode
|
|
10084
|
-
body
|
|
10288
|
+
headers?: { [key: string]: string };
|
|
10289
|
+
statusCode?: number;
|
|
10290
|
+
body?: RestartInstancesResponseBody;
|
|
10085
10291
|
static names(): { [key: string]: string } {
|
|
10086
10292
|
return {
|
|
10087
10293
|
headers: 'headers',
|
|
@@ -10178,9 +10384,9 @@ export class RollbackApplicationResponseBody extends $tea.Model {
|
|
|
10178
10384
|
}
|
|
10179
10385
|
|
|
10180
10386
|
export class RollbackApplicationResponse extends $tea.Model {
|
|
10181
|
-
headers
|
|
10182
|
-
statusCode
|
|
10183
|
-
body
|
|
10387
|
+
headers?: { [key: string]: string };
|
|
10388
|
+
statusCode?: number;
|
|
10389
|
+
body?: RollbackApplicationResponseBody;
|
|
10184
10390
|
static names(): { [key: string]: string } {
|
|
10185
10391
|
return {
|
|
10186
10392
|
headers: 'headers',
|
|
@@ -10259,9 +10465,9 @@ export class StartApplicationResponseBody extends $tea.Model {
|
|
|
10259
10465
|
}
|
|
10260
10466
|
|
|
10261
10467
|
export class StartApplicationResponse extends $tea.Model {
|
|
10262
|
-
headers
|
|
10263
|
-
statusCode
|
|
10264
|
-
body
|
|
10468
|
+
headers?: { [key: string]: string };
|
|
10469
|
+
statusCode?: number;
|
|
10470
|
+
body?: StartApplicationResponseBody;
|
|
10265
10471
|
static names(): { [key: string]: string } {
|
|
10266
10472
|
return {
|
|
10267
10473
|
headers: 'headers',
|
|
@@ -10340,9 +10546,9 @@ export class StopApplicationResponseBody extends $tea.Model {
|
|
|
10340
10546
|
}
|
|
10341
10547
|
|
|
10342
10548
|
export class StopApplicationResponse extends $tea.Model {
|
|
10343
|
-
headers
|
|
10344
|
-
statusCode
|
|
10345
|
-
body
|
|
10549
|
+
headers?: { [key: string]: string };
|
|
10550
|
+
statusCode?: number;
|
|
10551
|
+
body?: StopApplicationResponseBody;
|
|
10346
10552
|
static names(): { [key: string]: string } {
|
|
10347
10553
|
return {
|
|
10348
10554
|
headers: 'headers',
|
|
@@ -10424,9 +10630,9 @@ export class SuspendJobResponseBody extends $tea.Model {
|
|
|
10424
10630
|
}
|
|
10425
10631
|
|
|
10426
10632
|
export class SuspendJobResponse extends $tea.Model {
|
|
10427
|
-
headers
|
|
10428
|
-
statusCode
|
|
10429
|
-
body
|
|
10633
|
+
headers?: { [key: string]: string };
|
|
10634
|
+
statusCode?: number;
|
|
10635
|
+
body?: SuspendJobResponseBody;
|
|
10430
10636
|
static names(): { [key: string]: string } {
|
|
10431
10637
|
return {
|
|
10432
10638
|
headers: 'headers',
|
|
@@ -10514,9 +10720,9 @@ export class TagResourcesResponseBody extends $tea.Model {
|
|
|
10514
10720
|
}
|
|
10515
10721
|
|
|
10516
10722
|
export class TagResourcesResponse extends $tea.Model {
|
|
10517
|
-
headers
|
|
10518
|
-
statusCode
|
|
10519
|
-
body
|
|
10723
|
+
headers?: { [key: string]: string };
|
|
10724
|
+
statusCode?: number;
|
|
10725
|
+
body?: TagResourcesResponseBody;
|
|
10520
10726
|
static names(): { [key: string]: string } {
|
|
10521
10727
|
return {
|
|
10522
10728
|
headers: 'headers',
|
|
@@ -10601,9 +10807,9 @@ export class UnbindSlbResponseBody extends $tea.Model {
|
|
|
10601
10807
|
}
|
|
10602
10808
|
|
|
10603
10809
|
export class UnbindSlbResponse extends $tea.Model {
|
|
10604
|
-
headers
|
|
10605
|
-
statusCode
|
|
10606
|
-
body
|
|
10810
|
+
headers?: { [key: string]: string };
|
|
10811
|
+
statusCode?: number;
|
|
10812
|
+
body?: UnbindSlbResponseBody;
|
|
10607
10813
|
static names(): { [key: string]: string } {
|
|
10608
10814
|
return {
|
|
10609
10815
|
headers: 'headers',
|
|
@@ -10694,9 +10900,9 @@ export class UntagResourcesResponseBody extends $tea.Model {
|
|
|
10694
10900
|
}
|
|
10695
10901
|
|
|
10696
10902
|
export class UntagResourcesResponse extends $tea.Model {
|
|
10697
|
-
headers
|
|
10698
|
-
statusCode
|
|
10699
|
-
body
|
|
10903
|
+
headers?: { [key: string]: string };
|
|
10904
|
+
statusCode?: number;
|
|
10905
|
+
body?: UntagResourcesResponseBody;
|
|
10700
10906
|
static names(): { [key: string]: string } {
|
|
10701
10907
|
return {
|
|
10702
10908
|
headers: 'headers',
|
|
@@ -10775,9 +10981,9 @@ export class UpdateAppSecurityGroupResponseBody extends $tea.Model {
|
|
|
10775
10981
|
}
|
|
10776
10982
|
|
|
10777
10983
|
export class UpdateAppSecurityGroupResponse extends $tea.Model {
|
|
10778
|
-
headers
|
|
10779
|
-
statusCode
|
|
10780
|
-
body
|
|
10984
|
+
headers?: { [key: string]: string };
|
|
10985
|
+
statusCode?: number;
|
|
10986
|
+
body?: UpdateAppSecurityGroupResponseBody;
|
|
10781
10987
|
static names(): { [key: string]: string } {
|
|
10782
10988
|
return {
|
|
10783
10989
|
headers: 'headers',
|
|
@@ -10856,9 +11062,9 @@ export class UpdateApplicationDescriptionResponseBody extends $tea.Model {
|
|
|
10856
11062
|
}
|
|
10857
11063
|
|
|
10858
11064
|
export class UpdateApplicationDescriptionResponse extends $tea.Model {
|
|
10859
|
-
headers
|
|
10860
|
-
statusCode
|
|
10861
|
-
body
|
|
11065
|
+
headers?: { [key: string]: string };
|
|
11066
|
+
statusCode?: number;
|
|
11067
|
+
body?: UpdateApplicationDescriptionResponseBody;
|
|
10862
11068
|
static names(): { [key: string]: string } {
|
|
10863
11069
|
return {
|
|
10864
11070
|
headers: 'headers',
|
|
@@ -10952,9 +11158,9 @@ export class UpdateApplicationScalingRuleResponseBody extends $tea.Model {
|
|
|
10952
11158
|
}
|
|
10953
11159
|
|
|
10954
11160
|
export class UpdateApplicationScalingRuleResponse extends $tea.Model {
|
|
10955
|
-
headers
|
|
10956
|
-
statusCode
|
|
10957
|
-
body
|
|
11161
|
+
headers?: { [key: string]: string };
|
|
11162
|
+
statusCode?: number;
|
|
11163
|
+
body?: UpdateApplicationScalingRuleResponseBody;
|
|
10958
11164
|
static names(): { [key: string]: string } {
|
|
10959
11165
|
return {
|
|
10960
11166
|
headers: 'headers',
|
|
@@ -11033,9 +11239,9 @@ export class UpdateApplicationVswitchesResponseBody extends $tea.Model {
|
|
|
11033
11239
|
}
|
|
11034
11240
|
|
|
11035
11241
|
export class UpdateApplicationVswitchesResponse extends $tea.Model {
|
|
11036
|
-
headers
|
|
11037
|
-
statusCode
|
|
11038
|
-
body
|
|
11242
|
+
headers?: { [key: string]: string };
|
|
11243
|
+
statusCode?: number;
|
|
11244
|
+
body?: UpdateApplicationVswitchesResponseBody;
|
|
11039
11245
|
static names(): { [key: string]: string } {
|
|
11040
11246
|
return {
|
|
11041
11247
|
headers: 'headers',
|
|
@@ -11120,9 +11326,9 @@ export class UpdateConfigMapResponseBody extends $tea.Model {
|
|
|
11120
11326
|
}
|
|
11121
11327
|
|
|
11122
11328
|
export class UpdateConfigMapResponse extends $tea.Model {
|
|
11123
|
-
headers
|
|
11124
|
-
statusCode
|
|
11125
|
-
body
|
|
11329
|
+
headers?: { [key: string]: string };
|
|
11330
|
+
statusCode?: number;
|
|
11331
|
+
body?: UpdateConfigMapResponseBody;
|
|
11126
11332
|
static names(): { [key: string]: string } {
|
|
11127
11333
|
return {
|
|
11128
11334
|
headers: 'headers',
|
|
@@ -11213,9 +11419,9 @@ export class UpdateGreyTagRouteResponseBody extends $tea.Model {
|
|
|
11213
11419
|
}
|
|
11214
11420
|
|
|
11215
11421
|
export class UpdateGreyTagRouteResponse extends $tea.Model {
|
|
11216
|
-
headers
|
|
11217
|
-
statusCode
|
|
11218
|
-
body
|
|
11422
|
+
headers?: { [key: string]: string };
|
|
11423
|
+
statusCode?: number;
|
|
11424
|
+
body?: UpdateGreyTagRouteResponseBody;
|
|
11219
11425
|
static names(): { [key: string]: string } {
|
|
11220
11426
|
return {
|
|
11221
11427
|
headers: 'headers',
|
|
@@ -11318,9 +11524,9 @@ export class UpdateIngressResponseBody extends $tea.Model {
|
|
|
11318
11524
|
}
|
|
11319
11525
|
|
|
11320
11526
|
export class UpdateIngressResponse extends $tea.Model {
|
|
11321
|
-
headers
|
|
11322
|
-
statusCode
|
|
11323
|
-
body
|
|
11527
|
+
headers?: { [key: string]: string };
|
|
11528
|
+
statusCode?: number;
|
|
11529
|
+
body?: UpdateIngressResponseBody;
|
|
11324
11530
|
static names(): { [key: string]: string } {
|
|
11325
11531
|
return {
|
|
11326
11532
|
headers: 'headers',
|
|
@@ -11531,9 +11737,9 @@ export class UpdateJobResponseBody extends $tea.Model {
|
|
|
11531
11737
|
}
|
|
11532
11738
|
|
|
11533
11739
|
export class UpdateJobResponse extends $tea.Model {
|
|
11534
|
-
headers
|
|
11535
|
-
statusCode
|
|
11536
|
-
body
|
|
11740
|
+
headers?: { [key: string]: string };
|
|
11741
|
+
statusCode?: number;
|
|
11742
|
+
body?: UpdateJobResponseBody;
|
|
11537
11743
|
static names(): { [key: string]: string } {
|
|
11538
11744
|
return {
|
|
11539
11745
|
headers: 'headers',
|
|
@@ -11624,9 +11830,9 @@ export class UpdateNamespaceResponseBody extends $tea.Model {
|
|
|
11624
11830
|
}
|
|
11625
11831
|
|
|
11626
11832
|
export class UpdateNamespaceResponse extends $tea.Model {
|
|
11627
|
-
headers
|
|
11628
|
-
statusCode
|
|
11629
|
-
body
|
|
11833
|
+
headers?: { [key: string]: string };
|
|
11834
|
+
statusCode?: number;
|
|
11835
|
+
body?: UpdateNamespaceResponseBody;
|
|
11630
11836
|
static names(): { [key: string]: string } {
|
|
11631
11837
|
return {
|
|
11632
11838
|
headers: 'headers',
|
|
@@ -11708,9 +11914,9 @@ export class UpdateNamespaceVpcResponseBody extends $tea.Model {
|
|
|
11708
11914
|
}
|
|
11709
11915
|
|
|
11710
11916
|
export class UpdateNamespaceVpcResponse extends $tea.Model {
|
|
11711
|
-
headers
|
|
11712
|
-
statusCode
|
|
11713
|
-
body
|
|
11917
|
+
headers?: { [key: string]: string };
|
|
11918
|
+
statusCode?: number;
|
|
11919
|
+
body?: UpdateNamespaceVpcResponseBody;
|
|
11714
11920
|
static names(): { [key: string]: string } {
|
|
11715
11921
|
return {
|
|
11716
11922
|
headers: 'headers',
|
|
@@ -11820,9 +12026,9 @@ export class UpdateSecretResponseBody extends $tea.Model {
|
|
|
11820
12026
|
}
|
|
11821
12027
|
|
|
11822
12028
|
export class UpdateSecretResponse extends $tea.Model {
|
|
11823
|
-
headers
|
|
11824
|
-
statusCode
|
|
11825
|
-
body
|
|
12029
|
+
headers?: { [key: string]: string };
|
|
12030
|
+
statusCode?: number;
|
|
12031
|
+
body?: UpdateSecretResponseBody;
|
|
11826
12032
|
static names(): { [key: string]: string } {
|
|
11827
12033
|
return {
|
|
11828
12034
|
headers: 'headers',
|
|
@@ -11844,6 +12050,93 @@ export class UpdateSecretResponse extends $tea.Model {
|
|
|
11844
12050
|
}
|
|
11845
12051
|
}
|
|
11846
12052
|
|
|
12053
|
+
export class AppStackInstanceEndpoints extends $tea.Model {
|
|
12054
|
+
address?: string;
|
|
12055
|
+
name?: string;
|
|
12056
|
+
protocol?: string;
|
|
12057
|
+
static names(): { [key: string]: string } {
|
|
12058
|
+
return {
|
|
12059
|
+
address: 'Address',
|
|
12060
|
+
name: 'Name',
|
|
12061
|
+
protocol: 'Protocol',
|
|
12062
|
+
};
|
|
12063
|
+
}
|
|
12064
|
+
|
|
12065
|
+
static types(): { [key: string]: any } {
|
|
12066
|
+
return {
|
|
12067
|
+
address: 'string',
|
|
12068
|
+
name: 'string',
|
|
12069
|
+
protocol: 'string',
|
|
12070
|
+
};
|
|
12071
|
+
}
|
|
12072
|
+
|
|
12073
|
+
constructor(map?: { [key: string]: any }) {
|
|
12074
|
+
super(map);
|
|
12075
|
+
}
|
|
12076
|
+
}
|
|
12077
|
+
|
|
12078
|
+
export class AppStackInstanceParameters extends $tea.Model {
|
|
12079
|
+
name?: string;
|
|
12080
|
+
value?: string;
|
|
12081
|
+
static names(): { [key: string]: string } {
|
|
12082
|
+
return {
|
|
12083
|
+
name: 'Name',
|
|
12084
|
+
value: 'Value',
|
|
12085
|
+
};
|
|
12086
|
+
}
|
|
12087
|
+
|
|
12088
|
+
static types(): { [key: string]: any } {
|
|
12089
|
+
return {
|
|
12090
|
+
name: 'string',
|
|
12091
|
+
value: 'string',
|
|
12092
|
+
};
|
|
12093
|
+
}
|
|
12094
|
+
|
|
12095
|
+
constructor(map?: { [key: string]: any }) {
|
|
12096
|
+
super(map);
|
|
12097
|
+
}
|
|
12098
|
+
}
|
|
12099
|
+
|
|
12100
|
+
export class AppStackTaskSteps extends $tea.Model {
|
|
12101
|
+
code?: string;
|
|
12102
|
+
duration?: number;
|
|
12103
|
+
endTime?: number;
|
|
12104
|
+
id?: string;
|
|
12105
|
+
message?: string;
|
|
12106
|
+
name?: string;
|
|
12107
|
+
startTime?: number;
|
|
12108
|
+
status?: string;
|
|
12109
|
+
static names(): { [key: string]: string } {
|
|
12110
|
+
return {
|
|
12111
|
+
code: 'Code',
|
|
12112
|
+
duration: 'Duration',
|
|
12113
|
+
endTime: 'EndTime',
|
|
12114
|
+
id: 'Id',
|
|
12115
|
+
message: 'Message',
|
|
12116
|
+
name: 'Name',
|
|
12117
|
+
startTime: 'StartTime',
|
|
12118
|
+
status: 'Status',
|
|
12119
|
+
};
|
|
12120
|
+
}
|
|
12121
|
+
|
|
12122
|
+
static types(): { [key: string]: any } {
|
|
12123
|
+
return {
|
|
12124
|
+
code: 'string',
|
|
12125
|
+
duration: 'number',
|
|
12126
|
+
endTime: 'number',
|
|
12127
|
+
id: 'string',
|
|
12128
|
+
message: 'string',
|
|
12129
|
+
name: 'string',
|
|
12130
|
+
startTime: 'number',
|
|
12131
|
+
status: 'string',
|
|
12132
|
+
};
|
|
12133
|
+
}
|
|
12134
|
+
|
|
12135
|
+
constructor(map?: { [key: string]: any }) {
|
|
12136
|
+
super(map);
|
|
12137
|
+
}
|
|
12138
|
+
}
|
|
12139
|
+
|
|
11847
12140
|
export class BuildPipelineBuildConfig extends $tea.Model {
|
|
11848
12141
|
beforeBuildCommand?: string;
|
|
11849
12142
|
buildType?: string;
|
|
@@ -11889,6 +12182,7 @@ export class BuildPipelineCodeConfig extends $tea.Model {
|
|
|
11889
12182
|
branchName?: string;
|
|
11890
12183
|
commitId?: string;
|
|
11891
12184
|
commitUrl?: string;
|
|
12185
|
+
organizationId?: string;
|
|
11892
12186
|
provider?: string;
|
|
11893
12187
|
repoFullName?: string;
|
|
11894
12188
|
repoId?: string;
|
|
@@ -11898,6 +12192,7 @@ export class BuildPipelineCodeConfig extends $tea.Model {
|
|
|
11898
12192
|
branchName: 'BranchName',
|
|
11899
12193
|
commitId: 'CommitId',
|
|
11900
12194
|
commitUrl: 'CommitUrl',
|
|
12195
|
+
organizationId: 'OrganizationId',
|
|
11901
12196
|
provider: 'Provider',
|
|
11902
12197
|
repoFullName: 'RepoFullName',
|
|
11903
12198
|
repoId: 'RepoId',
|
|
@@ -11910,6 +12205,7 @@ export class BuildPipelineCodeConfig extends $tea.Model {
|
|
|
11910
12205
|
branchName: 'string',
|
|
11911
12206
|
commitId: 'string',
|
|
11912
12207
|
commitUrl: 'string',
|
|
12208
|
+
organizationId: 'string',
|
|
11913
12209
|
provider: 'string',
|
|
11914
12210
|
repoFullName: 'string',
|
|
11915
12211
|
repoId: 'string',
|
|
@@ -12004,10 +12300,12 @@ export class BuildPipelinePackageConfig extends $tea.Model {
|
|
|
12004
12300
|
|
|
12005
12301
|
export class BuildPipelineTriggerConfig extends $tea.Model {
|
|
12006
12302
|
branchName?: string;
|
|
12303
|
+
tagName?: string;
|
|
12007
12304
|
type?: string;
|
|
12008
12305
|
static names(): { [key: string]: string } {
|
|
12009
12306
|
return {
|
|
12010
12307
|
branchName: 'BranchName',
|
|
12308
|
+
tagName: 'TagName',
|
|
12011
12309
|
type: 'Type',
|
|
12012
12310
|
};
|
|
12013
12311
|
}
|
|
@@ -12015,6 +12313,7 @@ export class BuildPipelineTriggerConfig extends $tea.Model {
|
|
|
12015
12313
|
static types(): { [key: string]: any } {
|
|
12016
12314
|
return {
|
|
12017
12315
|
branchName: 'string',
|
|
12316
|
+
tagName: 'string',
|
|
12018
12317
|
type: 'string',
|
|
12019
12318
|
};
|
|
12020
12319
|
}
|
|
@@ -12026,10 +12325,12 @@ export class BuildPipelineTriggerConfig extends $tea.Model {
|
|
|
12026
12325
|
|
|
12027
12326
|
export class BuildPipelineRunBuildConfigTrigger extends $tea.Model {
|
|
12028
12327
|
branchName?: string;
|
|
12328
|
+
tagName?: string;
|
|
12029
12329
|
type?: string;
|
|
12030
12330
|
static names(): { [key: string]: string } {
|
|
12031
12331
|
return {
|
|
12032
12332
|
branchName: 'BranchName',
|
|
12333
|
+
tagName: 'TagName',
|
|
12033
12334
|
type: 'Type',
|
|
12034
12335
|
};
|
|
12035
12336
|
}
|
|
@@ -12037,6 +12338,7 @@ export class BuildPipelineRunBuildConfigTrigger extends $tea.Model {
|
|
|
12037
12338
|
static types(): { [key: string]: any } {
|
|
12038
12339
|
return {
|
|
12039
12340
|
branchName: 'string',
|
|
12341
|
+
tagName: 'string',
|
|
12040
12342
|
type: 'string',
|
|
12041
12343
|
};
|
|
12042
12344
|
}
|
|
@@ -12094,7 +12396,7 @@ export class BuildPipelineRunCodeConfig extends $tea.Model {
|
|
|
12094
12396
|
branchName?: string;
|
|
12095
12397
|
commitId?: string;
|
|
12096
12398
|
commitUrl?: string;
|
|
12097
|
-
|
|
12399
|
+
organizationId?: string;
|
|
12098
12400
|
provider?: string;
|
|
12099
12401
|
repoFullName?: string;
|
|
12100
12402
|
repoId?: string;
|
|
@@ -12104,7 +12406,7 @@ export class BuildPipelineRunCodeConfig extends $tea.Model {
|
|
|
12104
12406
|
branchName: 'BranchName',
|
|
12105
12407
|
commitId: 'CommitId',
|
|
12106
12408
|
commitUrl: 'CommitUrl',
|
|
12107
|
-
|
|
12409
|
+
organizationId: 'OrganizationId',
|
|
12108
12410
|
provider: 'Provider',
|
|
12109
12411
|
repoFullName: 'RepoFullName',
|
|
12110
12412
|
repoId: 'RepoId',
|
|
@@ -12117,7 +12419,7 @@ export class BuildPipelineRunCodeConfig extends $tea.Model {
|
|
|
12117
12419
|
branchName: 'string',
|
|
12118
12420
|
commitId: 'string',
|
|
12119
12421
|
commitUrl: 'string',
|
|
12120
|
-
|
|
12422
|
+
organizationId: 'string',
|
|
12121
12423
|
provider: 'string',
|
|
12122
12424
|
repoFullName: 'string',
|
|
12123
12425
|
repoId: 'string',
|
|
@@ -12250,6 +12552,31 @@ export class BuildPipelineRunSteps extends $tea.Model {
|
|
|
12250
12552
|
}
|
|
12251
12553
|
}
|
|
12252
12554
|
|
|
12555
|
+
export class BuildPipelineRunTriggerConfig extends $tea.Model {
|
|
12556
|
+
branchName?: string;
|
|
12557
|
+
tagName?: string;
|
|
12558
|
+
type?: string;
|
|
12559
|
+
static names(): { [key: string]: string } {
|
|
12560
|
+
return {
|
|
12561
|
+
branchName: 'BranchName',
|
|
12562
|
+
tagName: 'TagName',
|
|
12563
|
+
type: 'Type',
|
|
12564
|
+
};
|
|
12565
|
+
}
|
|
12566
|
+
|
|
12567
|
+
static types(): { [key: string]: any } {
|
|
12568
|
+
return {
|
|
12569
|
+
branchName: 'string',
|
|
12570
|
+
tagName: 'string',
|
|
12571
|
+
type: 'string',
|
|
12572
|
+
};
|
|
12573
|
+
}
|
|
12574
|
+
|
|
12575
|
+
constructor(map?: { [key: string]: any }) {
|
|
12576
|
+
super(map);
|
|
12577
|
+
}
|
|
12578
|
+
}
|
|
12579
|
+
|
|
12253
12580
|
export class PriceEstimateOutputAppsUsages extends $tea.Model {
|
|
12254
12581
|
amount?: number;
|
|
12255
12582
|
id?: string;
|
|
@@ -12487,6 +12814,31 @@ export class SLSConfigCollectConfigs extends $tea.Model {
|
|
|
12487
12814
|
}
|
|
12488
12815
|
}
|
|
12489
12816
|
|
|
12817
|
+
export class SourceCodeAccountOrganizations extends $tea.Model {
|
|
12818
|
+
avatarUrl?: string;
|
|
12819
|
+
id?: string;
|
|
12820
|
+
name?: string;
|
|
12821
|
+
static names(): { [key: string]: string } {
|
|
12822
|
+
return {
|
|
12823
|
+
avatarUrl: 'AvatarUrl',
|
|
12824
|
+
id: 'Id',
|
|
12825
|
+
name: 'Name',
|
|
12826
|
+
};
|
|
12827
|
+
}
|
|
12828
|
+
|
|
12829
|
+
static types(): { [key: string]: any } {
|
|
12830
|
+
return {
|
|
12831
|
+
avatarUrl: 'string',
|
|
12832
|
+
id: 'string',
|
|
12833
|
+
name: 'string',
|
|
12834
|
+
};
|
|
12835
|
+
}
|
|
12836
|
+
|
|
12837
|
+
constructor(map?: { [key: string]: any }) {
|
|
12838
|
+
super(map);
|
|
12839
|
+
}
|
|
12840
|
+
}
|
|
12841
|
+
|
|
12490
12842
|
export class AbortAndRollbackChangeOrderResponseBodyData extends $tea.Model {
|
|
12491
12843
|
changeOrderId?: string;
|
|
12492
12844
|
static names(): { [key: string]: string } {
|
|
@@ -18340,6 +18692,10 @@ export default class Client extends OpenApi {
|
|
|
18340
18692
|
query["NamespaceId"] = request.namespaceId;
|
|
18341
18693
|
}
|
|
18342
18694
|
|
|
18695
|
+
if (!Util.isUnset(request.version)) {
|
|
18696
|
+
query["Version"] = request.version;
|
|
18697
|
+
}
|
|
18698
|
+
|
|
18343
18699
|
let req = new $OpenApi.OpenApiRequest({
|
|
18344
18700
|
headers: headers,
|
|
18345
18701
|
query: OpenApiUtil.query(query),
|
|
@@ -18375,6 +18731,10 @@ export default class Client extends OpenApi {
|
|
|
18375
18731
|
query["NamespaceId"] = request.namespaceId;
|
|
18376
18732
|
}
|
|
18377
18733
|
|
|
18734
|
+
if (!Util.isUnset(request.version)) {
|
|
18735
|
+
query["Version"] = request.version;
|
|
18736
|
+
}
|
|
18737
|
+
|
|
18378
18738
|
let req = new $OpenApi.OpenApiRequest({
|
|
18379
18739
|
headers: headers,
|
|
18380
18740
|
query: OpenApiUtil.query(query),
|
|
@@ -20990,6 +21350,14 @@ export default class Client extends OpenApi {
|
|
|
20990
21350
|
async getArmsTopNMetricWithOptions(request: GetArmsTopNMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetArmsTopNMetricResponse> {
|
|
20991
21351
|
Util.validateModel(request);
|
|
20992
21352
|
let query : {[key: string ]: any} = { };
|
|
21353
|
+
if (!Util.isUnset(request.appSource)) {
|
|
21354
|
+
query["AppSource"] = request.appSource;
|
|
21355
|
+
}
|
|
21356
|
+
|
|
21357
|
+
if (!Util.isUnset(request.cpuStrategy)) {
|
|
21358
|
+
query["CpuStrategy"] = request.cpuStrategy;
|
|
21359
|
+
}
|
|
21360
|
+
|
|
20993
21361
|
if (!Util.isUnset(request.endTime)) {
|
|
20994
21362
|
query["EndTime"] = request.endTime;
|
|
20995
21363
|
}
|
|
@@ -21037,6 +21405,14 @@ export default class Client extends OpenApi {
|
|
|
21037
21405
|
async getAvailabilityMetricWithOptions(request: GetAvailabilityMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetAvailabilityMetricResponse> {
|
|
21038
21406
|
Util.validateModel(request);
|
|
21039
21407
|
let query : {[key: string ]: any} = { };
|
|
21408
|
+
if (!Util.isUnset(request.appSource)) {
|
|
21409
|
+
query["AppSource"] = request.appSource;
|
|
21410
|
+
}
|
|
21411
|
+
|
|
21412
|
+
if (!Util.isUnset(request.cpuStrategy)) {
|
|
21413
|
+
query["CpuStrategy"] = request.cpuStrategy;
|
|
21414
|
+
}
|
|
21415
|
+
|
|
21040
21416
|
if (!Util.isUnset(request.limit)) {
|
|
21041
21417
|
query["Limit"] = request.limit;
|
|
21042
21418
|
}
|
|
@@ -21072,6 +21448,14 @@ export default class Client extends OpenApi {
|
|
|
21072
21448
|
async getChangeOrderMetricWithOptions(request: GetChangeOrderMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetChangeOrderMetricResponse> {
|
|
21073
21449
|
Util.validateModel(request);
|
|
21074
21450
|
let query : {[key: string ]: any} = { };
|
|
21451
|
+
if (!Util.isUnset(request.appSource)) {
|
|
21452
|
+
query["AppSource"] = request.appSource;
|
|
21453
|
+
}
|
|
21454
|
+
|
|
21455
|
+
if (!Util.isUnset(request.cpuStrategy)) {
|
|
21456
|
+
query["CpuStrategy"] = request.cpuStrategy;
|
|
21457
|
+
}
|
|
21458
|
+
|
|
21075
21459
|
if (!Util.isUnset(request.createTime)) {
|
|
21076
21460
|
query["CreateTime"] = request.createTime;
|
|
21077
21461
|
}
|
|
@@ -21115,6 +21499,14 @@ export default class Client extends OpenApi {
|
|
|
21115
21499
|
async getScaleAppMetricWithOptions(request: GetScaleAppMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetScaleAppMetricResponse> {
|
|
21116
21500
|
Util.validateModel(request);
|
|
21117
21501
|
let query : {[key: string ]: any} = { };
|
|
21502
|
+
if (!Util.isUnset(request.appSource)) {
|
|
21503
|
+
query["AppSource"] = request.appSource;
|
|
21504
|
+
}
|
|
21505
|
+
|
|
21506
|
+
if (!Util.isUnset(request.cpuStrategy)) {
|
|
21507
|
+
query["CpuStrategy"] = request.cpuStrategy;
|
|
21508
|
+
}
|
|
21509
|
+
|
|
21118
21510
|
if (!Util.isUnset(request.limit)) {
|
|
21119
21511
|
query["Limit"] = request.limit;
|
|
21120
21512
|
}
|
|
@@ -21150,6 +21542,14 @@ export default class Client extends OpenApi {
|
|
|
21150
21542
|
async getWarningEventMetricWithOptions(request: GetWarningEventMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetWarningEventMetricResponse> {
|
|
21151
21543
|
Util.validateModel(request);
|
|
21152
21544
|
let query : {[key: string ]: any} = { };
|
|
21545
|
+
if (!Util.isUnset(request.appSource)) {
|
|
21546
|
+
query["AppSource"] = request.appSource;
|
|
21547
|
+
}
|
|
21548
|
+
|
|
21549
|
+
if (!Util.isUnset(request.cpuStrategy)) {
|
|
21550
|
+
query["CpuStrategy"] = request.cpuStrategy;
|
|
21551
|
+
}
|
|
21552
|
+
|
|
21153
21553
|
if (!Util.isUnset(request.endTime)) {
|
|
21154
21554
|
query["EndTime"] = request.endTime;
|
|
21155
21555
|
}
|