@aws-sdk/client-redshift 3.41.0 → 3.46.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 +47 -0
- package/dist-cjs/Redshift.js +30 -0
- package/dist-cjs/commands/DescribeHsmConfigurationsCommand.js +2 -1
- package/dist-cjs/commands/DescribeLoggingStatusCommand.js +1 -2
- package/dist-cjs/commands/DescribeReservedNodeExchangeStatusCommand.js +36 -0
- package/dist-cjs/commands/GetReservedNodeExchangeConfigurationOptionsCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +20 -17
- package/dist-cjs/models/models_1.js +56 -3
- package/dist-cjs/pagination/DescribeDataSharesForConsumerPaginator.js +35 -0
- package/dist-cjs/pagination/DescribeDataSharesForProducerPaginator.js +35 -0
- package/dist-cjs/pagination/DescribeDataSharesPaginator.js +35 -0
- package/dist-cjs/pagination/DescribeReservedNodeExchangeStatusPaginator.js +35 -0
- package/dist-cjs/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +6 -1
- package/dist-cjs/protocols/Aws_query.js +508 -4
- package/dist-cjs/runtimeConfig.js +0 -2
- package/dist-es/Redshift.js +30 -0
- package/dist-es/commands/DescribeHsmConfigurationsCommand.js +2 -1
- package/dist-es/commands/DescribeLoggingStatusCommand.js +1 -2
- package/dist-es/commands/DescribeReservedNodeExchangeStatusCommand.js +39 -0
- package/dist-es/commands/GetReservedNodeExchangeConfigurationOptionsCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +13 -8
- package/dist-es/models/models_1.js +37 -0
- package/dist-es/pagination/DescribeDataSharesForConsumerPaginator.js +74 -0
- package/dist-es/pagination/DescribeDataSharesForProducerPaginator.js +74 -0
- package/dist-es/pagination/DescribeDataSharesPaginator.js +74 -0
- package/dist-es/pagination/DescribeReservedNodeExchangeStatusPaginator.js +74 -0
- package/dist-es/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.js +74 -0
- package/dist-es/pagination/index.js +6 -1
- package/dist-es/protocols/Aws_query.js +675 -161
- package/dist-es/runtimeConfig.js +0 -2
- package/dist-types/Redshift.d.ts +18 -1
- package/dist-types/RedshiftClient.d.ts +4 -2
- package/dist-types/commands/AuthorizeDataShareCommand.d.ts +1 -1
- package/dist-types/commands/DescribeHsmConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeLoggingStatusCommand.d.ts +1 -2
- package/dist-types/commands/DescribeReservedNodeExchangeStatusCommand.d.ts +36 -0
- package/dist-types/commands/GetReservedNodeExchangeConfigurationOptionsCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +90 -49
- package/dist-types/models/models_1.d.ts +202 -1
- package/dist-types/pagination/DescribeDataSharesForConsumerPaginator.d.ts +4 -0
- package/dist-types/pagination/DescribeDataSharesForProducerPaginator.d.ts +4 -0
- package/dist-types/pagination/DescribeDataSharesPaginator.d.ts +4 -0
- package/dist-types/pagination/DescribeReservedNodeExchangeStatusPaginator.d.ts +4 -0
- package/dist-types/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +6 -1
- package/dist-types/protocols/Aws_query.d.ts +6 -0
- package/dist-types/ts3.4/Redshift.d.ts +10 -0
- package/dist-types/ts3.4/RedshiftClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeHsmConfigurationsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeLoggingStatusCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/DescribeReservedNodeExchangeStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetReservedNodeExchangeConfigurationOptionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +45 -20
- package/dist-types/ts3.4/models/models_1.d.ts +106 -1
- package/dist-types/ts3.4/pagination/DescribeDataSharesForConsumerPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeDataSharesForProducerPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeDataSharesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeReservedNodeExchangeStatusPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -1
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +6 -0
- package/package.json +37 -44
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -12,10 +12,8 @@ import { calculateBodyLength } from "@aws-sdk/util-body-length-node";
|
|
|
12
12
|
import { defaultUserAgent } from "@aws-sdk/util-user-agent-node";
|
|
13
13
|
import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
|
|
14
14
|
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
15
|
-
import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
|
|
16
15
|
export var getRuntimeConfig = function (config) {
|
|
17
16
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
18
|
-
emitWarningIfUnsupportedVersion(process.version);
|
|
19
17
|
var clientSharedValues = getSharedRuntimeConfig(config);
|
|
20
18
|
return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new NodeHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(NODE_RETRY_MODE_CONFIG_OPTIONS), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
|
|
21
19
|
};
|
package/dist-types/Redshift.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ import { DescribeLoggingStatusCommandInput, DescribeLoggingStatusCommandOutput }
|
|
|
68
68
|
import { DescribeNodeConfigurationOptionsCommandInput, DescribeNodeConfigurationOptionsCommandOutput } from "./commands/DescribeNodeConfigurationOptionsCommand";
|
|
69
69
|
import { DescribeOrderableClusterOptionsCommandInput, DescribeOrderableClusterOptionsCommandOutput } from "./commands/DescribeOrderableClusterOptionsCommand";
|
|
70
70
|
import { DescribePartnersCommandInput, DescribePartnersCommandOutput } from "./commands/DescribePartnersCommand";
|
|
71
|
+
import { DescribeReservedNodeExchangeStatusCommandInput, DescribeReservedNodeExchangeStatusCommandOutput } from "./commands/DescribeReservedNodeExchangeStatusCommand";
|
|
71
72
|
import { DescribeReservedNodeOfferingsCommandInput, DescribeReservedNodeOfferingsCommandOutput } from "./commands/DescribeReservedNodeOfferingsCommand";
|
|
72
73
|
import { DescribeReservedNodesCommandInput, DescribeReservedNodesCommandOutput } from "./commands/DescribeReservedNodesCommand";
|
|
73
74
|
import { DescribeResizeCommandInput, DescribeResizeCommandOutput } from "./commands/DescribeResizeCommand";
|
|
@@ -84,6 +85,7 @@ import { DisassociateDataShareConsumerCommandInput, DisassociateDataShareConsume
|
|
|
84
85
|
import { EnableLoggingCommandInput, EnableLoggingCommandOutput } from "./commands/EnableLoggingCommand";
|
|
85
86
|
import { EnableSnapshotCopyCommandInput, EnableSnapshotCopyCommandOutput } from "./commands/EnableSnapshotCopyCommand";
|
|
86
87
|
import { GetClusterCredentialsCommandInput, GetClusterCredentialsCommandOutput } from "./commands/GetClusterCredentialsCommand";
|
|
88
|
+
import { GetReservedNodeExchangeConfigurationOptionsCommandInput, GetReservedNodeExchangeConfigurationOptionsCommandOutput } from "./commands/GetReservedNodeExchangeConfigurationOptionsCommand";
|
|
87
89
|
import { GetReservedNodeExchangeOfferingsCommandInput, GetReservedNodeExchangeOfferingsCommandOutput } from "./commands/GetReservedNodeExchangeOfferingsCommand";
|
|
88
90
|
import { ModifyAquaConfigurationCommandInput, ModifyAquaConfigurationCommandOutput } from "./commands/ModifyAquaConfigurationCommand";
|
|
89
91
|
import { ModifyAuthenticationProfileCommandInput, ModifyAuthenticationProfileCommandOutput } from "./commands/ModifyAuthenticationProfileCommand";
|
|
@@ -188,7 +190,7 @@ export declare class Redshift extends RedshiftClient {
|
|
|
188
190
|
authorizeClusterSecurityGroupIngress(args: AuthorizeClusterSecurityGroupIngressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AuthorizeClusterSecurityGroupIngressCommandOutput) => void): void;
|
|
189
191
|
/**
|
|
190
192
|
* <p>From a data producer account, authorizes the sharing of a datashare with one or more
|
|
191
|
-
* 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
|
|
192
194
|
* must have the correct access privileges.</p>
|
|
193
195
|
*/
|
|
194
196
|
authorizeDataShare(args: AuthorizeDataShareCommandInput, options?: __HttpHandlerOptions): Promise<AuthorizeDataShareCommandOutput>;
|
|
@@ -832,6 +834,13 @@ export declare class Redshift extends RedshiftClient {
|
|
|
832
834
|
describePartners(args: DescribePartnersCommandInput, options?: __HttpHandlerOptions): Promise<DescribePartnersCommandOutput>;
|
|
833
835
|
describePartners(args: DescribePartnersCommandInput, cb: (err: any, data?: DescribePartnersCommandOutput) => void): void;
|
|
834
836
|
describePartners(args: DescribePartnersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePartnersCommandOutput) => void): void;
|
|
837
|
+
/**
|
|
838
|
+
* <p>Returns exchange status details and associated metadata for a reserved-node
|
|
839
|
+
* exchange. Statuses include such values as in progress and requested.</p>
|
|
840
|
+
*/
|
|
841
|
+
describeReservedNodeExchangeStatus(args: DescribeReservedNodeExchangeStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservedNodeExchangeStatusCommandOutput>;
|
|
842
|
+
describeReservedNodeExchangeStatus(args: DescribeReservedNodeExchangeStatusCommandInput, cb: (err: any, data?: DescribeReservedNodeExchangeStatusCommandOutput) => void): void;
|
|
843
|
+
describeReservedNodeExchangeStatus(args: DescribeReservedNodeExchangeStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservedNodeExchangeStatusCommandOutput) => void): void;
|
|
835
844
|
/**
|
|
836
845
|
* <p>Returns a list of the available reserved node offerings by Amazon Redshift with their
|
|
837
846
|
* descriptions including the node type, the fixed and recurring costs of reserving the
|
|
@@ -1025,6 +1034,14 @@ export declare class Redshift extends RedshiftClient {
|
|
|
1025
1034
|
getClusterCredentials(args: GetClusterCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<GetClusterCredentialsCommandOutput>;
|
|
1026
1035
|
getClusterCredentials(args: GetClusterCredentialsCommandInput, cb: (err: any, data?: GetClusterCredentialsCommandOutput) => void): void;
|
|
1027
1036
|
getClusterCredentials(args: GetClusterCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClusterCredentialsCommandOutput) => void): void;
|
|
1037
|
+
/**
|
|
1038
|
+
* <p>Gets the configuration options for the reserved-node exchange. These options
|
|
1039
|
+
* include information about the source reserved node and target reserved node offering.
|
|
1040
|
+
* Details include the node type, the price, the node count, and the offering type.</p>
|
|
1041
|
+
*/
|
|
1042
|
+
getReservedNodeExchangeConfigurationOptions(args: GetReservedNodeExchangeConfigurationOptionsCommandInput, options?: __HttpHandlerOptions): Promise<GetReservedNodeExchangeConfigurationOptionsCommandOutput>;
|
|
1043
|
+
getReservedNodeExchangeConfigurationOptions(args: GetReservedNodeExchangeConfigurationOptionsCommandInput, cb: (err: any, data?: GetReservedNodeExchangeConfigurationOptionsCommandOutput) => void): void;
|
|
1044
|
+
getReservedNodeExchangeConfigurationOptions(args: GetReservedNodeExchangeConfigurationOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReservedNodeExchangeConfigurationOptionsCommandOutput) => void): void;
|
|
1028
1045
|
/**
|
|
1029
1046
|
* <p>Returns an array of DC2 ReservedNodeOfferings that matches the payment type, term,
|
|
1030
1047
|
* and usage price of the given DC1 reserved node.</p>
|
|
@@ -75,6 +75,7 @@ import { DescribeLoggingStatusCommandInput, DescribeLoggingStatusCommandOutput }
|
|
|
75
75
|
import { DescribeNodeConfigurationOptionsCommandInput, DescribeNodeConfigurationOptionsCommandOutput } from "./commands/DescribeNodeConfigurationOptionsCommand";
|
|
76
76
|
import { DescribeOrderableClusterOptionsCommandInput, DescribeOrderableClusterOptionsCommandOutput } from "./commands/DescribeOrderableClusterOptionsCommand";
|
|
77
77
|
import { DescribePartnersCommandInput, DescribePartnersCommandOutput } from "./commands/DescribePartnersCommand";
|
|
78
|
+
import { DescribeReservedNodeExchangeStatusCommandInput, DescribeReservedNodeExchangeStatusCommandOutput } from "./commands/DescribeReservedNodeExchangeStatusCommand";
|
|
78
79
|
import { DescribeReservedNodeOfferingsCommandInput, DescribeReservedNodeOfferingsCommandOutput } from "./commands/DescribeReservedNodeOfferingsCommand";
|
|
79
80
|
import { DescribeReservedNodesCommandInput, DescribeReservedNodesCommandOutput } from "./commands/DescribeReservedNodesCommand";
|
|
80
81
|
import { DescribeResizeCommandInput, DescribeResizeCommandOutput } from "./commands/DescribeResizeCommand";
|
|
@@ -91,6 +92,7 @@ import { DisassociateDataShareConsumerCommandInput, DisassociateDataShareConsume
|
|
|
91
92
|
import { EnableLoggingCommandInput, EnableLoggingCommandOutput } from "./commands/EnableLoggingCommand";
|
|
92
93
|
import { EnableSnapshotCopyCommandInput, EnableSnapshotCopyCommandOutput } from "./commands/EnableSnapshotCopyCommand";
|
|
93
94
|
import { GetClusterCredentialsCommandInput, GetClusterCredentialsCommandOutput } from "./commands/GetClusterCredentialsCommand";
|
|
95
|
+
import { GetReservedNodeExchangeConfigurationOptionsCommandInput, GetReservedNodeExchangeConfigurationOptionsCommandOutput } from "./commands/GetReservedNodeExchangeConfigurationOptionsCommand";
|
|
94
96
|
import { GetReservedNodeExchangeOfferingsCommandInput, GetReservedNodeExchangeOfferingsCommandOutput } from "./commands/GetReservedNodeExchangeOfferingsCommand";
|
|
95
97
|
import { ModifyAquaConfigurationCommandInput, ModifyAquaConfigurationCommandOutput } from "./commands/ModifyAquaConfigurationCommand";
|
|
96
98
|
import { ModifyAuthenticationProfileCommandInput, ModifyAuthenticationProfileCommandOutput } from "./commands/ModifyAuthenticationProfileCommand";
|
|
@@ -122,8 +124,8 @@ import { RevokeEndpointAccessCommandInput, RevokeEndpointAccessCommandOutput } f
|
|
|
122
124
|
import { RevokeSnapshotAccessCommandInput, RevokeSnapshotAccessCommandOutput } from "./commands/RevokeSnapshotAccessCommand";
|
|
123
125
|
import { RotateEncryptionKeyCommandInput, RotateEncryptionKeyCommandOutput } from "./commands/RotateEncryptionKeyCommand";
|
|
124
126
|
import { UpdatePartnerStatusCommandInput, UpdatePartnerStatusCommandOutput } from "./commands/UpdatePartnerStatusCommand";
|
|
125
|
-
export declare type ServiceInputTypes = AcceptReservedNodeExchangeCommandInput | AddPartnerCommandInput | AssociateDataShareConsumerCommandInput | AuthorizeClusterSecurityGroupIngressCommandInput | AuthorizeDataShareCommandInput | AuthorizeEndpointAccessCommandInput | AuthorizeSnapshotAccessCommandInput | BatchDeleteClusterSnapshotsCommandInput | BatchModifyClusterSnapshotsCommandInput | CancelResizeCommandInput | CopyClusterSnapshotCommandInput | CreateAuthenticationProfileCommandInput | CreateClusterCommandInput | CreateClusterParameterGroupCommandInput | CreateClusterSecurityGroupCommandInput | CreateClusterSnapshotCommandInput | CreateClusterSubnetGroupCommandInput | CreateEndpointAccessCommandInput | CreateEventSubscriptionCommandInput | CreateHsmClientCertificateCommandInput | CreateHsmConfigurationCommandInput | CreateScheduledActionCommandInput | CreateSnapshotCopyGrantCommandInput | CreateSnapshotScheduleCommandInput | CreateTagsCommandInput | CreateUsageLimitCommandInput | DeauthorizeDataShareCommandInput | DeleteAuthenticationProfileCommandInput | DeleteClusterCommandInput | DeleteClusterParameterGroupCommandInput | DeleteClusterSecurityGroupCommandInput | DeleteClusterSnapshotCommandInput | DeleteClusterSubnetGroupCommandInput | DeleteEndpointAccessCommandInput | DeleteEventSubscriptionCommandInput | DeleteHsmClientCertificateCommandInput | DeleteHsmConfigurationCommandInput | DeletePartnerCommandInput | DeleteScheduledActionCommandInput | DeleteSnapshotCopyGrantCommandInput | DeleteSnapshotScheduleCommandInput | DeleteTagsCommandInput | DeleteUsageLimitCommandInput | DescribeAccountAttributesCommandInput | DescribeAuthenticationProfilesCommandInput | DescribeClusterDbRevisionsCommandInput | DescribeClusterParameterGroupsCommandInput | DescribeClusterParametersCommandInput | DescribeClusterSecurityGroupsCommandInput | DescribeClusterSnapshotsCommandInput | DescribeClusterSubnetGroupsCommandInput | DescribeClusterTracksCommandInput | DescribeClusterVersionsCommandInput | DescribeClustersCommandInput | DescribeDataSharesCommandInput | DescribeDataSharesForConsumerCommandInput | DescribeDataSharesForProducerCommandInput | DescribeDefaultClusterParametersCommandInput | DescribeEndpointAccessCommandInput | DescribeEndpointAuthorizationCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeHsmClientCertificatesCommandInput | DescribeHsmConfigurationsCommandInput | DescribeLoggingStatusCommandInput | DescribeNodeConfigurationOptionsCommandInput | DescribeOrderableClusterOptionsCommandInput | DescribePartnersCommandInput | DescribeReservedNodeOfferingsCommandInput | DescribeReservedNodesCommandInput | DescribeResizeCommandInput | DescribeScheduledActionsCommandInput | DescribeSnapshotCopyGrantsCommandInput | DescribeSnapshotSchedulesCommandInput | DescribeStorageCommandInput | DescribeTableRestoreStatusCommandInput | DescribeTagsCommandInput | DescribeUsageLimitsCommandInput | DisableLoggingCommandInput | DisableSnapshotCopyCommandInput | DisassociateDataShareConsumerCommandInput | EnableLoggingCommandInput | EnableSnapshotCopyCommandInput | GetClusterCredentialsCommandInput | GetReservedNodeExchangeOfferingsCommandInput | ModifyAquaConfigurationCommandInput | ModifyAuthenticationProfileCommandInput | ModifyClusterCommandInput | ModifyClusterDbRevisionCommandInput | ModifyClusterIamRolesCommandInput | ModifyClusterMaintenanceCommandInput | ModifyClusterParameterGroupCommandInput | ModifyClusterSnapshotCommandInput | ModifyClusterSnapshotScheduleCommandInput | ModifyClusterSubnetGroupCommandInput | ModifyEndpointAccessCommandInput | ModifyEventSubscriptionCommandInput | ModifyScheduledActionCommandInput | ModifySnapshotCopyRetentionPeriodCommandInput | ModifySnapshotScheduleCommandInput | ModifyUsageLimitCommandInput | PauseClusterCommandInput | PurchaseReservedNodeOfferingCommandInput | RebootClusterCommandInput | RejectDataShareCommandInput | ResetClusterParameterGroupCommandInput | ResizeClusterCommandInput | RestoreFromClusterSnapshotCommandInput | RestoreTableFromClusterSnapshotCommandInput | ResumeClusterCommandInput | RevokeClusterSecurityGroupIngressCommandInput | RevokeEndpointAccessCommandInput | RevokeSnapshotAccessCommandInput | RotateEncryptionKeyCommandInput | UpdatePartnerStatusCommandInput;
|
|
126
|
-
export declare type ServiceOutputTypes = AcceptReservedNodeExchangeCommandOutput | AddPartnerCommandOutput | AssociateDataShareConsumerCommandOutput | AuthorizeClusterSecurityGroupIngressCommandOutput | AuthorizeDataShareCommandOutput | AuthorizeEndpointAccessCommandOutput | AuthorizeSnapshotAccessCommandOutput | BatchDeleteClusterSnapshotsCommandOutput | BatchModifyClusterSnapshotsCommandOutput | CancelResizeCommandOutput | CopyClusterSnapshotCommandOutput | CreateAuthenticationProfileCommandOutput | CreateClusterCommandOutput | CreateClusterParameterGroupCommandOutput | CreateClusterSecurityGroupCommandOutput | CreateClusterSnapshotCommandOutput | CreateClusterSubnetGroupCommandOutput | CreateEndpointAccessCommandOutput | CreateEventSubscriptionCommandOutput | CreateHsmClientCertificateCommandOutput | CreateHsmConfigurationCommandOutput | CreateScheduledActionCommandOutput | CreateSnapshotCopyGrantCommandOutput | CreateSnapshotScheduleCommandOutput | CreateTagsCommandOutput | CreateUsageLimitCommandOutput | DeauthorizeDataShareCommandOutput | DeleteAuthenticationProfileCommandOutput | DeleteClusterCommandOutput | DeleteClusterParameterGroupCommandOutput | DeleteClusterSecurityGroupCommandOutput | DeleteClusterSnapshotCommandOutput | DeleteClusterSubnetGroupCommandOutput | DeleteEndpointAccessCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteHsmClientCertificateCommandOutput | DeleteHsmConfigurationCommandOutput | DeletePartnerCommandOutput | DeleteScheduledActionCommandOutput | DeleteSnapshotCopyGrantCommandOutput | DeleteSnapshotScheduleCommandOutput | DeleteTagsCommandOutput | DeleteUsageLimitCommandOutput | DescribeAccountAttributesCommandOutput | DescribeAuthenticationProfilesCommandOutput | DescribeClusterDbRevisionsCommandOutput | DescribeClusterParameterGroupsCommandOutput | DescribeClusterParametersCommandOutput | DescribeClusterSecurityGroupsCommandOutput | DescribeClusterSnapshotsCommandOutput | DescribeClusterSubnetGroupsCommandOutput | DescribeClusterTracksCommandOutput | DescribeClusterVersionsCommandOutput | DescribeClustersCommandOutput | DescribeDataSharesCommandOutput | DescribeDataSharesForConsumerCommandOutput | DescribeDataSharesForProducerCommandOutput | DescribeDefaultClusterParametersCommandOutput | DescribeEndpointAccessCommandOutput | DescribeEndpointAuthorizationCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeHsmClientCertificatesCommandOutput | DescribeHsmConfigurationsCommandOutput | DescribeLoggingStatusCommandOutput | DescribeNodeConfigurationOptionsCommandOutput | DescribeOrderableClusterOptionsCommandOutput | DescribePartnersCommandOutput | DescribeReservedNodeOfferingsCommandOutput | DescribeReservedNodesCommandOutput | DescribeResizeCommandOutput | DescribeScheduledActionsCommandOutput | DescribeSnapshotCopyGrantsCommandOutput | DescribeSnapshotSchedulesCommandOutput | DescribeStorageCommandOutput | DescribeTableRestoreStatusCommandOutput | DescribeTagsCommandOutput | DescribeUsageLimitsCommandOutput | DisableLoggingCommandOutput | DisableSnapshotCopyCommandOutput | DisassociateDataShareConsumerCommandOutput | EnableLoggingCommandOutput | EnableSnapshotCopyCommandOutput | GetClusterCredentialsCommandOutput | GetReservedNodeExchangeOfferingsCommandOutput | ModifyAquaConfigurationCommandOutput | ModifyAuthenticationProfileCommandOutput | ModifyClusterCommandOutput | ModifyClusterDbRevisionCommandOutput | ModifyClusterIamRolesCommandOutput | ModifyClusterMaintenanceCommandOutput | ModifyClusterParameterGroupCommandOutput | ModifyClusterSnapshotCommandOutput | ModifyClusterSnapshotScheduleCommandOutput | ModifyClusterSubnetGroupCommandOutput | ModifyEndpointAccessCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyScheduledActionCommandOutput | ModifySnapshotCopyRetentionPeriodCommandOutput | ModifySnapshotScheduleCommandOutput | ModifyUsageLimitCommandOutput | PauseClusterCommandOutput | PurchaseReservedNodeOfferingCommandOutput | RebootClusterCommandOutput | RejectDataShareCommandOutput | ResetClusterParameterGroupCommandOutput | ResizeClusterCommandOutput | RestoreFromClusterSnapshotCommandOutput | RestoreTableFromClusterSnapshotCommandOutput | ResumeClusterCommandOutput | RevokeClusterSecurityGroupIngressCommandOutput | RevokeEndpointAccessCommandOutput | RevokeSnapshotAccessCommandOutput | RotateEncryptionKeyCommandOutput | UpdatePartnerStatusCommandOutput;
|
|
127
|
+
export declare type ServiceInputTypes = AcceptReservedNodeExchangeCommandInput | AddPartnerCommandInput | AssociateDataShareConsumerCommandInput | AuthorizeClusterSecurityGroupIngressCommandInput | AuthorizeDataShareCommandInput | AuthorizeEndpointAccessCommandInput | AuthorizeSnapshotAccessCommandInput | BatchDeleteClusterSnapshotsCommandInput | BatchModifyClusterSnapshotsCommandInput | CancelResizeCommandInput | CopyClusterSnapshotCommandInput | CreateAuthenticationProfileCommandInput | CreateClusterCommandInput | CreateClusterParameterGroupCommandInput | CreateClusterSecurityGroupCommandInput | CreateClusterSnapshotCommandInput | CreateClusterSubnetGroupCommandInput | CreateEndpointAccessCommandInput | CreateEventSubscriptionCommandInput | CreateHsmClientCertificateCommandInput | CreateHsmConfigurationCommandInput | CreateScheduledActionCommandInput | CreateSnapshotCopyGrantCommandInput | CreateSnapshotScheduleCommandInput | CreateTagsCommandInput | CreateUsageLimitCommandInput | DeauthorizeDataShareCommandInput | DeleteAuthenticationProfileCommandInput | DeleteClusterCommandInput | DeleteClusterParameterGroupCommandInput | DeleteClusterSecurityGroupCommandInput | DeleteClusterSnapshotCommandInput | DeleteClusterSubnetGroupCommandInput | DeleteEndpointAccessCommandInput | DeleteEventSubscriptionCommandInput | DeleteHsmClientCertificateCommandInput | DeleteHsmConfigurationCommandInput | DeletePartnerCommandInput | DeleteScheduledActionCommandInput | DeleteSnapshotCopyGrantCommandInput | DeleteSnapshotScheduleCommandInput | DeleteTagsCommandInput | DeleteUsageLimitCommandInput | DescribeAccountAttributesCommandInput | DescribeAuthenticationProfilesCommandInput | DescribeClusterDbRevisionsCommandInput | DescribeClusterParameterGroupsCommandInput | DescribeClusterParametersCommandInput | DescribeClusterSecurityGroupsCommandInput | DescribeClusterSnapshotsCommandInput | DescribeClusterSubnetGroupsCommandInput | DescribeClusterTracksCommandInput | DescribeClusterVersionsCommandInput | DescribeClustersCommandInput | DescribeDataSharesCommandInput | DescribeDataSharesForConsumerCommandInput | DescribeDataSharesForProducerCommandInput | DescribeDefaultClusterParametersCommandInput | DescribeEndpointAccessCommandInput | DescribeEndpointAuthorizationCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeHsmClientCertificatesCommandInput | DescribeHsmConfigurationsCommandInput | DescribeLoggingStatusCommandInput | DescribeNodeConfigurationOptionsCommandInput | DescribeOrderableClusterOptionsCommandInput | DescribePartnersCommandInput | DescribeReservedNodeExchangeStatusCommandInput | DescribeReservedNodeOfferingsCommandInput | DescribeReservedNodesCommandInput | DescribeResizeCommandInput | DescribeScheduledActionsCommandInput | DescribeSnapshotCopyGrantsCommandInput | DescribeSnapshotSchedulesCommandInput | DescribeStorageCommandInput | DescribeTableRestoreStatusCommandInput | DescribeTagsCommandInput | DescribeUsageLimitsCommandInput | DisableLoggingCommandInput | DisableSnapshotCopyCommandInput | DisassociateDataShareConsumerCommandInput | EnableLoggingCommandInput | EnableSnapshotCopyCommandInput | GetClusterCredentialsCommandInput | GetReservedNodeExchangeConfigurationOptionsCommandInput | GetReservedNodeExchangeOfferingsCommandInput | ModifyAquaConfigurationCommandInput | ModifyAuthenticationProfileCommandInput | ModifyClusterCommandInput | ModifyClusterDbRevisionCommandInput | ModifyClusterIamRolesCommandInput | ModifyClusterMaintenanceCommandInput | ModifyClusterParameterGroupCommandInput | ModifyClusterSnapshotCommandInput | ModifyClusterSnapshotScheduleCommandInput | ModifyClusterSubnetGroupCommandInput | ModifyEndpointAccessCommandInput | ModifyEventSubscriptionCommandInput | ModifyScheduledActionCommandInput | ModifySnapshotCopyRetentionPeriodCommandInput | ModifySnapshotScheduleCommandInput | ModifyUsageLimitCommandInput | PauseClusterCommandInput | PurchaseReservedNodeOfferingCommandInput | RebootClusterCommandInput | RejectDataShareCommandInput | ResetClusterParameterGroupCommandInput | ResizeClusterCommandInput | RestoreFromClusterSnapshotCommandInput | RestoreTableFromClusterSnapshotCommandInput | ResumeClusterCommandInput | RevokeClusterSecurityGroupIngressCommandInput | RevokeEndpointAccessCommandInput | RevokeSnapshotAccessCommandInput | RotateEncryptionKeyCommandInput | UpdatePartnerStatusCommandInput;
|
|
128
|
+
export declare type ServiceOutputTypes = AcceptReservedNodeExchangeCommandOutput | AddPartnerCommandOutput | AssociateDataShareConsumerCommandOutput | AuthorizeClusterSecurityGroupIngressCommandOutput | AuthorizeDataShareCommandOutput | AuthorizeEndpointAccessCommandOutput | AuthorizeSnapshotAccessCommandOutput | BatchDeleteClusterSnapshotsCommandOutput | BatchModifyClusterSnapshotsCommandOutput | CancelResizeCommandOutput | CopyClusterSnapshotCommandOutput | CreateAuthenticationProfileCommandOutput | CreateClusterCommandOutput | CreateClusterParameterGroupCommandOutput | CreateClusterSecurityGroupCommandOutput | CreateClusterSnapshotCommandOutput | CreateClusterSubnetGroupCommandOutput | CreateEndpointAccessCommandOutput | CreateEventSubscriptionCommandOutput | CreateHsmClientCertificateCommandOutput | CreateHsmConfigurationCommandOutput | CreateScheduledActionCommandOutput | CreateSnapshotCopyGrantCommandOutput | CreateSnapshotScheduleCommandOutput | CreateTagsCommandOutput | CreateUsageLimitCommandOutput | DeauthorizeDataShareCommandOutput | DeleteAuthenticationProfileCommandOutput | DeleteClusterCommandOutput | DeleteClusterParameterGroupCommandOutput | DeleteClusterSecurityGroupCommandOutput | DeleteClusterSnapshotCommandOutput | DeleteClusterSubnetGroupCommandOutput | DeleteEndpointAccessCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteHsmClientCertificateCommandOutput | DeleteHsmConfigurationCommandOutput | DeletePartnerCommandOutput | DeleteScheduledActionCommandOutput | DeleteSnapshotCopyGrantCommandOutput | DeleteSnapshotScheduleCommandOutput | DeleteTagsCommandOutput | DeleteUsageLimitCommandOutput | DescribeAccountAttributesCommandOutput | DescribeAuthenticationProfilesCommandOutput | DescribeClusterDbRevisionsCommandOutput | DescribeClusterParameterGroupsCommandOutput | DescribeClusterParametersCommandOutput | DescribeClusterSecurityGroupsCommandOutput | DescribeClusterSnapshotsCommandOutput | DescribeClusterSubnetGroupsCommandOutput | DescribeClusterTracksCommandOutput | DescribeClusterVersionsCommandOutput | DescribeClustersCommandOutput | DescribeDataSharesCommandOutput | DescribeDataSharesForConsumerCommandOutput | DescribeDataSharesForProducerCommandOutput | DescribeDefaultClusterParametersCommandOutput | DescribeEndpointAccessCommandOutput | DescribeEndpointAuthorizationCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeHsmClientCertificatesCommandOutput | DescribeHsmConfigurationsCommandOutput | DescribeLoggingStatusCommandOutput | DescribeNodeConfigurationOptionsCommandOutput | DescribeOrderableClusterOptionsCommandOutput | DescribePartnersCommandOutput | DescribeReservedNodeExchangeStatusCommandOutput | DescribeReservedNodeOfferingsCommandOutput | DescribeReservedNodesCommandOutput | DescribeResizeCommandOutput | DescribeScheduledActionsCommandOutput | DescribeSnapshotCopyGrantsCommandOutput | DescribeSnapshotSchedulesCommandOutput | DescribeStorageCommandOutput | DescribeTableRestoreStatusCommandOutput | DescribeTagsCommandOutput | DescribeUsageLimitsCommandOutput | DisableLoggingCommandOutput | DisableSnapshotCopyCommandOutput | DisassociateDataShareConsumerCommandOutput | EnableLoggingCommandOutput | EnableSnapshotCopyCommandOutput | GetClusterCredentialsCommandOutput | GetReservedNodeExchangeConfigurationOptionsCommandOutput | GetReservedNodeExchangeOfferingsCommandOutput | ModifyAquaConfigurationCommandOutput | ModifyAuthenticationProfileCommandOutput | ModifyClusterCommandOutput | ModifyClusterDbRevisionCommandOutput | ModifyClusterIamRolesCommandOutput | ModifyClusterMaintenanceCommandOutput | ModifyClusterParameterGroupCommandOutput | ModifyClusterSnapshotCommandOutput | ModifyClusterSnapshotScheduleCommandOutput | ModifyClusterSubnetGroupCommandOutput | ModifyEndpointAccessCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyScheduledActionCommandOutput | ModifySnapshotCopyRetentionPeriodCommandOutput | ModifySnapshotScheduleCommandOutput | ModifyUsageLimitCommandOutput | PauseClusterCommandOutput | PurchaseReservedNodeOfferingCommandOutput | RebootClusterCommandOutput | RejectDataShareCommandOutput | ResetClusterParameterGroupCommandOutput | ResizeClusterCommandOutput | RestoreFromClusterSnapshotCommandOutput | RestoreTableFromClusterSnapshotCommandOutput | ResumeClusterCommandOutput | RevokeClusterSecurityGroupIngressCommandOutput | RevokeEndpointAccessCommandOutput | RevokeSnapshotAccessCommandOutput | RotateEncryptionKeyCommandOutput | UpdatePartnerStatusCommandOutput;
|
|
127
129
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
128
130
|
/**
|
|
129
131
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -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.
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeHsmConfigurationsMessage
|
|
3
|
+
import { DescribeHsmConfigurationsMessage } from "../models/models_0";
|
|
4
|
+
import { HsmConfigurationMessage } from "../models/models_1";
|
|
4
5
|
import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
|
|
5
6
|
export interface DescribeHsmConfigurationsCommandInput extends DescribeHsmConfigurationsMessage {
|
|
6
7
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeLoggingStatusMessage } from "../models/
|
|
4
|
-
import { LoggingStatus } from "../models/models_1";
|
|
3
|
+
import { DescribeLoggingStatusMessage, LoggingStatus } from "../models/models_1";
|
|
5
4
|
import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
|
|
6
5
|
export interface DescribeLoggingStatusCommandInput extends DescribeLoggingStatusMessage {
|
|
7
6
|
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DescribeReservedNodeExchangeStatusInputMessage, DescribeReservedNodeExchangeStatusOutputMessage } from "../models/models_1";
|
|
4
|
+
import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
|
|
5
|
+
export interface DescribeReservedNodeExchangeStatusCommandInput extends DescribeReservedNodeExchangeStatusInputMessage {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeReservedNodeExchangeStatusCommandOutput extends DescribeReservedNodeExchangeStatusOutputMessage, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Returns exchange status details and associated metadata for a reserved-node
|
|
11
|
+
* exchange. Statuses include such values as in progress and requested.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { RedshiftClient, DescribeReservedNodeExchangeStatusCommand } from "@aws-sdk/client-redshift"; // ES Modules import
|
|
16
|
+
* // const { RedshiftClient, DescribeReservedNodeExchangeStatusCommand } = require("@aws-sdk/client-redshift"); // CommonJS import
|
|
17
|
+
* const client = new RedshiftClient(config);
|
|
18
|
+
* const command = new DescribeReservedNodeExchangeStatusCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link DescribeReservedNodeExchangeStatusCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link DescribeReservedNodeExchangeStatusCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class DescribeReservedNodeExchangeStatusCommand extends $Command<DescribeReservedNodeExchangeStatusCommandInput, DescribeReservedNodeExchangeStatusCommandOutput, RedshiftClientResolvedConfig> {
|
|
28
|
+
readonly input: DescribeReservedNodeExchangeStatusCommandInput;
|
|
29
|
+
constructor(input: DescribeReservedNodeExchangeStatusCommandInput);
|
|
30
|
+
/**
|
|
31
|
+
* @internal
|
|
32
|
+
*/
|
|
33
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReservedNodeExchangeStatusCommandInput, DescribeReservedNodeExchangeStatusCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetReservedNodeExchangeConfigurationOptionsInputMessage, GetReservedNodeExchangeConfigurationOptionsOutputMessage } from "../models/models_1";
|
|
4
|
+
import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient";
|
|
5
|
+
export interface GetReservedNodeExchangeConfigurationOptionsCommandInput extends GetReservedNodeExchangeConfigurationOptionsInputMessage {
|
|
6
|
+
}
|
|
7
|
+
export interface GetReservedNodeExchangeConfigurationOptionsCommandOutput extends GetReservedNodeExchangeConfigurationOptionsOutputMessage, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Gets the configuration options for the reserved-node exchange. These options
|
|
11
|
+
* include information about the source reserved node and target reserved node offering.
|
|
12
|
+
* Details include the node type, the price, the node count, and the offering type.</p>
|
|
13
|
+
* @example
|
|
14
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
15
|
+
* ```javascript
|
|
16
|
+
* import { RedshiftClient, GetReservedNodeExchangeConfigurationOptionsCommand } from "@aws-sdk/client-redshift"; // ES Modules import
|
|
17
|
+
* // const { RedshiftClient, GetReservedNodeExchangeConfigurationOptionsCommand } = require("@aws-sdk/client-redshift"); // CommonJS import
|
|
18
|
+
* const client = new RedshiftClient(config);
|
|
19
|
+
* const command = new GetReservedNodeExchangeConfigurationOptionsCommand(input);
|
|
20
|
+
* const response = await client.send(command);
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* @see {@link GetReservedNodeExchangeConfigurationOptionsCommandInput} for command's `input` shape.
|
|
24
|
+
* @see {@link GetReservedNodeExchangeConfigurationOptionsCommandOutput} for command's `response` shape.
|
|
25
|
+
* @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
export declare class GetReservedNodeExchangeConfigurationOptionsCommand extends $Command<GetReservedNodeExchangeConfigurationOptionsCommandInput, GetReservedNodeExchangeConfigurationOptionsCommandOutput, RedshiftClientResolvedConfig> {
|
|
29
|
+
readonly input: GetReservedNodeExchangeConfigurationOptionsCommandInput;
|
|
30
|
+
constructor(input: GetReservedNodeExchangeConfigurationOptionsCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetReservedNodeExchangeConfigurationOptionsCommandInput, GetReservedNodeExchangeConfigurationOptionsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -67,6 +67,7 @@ export * from "./DescribeLoggingStatusCommand";
|
|
|
67
67
|
export * from "./DescribeNodeConfigurationOptionsCommand";
|
|
68
68
|
export * from "./DescribeOrderableClusterOptionsCommand";
|
|
69
69
|
export * from "./DescribePartnersCommand";
|
|
70
|
+
export * from "./DescribeReservedNodeExchangeStatusCommand";
|
|
70
71
|
export * from "./DescribeReservedNodeOfferingsCommand";
|
|
71
72
|
export * from "./DescribeReservedNodesCommand";
|
|
72
73
|
export * from "./DescribeResizeCommand";
|
|
@@ -83,6 +84,7 @@ export * from "./DisassociateDataShareConsumerCommand";
|
|
|
83
84
|
export * from "./EnableLoggingCommand";
|
|
84
85
|
export * from "./EnableSnapshotCopyCommand";
|
|
85
86
|
export * from "./GetClusterCredentialsCommand";
|
|
87
|
+
export * from "./GetReservedNodeExchangeConfigurationOptionsCommand";
|
|
86
88
|
export * from "./GetReservedNodeExchangeOfferingsCommand";
|
|
87
89
|
export * from "./ModifyAquaConfigurationCommand";
|
|
88
90
|
export * from "./ModifyAuthenticationProfileCommand";
|
|
@@ -503,7 +503,7 @@ export declare enum DataShareStatus {
|
|
|
503
503
|
}
|
|
504
504
|
/**
|
|
505
505
|
* <p>The association of a datashare from a producer account with a data consumer.
|
|
506
|
-
*
|
|
506
|
+
* </p>
|
|
507
507
|
*/
|
|
508
508
|
export interface DataShareAssociation {
|
|
509
509
|
/**
|
|
@@ -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
|
|
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
|
}
|
|
@@ -2103,6 +2107,63 @@ export declare namespace PendingModifiedValues {
|
|
|
2103
2107
|
*/
|
|
2104
2108
|
const filterSensitiveLog: (obj: PendingModifiedValues) => any;
|
|
2105
2109
|
}
|
|
2110
|
+
export declare enum ReservedNodeExchangeStatusType {
|
|
2111
|
+
FAILED = "FAILED",
|
|
2112
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
2113
|
+
PENDING = "PENDING",
|
|
2114
|
+
REQUESTED = "REQUESTED",
|
|
2115
|
+
RETRYING = "RETRYING",
|
|
2116
|
+
SUCCEEDED = "SUCCEEDED"
|
|
2117
|
+
}
|
|
2118
|
+
/**
|
|
2119
|
+
* <p>Reserved-node status details, such as the source reserved-node
|
|
2120
|
+
* identifier, the target reserved-node identifier, the node type, the node count, and
|
|
2121
|
+
* other details.</p>
|
|
2122
|
+
*/
|
|
2123
|
+
export interface ReservedNodeExchangeStatus {
|
|
2124
|
+
/**
|
|
2125
|
+
* <p>The identifier of the reserved-node exchange request.</p>
|
|
2126
|
+
*/
|
|
2127
|
+
ReservedNodeExchangeRequestId?: string;
|
|
2128
|
+
/**
|
|
2129
|
+
* <p>The status of the reserved-node exchange request. Statuses include in-progress and requested.</p>
|
|
2130
|
+
*/
|
|
2131
|
+
Status?: ReservedNodeExchangeStatusType | string;
|
|
2132
|
+
/**
|
|
2133
|
+
* <p>A date and time that indicate when the reserved-node exchange was requested.</p>
|
|
2134
|
+
*/
|
|
2135
|
+
RequestTime?: Date;
|
|
2136
|
+
/**
|
|
2137
|
+
* <p>The identifier of the source reserved node.</p>
|
|
2138
|
+
*/
|
|
2139
|
+
SourceReservedNodeId?: string;
|
|
2140
|
+
/**
|
|
2141
|
+
* <p>The source reserved-node type, for example ds2.xlarge.</p>
|
|
2142
|
+
*/
|
|
2143
|
+
SourceReservedNodeType?: string;
|
|
2144
|
+
/**
|
|
2145
|
+
* <p>The source reserved-node count in the cluster.</p>
|
|
2146
|
+
*/
|
|
2147
|
+
SourceReservedNodeCount?: number;
|
|
2148
|
+
/**
|
|
2149
|
+
* <p>The identifier of the target reserved node offering.</p>
|
|
2150
|
+
*/
|
|
2151
|
+
TargetReservedNodeOfferingId?: string;
|
|
2152
|
+
/**
|
|
2153
|
+
* <p>The node type of the target reserved node, for example ra3.4xlarge.</p>
|
|
2154
|
+
*/
|
|
2155
|
+
TargetReservedNodeType?: string;
|
|
2156
|
+
/**
|
|
2157
|
+
* <p>The count of target reserved nodes in the cluster.</p>
|
|
2158
|
+
*/
|
|
2159
|
+
TargetReservedNodeCount?: number;
|
|
2160
|
+
}
|
|
2161
|
+
export declare namespace ReservedNodeExchangeStatus {
|
|
2162
|
+
/**
|
|
2163
|
+
* @internal
|
|
2164
|
+
*/
|
|
2165
|
+
const filterSensitiveLog: (obj: ReservedNodeExchangeStatus) => any;
|
|
2166
|
+
}
|
|
2106
2167
|
/**
|
|
2107
2168
|
* <p>Describes a resize operation.</p>
|
|
2108
2169
|
*/
|
|
@@ -2561,6 +2622,14 @@ export interface Cluster {
|
|
|
2561
2622
|
* <p>The AQUA (Advanced Query Accelerator) configuration of the cluster.</p>
|
|
2562
2623
|
*/
|
|
2563
2624
|
AquaConfiguration?: AquaConfiguration;
|
|
2625
|
+
/**
|
|
2626
|
+
* <p>The Amazon Resource Name (ARN) for the IAM role set as default for the cluster.</p>
|
|
2627
|
+
*/
|
|
2628
|
+
DefaultIamRoleArn?: string;
|
|
2629
|
+
/**
|
|
2630
|
+
* <p>The status of the reserved-node exchange request. Statuses include in-progress and requested.</p>
|
|
2631
|
+
*/
|
|
2632
|
+
ReservedNodeExchangeStatus?: ReservedNodeExchangeStatus;
|
|
2564
2633
|
}
|
|
2565
2634
|
export declare namespace Cluster {
|
|
2566
2635
|
/**
|
|
@@ -3700,6 +3769,10 @@ export interface CreateClusterMessage {
|
|
|
3700
3769
|
* </ul>
|
|
3701
3770
|
*/
|
|
3702
3771
|
AquaConfigurationStatus?: AquaConfigurationStatus | string;
|
|
3772
|
+
/**
|
|
3773
|
+
* <p>The Amazon Resource Name (ARN) for the IAM role that was set as default for the cluster when the cluster was created. </p>
|
|
3774
|
+
*/
|
|
3775
|
+
DefaultIamRoleArn?: string;
|
|
3703
3776
|
}
|
|
3704
3777
|
export declare namespace CreateClusterMessage {
|
|
3705
3778
|
/**
|
|
@@ -4833,6 +4906,14 @@ export interface ResizeClusterMessage {
|
|
|
4833
4906
|
* <code>false</code>, the resize type is elastic. </p>
|
|
4834
4907
|
*/
|
|
4835
4908
|
Classic?: boolean;
|
|
4909
|
+
/**
|
|
4910
|
+
* <p>The identifier of the reserved node.</p>
|
|
4911
|
+
*/
|
|
4912
|
+
ReservedNodeId?: string;
|
|
4913
|
+
/**
|
|
4914
|
+
* <p>The identifier of the target reserved node offering.</p>
|
|
4915
|
+
*/
|
|
4916
|
+
TargetReservedNodeOfferingId?: string;
|
|
4836
4917
|
}
|
|
4837
4918
|
export declare namespace ResizeClusterMessage {
|
|
4838
4919
|
/**
|
|
@@ -5521,7 +5602,7 @@ export interface DeauthorizeDataShareMessage {
|
|
|
5521
5602
|
DataShareArn: string | undefined;
|
|
5522
5603
|
/**
|
|
5523
5604
|
* <p>The identifier of the data consumer that is to have authorization removed from the datashare.
|
|
5524
|
-
* This identifier is an
|
|
5605
|
+
* This identifier is an Amazon Web Services account ID or a keyword, such as ADX.</p>
|
|
5525
5606
|
*/
|
|
5526
5607
|
ConsumerIdentifier: string | undefined;
|
|
5527
5608
|
}
|
|
@@ -6728,7 +6809,7 @@ export interface DescribeDataSharesMessage {
|
|
|
6728
6809
|
*/
|
|
6729
6810
|
MaxRecords?: number;
|
|
6730
6811
|
/**
|
|
6731
|
-
* <p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeDataShares</a> request exceed the value specified in <code>MaxRecords</code>,
|
|
6812
|
+
* <p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeDataShares</a> request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>
|
|
6732
6813
|
*/
|
|
6733
6814
|
Marker?: string;
|
|
6734
6815
|
}
|
|
@@ -6744,7 +6825,7 @@ export interface DescribeDataSharesResult {
|
|
|
6744
6825
|
*/
|
|
6745
6826
|
DataShares?: DataShare[];
|
|
6746
6827
|
/**
|
|
6747
|
-
* <p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeDataShares</a> request exceed the value specified in <code>MaxRecords</code>,
|
|
6828
|
+
* <p>An optional parameter that specifies the starting point to return a set of response records. When the results of a <a>DescribeDataShares</a> request exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the <code>Marker</code> field of the response. You can retrieve the next set of response records by providing the returned marker value in the <code>Marker</code> parameter and retrying the request. </p>
|
|
6748
6829
|
*/
|
|
6749
6830
|
Marker?: string;
|
|
6750
6831
|
}
|
|
@@ -6774,7 +6855,7 @@ export interface DescribeDataSharesForConsumerMessage {
|
|
|
6774
6855
|
/**
|
|
6775
6856
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
6776
6857
|
* records. When the results of a <a>DescribeDataSharesForConsumer</a> request
|
|
6777
|
-
* exceed the value specified in <code>MaxRecords</code>,
|
|
6858
|
+
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
6778
6859
|
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
6779
6860
|
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
6780
6861
|
* retrying the request. </p>
|
|
@@ -6795,7 +6876,7 @@ export interface DescribeDataSharesForConsumerResult {
|
|
|
6795
6876
|
/**
|
|
6796
6877
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
6797
6878
|
* records. When the results of a <a>DescribeDataSharesForConsumer</a> request
|
|
6798
|
-
* exceed the value specified in <code>MaxRecords</code>,
|
|
6879
|
+
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
6799
6880
|
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
6800
6881
|
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
6801
6882
|
* retrying the request. </p>
|
|
@@ -6828,7 +6909,7 @@ export interface DescribeDataSharesForProducerMessage {
|
|
|
6828
6909
|
/**
|
|
6829
6910
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
6830
6911
|
* records. When the results of a <a>DescribeDataSharesForProducer</a> request
|
|
6831
|
-
* exceed the value specified in <code>MaxRecords</code>,
|
|
6912
|
+
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
6832
6913
|
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
6833
6914
|
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
6834
6915
|
* retrying the request. </p>
|
|
@@ -6849,7 +6930,7 @@ export interface DescribeDataSharesForProducerResult {
|
|
|
6849
6930
|
/**
|
|
6850
6931
|
* <p>An optional parameter that specifies the starting point to return a set of response
|
|
6851
6932
|
* records. When the results of a <a>DescribeDataSharesForProducer</a> request
|
|
6852
|
-
* exceed the value specified in <code>MaxRecords</code>,
|
|
6933
|
+
* exceed the value specified in <code>MaxRecords</code>, Amazon Web Services returns a value in the
|
|
6853
6934
|
* <code>Marker</code> field of the response. You can retrieve the next set of response
|
|
6854
6935
|
* records by providing the returned marker value in the <code>Marker</code> parameter and
|
|
6855
6936
|
* retrying the request. </p>
|
|
@@ -7481,43 +7562,3 @@ export declare namespace DescribeHsmConfigurationsMessage {
|
|
|
7481
7562
|
*/
|
|
7482
7563
|
const filterSensitiveLog: (obj: DescribeHsmConfigurationsMessage) => any;
|
|
7483
7564
|
}
|
|
7484
|
-
/**
|
|
7485
|
-
* <p></p>
|
|
7486
|
-
*/
|
|
7487
|
-
export interface HsmConfigurationMessage {
|
|
7488
|
-
/**
|
|
7489
|
-
* <p>A value that indicates the starting point for the next set of response records in a
|
|
7490
|
-
* subsequent request. If a value is returned in a response, you can retrieve the next set
|
|
7491
|
-
* of records by providing this returned marker value in the <code>Marker</code> parameter
|
|
7492
|
-
* and retrying the command. If the <code>Marker</code> field is empty, all response
|
|
7493
|
-
* records have been retrieved for the request. </p>
|
|
7494
|
-
*/
|
|
7495
|
-
Marker?: string;
|
|
7496
|
-
/**
|
|
7497
|
-
* <p>A list of <code>HsmConfiguration</code> objects.</p>
|
|
7498
|
-
*/
|
|
7499
|
-
HsmConfigurations?: HsmConfiguration[];
|
|
7500
|
-
}
|
|
7501
|
-
export declare namespace HsmConfigurationMessage {
|
|
7502
|
-
/**
|
|
7503
|
-
* @internal
|
|
7504
|
-
*/
|
|
7505
|
-
const filterSensitiveLog: (obj: HsmConfigurationMessage) => any;
|
|
7506
|
-
}
|
|
7507
|
-
/**
|
|
7508
|
-
* <p></p>
|
|
7509
|
-
*/
|
|
7510
|
-
export interface DescribeLoggingStatusMessage {
|
|
7511
|
-
/**
|
|
7512
|
-
* <p>The identifier of the cluster from which to get the logging status.</p>
|
|
7513
|
-
* <p>Example: <code>examplecluster</code>
|
|
7514
|
-
* </p>
|
|
7515
|
-
*/
|
|
7516
|
-
ClusterIdentifier: string | undefined;
|
|
7517
|
-
}
|
|
7518
|
-
export declare namespace DescribeLoggingStatusMessage {
|
|
7519
|
-
/**
|
|
7520
|
-
* @internal
|
|
7521
|
-
*/
|
|
7522
|
-
const filterSensitiveLog: (obj: DescribeLoggingStatusMessage) => any;
|
|
7523
|
-
}
|