@aws-sdk/client-odb 3.998.0 → 3.1000.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.
|
@@ -407,6 +407,7 @@ const _pNC = "peerNetworkCidrs";
|
|
|
407
407
|
const _pNCTBA = "peerNetworkCidrsToBeAdded";
|
|
408
408
|
const _pNCTBR = "peerNetworkCidrsToBeRemoved";
|
|
409
409
|
const _pNI = "peerNetworkId";
|
|
410
|
+
const _pNRTI = "peerNetworkRouteTableIds";
|
|
410
411
|
const _pP = "percentProgress";
|
|
411
412
|
const _pS = "patchingStatus";
|
|
412
413
|
const _qC = "quotaCode";
|
|
@@ -634,8 +635,8 @@ exports.CreateOdbNetworkOutput$ = [3, n0, _CONO,
|
|
|
634
635
|
];
|
|
635
636
|
exports.CreateOdbPeeringConnectionInput$ = [3, n0, _COPCI,
|
|
636
637
|
0,
|
|
637
|
-
[_oNI, _pNI, _dN, _pNCTBA, _cT, _t],
|
|
638
|
-
[0, 0, 0, 64 | 0, [0, 4], 128 | 0], 2
|
|
638
|
+
[_oNI, _pNI, _dN, _pNCTBA, _pNRTI, _cT, _t],
|
|
639
|
+
[0, 0, 0, 64 | 0, 64 | 0, [0, 4], 128 | 0], 2
|
|
639
640
|
];
|
|
640
641
|
exports.CreateOdbPeeringConnectionOutput$ = [3, n0, _COPCO,
|
|
641
642
|
0,
|
|
@@ -1216,6 +1217,7 @@ var OdbPeeringConnectionList = [1, n0, _OPCL,
|
|
|
1216
1217
|
0, () => exports.OdbPeeringConnectionSummary$
|
|
1217
1218
|
];
|
|
1218
1219
|
var PeeredCidrList = 64 | 0;
|
|
1220
|
+
var PeerNetworkRouteTableIdList = 64 | 0;
|
|
1219
1221
|
var SensitiveStringList = [1, n0, _SSL,
|
|
1220
1222
|
0, [() => SensitiveString,
|
|
1221
1223
|
0]
|
|
@@ -401,6 +401,7 @@ const _pNC = "peerNetworkCidrs";
|
|
|
401
401
|
const _pNCTBA = "peerNetworkCidrsToBeAdded";
|
|
402
402
|
const _pNCTBR = "peerNetworkCidrsToBeRemoved";
|
|
403
403
|
const _pNI = "peerNetworkId";
|
|
404
|
+
const _pNRTI = "peerNetworkRouteTableIds";
|
|
404
405
|
const _pP = "percentProgress";
|
|
405
406
|
const _pS = "patchingStatus";
|
|
406
407
|
const _qC = "quotaCode";
|
|
@@ -628,8 +629,8 @@ export var CreateOdbNetworkOutput$ = [3, n0, _CONO,
|
|
|
628
629
|
];
|
|
629
630
|
export var CreateOdbPeeringConnectionInput$ = [3, n0, _COPCI,
|
|
630
631
|
0,
|
|
631
|
-
[_oNI, _pNI, _dN, _pNCTBA, _cT, _t],
|
|
632
|
-
[0, 0, 0, 64 | 0, [0, 4], 128 | 0], 2
|
|
632
|
+
[_oNI, _pNI, _dN, _pNCTBA, _pNRTI, _cT, _t],
|
|
633
|
+
[0, 0, 0, 64 | 0, 64 | 0, [0, 4], 128 | 0], 2
|
|
633
634
|
];
|
|
634
635
|
export var CreateOdbPeeringConnectionOutput$ = [3, n0, _COPCO,
|
|
635
636
|
0,
|
|
@@ -1210,6 +1211,7 @@ var OdbPeeringConnectionList = [1, n0, _OPCL,
|
|
|
1210
1211
|
0, () => OdbPeeringConnectionSummary$
|
|
1211
1212
|
];
|
|
1212
1213
|
var PeeredCidrList = 64 | 0;
|
|
1214
|
+
var PeerNetworkRouteTableIdList = 64 | 0;
|
|
1213
1215
|
var SensitiveStringList = [1, n0, _SSL,
|
|
1214
1216
|
0, [() => SensitiveString,
|
|
1215
1217
|
0]
|
|
@@ -43,6 +43,9 @@ declare const CreateOdbPeeringConnectionCommand_base: {
|
|
|
43
43
|
* peerNetworkCidrsToBeAdded: [ // PeeredCidrList
|
|
44
44
|
* "STRING_VALUE",
|
|
45
45
|
* ],
|
|
46
|
+
* peerNetworkRouteTableIds: [ // PeerNetworkRouteTableIdList
|
|
47
|
+
* "STRING_VALUE",
|
|
48
|
+
* ],
|
|
46
49
|
* clientToken: "STRING_VALUE",
|
|
47
50
|
* tags: { // RequestTagMap
|
|
48
51
|
* "<keys>": "STRING_VALUE",
|
|
@@ -2814,6 +2814,11 @@ export interface CreateOdbPeeringConnectionInput {
|
|
|
2814
2814
|
* @public
|
|
2815
2815
|
*/
|
|
2816
2816
|
peerNetworkCidrsToBeAdded?: string[] | undefined;
|
|
2817
|
+
/**
|
|
2818
|
+
* <p>The unique identifier of the VPC route table for which a route to the ODB network is automatically created during peering connection establishment.</p>
|
|
2819
|
+
* @public
|
|
2820
|
+
*/
|
|
2821
|
+
peerNetworkRouteTableIds?: string[] | undefined;
|
|
2817
2822
|
/**
|
|
2818
2823
|
* <p>The client token for the ODB peering connection request.</p> <p>Constraints:</p> <ul> <li> <p>Must be unique for each request.</p> </li> </ul>
|
|
2819
2824
|
* @public
|
|
@@ -639,6 +639,7 @@ export interface CreateOdbPeeringConnectionInput {
|
|
|
639
639
|
peerNetworkId: string | undefined;
|
|
640
640
|
displayName?: string | undefined;
|
|
641
641
|
peerNetworkCidrsToBeAdded?: string[] | undefined;
|
|
642
|
+
peerNetworkRouteTableIds?: string[] | undefined;
|
|
642
643
|
clientToken?: string | undefined;
|
|
643
644
|
tags?: Record<string, string> | undefined;
|
|
644
645
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-odb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Odb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1000.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-odb",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.
|
|
24
|
+
"@aws-sdk/core": "^3.973.15",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.14",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.6",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.6",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.6",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.15",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.6",
|
|
31
|
+
"@aws-sdk/types": "^3.973.4",
|
|
32
|
+
"@aws-sdk/util-endpoints": "^3.996.3",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.6",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.9",
|
|
36
36
|
"@smithy/core": "^3.23.6",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.11",
|