@alicloud/sae20190506 1.21.0 → 1.21.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 CHANGED
@@ -340,6 +340,7 @@ export declare class CreateApplicationRequest extends $tea.Model {
340
340
  vpcId?: string;
341
341
  warStartOptions?: string;
342
342
  webContainer?: string;
343
+ mseFeatureConfig?: string;
343
344
  static names(): {
344
345
  [key: string]: string;
345
346
  };
@@ -934,6 +935,7 @@ export declare class DeployApplicationRequest extends $tea.Model {
934
935
  minReadyInstances?: number;
935
936
  mountDesc?: string;
936
937
  mountHost?: string;
938
+ mseFeatureConfig?: string;
937
939
  nasId?: string;
938
940
  openCollectToKafka?: boolean;
939
941
  ossAkId?: string;
@@ -2178,7 +2180,7 @@ export declare class ExecJobRequest extends $tea.Model {
2178
2180
  }
2179
2181
  export declare class ExecJobResponseBody extends $tea.Model {
2180
2182
  code?: string;
2181
- data?: string;
2183
+ data?: ExecJobResponseBodyData;
2182
2184
  errorCode?: string;
2183
2185
  message?: string;
2184
2186
  requestId?: string;
@@ -4292,6 +4294,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $tea.Mode
4292
4294
  mountDesc?: DescribeApplicationConfigResponseBodyDataMountDesc[];
4293
4295
  mountHost?: string;
4294
4296
  mseApplicationId?: string;
4297
+ mseFeatureConfig?: string;
4295
4298
  namespaceId?: string;
4296
4299
  nasId?: string;
4297
4300
  ossAkId?: string;
@@ -5316,6 +5319,21 @@ export declare class DescribeRegionsResponseBodyRegions extends $tea.Model {
5316
5319
  [key: string]: any;
5317
5320
  });
5318
5321
  }
5322
+ export declare class ExecJobResponseBodyData extends $tea.Model {
5323
+ code?: string;
5324
+ data?: string;
5325
+ msg?: string;
5326
+ success?: string;
5327
+ static names(): {
5328
+ [key: string]: string;
5329
+ };
5330
+ static types(): {
5331
+ [key: string]: any;
5332
+ };
5333
+ constructor(map?: {
5334
+ [key: string]: any;
5335
+ });
5336
+ }
5319
5337
  export declare class ListAppEventsResponseBodyDataAppEventEntity extends $tea.Model {
5320
5338
  eventType?: string;
5321
5339
  firstTimestamp?: string;
package/dist/client.js CHANGED
@@ -475,6 +475,7 @@ class CreateApplicationRequest extends $tea.Model {
475
475
  vpcId: 'VpcId',
476
476
  warStartOptions: 'WarStartOptions',
477
477
  webContainer: 'WebContainer',
478
+ mseFeatureConfig: 'mseFeatureConfig',
478
479
  };
479
480
  }
480
481
  static types() {
@@ -531,6 +532,7 @@ class CreateApplicationRequest extends $tea.Model {
531
532
  vpcId: 'string',
532
533
  warStartOptions: 'string',
533
534
  webContainer: 'string',
535
+ mseFeatureConfig: 'string',
534
536
  };
535
537
  }
536
538
  }
