@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/sae20190506",
3
- "version": "1.21.0",
3
+ "version": "1.21.1",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -568,6 +568,7 @@ export class CreateApplicationRequest extends $tea.Model {
568
568
  vpcId?: string;
569
569
  warStartOptions?: string;
570
570
  webContainer?: string;
571
+ mseFeatureConfig?: string;
571
572
  static names(): { [key: string]: string } {
572
573
  return {
573
574
  acrAssumeRoleArn: 'AcrAssumeRoleArn',
@@ -622,6 +623,7 @@ export class CreateApplicationRequest extends $tea.Model {
622
623
  vpcId: 'VpcId',
623
624
  warStartOptions: 'WarStartOptions',
624
625
  webContainer: 'WebContainer',
626
+ mseFeatureConfig: 'mseFeatureConfig',
625
627
  };
626
628
  }
627
629
 
@@ -679,6 +681,7 @@ export class CreateApplicationRequest extends $tea.Model {
679
681
  vpcId: 'string',
680
682
  warStartOptions: 'string',
681
683
  webContainer: 'string',
684
+ mseFeatureConfig: 'string',
682
685
  };
683
686
  }
684
687
 
@@ -1714,6 +1717,7 @@ export class DeployApplicationRequest extends $tea.Model {
1714
1717
  minReadyInstances?: number;
1715
1718
  mountDesc?: string;
1716
1719
  mountHost?: string;
1720
+ mseFeatureConfig?: string;
1717
1721
  nasId?: string;
1718
1722
  openCollectToKafka?: boolean;
1719
1723
  ossAkId?: string;
@@ -1764,6 +1768,7 @@ export class DeployApplicationRequest extends $tea.Model {
1764
1768
  minReadyInstances: 'MinReadyInstances',
1765
1769
  mountDesc: 'MountDesc',
1766
1770
  mountHost: 'MountHost',
1771
+ mseFeatureConfig: 'MseFeatureConfig',
1767
1772
  nasId: 'NasId',
1768
1773
  openCollectToKafka: 'OpenCollectToKafka',
1769
1774
  ossAkId: 'OssAkId',
@@ -1817,6 +1822,7 @@ export class DeployApplicationRequest extends $tea.Model {
1817
1822
  minReadyInstances: 'number',
1818
1823
  mountDesc: 'string',
1819
1824
  mountHost: 'string',
1825
+ mseFeatureConfig: 'string',
1820
1826
  nasId: 'string',
1821
1827
  openCollectToKafka: 'boolean',
1822
1828
  ossAkId: 'string',
@@ -3995,7 +4001,7 @@ export class ExecJobRequest extends $tea.Model {
3995
4001
 
3996
4002
  export class ExecJobResponseBody extends $tea.Model {
3997
4003
  code?: string;
3998
- data?: string;
4004
+ data?: ExecJobResponseBodyData;
3999
4005
  errorCode?: string;
4000
4006
  message?: string;
4001
4007
  requestId?: string;
@@ -4016,7 +4022,7 @@ export class ExecJobResponseBody extends $tea.Model {
4016
4022
  static types(): { [key: string]: any } {
4017
4023
  return {
4018
4024
  code: 'string',
4019
- data: 'string',
4025
+ data: ExecJobResponseBodyData,
4020
4026
  errorCode: 'string',
4021
4027
  message: 'string',
4022
4028
  requestId: 'string',
@@ -7783,6 +7789,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
7783
7789
  mountDesc?: DescribeApplicationConfigResponseBodyDataMountDesc[];
7784
7790
  mountHost?: string;
7785
7791
  mseApplicationId?: string;
7792
+ mseFeatureConfig?: string;
7786
7793
  namespaceId?: string;
7787
7794
  nasId?: string;
7788
7795
  ossAkId?: string;
@@ -7841,6 +7848,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
7841
7848
  mountDesc: 'MountDesc',
7842
7849
  mountHost: 'MountHost',
7843
7850
  mseApplicationId: 'MseApplicationId',
7851
+ mseFeatureConfig: 'MseFeatureConfig',
7844
7852
  namespaceId: 'NamespaceId',
7845
7853
  nasId: 'NasId',
7846
7854
  ossAkId: 'OssAkId',
@@ -7902,6 +7910,7 @@ export class DescribeApplicationConfigResponseBodyData extends $tea.Model {
7902
7910
  mountDesc: { 'type': 'array', 'itemType': DescribeApplicationConfigResponseBodyDataMountDesc },
7903
7911
  mountHost: 'string',
7904
7912
  mseApplicationId: 'string',
7913
+ mseFeatureConfig: 'string',
7905
7914
  namespaceId: 'string',
7906
7915
  nasId: 'string',
7907
7916
  ossAkId: 'string',
@@ -9887,6 +9896,34 @@ export class DescribeRegionsResponseBodyRegions extends $tea.Model {
9887
9896
  }
9888
9897
  }
9889
9898
 
9899
+ export class ExecJobResponseBodyData extends $tea.Model {
9900
+ code?: string;
9901
+ data?: string;
9902
+ msg?: string;
9903
+ success?: string;
9904
+ static names(): { [key: string]: string } {
9905
+ return {
9906
+ code: 'Code',
9907
+ data: 'Data',
9908
+ msg: 'Msg',
9909
+ success: 'Success',
9910
+ };
9911
+ }
9912
+
9913
+ static types(): { [key: string]: any } {
9914
+ return {
9915
+ code: 'string',
9916
+ data: 'string',
9917
+ msg: 'string',
9918
+ success: 'string',
9919
+ };
9920
+ }
9921
+
9922
+ constructor(map?: { [key: string]: any }) {
9923
+ super(map);
9924
+ }
9925
+ }
9926
+
9890
9927
  export class ListAppEventsResponseBodyDataAppEventEntity extends $tea.Model {
9891
9928
  eventType?: string;
9892
9929
  firstTimestamp?: string;
@@ -11743,6 +11780,10 @@ export default class Client extends OpenApi {
11743
11780
  query["WebContainer"] = request.webContainer;
11744
11781
  }
11745
11782
 
11783
+ if (!Util.isUnset(request.mseFeatureConfig)) {
11784
+ query["mseFeatureConfig"] = request.mseFeatureConfig;
11785
+ }
11786
+
11746
11787
  let body : {[key: string ]: any} = { };
11747
11788
  if (!Util.isUnset(request.acrInstanceId)) {
11748
11789
  body["AcrInstanceId"] = request.acrInstanceId;
@@ -12345,6 +12386,10 @@ export default class Client extends OpenApi {
12345
12386
  query["MountHost"] = request.mountHost;
12346
12387
  }
12347
12388
 
12389
+ if (!Util.isUnset(request.mseFeatureConfig)) {
12390
+ query["MseFeatureConfig"] = request.mseFeatureConfig;
12391
+ }
12392
+
12348
12393
  if (!Util.isUnset(request.nasId)) {
12349
12394
  query["NasId"] = request.nasId;
12350
12395
  }