@alicloud/sae20190506 1.23.4 → 1.23.6
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 +10 -0
- package/dist/client.js +20 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +30 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -14773,24 +14773,39 @@ export class DescribeApplicationScalingRulesResponseBodyData extends $tea.Model
|
|
|
14773
14773
|
}
|
|
14774
14774
|
|
|
14775
14775
|
export class DescribeApplicationSlbsResponseBodyDataInternet extends $tea.Model {
|
|
14776
|
+
cookie?: string;
|
|
14777
|
+
cookieTimeout?: number;
|
|
14778
|
+
httpsCaCertId?: string;
|
|
14776
14779
|
httpsCertId?: string;
|
|
14777
14780
|
port?: number;
|
|
14778
14781
|
protocol?: string;
|
|
14782
|
+
stickySession?: boolean;
|
|
14783
|
+
stickySessionType?: string;
|
|
14779
14784
|
targetPort?: number;
|
|
14780
14785
|
static names(): { [key: string]: string } {
|
|
14781
14786
|
return {
|
|
14787
|
+
cookie: 'Cookie',
|
|
14788
|
+
cookieTimeout: 'CookieTimeout',
|
|
14789
|
+
httpsCaCertId: 'HttpsCaCertId',
|
|
14782
14790
|
httpsCertId: 'HttpsCertId',
|
|
14783
14791
|
port: 'Port',
|
|
14784
14792
|
protocol: 'Protocol',
|
|
14793
|
+
stickySession: 'StickySession',
|
|
14794
|
+
stickySessionType: 'StickySessionType',
|
|
14785
14795
|
targetPort: 'TargetPort',
|
|
14786
14796
|
};
|
|
14787
14797
|
}
|
|
14788
14798
|
|
|
14789
14799
|
static types(): { [key: string]: any } {
|
|
14790
14800
|
return {
|
|
14801
|
+
cookie: 'string',
|
|
14802
|
+
cookieTimeout: 'number',
|
|
14803
|
+
httpsCaCertId: 'string',
|
|
14791
14804
|
httpsCertId: 'string',
|
|
14792
14805
|
port: 'number',
|
|
14793
14806
|
protocol: 'string',
|
|
14807
|
+
stickySession: 'boolean',
|
|
14808
|
+
stickySessionType: 'string',
|
|
14794
14809
|
targetPort: 'number',
|
|
14795
14810
|
};
|
|
14796
14811
|
}
|
|
@@ -14801,24 +14816,39 @@ export class DescribeApplicationSlbsResponseBodyDataInternet extends $tea.Model
|
|
|
14801
14816
|
}
|
|
14802
14817
|
|
|
14803
14818
|
export class DescribeApplicationSlbsResponseBodyDataIntranet extends $tea.Model {
|
|
14819
|
+
cookie?: string;
|
|
14820
|
+
cookieTimeout?: number;
|
|
14821
|
+
httpsCaCertId?: string;
|
|
14804
14822
|
httpsCertId?: string;
|
|
14805
14823
|
port?: number;
|
|
14806
14824
|
protocol?: string;
|
|
14825
|
+
stickySession?: boolean;
|
|
14826
|
+
stickySessionType?: string;
|
|
14807
14827
|
targetPort?: number;
|
|
14808
14828
|
static names(): { [key: string]: string } {
|
|
14809
14829
|
return {
|
|
14830
|
+
cookie: 'Cookie',
|
|
14831
|
+
cookieTimeout: 'CookieTimeout',
|
|
14832
|
+
httpsCaCertId: 'HttpsCaCertId',
|
|
14810
14833
|
httpsCertId: 'HttpsCertId',
|
|
14811
14834
|
port: 'Port',
|
|
14812
14835
|
protocol: 'Protocol',
|
|
14836
|
+
stickySession: 'StickySession',
|
|
14837
|
+
stickySessionType: 'StickySessionType',
|
|
14813
14838
|
targetPort: 'TargetPort',
|
|
14814
14839
|
};
|
|
14815
14840
|
}
|
|
14816
14841
|
|
|
14817
14842
|
static types(): { [key: string]: any } {
|
|
14818
14843
|
return {
|
|
14844
|
+
cookie: 'string',
|
|
14845
|
+
cookieTimeout: 'number',
|
|
14846
|
+
httpsCaCertId: 'string',
|
|
14819
14847
|
httpsCertId: 'string',
|
|
14820
14848
|
port: 'number',
|
|
14821
14849
|
protocol: 'string',
|
|
14850
|
+
stickySession: 'boolean',
|
|
14851
|
+
stickySessionType: 'string',
|
|
14822
14852
|
targetPort: 'number',
|
|
14823
14853
|
};
|
|
14824
14854
|
}
|