@alicloud/sae20190506 1.23.5 → 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 +8 -0
- package/dist/client.js +16 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +24 -0
package/dist/client.d.ts
CHANGED
|
@@ -7802,10 +7802,14 @@ export declare class DescribeApplicationScalingRulesResponseBodyData extends $te
|
|
|
7802
7802
|
});
|
|
7803
7803
|
}
|
|
7804
7804
|
export declare class DescribeApplicationSlbsResponseBodyDataInternet extends $tea.Model {
|
|
7805
|
+
cookie?: string;
|
|
7806
|
+
cookieTimeout?: number;
|
|
7805
7807
|
httpsCaCertId?: string;
|
|
7806
7808
|
httpsCertId?: string;
|
|
7807
7809
|
port?: number;
|
|
7808
7810
|
protocol?: string;
|
|
7811
|
+
stickySession?: boolean;
|
|
7812
|
+
stickySessionType?: string;
|
|
7809
7813
|
targetPort?: number;
|
|
7810
7814
|
static names(): {
|
|
7811
7815
|
[key: string]: string;
|
|
@@ -7818,10 +7822,14 @@ export declare class DescribeApplicationSlbsResponseBodyDataInternet extends $te
|
|
|
7818
7822
|
});
|
|
7819
7823
|
}
|
|
7820
7824
|
export declare class DescribeApplicationSlbsResponseBodyDataIntranet extends $tea.Model {
|
|
7825
|
+
cookie?: string;
|
|
7826
|
+
cookieTimeout?: number;
|
|
7821
7827
|
httpsCaCertId?: string;
|
|
7822
7828
|
httpsCertId?: string;
|
|
7823
7829
|
port?: number;
|
|
7824
7830
|
protocol?: string;
|
|
7831
|
+
stickySession?: boolean;
|
|
7832
|
+
stickySessionType?: string;
|
|
7825
7833
|
targetPort?: number;
|
|
7826
7834
|
static names(): {
|
|
7827
7835
|
[key: string]: string;
|
package/dist/client.js
CHANGED
|
@@ -11456,19 +11456,27 @@ exports.DescribeApplicationScalingRulesResponseBodyData = DescribeApplicationSca
|
|
|
11456
11456
|
class DescribeApplicationSlbsResponseBodyDataInternet extends $tea.Model {
|
|
11457
11457
|
static names() {
|
|
11458
11458
|
return {
|
|
11459
|
+
cookie: 'Cookie',
|
|
11460
|
+
cookieTimeout: 'CookieTimeout',
|
|
11459
11461
|
httpsCaCertId: 'HttpsCaCertId',
|
|
11460
11462
|
httpsCertId: 'HttpsCertId',
|
|
11461
11463
|
port: 'Port',
|
|
11462
11464
|
protocol: 'Protocol',
|
|
11465
|
+
stickySession: 'StickySession',
|
|
11466
|
+
stickySessionType: 'StickySessionType',
|
|
11463
11467
|
targetPort: 'TargetPort',
|
|
11464
11468
|
};
|
|
11465
11469
|
}
|
|
11466
11470
|
static types() {
|
|
11467
11471
|
return {
|
|
11472
|
+
cookie: 'string',
|
|
11473
|
+
cookieTimeout: 'number',
|
|
11468
11474
|
httpsCaCertId: 'string',
|
|
11469
11475
|
httpsCertId: 'string',
|
|
11470
11476
|
port: 'number',
|
|
11471
11477
|
protocol: 'string',
|
|
11478
|
+
stickySession: 'boolean',
|
|
11479
|
+
stickySessionType: 'string',
|
|
11472
11480
|
targetPort: 'number',
|
|
11473
11481
|
};
|
|
11474
11482
|
}
|
|
@@ -11480,19 +11488,27 @@ exports.DescribeApplicationSlbsResponseBodyDataInternet = DescribeApplicationSlb
|
|
|
11480
11488
|
class DescribeApplicationSlbsResponseBodyDataIntranet extends $tea.Model {
|
|
11481
11489
|
static names() {
|
|
11482
11490
|
return {
|
|
11491
|
+
cookie: 'Cookie',
|
|
11492
|
+
cookieTimeout: 'CookieTimeout',
|
|
11483
11493
|
httpsCaCertId: 'HttpsCaCertId',
|
|
11484
11494
|
httpsCertId: 'HttpsCertId',
|
|
11485
11495
|
port: 'Port',
|
|
11486
11496
|
protocol: 'Protocol',
|
|
11497
|
+
stickySession: 'StickySession',
|
|
11498
|
+
stickySessionType: 'StickySessionType',
|
|
11487
11499
|
targetPort: 'TargetPort',
|
|
11488
11500
|
};
|
|
11489
11501
|
}
|
|
11490
11502
|
static types() {
|
|
11491
11503
|
return {
|
|
11504
|
+
cookie: 'string',
|
|
11505
|
+
cookieTimeout: 'number',
|
|
11492
11506
|
httpsCaCertId: 'string',
|
|
11493
11507
|
httpsCertId: 'string',
|
|
11494
11508
|
port: 'number',
|
|
11495
11509
|
protocol: 'string',
|
|
11510
|
+
stickySession: 'boolean',
|
|
11511
|
+
stickySessionType: 'string',
|
|
11496
11512
|
targetPort: 'number',
|
|
11497
11513
|
};
|
|
11498
11514
|
}
|