@aws-sdk/client-redshift 3.43.0 → 3.45.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/CHANGELOG.md +11 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/protocols/Aws_query.js +4 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/protocols/Aws_query.js +4 -0
- package/dist-types/Redshift.d.ts +1 -1
- package/dist-types/commands/AuthorizeDataShareCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +6 -2
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.45.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.44.0...v3.45.0) (2021-12-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 2021/12/23 ([#3110](https://github.com/aws/aws-sdk-js-v3/issues/3110)) ([5d638e1](https://github.com/aws/aws-sdk-js-v3/commit/5d638e188ce64fa80fe36b8cba79ba63b80b50b7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
|
|
7
18
|
|
|
8
19
|
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -15029,6 +15029,7 @@ const deserializeAws_queryDataShare = (output, context) => {
|
|
|
15029
15029
|
ProducerArn: undefined,
|
|
15030
15030
|
AllowPubliclyAccessibleConsumers: undefined,
|
|
15031
15031
|
DataShareAssociations: undefined,
|
|
15032
|
+
ManagedBy: undefined,
|
|
15032
15033
|
};
|
|
15033
15034
|
if (output["DataShareArn"] !== undefined) {
|
|
15034
15035
|
contents.DataShareArn = smithy_client_1.expectString(output["DataShareArn"]);
|
|
@@ -15045,6 +15046,9 @@ const deserializeAws_queryDataShare = (output, context) => {
|
|
|
15045
15046
|
if (output["DataShareAssociations"] !== undefined && output["DataShareAssociations"]["member"] !== undefined) {
|
|
15046
15047
|
contents.DataShareAssociations = deserializeAws_queryDataShareAssociationList(smithy_client_1.getArrayIfSingleItem(output["DataShareAssociations"]["member"]), context);
|
|
15047
15048
|
}
|
|
15049
|
+
if (output["ManagedBy"] !== undefined) {
|
|
15050
|
+
contents.ManagedBy = smithy_client_1.expectString(output["ManagedBy"]);
|
|
15051
|
+
}
|
|
15048
15052
|
return contents;
|
|
15049
15053
|
};
|
|
15050
15054
|
const deserializeAws_queryDataShareAssociation = (output, context) => {
|
package/dist-es/endpoints.js
CHANGED
|
@@ -15792,6 +15792,7 @@ var deserializeAws_queryDataShare = function (output, context) {
|
|
|
15792
15792
|
ProducerArn: undefined,
|
|
15793
15793
|
AllowPubliclyAccessibleConsumers: undefined,
|
|
15794
15794
|
DataShareAssociations: undefined,
|
|
15795
|
+
ManagedBy: undefined,
|
|
15795
15796
|
};
|
|
15796
15797
|
if (output["DataShareArn"] !== undefined) {
|
|
15797
15798
|
contents.DataShareArn = __expectString(output["DataShareArn"]);
|
|
@@ -15808,6 +15809,9 @@ var deserializeAws_queryDataShare = function (output, context) {
|
|
|
15808
15809
|
if (output["DataShareAssociations"] !== undefined && output["DataShareAssociations"]["member"] !== undefined) {
|
|
15809
15810
|
contents.DataShareAssociations = deserializeAws_queryDataShareAssociationList(__getArrayIfSingleItem(output["DataShareAssociations"]["member"]), context);
|
|
15810
15811
|
}
|
|
15812
|
+
if (output["ManagedBy"] !== undefined) {
|
|
15813
|
+
contents.ManagedBy = __expectString(output["ManagedBy"]);
|
|
15814
|
+
}
|
|
15811
15815
|
return contents;
|
|
15812
15816
|
};
|
|
15813
15817
|
var deserializeAws_queryDataShareAssociation = function (output, context) {
|
package/dist-types/Redshift.d.ts
CHANGED
|
@@ -190,7 +190,7 @@ export declare class Redshift extends RedshiftClient {
|
|
|
190
190
|
authorizeClusterSecurityGroupIngress(args: AuthorizeClusterSecurityGroupIngressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AuthorizeClusterSecurityGroupIngressCommandOutput) => void): void;
|
|
191
191
|
/**
|
|
192
192
|
* <p>From a data producer account, authorizes the sharing of a datashare with one or more
|
|
193
|
-
* consumer accounts. To authorize a datashare for a data consumer, the producer account
|
|
193
|
+
* consumer accounts or managing entities. To authorize a datashare for a data consumer, the producer account
|
|
194
194
|
* must have the correct access privileges.</p>
|
|
195
195
|
*/
|
|
196
196
|
authorizeDataShare(args: AuthorizeDataShareCommandInput, options?: __HttpHandlerOptions): Promise<AuthorizeDataShareCommandOutput>;
|
|
@@ -8,7 +8,7 @@ export interface AuthorizeDataShareCommandOutput extends DataShare, __MetadataBe
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>From a data producer account, authorizes the sharing of a datashare with one or more
|
|
11
|
-
* consumer accounts. To authorize a datashare for a data consumer, the producer account
|
|
11
|
+
* consumer accounts or managing entities. To authorize a datashare for a data consumer, the producer account
|
|
12
12
|
* must have the correct access privileges.</p>
|
|
13
13
|
* @example
|
|
14
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -547,6 +547,10 @@ export interface DataShare {
|
|
|
547
547
|
* <p>A value that specifies when the datashare has an association between a producer and data consumers.</p>
|
|
548
548
|
*/
|
|
549
549
|
DataShareAssociations?: DataShareAssociation[];
|
|
550
|
+
/**
|
|
551
|
+
* <p>The identifier of a datashare to show its managing entity.</p>
|
|
552
|
+
*/
|
|
553
|
+
ManagedBy?: string;
|
|
550
554
|
}
|
|
551
555
|
export declare namespace DataShare {
|
|
552
556
|
/**
|
|
@@ -896,7 +900,7 @@ export interface AuthorizeDataShareMessage {
|
|
|
896
900
|
*/
|
|
897
901
|
DataShareArn: string | undefined;
|
|
898
902
|
/**
|
|
899
|
-
* <p>The identifier of the data consumer that is authorized to access the datashare. This identifier is an Amazon Web Services account ID.</p>
|
|
903
|
+
* <p>The identifier of the data consumer that is authorized to access the datashare. This identifier is an Amazon Web Services account ID or a keyword, such as ADX.</p>
|
|
900
904
|
*/
|
|
901
905
|
ConsumerIdentifier: string | undefined;
|
|
902
906
|
}
|
|
@@ -5598,7 +5602,7 @@ export interface DeauthorizeDataShareMessage {
|
|
|
5598
5602
|
DataShareArn: string | undefined;
|
|
5599
5603
|
/**
|
|
5600
5604
|
* <p>The identifier of the data consumer that is to have authorization removed from the datashare.
|
|
5601
|
-
* This identifier is an Amazon Web Services account ID.</p>
|
|
5605
|
+
* This identifier is an Amazon Web Services account ID or a keyword, such as ADX.</p>
|
|
5602
5606
|
*/
|
|
5603
5607
|
ConsumerIdentifier: string | undefined;
|
|
5604
5608
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-redshift",
|
|
3
3
|
"description": "AWS SDK for JavaScript Redshift Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.45.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.45.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.45.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.45.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.40.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.40.0",
|
|
33
33
|
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
34
|
"@aws-sdk/middleware-serde": "3.40.0",
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.45.0",
|
|
36
36
|
"@aws-sdk/middleware-stack": "3.40.0",
|
|
37
37
|
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
38
38
|
"@aws-sdk/node-config-provider": "3.40.0",
|