oci-loadbalancer 2.95.1 → 2.96.0
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.
|
@@ -35,8 +35,22 @@ export interface ConnectionConfiguration {
|
|
|
35
35
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
36
36
|
*/
|
|
37
37
|
"backendTcpProxyProtocolVersion"?: number;
|
|
38
|
+
/**
|
|
39
|
+
* An array that represents the PPV2 Options that can be enabled on TCP Listeners.
|
|
40
|
+
* Example: [\"PP2_TYPE_AUTHORITY\"]
|
|
41
|
+
*
|
|
42
|
+
*/
|
|
43
|
+
"backendTcpProxyProtocolOptions"?: Array<ConnectionConfiguration.BackendTcpProxyProtocolOptions>;
|
|
38
44
|
}
|
|
39
45
|
export declare namespace ConnectionConfiguration {
|
|
46
|
+
enum BackendTcpProxyProtocolOptions {
|
|
47
|
+
Pp2TypeAuthority = "PP2_TYPE_AUTHORITY",
|
|
48
|
+
/**
|
|
49
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
50
|
+
* version of the SDK.
|
|
51
|
+
*/
|
|
52
|
+
UnknownValue = "UNKNOWN_VALUE"
|
|
53
|
+
}
|
|
40
54
|
function getJsonObj(obj: ConnectionConfiguration): object;
|
|
41
55
|
function getDeserializedJsonObj(obj: ConnectionConfiguration): object;
|
|
42
56
|
}
|
|
@@ -17,6 +17,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
exports.ConnectionConfiguration = void 0;
|
|
18
18
|
var ConnectionConfiguration;
|
|
19
19
|
(function (ConnectionConfiguration) {
|
|
20
|
+
let BackendTcpProxyProtocolOptions;
|
|
21
|
+
(function (BackendTcpProxyProtocolOptions) {
|
|
22
|
+
BackendTcpProxyProtocolOptions["Pp2TypeAuthority"] = "PP2_TYPE_AUTHORITY";
|
|
23
|
+
/**
|
|
24
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
25
|
+
* version of the SDK.
|
|
26
|
+
*/
|
|
27
|
+
BackendTcpProxyProtocolOptions["UnknownValue"] = "UNKNOWN_VALUE";
|
|
28
|
+
})(BackendTcpProxyProtocolOptions = ConnectionConfiguration.BackendTcpProxyProtocolOptions || (ConnectionConfiguration.BackendTcpProxyProtocolOptions = {}));
|
|
20
29
|
function getJsonObj(obj) {
|
|
21
30
|
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
22
31
|
return jsonObj;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connection-configuration.js","sourceRoot":"","sources":["../../../../../lib/loadbalancer/lib/model/connection-configuration.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;GAaG;;;
|
|
1
|
+
{"version":3,"file":"connection-configuration.js","sourceRoot":"","sources":["../../../../../lib/loadbalancer/lib/model/connection-configuration.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;GAaG;;;AAoCH,IAAiB,uBAAuB,CAoBvC;AApBD,WAAiB,uBAAuB;IACtC,IAAY,8BAOX;IAPD,WAAY,8BAA8B;QACxC,yEAAuC,CAAA;QACvC;;;WAGG;QACH,gEAA8B,CAAA;IAChC,CAAC,EAPW,8BAA8B,GAA9B,sDAA8B,KAA9B,sDAA8B,QAOzC;IAED,SAAgB,UAAU,CAAC,GAA4B;QACrD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,kCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA4B;QACjE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,8CAAsB,yBAIrC,CAAA;AACH,CAAC,EApBgB,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAoBvC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-loadbalancer",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.96.0",
|
|
4
4
|
"description": "OCI NodeJS client for Load Balancer",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.96.0",
|
|
19
|
+
"oci-workrequests": "2.96.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|