@alicloud/sae20190506 1.26.3 → 1.26.4
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 +2 -0
- package/dist/client.js +7 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +10 -0
package/dist/client.d.ts
CHANGED
|
@@ -13386,6 +13386,7 @@ export declare class GetWebshellTokenRequest extends $tea.Model {
|
|
|
13386
13386
|
* 017f39b8-dfa4-4e16-a84b-1dcee4b1****
|
|
13387
13387
|
*/
|
|
13388
13388
|
appId?: string;
|
|
13389
|
+
containerName?: string;
|
|
13389
13390
|
/**
|
|
13390
13391
|
* @remarks
|
|
13391
13392
|
* This parameter is required.
|
|
@@ -21884,6 +21885,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $tea.Mode
|
|
|
21884
21885
|
enableGreyTagRoute?: boolean;
|
|
21885
21886
|
enableIdle?: boolean;
|
|
21886
21887
|
enableNewArms?: boolean;
|
|
21888
|
+
enabledle?: boolean;
|
|
21887
21889
|
/**
|
|
21888
21890
|
* @remarks
|
|
21889
21891
|
* The environment variables. Variable description:
|
package/dist/client.js
CHANGED
|
@@ -9061,12 +9061,14 @@ class GetWebshellTokenRequest extends $tea.Model {
|
|
|
9061
9061
|
static names() {
|
|
9062
9062
|
return {
|
|
9063
9063
|
appId: 'AppId',
|
|
9064
|
+
containerName: 'ContainerName',
|
|
9064
9065
|
podName: 'PodName',
|
|
9065
9066
|
};
|
|
9066
9067
|
}
|
|
9067
9068
|
static types() {
|
|
9068
9069
|
return {
|
|
9069
9070
|
appId: 'string',
|
|
9071
|
+
containerName: 'string',
|
|
9070
9072
|
podName: 'string',
|
|
9071
9073
|
};
|
|
9072
9074
|
}
|
|
@@ -14197,6 +14199,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
14197
14199
|
enableGreyTagRoute: 'EnableGreyTagRoute',
|
|
14198
14200
|
enableIdle: 'EnableIdle',
|
|
14199
14201
|
enableNewArms: 'EnableNewArms',
|
|
14202
|
+
enabledle: 'Enabledle',
|
|
14200
14203
|
envs: 'Envs',
|
|
14201
14204
|
imagePullSecrets: 'ImagePullSecrets',
|
|
14202
14205
|
imageUrl: 'ImageUrl',
|
|
@@ -14276,6 +14279,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
|
|
|
14276
14279
|
enableGreyTagRoute: 'boolean',
|
|
14277
14280
|
enableIdle: 'boolean',
|
|
14278
14281
|
enableNewArms: 'boolean',
|
|
14282
|
+
enabledle: 'boolean',
|
|
14279
14283
|
envs: 'string',
|
|
14280
14284
|
imagePullSecrets: 'string',
|
|
14281
14285
|
imageUrl: 'string',
|
|
@@ -22274,6 +22278,9 @@ class Client extends openapi_client_1.default {
|
|
|
22274
22278
|
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
22275
22279
|
query["AppId"] = request.appId;
|
|
22276
22280
|
}
|
|
22281
|
+
if (!tea_util_1.default.isUnset(request.containerName)) {
|
|
22282
|
+
query["ContainerName"] = request.containerName;
|
|
22283
|
+
}
|
|
22277
22284
|
if (!tea_util_1.default.isUnset(request.podName)) {
|
|
22278
22285
|
query["PodName"] = request.podName;
|
|
22279
22286
|
}
|