@@ -1351,6 +1353,7 @@ class DeployApplicationRequest extends $tea.Model {
1351
1353
  minReadyInstances: 'MinReadyInstances',
1352
1354
  mountDesc: 'MountDesc',
1353
1355
  mountHost: 'MountHost',
1356
+ mseFeatureConfig: 'MseFeatureConfig',
1354
1357
  nasId: 'NasId',
1355
1358
  openCollectToKafka: 'OpenCollectToKafka',
1356
1359
  ossAkId: 'OssAkId',
@@ -1403,6 +1406,7 @@ class DeployApplicationRequest extends $tea.Model {
1403
1406
  minReadyInstances: 'number',
1404
1407
  mountDesc: 'string',
1405
1408
  mountHost: 'string',
1409
+ mseFeatureConfig: 'string',
1406
1410
  nasId: 'string',
1407
1411
  openCollectToKafka: 'boolean',
1408
1412
  ossAkId: 'string',
@@ -3137,7 +3141,7 @@ class ExecJobResponseBody extends $tea.Model {
3137
3141
  static types() {
3138
3142
  return {
3139
3143
  code: 'string',
3140
- data: 'string',
3144
+ data: ExecJobResponseBodyData,
3141
3145
  errorCode: 'string',
3142
3146
  message: 'string',
3143
3147
  requestId: 'string',
@@ -6107,6 +6111,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
6107
6111
  mountDesc: 'MountDesc',
6108
6112
  mountHost: 'MountHost',
6109
6113
  mseApplicationId: 'MseApplicationId',
6114
+ mseFeatureConfig: 'MseFeatureConfig',
6110
6115
  namespaceId: 'NamespaceId',
6111
6116
  nasId: 'NasId',
6112
6117
  ossAkId: 'OssAkId',
@@ -6167,6 +6172,7 @@ class DescribeApplicationConfigResponseBodyData extends $tea.Model {
6167
6172
  mountDesc: { 'type': 'array', 'itemType': DescribeApplicationConfigResponseBodyDataMountDesc },
6168
6173
  mountHost: 'string',
6169
6174
  mseApplicationId: 'string',
6175
+ mseFeatureConfig: 'string',
6170
6176
  namespaceId: 'string',
6171
6177
  nasId: 'string',
6172
6178
  ossAkId: 'string',
@@ -7695,6 +7701,28 @@ class DescribeRegionsResponseBodyRegions extends $tea.Model {
7695
7701
  }
7696
7702
  }
7697
7703
  exports.DescribeRegionsResponseBodyRegions = DescribeRegionsResponseBodyRegions;
7704
+ class ExecJobResponseBodyData extends $tea.Model {
7705
+ constructor(map) {
7706
+ super(map);
7707
+ }
7708
+ static names() {
7709
+ return {
7710
+ code: 'Code',
7711
+ data: 'Data',
7712
+ msg: 'Msg',
7713
+ success: 'Success',
7714
+ };
7715
+ }
7716
+ static types() {
7717
+ return {
7718
+ code: 'string',
7719
+ data: 'string',
7720
+ msg: 'string',
7721
+ success: 'string',
7722
+ };
7723
+ }
7724
+ }
7725
+ exports.ExecJobResponseBodyData = ExecJobResponseBodyData;
7698
7726
  class ListAppEventsResponseBodyDataAppEventEntity extends $tea.Model {
7699
7727
  constructor(map) {
7700
7728
  super(map);
@@ -9163,6 +9191,9 @@ class Client extends openapi_client_1.default {
9163
9191
  if (!tea_util_1.default.isUnset(request.webContainer)) {
9164
9192
  query["WebContainer"] = request.webContainer;
9165
9193
  }
9194
+ if (!tea_util_1.default.isUnset(request.mseFeatureConfig)) {
9195
+ query["mseFeatureConfig"] = request.mseFeatureConfig;
9196
+ }
9166
9197
  let body = {};
9167
9198
  if (!tea_util_1.default.isUnset(request.acrInstanceId)) {
9168
9199
  body["AcrInstanceId"] = request.acrInstanceId;
@@ -9673,6 +9704,9 @@ class Client extends openapi_client_1.default {
9673
9704
  if (!tea_util_1.default.isUnset(request.mountHost)) {
9674
9705
  query["MountHost"] = request.mountHost;
9675
9706
  }
9707
+ if (!tea_util_1.default.isUnset(request.mseFeatureConfig)) {
9708
+ query["MseFeatureConfig"] = request.mseFeatureConfig;
9709
+ }
9676
9710
  if (!tea_util_1.default.isUnset(request.nasId)) {
9677
9711
  query["NasId"] = request.nasId;
9678
9712
  }