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