@aws-sdk/client-dsql 3.936.0 → 3.939.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.
package/dist-cjs/index.js
CHANGED
|
@@ -286,6 +286,7 @@ const _bPLSC = "bypassPolicyLockoutSafetyCheck";
|
|
|
286
286
|
const _c = "client";
|
|
287
287
|
const _cT = "clientToken";
|
|
288
288
|
const _cTr = "creationTime";
|
|
289
|
+
const _cVE = "clusterVpcEndpoint";
|
|
289
290
|
const _cl = "clusters";
|
|
290
291
|
const _ct = "client-token";
|
|
291
292
|
const _dPE = "deletionProtectionEnabled";
|
|
@@ -425,7 +426,7 @@ var GetClusterOutput = [
|
|
|
425
426
|
var GetClusterPolicyInput = [3, n0, _GCPI, 0, [_i], [[0, 1]]];
|
|
426
427
|
var GetClusterPolicyOutput = [3, n0, _GCPO, 0, [_p, _pV], [0, 0]];
|
|
427
428
|
var GetVpcEndpointServiceNameInput = [3, n0, _GVESNI, 0, [_i], [[0, 1]]];
|
|
428
|
-
var GetVpcEndpointServiceNameOutput = [3, n0, _GVESNO, 0, [_sN], [0]];
|
|
429
|
+
var GetVpcEndpointServiceNameOutput = [3, n0, _GVESNO, 0, [_sN, _cVE], [0, 0]];
|
|
429
430
|
var InternalServerException = [
|
|
430
431
|
-3,
|
|
431
432
|
n0,
|
|
@@ -51,6 +51,7 @@ const _bPLSC = "bypassPolicyLockoutSafetyCheck";
|
|
|
51
51
|
const _c = "client";
|
|
52
52
|
const _cT = "clientToken";
|
|
53
53
|
const _cTr = "creationTime";
|
|
54
|
+
const _cVE = "clusterVpcEndpoint";
|
|
54
55
|
const _cl = "clusters";
|
|
55
56
|
const _ct = "client-token";
|
|
56
57
|
const _dPE = "deletionProtectionEnabled";
|
|
@@ -193,7 +194,7 @@ export var GetClusterOutput = [
|
|
|
193
194
|
export var GetClusterPolicyInput = [3, n0, _GCPI, 0, [_i], [[0, 1]]];
|
|
194
195
|
export var GetClusterPolicyOutput = [3, n0, _GCPO, 0, [_p, _pV], [0, 0]];
|
|
195
196
|
export var GetVpcEndpointServiceNameInput = [3, n0, _GVESNI, 0, [_i], [[0, 1]]];
|
|
196
|
-
export var GetVpcEndpointServiceNameOutput = [3, n0, _GVESNO, 0, [_sN], [0]];
|
|
197
|
+
export var GetVpcEndpointServiceNameOutput = [3, n0, _GVESNO, 0, [_sN, _cVE], [0, 0]];
|
|
197
198
|
export var InternalServerException = [
|
|
198
199
|
-3,
|
|
199
200
|
n0,
|
|
@@ -43,6 +43,7 @@ declare const GetVpcEndpointServiceNameCommand_base: {
|
|
|
43
43
|
* const response = await client.send(command);
|
|
44
44
|
* // { // GetVpcEndpointServiceNameOutput
|
|
45
45
|
* // serviceName: "STRING_VALUE", // required
|
|
46
|
+
* // clusterVpcEndpoint: "STRING_VALUE",
|
|
46
47
|
* // };
|
|
47
48
|
*
|
|
48
49
|
* ```
|
|
@@ -314,6 +314,11 @@ export interface GetVpcEndpointServiceNameOutput {
|
|
|
314
314
|
* @public
|
|
315
315
|
*/
|
|
316
316
|
serviceName: string | undefined;
|
|
317
|
+
/**
|
|
318
|
+
* <p>The VPC connection endpoint for the cluster.</p>
|
|
319
|
+
* @public
|
|
320
|
+
*/
|
|
321
|
+
clusterVpcEndpoint?: string | undefined;
|
|
317
322
|
}
|
|
318
323
|
/**
|
|
319
324
|
* @public
|
|
@@ -75,6 +75,7 @@ export interface GetVpcEndpointServiceNameInput {
|
|
|
75
75
|
}
|
|
76
76
|
export interface GetVpcEndpointServiceNameOutput {
|
|
77
77
|
serviceName: string | undefined;
|
|
78
|
+
clusterVpcEndpoint?: string | undefined;
|
|
78
79
|
}
|
|
79
80
|
export interface ListClustersInput {
|
|
80
81
|
maxResults?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dsql",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dsql Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.939.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-dsql",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.936.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.939.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|