@aws-sdk/client-redshift 3.699.0 → 3.705.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/README.md +16 -0
- package/dist-cjs/index.js +249 -27
- package/dist-es/Redshift.js +4 -0
- package/dist-es/commands/DeregisterNamespaceCommand.js +22 -0
- package/dist-es/commands/RegisterNamespaceCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +13 -0
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/protocols/Aws_query.js +191 -28
- package/dist-types/Redshift.d.ts +14 -0
- package/dist-types/RedshiftClient.d.ts +4 -2
- package/dist-types/commands/AssociateDataShareConsumerCommand.d.ts +1 -0
- package/dist-types/commands/AuthorizeDataShareCommand.d.ts +1 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +22 -0
- package/dist-types/commands/DeauthorizeDataShareCommand.d.ts +1 -0
- package/dist-types/commands/DeregisterNamespaceCommand.d.ts +93 -0
- package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeAuthenticationProfilesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterDbRevisionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterParameterGroupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDataSharesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDataSharesForConsumerCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDataSharesForProducerCommand.d.ts +1 -0
- package/dist-types/commands/DisassociateDataShareConsumerCommand.d.ts +1 -0
- package/dist-types/commands/ModifyClusterCommand.d.ts +22 -0
- package/dist-types/commands/ModifyClusterSubnetGroupCommand.d.ts +22 -0
- package/dist-types/commands/RegisterNamespaceCommand.d.ts +92 -0
- package/dist-types/commands/RejectDataShareCommand.d.ts +1 -0
- package/dist-types/commands/RestoreFromClusterSnapshotCommand.d.ts +22 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +64 -79
- package/dist-types/models/models_1.d.ts +171 -1
- package/dist-types/protocols/Aws_query.d.ts +18 -0
- package/dist-types/ts3.4/Redshift.d.ts +34 -0
- package/dist-types/ts3.4/RedshiftClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DeregisterNamespaceCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DescribeAccountAttributesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeAuthenticationProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeClusterDbRevisionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClusterParameterGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RegisterNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +40 -18
- package/dist-types/ts3.4/models/models_1.d.ts +39 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +24 -0
- package/package.json +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_RegisterNamespaceCommand, se_RegisterNamespaceCommand } from "../protocols/Aws_query";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class RegisterNamespaceCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("RedshiftServiceVersion20121201", "RegisterNamespace", {})
|
|
17
|
+
.n("RedshiftClient", "RegisterNamespaceCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_RegisterNamespaceCommand)
|
|
20
|
+
.de(de_RegisterNamespaceCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -48,6 +48,7 @@ export * from "./DeleteSnapshotCopyGrantCommand";
|
|
|
48
48
|
export * from "./DeleteSnapshotScheduleCommand";
|
|
49
49
|
export * from "./DeleteTagsCommand";
|
|
50
50
|
export * from "./DeleteUsageLimitCommand";
|
|
51
|
+
export * from "./DeregisterNamespaceCommand";
|
|
51
52
|
export * from "./DescribeAccountAttributesCommand";
|
|
52
53
|
export * from "./DescribeAuthenticationProfilesCommand";
|
|
53
54
|
export * from "./DescribeClusterDbRevisionsCommand";
|
|
@@ -124,6 +125,7 @@ export * from "./PauseClusterCommand";
|
|
|
124
125
|
export * from "./PurchaseReservedNodeOfferingCommand";
|
|
125
126
|
export * from "./PutResourcePolicyCommand";
|
|
126
127
|
export * from "./RebootClusterCommand";
|
|
128
|
+
export * from "./RegisterNamespaceCommand";
|
|
127
129
|
export * from "./RejectDataShareCommand";
|
|
128
130
|
export * from "./ResetClusterParameterGroupCommand";
|
|
129
131
|
export * from "./ResizeClusterCommand";
|
|
@@ -171,6 +171,9 @@ export const DataShareStatus = {
|
|
|
171
171
|
PENDING_AUTHORIZATION: "PENDING_AUTHORIZATION",
|
|
172
172
|
REJECTED: "REJECTED",
|
|
173
173
|
};
|
|
174
|
+
export const DataShareType = {
|
|
175
|
+
INTERNAL: "INTERNAL",
|
|
176
|
+
};
|
|
174
177
|
export class InvalidDataShareFault extends __BaseException {
|
|
175
178
|
constructor(opts) {
|
|
176
179
|
super({
|
|
@@ -1585,6 +1588,16 @@ export class UsageLimitNotFoundFault extends __BaseException {
|
|
|
1585
1588
|
Object.setPrototypeOf(this, UsageLimitNotFoundFault.prototype);
|
|
1586
1589
|
}
|
|
1587
1590
|
}
|
|
1591
|
+
export var NamespaceIdentifierUnion;
|
|
1592
|
+
(function (NamespaceIdentifierUnion) {
|
|
1593
|
+
NamespaceIdentifierUnion.visit = (value, visitor) => {
|
|
1594
|
+
if (value.ServerlessIdentifier !== undefined)
|
|
1595
|
+
return visitor.ServerlessIdentifier(value.ServerlessIdentifier);
|
|
1596
|
+
if (value.ProvisionedIdentifier !== undefined)
|
|
1597
|
+
return visitor.ProvisionedIdentifier(value.ProvisionedIdentifier);
|
|
1598
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1599
|
+
};
|
|
1600
|
+
})(NamespaceIdentifierUnion || (NamespaceIdentifierUnion = {}));
|
|
1588
1601
|
export const PendingModifiedValuesFilterSensitiveLog = (obj) => ({
|
|
1589
1602
|
...obj,
|
|
1590
1603
|
...(obj.MasterUserPassword && { MasterUserPassword: SENSITIVE_STRING }),
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { ClusterFilterSensitiveLog, } from "./models_0";
|
|
3
3
|
import { RedshiftServiceException as __BaseException } from "./RedshiftServiceException";
|
|
4
|
+
export const NamespaceRegistrationStatus = {
|
|
5
|
+
DEREGISTERING: "Deregistering",
|
|
6
|
+
REGISTERING: "Registering",
|
|
7
|
+
};
|
|
4
8
|
export const SnapshotAttributeToSortBy = {
|
|
5
9
|
CREATE_TIME: "CREATE_TIME",
|
|
6
10
|
SOURCE_TYPE: "SOURCE_TYPE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { parseXmlBody as parseBody, parseXmlErrorBody as parseErrorBody } from "@aws-sdk/core";
|
|
2
2
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
3
3
|
import { collectBody, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectString as __expectString, expectUnion as __expectUnion, extendedEncodeURIComponent as __extendedEncodeURIComponent, getArrayIfSingleItem as __getArrayIfSingleItem, parseBoolean as __parseBoolean, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, serializeDateTime as __serializeDateTime, strictParseFloat as __strictParseFloat, strictParseInt32 as __strictParseInt32, strictParseLong as __strictParseLong, withBaseException, } from "@smithy/smithy-client";
|
|
4
|
-
import { AccessToClusterDeniedFault, AccessToSnapshotDeniedFault, AuthenticationProfileAlreadyExistsFault, AuthenticationProfileNotFoundFault, AuthenticationProfileQuotaExceededFault, AuthorizationAlreadyExistsFault, AuthorizationNotFoundFault, AuthorizationQuotaExceededFault, BatchDeleteRequestSizeExceededFault, BatchModifyClusterSnapshotsLimitExceededFault, BucketNotFoundFault, ClusterAlreadyExistsFault, ClusterNotFoundFault, ClusterOnLatestRevisionFault, ClusterParameterGroupAlreadyExistsFault, ClusterParameterGroupNotFoundFault, ClusterParameterGroupQuotaExceededFault, ClusterQuotaExceededFault, ClusterSecurityGroupAlreadyExistsFault, ClusterSecurityGroupNotFoundFault, ClusterSecurityGroupQuotaExceededFault, ClusterSnapshotAlreadyExistsFault, ClusterSnapshotNotFoundFault, ClusterSnapshotQuotaExceededFault, ClusterSubnetGroupAlreadyExistsFault, ClusterSubnetGroupNotFoundFault, ClusterSubnetGroupQuotaExceededFault, ClusterSubnetQuotaExceededFault, ConflictPolicyUpdateFault, CopyToRegionDisabledFault, CustomCnameAssociationFault, CustomDomainAssociationNotFoundFault, DependentServiceAccessDeniedFault, DependentServiceRequestThrottlingFault, DependentServiceUnavailableFault, EndpointAlreadyExistsFault, EndpointAuthorizationAlreadyExistsFault, EndpointAuthorizationsPerClusterLimitExceededFault, EndpointNotFoundFault, EndpointsPerAuthorizationLimitExceededFault, EndpointsPerClusterLimitExceededFault, EventSubscriptionQuotaExceededFault, HsmClientCertificateAlreadyExistsFault, HsmClientCertificateNotFoundFault, HsmClientCertificateQuotaExceededFault, HsmConfigurationAlreadyExistsFault, HsmConfigurationNotFoundFault, HsmConfigurationQuotaExceededFault, InsufficientClusterCapacityFault, IntegrationAlreadyExistsFault, IntegrationConflictOperationFault, IntegrationConflictStateFault, IntegrationNotFoundFault, IntegrationQuotaExceededFault, IntegrationSourceNotFoundFault, IntegrationTargetNotFoundFault, InvalidAuthenticationProfileRequestFault, InvalidAuthorizationStateFault, InvalidClusterParameterGroupStateFault, InvalidClusterSecurityGroupStateFault, InvalidClusterSnapshotScheduleStateFault, InvalidClusterSnapshotStateFault, InvalidClusterStateFault, InvalidClusterSubnetGroupStateFault, InvalidClusterSubnetStateFault, InvalidClusterTrackFault, InvalidDataShareFault, InvalidElasticIpFault, InvalidEndpointStateFault, InvalidHsmClientCertificateStateFault, InvalidHsmConfigurationStateFault, InvalidNamespaceFault, InvalidReservedNodeStateFault, InvalidRetentionPeriodFault, InvalidScheduledActionFault, InvalidScheduleFault, InvalidSnapshotCopyGrantStateFault, InvalidSubnet, InvalidSubscriptionStateFault, InvalidTagFault, InvalidUsageLimitFault, InvalidVPCNetworkStateFault, Ipv6CidrBlockNotFoundFault, LakeFormationScopeUnion, LimitExceededFault, NumberOfNodesPerClusterLimitExceededFault, NumberOfNodesQuotaExceededFault, PartnerNotFoundFault, RedshiftIdcApplicationAlreadyExistsFault, RedshiftIdcApplicationNotExistsFault, RedshiftIdcApplicationQuotaExceededFault, ReservedNodeAlreadyExistsFault, ReservedNodeAlreadyMigratedFault, ReservedNodeNotFoundFault, ReservedNodeOfferingNotFoundFault, ResizeNotFoundFault, ResourceNotFoundFault, S3AccessGrantsScopeUnion, ScheduledActionAlreadyExistsFault, ScheduledActionNotFoundFault, ScheduledActionQuotaExceededFault, ScheduledActionTypeUnsupportedFault, ScheduleDefinitionTypeUnsupportedFault, ServiceIntegrationsUnion, SnapshotCopyGrantAlreadyExistsFault, SnapshotCopyGrantNotFoundFault, SnapshotCopyGrantQuotaExceededFault, SnapshotScheduleAlreadyExistsFault, SnapshotScheduleNotFoundFault, SnapshotScheduleQuotaExceededFault, SNSInvalidTopicFault, SNSNoAuthorizationFault, SNSTopicArnNotFoundFault, SourceNotFoundFault, SubscriptionAlreadyExistFault, SubscriptionCategoryNotFoundFault, SubscriptionEventIdNotFoundFault, SubscriptionNotFoundFault, SubscriptionSeverityNotFoundFault, TagLimitExceededFault, UnauthorizedOperation, UnauthorizedPartnerIntegrationFault, UnsupportedOperationFault, UsageLimitAlreadyExistsFault, UsageLimitNotFoundFault, } from "../models/models_0";
|
|
4
|
+
import { AccessToClusterDeniedFault, AccessToSnapshotDeniedFault, AuthenticationProfileAlreadyExistsFault, AuthenticationProfileNotFoundFault, AuthenticationProfileQuotaExceededFault, AuthorizationAlreadyExistsFault, AuthorizationNotFoundFault, AuthorizationQuotaExceededFault, BatchDeleteRequestSizeExceededFault, BatchModifyClusterSnapshotsLimitExceededFault, BucketNotFoundFault, ClusterAlreadyExistsFault, ClusterNotFoundFault, ClusterOnLatestRevisionFault, ClusterParameterGroupAlreadyExistsFault, ClusterParameterGroupNotFoundFault, ClusterParameterGroupQuotaExceededFault, ClusterQuotaExceededFault, ClusterSecurityGroupAlreadyExistsFault, ClusterSecurityGroupNotFoundFault, ClusterSecurityGroupQuotaExceededFault, ClusterSnapshotAlreadyExistsFault, ClusterSnapshotNotFoundFault, ClusterSnapshotQuotaExceededFault, ClusterSubnetGroupAlreadyExistsFault, ClusterSubnetGroupNotFoundFault, ClusterSubnetGroupQuotaExceededFault, ClusterSubnetQuotaExceededFault, ConflictPolicyUpdateFault, CopyToRegionDisabledFault, CustomCnameAssociationFault, CustomDomainAssociationNotFoundFault, DependentServiceAccessDeniedFault, DependentServiceRequestThrottlingFault, DependentServiceUnavailableFault, EndpointAlreadyExistsFault, EndpointAuthorizationAlreadyExistsFault, EndpointAuthorizationsPerClusterLimitExceededFault, EndpointNotFoundFault, EndpointsPerAuthorizationLimitExceededFault, EndpointsPerClusterLimitExceededFault, EventSubscriptionQuotaExceededFault, HsmClientCertificateAlreadyExistsFault, HsmClientCertificateNotFoundFault, HsmClientCertificateQuotaExceededFault, HsmConfigurationAlreadyExistsFault, HsmConfigurationNotFoundFault, HsmConfigurationQuotaExceededFault, InsufficientClusterCapacityFault, IntegrationAlreadyExistsFault, IntegrationConflictOperationFault, IntegrationConflictStateFault, IntegrationNotFoundFault, IntegrationQuotaExceededFault, IntegrationSourceNotFoundFault, IntegrationTargetNotFoundFault, InvalidAuthenticationProfileRequestFault, InvalidAuthorizationStateFault, InvalidClusterParameterGroupStateFault, InvalidClusterSecurityGroupStateFault, InvalidClusterSnapshotScheduleStateFault, InvalidClusterSnapshotStateFault, InvalidClusterStateFault, InvalidClusterSubnetGroupStateFault, InvalidClusterSubnetStateFault, InvalidClusterTrackFault, InvalidDataShareFault, InvalidElasticIpFault, InvalidEndpointStateFault, InvalidHsmClientCertificateStateFault, InvalidHsmConfigurationStateFault, InvalidNamespaceFault, InvalidReservedNodeStateFault, InvalidRetentionPeriodFault, InvalidScheduledActionFault, InvalidScheduleFault, InvalidSnapshotCopyGrantStateFault, InvalidSubnet, InvalidSubscriptionStateFault, InvalidTagFault, InvalidUsageLimitFault, InvalidVPCNetworkStateFault, Ipv6CidrBlockNotFoundFault, LakeFormationScopeUnion, LimitExceededFault, NamespaceIdentifierUnion, NumberOfNodesPerClusterLimitExceededFault, NumberOfNodesQuotaExceededFault, PartnerNotFoundFault, RedshiftIdcApplicationAlreadyExistsFault, RedshiftIdcApplicationNotExistsFault, RedshiftIdcApplicationQuotaExceededFault, ReservedNodeAlreadyExistsFault, ReservedNodeAlreadyMigratedFault, ReservedNodeNotFoundFault, ReservedNodeOfferingNotFoundFault, ResizeNotFoundFault, ResourceNotFoundFault, S3AccessGrantsScopeUnion, ScheduledActionAlreadyExistsFault, ScheduledActionNotFoundFault, ScheduledActionQuotaExceededFault, ScheduledActionTypeUnsupportedFault, ScheduleDefinitionTypeUnsupportedFault, ServiceIntegrationsUnion, SnapshotCopyGrantAlreadyExistsFault, SnapshotCopyGrantNotFoundFault, SnapshotCopyGrantQuotaExceededFault, SnapshotScheduleAlreadyExistsFault, SnapshotScheduleNotFoundFault, SnapshotScheduleQuotaExceededFault, SNSInvalidTopicFault, SNSNoAuthorizationFault, SNSTopicArnNotFoundFault, SourceNotFoundFault, SubscriptionAlreadyExistFault, SubscriptionCategoryNotFoundFault, SubscriptionEventIdNotFoundFault, SubscriptionNotFoundFault, SubscriptionSeverityNotFoundFault, TagLimitExceededFault, UnauthorizedOperation, UnauthorizedPartnerIntegrationFault, UnsupportedOperationFault, UsageLimitAlreadyExistsFault, UsageLimitNotFoundFault, } from "../models/models_0";
|
|
5
5
|
import { EndpointAuthorizationNotFoundFault, IncompatibleOrderableOptions, InProgressTableRestoreQuotaExceededFault, InsufficientS3BucketPolicyFault, InvalidPolicyFault, InvalidRestoreFault, InvalidS3BucketNameFault, InvalidS3KeyPrefixFault, InvalidTableRestoreArgumentFault, ReservedNodeExchangeNotFoundFault, ReservedNodeQuotaExceededFault, SnapshotCopyAlreadyDisabledFault, SnapshotCopyAlreadyEnabledFault, SnapshotCopyDisabledFault, SnapshotScheduleUpdateInProgressFault, SubnetAlreadyInUse, TableLimitExceededFault, TableRestoreNotFoundFault, UnknownSnapshotCopyRegionFault, UnsupportedOptionFault, } from "../models/models_1";
|
|
6
6
|
import { RedshiftServiceException as __BaseException } from "../models/RedshiftServiceException";
|
|
7
7
|
export const se_AcceptReservedNodeExchangeCommand = async (input, context) => {
|
|
@@ -504,6 +504,16 @@ export const se_DeleteUsageLimitCommand = async (input, context) => {
|
|
|
504
504
|
});
|
|
505
505
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
506
506
|
};
|
|
507
|
+
export const se_DeregisterNamespaceCommand = async (input, context) => {
|
|
508
|
+
const headers = SHARED_HEADERS;
|
|
509
|
+
let body;
|
|
510
|
+
body = buildFormUrlencodedString({
|
|
511
|
+
...se_DeregisterNamespaceInputMessage(input, context),
|
|
512
|
+
[_A]: _DN,
|
|
513
|
+
[_V]: _,
|
|
514
|
+
});
|
|
515
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
516
|
+
};
|
|
507
517
|
export const se_DescribeAccountAttributesCommand = async (input, context) => {
|
|
508
518
|
const headers = SHARED_HEADERS;
|
|
509
519
|
let body;
|
|
@@ -1262,6 +1272,16 @@ export const se_RebootClusterCommand = async (input, context) => {
|
|
|
1262
1272
|
});
|
|
1263
1273
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1264
1274
|
};
|
|
1275
|
+
export const se_RegisterNamespaceCommand = async (input, context) => {
|
|
1276
|
+
const headers = SHARED_HEADERS;
|
|
1277
|
+
let body;
|
|
1278
|
+
body = buildFormUrlencodedString({
|
|
1279
|
+
...se_RegisterNamespaceInputMessage(input, context),
|
|
1280
|
+
[_A]: _RN,
|
|
1281
|
+
[_V]: _,
|
|
1282
|
+
});
|
|
1283
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
1284
|
+
};
|
|
1265
1285
|
export const se_RejectDataShareCommand = async (input, context) => {
|
|
1266
1286
|
const headers = SHARED_HEADERS;
|
|
1267
1287
|
let body;
|
|
@@ -1977,6 +1997,19 @@ export const de_DeleteUsageLimitCommand = async (output, context) => {
|
|
|
1977
1997
|
};
|
|
1978
1998
|
return response;
|
|
1979
1999
|
};
|
|
2000
|
+
export const de_DeregisterNamespaceCommand = async (output, context) => {
|
|
2001
|
+
if (output.statusCode >= 300) {
|
|
2002
|
+
return de_CommandError(output, context);
|
|
2003
|
+
}
|
|
2004
|
+
const data = await parseBody(output.body, context);
|
|
2005
|
+
let contents = {};
|
|
2006
|
+
contents = de_DeregisterNamespaceOutputMessage(data.DeregisterNamespaceResult, context);
|
|
2007
|
+
const response = {
|
|
2008
|
+
$metadata: deserializeMetadata(output),
|
|
2009
|
+
...contents,
|
|
2010
|
+
};
|
|
2011
|
+
return response;
|
|
2012
|
+
};
|
|
1980
2013
|
export const de_DescribeAccountAttributesCommand = async (output, context) => {
|
|
1981
2014
|
if (output.statusCode >= 300) {
|
|
1982
2015
|
return de_CommandError(output, context);
|
|
@@ -2962,6 +2995,19 @@ export const de_RebootClusterCommand = async (output, context) => {
|
|
|
2962
2995
|
};
|
|
2963
2996
|
return response;
|
|
2964
2997
|
};
|
|
2998
|
+
export const de_RegisterNamespaceCommand = async (output, context) => {
|
|
2999
|
+
if (output.statusCode >= 300) {
|
|
3000
|
+
return de_CommandError(output, context);
|
|
3001
|
+
}
|
|
3002
|
+
const data = await parseBody(output.body, context);
|
|
3003
|
+
let contents = {};
|
|
3004
|
+
contents = de_RegisterNamespaceOutputMessage(data.RegisterNamespaceResult, context);
|
|
3005
|
+
const response = {
|
|
3006
|
+
$metadata: deserializeMetadata(output),
|
|
3007
|
+
...contents,
|
|
3008
|
+
};
|
|
3009
|
+
return response;
|
|
3010
|
+
};
|
|
2965
3011
|
export const de_RejectDataShareCommand = async (output, context) => {
|
|
2966
3012
|
if (output.statusCode >= 300) {
|
|
2967
3013
|
return de_CommandError(output, context);
|
|
@@ -5028,6 +5074,18 @@ const se_ClusterSecurityGroupNameList = (input, context) => {
|
|
|
5028
5074
|
}
|
|
5029
5075
|
return entries;
|
|
5030
5076
|
};
|
|
5077
|
+
const se_ConsumerIdentifierList = (input, context) => {
|
|
5078
|
+
const entries = {};
|
|
5079
|
+
let counter = 1;
|
|
5080
|
+
for (const entry of input) {
|
|
5081
|
+
if (entry === null) {
|
|
5082
|
+
continue;
|
|
5083
|
+
}
|
|
5084
|
+
entries[`member.${counter}`] = entry;
|
|
5085
|
+
counter++;
|
|
5086
|
+
}
|
|
5087
|
+
return entries;
|
|
5088
|
+
};
|
|
5031
5089
|
const se_CopyClusterSnapshotMessage = (input, context) => {
|
|
5032
5090
|
const entries = {};
|
|
5033
5091
|
if (input[_SSI] != null) {
|
|
@@ -5601,8 +5659,8 @@ const se_CreateSnapshotScheduleMessage = (input, context) => {
|
|
|
5601
5659
|
};
|
|
5602
5660
|
const se_CreateTagsMessage = (input, context) => {
|
|
5603
5661
|
const entries = {};
|
|
5604
|
-
if (input[
|
|
5605
|
-
entries[
|
|
5662
|
+
if (input[_RNe] != null) {
|
|
5663
|
+
entries[_RNe] = input[_RNe];
|
|
5606
5664
|
}
|
|
5607
5665
|
if (input[_T] != null) {
|
|
5608
5666
|
const memberEntries = se_TagList(input[_T], context);
|
|
@@ -5821,8 +5879,8 @@ const se_DeleteSnapshotScheduleMessage = (input, context) => {
|
|
|
5821
5879
|
};
|
|
5822
5880
|
const se_DeleteTagsMessage = (input, context) => {
|
|
5823
5881
|
const entries = {};
|
|
5824
|
-
if (input[
|
|
5825
|
-
entries[
|
|
5882
|
+
if (input[_RNe] != null) {
|
|
5883
|
+
entries[_RNe] = input[_RNe];
|
|
5826
5884
|
}
|
|
5827
5885
|
if (input[_TK] != null) {
|
|
5828
5886
|
const memberEntries = se_TagKeyList(input[_TK], context);
|
|
@@ -5843,6 +5901,27 @@ const se_DeleteUsageLimitMessage = (input, context) => {
|
|
|
5843
5901
|
}
|
|
5844
5902
|
return entries;
|
|
5845
5903
|
};
|
|
5904
|
+
const se_DeregisterNamespaceInputMessage = (input, context) => {
|
|
5905
|
+
const entries = {};
|
|
5906
|
+
if (input[_NIa] != null) {
|
|
5907
|
+
const memberEntries = se_NamespaceIdentifierUnion(input[_NIa], context);
|
|
5908
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
5909
|
+
const loc = `NamespaceIdentifier.${key}`;
|
|
5910
|
+
entries[loc] = value;
|
|
5911
|
+
});
|
|
5912
|
+
}
|
|
5913
|
+
if (input[_CIon] != null) {
|
|
5914
|
+
const memberEntries = se_ConsumerIdentifierList(input[_CIon], context);
|
|
5915
|
+
if (input[_CIon]?.length === 0) {
|
|
5916
|
+
entries.ConsumerIdentifiers = [];
|
|
5917
|
+
}
|
|
5918
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
5919
|
+
const loc = `ConsumerIdentifiers.${key}`;
|
|
5920
|
+
entries[loc] = value;
|
|
5921
|
+
});
|
|
5922
|
+
}
|
|
5923
|
+
return entries;
|
|
5924
|
+
};
|
|
5846
5925
|
const se_DescribeAccountAttributesMessage = (input, context) => {
|
|
5847
5926
|
const entries = {};
|
|
5848
5927
|
if (input[_AN] != null) {
|
|
@@ -6513,8 +6592,8 @@ const se_DescribePartnersInputMessage = (input, context) => {
|
|
|
6513
6592
|
if (input[_CIl] != null) {
|
|
6514
6593
|
entries[_CIl] = input[_CIl];
|
|
6515
6594
|
}
|
|
6516
|
-
if (input[
|
|
6517
|
-
entries[
|
|
6595
|
+
if (input[_DNa] != null) {
|
|
6596
|
+
entries[_DNa] = input[_DNa];
|
|
6518
6597
|
}
|
|
6519
6598
|
if (input[_PN] != null) {
|
|
6520
6599
|
entries[_PN] = input[_PN];
|
|
@@ -6705,8 +6784,8 @@ const se_DescribeTableRestoreStatusMessage = (input, context) => {
|
|
|
6705
6784
|
};
|
|
6706
6785
|
const se_DescribeTagsMessage = (input, context) => {
|
|
6707
6786
|
const entries = {};
|
|
6708
|
-
if (input[
|
|
6709
|
-
entries[
|
|
6787
|
+
if (input[_RNe] != null) {
|
|
6788
|
+
entries[_RNe] = input[_RNe];
|
|
6710
6789
|
}
|
|
6711
6790
|
if (input[_RT] != null) {
|
|
6712
6791
|
entries[_RT] = input[_RT];
|
|
@@ -7492,6 +7571,29 @@ const se_ModifyUsageLimitMessage = (input, context) => {
|
|
|
7492
7571
|
}
|
|
7493
7572
|
return entries;
|
|
7494
7573
|
};
|
|
7574
|
+
const se_NamespaceIdentifierUnion = (input, context) => {
|
|
7575
|
+
const entries = {};
|
|
7576
|
+
NamespaceIdentifierUnion.visit(input, {
|
|
7577
|
+
ServerlessIdentifier: (value) => {
|
|
7578
|
+
const memberEntries = se_ServerlessIdentifier(value, context);
|
|
7579
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
7580
|
+
const loc = `ServerlessIdentifier.${key}`;
|
|
7581
|
+
entries[loc] = value;
|
|
7582
|
+
});
|
|
7583
|
+
},
|
|
7584
|
+
ProvisionedIdentifier: (value) => {
|
|
7585
|
+
const memberEntries = se_ProvisionedIdentifier(value, context);
|
|
7586
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
7587
|
+
const loc = `ProvisionedIdentifier.${key}`;
|
|
7588
|
+
entries[loc] = value;
|
|
7589
|
+
});
|
|
7590
|
+
},
|
|
7591
|
+
_: (name, value) => {
|
|
7592
|
+
entries[name] = value;
|
|
7593
|
+
},
|
|
7594
|
+
});
|
|
7595
|
+
return entries;
|
|
7596
|
+
};
|
|
7495
7597
|
const se_NodeConfigurationOptionsFilter = (input, context) => {
|
|
7496
7598
|
const entries = {};
|
|
7497
7599
|
if (input[_N] != null) {
|
|
@@ -7581,8 +7683,8 @@ const se_PartnerIntegrationInputMessage = (input, context) => {
|
|
|
7581
7683
|
if (input[_CIl] != null) {
|
|
7582
7684
|
entries[_CIl] = input[_CIl];
|
|
7583
7685
|
}
|
|
7584
|
-
if (input[
|
|
7585
|
-
entries[
|
|
7686
|
+
if (input[_DNa] != null) {
|
|
7687
|
+
entries[_DNa] = input[_DNa];
|
|
7586
7688
|
}
|
|
7587
7689
|
if (input[_PN] != null) {
|
|
7588
7690
|
entries[_PN] = input[_PN];
|
|
@@ -7596,6 +7698,13 @@ const se_PauseClusterMessage = (input, context) => {
|
|
|
7596
7698
|
}
|
|
7597
7699
|
return entries;
|
|
7598
7700
|
};
|
|
7701
|
+
const se_ProvisionedIdentifier = (input, context) => {
|
|
7702
|
+
const entries = {};
|
|
7703
|
+
if (input[_CIl] != null) {
|
|
7704
|
+
entries[_CIl] = input[_CIl];
|
|
7705
|
+
}
|
|
7706
|
+
return entries;
|
|
7707
|
+
};
|
|
7599
7708
|
const se_PurchaseReservedNodeOfferingMessage = (input, context) => {
|
|
7600
7709
|
const entries = {};
|
|
7601
7710
|
if (input[_RNOI] != null) {
|
|
@@ -7630,6 +7739,27 @@ const se_RebootClusterMessage = (input, context) => {
|
|
|
7630
7739
|
}
|
|
7631
7740
|
return entries;
|
|
7632
7741
|
};
|
|
7742
|
+
const se_RegisterNamespaceInputMessage = (input, context) => {
|
|
7743
|
+
const entries = {};
|
|
7744
|
+
if (input[_NIa] != null) {
|
|
7745
|
+
const memberEntries = se_NamespaceIdentifierUnion(input[_NIa], context);
|
|
7746
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
7747
|
+
const loc = `NamespaceIdentifier.${key}`;
|
|
7748
|
+
entries[loc] = value;
|
|
7749
|
+
});
|
|
7750
|
+
}
|
|
7751
|
+
if (input[_CIon] != null) {
|
|
7752
|
+
const memberEntries = se_ConsumerIdentifierList(input[_CIon], context);
|
|
7753
|
+
if (input[_CIon]?.length === 0) {
|
|
7754
|
+
entries.ConsumerIdentifiers = [];
|
|
7755
|
+
}
|
|
7756
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
7757
|
+
const loc = `ConsumerIdentifiers.${key}`;
|
|
7758
|
+
entries[loc] = value;
|
|
7759
|
+
});
|
|
7760
|
+
}
|
|
7761
|
+
return entries;
|
|
7762
|
+
};
|
|
7633
7763
|
const se_RejectDataShareMessage = (input, context) => {
|
|
7634
7764
|
const entries = {};
|
|
7635
7765
|
if (input[_DSAa] != null) {
|
|
@@ -8018,6 +8148,16 @@ const se_ScheduleDefinitionList = (input, context) => {
|
|
|
8018
8148
|
}
|
|
8019
8149
|
return entries;
|
|
8020
8150
|
};
|
|
8151
|
+
const se_ServerlessIdentifier = (input, context) => {
|
|
8152
|
+
const entries = {};
|
|
8153
|
+
if (input[_NIa] != null) {
|
|
8154
|
+
entries[_NIa] = input[_NIa];
|
|
8155
|
+
}
|
|
8156
|
+
if (input[_WI] != null) {
|
|
8157
|
+
entries[_WI] = input[_WI];
|
|
8158
|
+
}
|
|
8159
|
+
return entries;
|
|
8160
|
+
};
|
|
8021
8161
|
const se_ServiceIntegrationList = (input, context) => {
|
|
8022
8162
|
const entries = {};
|
|
8023
8163
|
let counter = 1;
|
|
@@ -8180,8 +8320,8 @@ const se_UpdatePartnerStatusInputMessage = (input, context) => {
|
|
|
8180
8320
|
if (input[_CIl] != null) {
|
|
8181
8321
|
entries[_CIl] = input[_CIl];
|
|
8182
8322
|
}
|
|
8183
|
-
if (input[
|
|
8184
|
-
entries[
|
|
8323
|
+
if (input[_DNa] != null) {
|
|
8324
|
+
entries[_DNa] = input[_DNa];
|
|
8185
8325
|
}
|
|
8186
8326
|
if (input[_PN] != null) {
|
|
8187
8327
|
entries[_PN] = input[_PN];
|
|
@@ -9458,6 +9598,9 @@ const de_DataShare = (output, context) => {
|
|
|
9458
9598
|
if (output[_MB] != null) {
|
|
9459
9599
|
contents[_MB] = __expectString(output[_MB]);
|
|
9460
9600
|
}
|
|
9601
|
+
if (output[_DST] != null) {
|
|
9602
|
+
contents[_DST] = __expectString(output[_DST]);
|
|
9603
|
+
}
|
|
9461
9604
|
return contents;
|
|
9462
9605
|
};
|
|
9463
9606
|
const de_DataShareAssociation = (output, context) => {
|
|
@@ -9599,6 +9742,13 @@ const de_DependentServiceUnavailableFault = (output, context) => {
|
|
|
9599
9742
|
}
|
|
9600
9743
|
return contents;
|
|
9601
9744
|
};
|
|
9745
|
+
const de_DeregisterNamespaceOutputMessage = (output, context) => {
|
|
9746
|
+
const contents = {};
|
|
9747
|
+
if (output[_St] != null) {
|
|
9748
|
+
contents[_St] = __expectString(output[_St]);
|
|
9749
|
+
}
|
|
9750
|
+
return contents;
|
|
9751
|
+
};
|
|
9602
9752
|
const de_DescribeAuthenticationProfilesResult = (output, context) => {
|
|
9603
9753
|
const contents = {};
|
|
9604
9754
|
if (output.AuthenticationProfiles === "") {
|
|
@@ -11130,8 +11280,8 @@ const de_ParametersList = (output, context) => {
|
|
|
11130
11280
|
};
|
|
11131
11281
|
const de_PartnerIntegrationInfo = (output, context) => {
|
|
11132
11282
|
const contents = {};
|
|
11133
|
-
if (output[
|
|
11134
|
-
contents[
|
|
11283
|
+
if (output[_DNa] != null) {
|
|
11284
|
+
contents[_DNa] = __expectString(output[_DNa]);
|
|
11135
11285
|
}
|
|
11136
11286
|
if (output[_PN] != null) {
|
|
11137
11287
|
contents[_PN] = __expectString(output[_PN]);
|
|
@@ -11159,8 +11309,8 @@ const de_PartnerIntegrationInfoList = (output, context) => {
|
|
|
11159
11309
|
};
|
|
11160
11310
|
const de_PartnerIntegrationOutputMessage = (output, context) => {
|
|
11161
11311
|
const contents = {};
|
|
11162
|
-
if (output[
|
|
11163
|
-
contents[
|
|
11312
|
+
if (output[_DNa] != null) {
|
|
11313
|
+
contents[_DNa] = __expectString(output[_DNa]);
|
|
11164
11314
|
}
|
|
11165
11315
|
if (output[_PN] != null) {
|
|
11166
11316
|
contents[_PN] = __expectString(output[_PN]);
|
|
@@ -11234,8 +11384,8 @@ const de_PendingModifiedValues = (output, context) => {
|
|
|
11234
11384
|
};
|
|
11235
11385
|
const de_PurchaseReservedNodeOfferingResult = (output, context) => {
|
|
11236
11386
|
const contents = {};
|
|
11237
|
-
if (output[
|
|
11238
|
-
contents[
|
|
11387
|
+
if (output[_RNes] != null) {
|
|
11388
|
+
contents[_RNes] = de_ReservedNode(output[_RNes], context);
|
|
11239
11389
|
}
|
|
11240
11390
|
return contents;
|
|
11241
11391
|
};
|
|
@@ -11438,6 +11588,13 @@ const de_ReferenceLinkList = (output, context) => {
|
|
|
11438
11588
|
return de_ReferenceLink(entry, context);
|
|
11439
11589
|
});
|
|
11440
11590
|
};
|
|
11591
|
+
const de_RegisterNamespaceOutputMessage = (output, context) => {
|
|
11592
|
+
const contents = {};
|
|
11593
|
+
if (output[_St] != null) {
|
|
11594
|
+
contents[_St] = __expectString(output[_St]);
|
|
11595
|
+
}
|
|
11596
|
+
return contents;
|
|
11597
|
+
};
|
|
11441
11598
|
const de_ReservedNode = (output, context) => {
|
|
11442
11599
|
const contents = {};
|
|
11443
11600
|
if (output[_RNI] != null) {
|
|
@@ -11651,10 +11808,10 @@ const de_ReservedNodesMessage = (output, context) => {
|
|
|
11651
11808
|
contents[_M] = __expectString(output[_M]);
|
|
11652
11809
|
}
|
|
11653
11810
|
if (output.ReservedNodes === "") {
|
|
11654
|
-
contents[
|
|
11811
|
+
contents[_RNese] = [];
|
|
11655
11812
|
}
|
|
11656
|
-
else if (output[
|
|
11657
|
-
contents[
|
|
11813
|
+
else if (output[_RNese] != null && output[_RNese][_RNes] != null) {
|
|
11814
|
+
contents[_RNese] = de_ReservedNodeList(__getArrayIfSingleItem(output[_RNese][_RNes]), context);
|
|
11658
11815
|
}
|
|
11659
11816
|
return contents;
|
|
11660
11817
|
};
|
|
@@ -12601,8 +12758,8 @@ const de_TaggedResource = (output, context) => {
|
|
|
12601
12758
|
if (output[_Ta] != null) {
|
|
12602
12759
|
contents[_Ta] = de_Tag(output[_Ta], context);
|
|
12603
12760
|
}
|
|
12604
|
-
if (output[
|
|
12605
|
-
contents[
|
|
12761
|
+
if (output[_RNe] != null) {
|
|
12762
|
+
contents[_RNe] = __expectString(output[_RNe]);
|
|
12606
12763
|
}
|
|
12607
12764
|
if (output[_RT] != null) {
|
|
12608
12765
|
contents[_RT] = __expectString(output[_RT]);
|
|
@@ -12966,6 +13123,7 @@ const _CIDRIP = "CIDRIP";
|
|
|
12966
13123
|
const _CIR = "ClusterIamRole";
|
|
12967
13124
|
const _CIl = "ClusterIdentifier";
|
|
12968
13125
|
const _CIo = "ConsumerIdentifier";
|
|
13126
|
+
const _CIon = "ConsumerIdentifiers";
|
|
12969
13127
|
const _CN = "ClusterNodes";
|
|
12970
13128
|
const _CNA = "ClusterNamespaceArn";
|
|
12971
13129
|
const _CPG = "ClusterParameterGroups";
|
|
@@ -13055,8 +13213,9 @@ const _DMI = "DeferMaintenanceIdentifier";
|
|
|
13055
13213
|
const _DMST = "DeferMaintenanceStartTime";
|
|
13056
13214
|
const _DMW = "DeferredMaintenanceWindows";
|
|
13057
13215
|
const _DMWe = "DeferredMaintenanceWindow";
|
|
13058
|
-
const _DN = "
|
|
13216
|
+
const _DN = "DeregisterNamespace";
|
|
13059
13217
|
const _DNCO = "DescribeNodeConfigurationOptions";
|
|
13218
|
+
const _DNa = "DatabaseName";
|
|
13060
13219
|
const _DNb = "DbName";
|
|
13061
13220
|
const _DOCO = "DescribeOrderableClusterOptions";
|
|
13062
13221
|
const _DP = "DeletePartner";
|
|
@@ -13083,6 +13242,7 @@ const _DSCG = "DeleteSnapshotCopyGrant";
|
|
|
13083
13242
|
const _DSCGe = "DescribeSnapshotCopyGrants";
|
|
13084
13243
|
const _DSS = "DeleteSnapshotSchedule";
|
|
13085
13244
|
const _DSSe = "DescribeSnapshotSchedules";
|
|
13245
|
+
const _DST = "DataShareType";
|
|
13086
13246
|
const _DSa = "DataShares";
|
|
13087
13247
|
const _DSi = "DisassociateSchedule";
|
|
13088
13248
|
const _DSu = "DurationSeconds";
|
|
@@ -13264,6 +13424,7 @@ const _NCO = "NodeConfigurationOption";
|
|
|
13264
13424
|
const _NCOL = "NodeConfigurationOptionList";
|
|
13265
13425
|
const _NI = "NextInvocations";
|
|
13266
13426
|
const _NII = "NetworkInterfaceId";
|
|
13427
|
+
const _NIa = "NamespaceIdentifier";
|
|
13267
13428
|
const _NIe = "NetworkInterfaces";
|
|
13268
13429
|
const _NIet = "NetworkInterface";
|
|
13269
13430
|
const _NMWST = "NextMaintenanceWindowStartTime";
|
|
@@ -13334,7 +13495,7 @@ const _RIAe = "RedshiftIdcApplications";
|
|
|
13334
13495
|
const _RIR = "RemoveIamRoles";
|
|
13335
13496
|
const _RL = "ReferenceLinks";
|
|
13336
13497
|
const _RLe = "ReferenceLink";
|
|
13337
|
-
const _RN = "
|
|
13498
|
+
const _RN = "RegisterNamespace";
|
|
13338
13499
|
const _RNCO = "ReservedNodeConfigurationOption";
|
|
13339
13500
|
const _RNCOL = "ReservedNodeConfigurationOptionList";
|
|
13340
13501
|
const _RNERI = "ReservedNodeExchangeRequestId";
|
|
@@ -13346,8 +13507,9 @@ const _RNOI = "ReservedNodeOfferingId";
|
|
|
13346
13507
|
const _RNOT = "ReservedNodeOfferingType";
|
|
13347
13508
|
const _RNOe = "ReservedNodeOffering";
|
|
13348
13509
|
const _RNT = "RestorableNodeTypes";
|
|
13349
|
-
const _RNe = "
|
|
13350
|
-
const _RNes = "
|
|
13510
|
+
const _RNe = "ResourceName";
|
|
13511
|
+
const _RNes = "ReservedNode";
|
|
13512
|
+
const _RNese = "ReservedNodes";
|
|
13351
13513
|
const _RO = "ResourceOwner";
|
|
13352
13514
|
const _RP = "RetentionPeriod";
|
|
13353
13515
|
const _RPe = "ResourcePolicy";
|
|
@@ -13494,6 +13656,7 @@ const _VSGIp = "VpcSecurityGroupId";
|
|
|
13494
13656
|
const _VSGp = "VpcSecurityGroup";
|
|
13495
13657
|
const _Va = "Values";
|
|
13496
13658
|
const _Val = "Value";
|
|
13659
|
+
const _WI = "WorkgroupIdentifier";
|
|
13497
13660
|
const _e = "entry";
|
|
13498
13661
|
const _i = "item";
|
|
13499
13662
|
const _m = "message";
|
package/dist-types/Redshift.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ import { DeleteSnapshotCopyGrantCommandInput, DeleteSnapshotCopyGrantCommandOutp
|
|
|
49
49
|
import { DeleteSnapshotScheduleCommandInput, DeleteSnapshotScheduleCommandOutput } from "./commands/DeleteSnapshotScheduleCommand";
|
|
50
50
|
import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
|
|
51
51
|
import { DeleteUsageLimitCommandInput, DeleteUsageLimitCommandOutput } from "./commands/DeleteUsageLimitCommand";
|
|
52
|
+
import { DeregisterNamespaceCommandInput, DeregisterNamespaceCommandOutput } from "./commands/DeregisterNamespaceCommand";
|
|
52
53
|
import { DescribeAccountAttributesCommandInput, DescribeAccountAttributesCommandOutput } from "./commands/DescribeAccountAttributesCommand";
|
|
53
54
|
import { DescribeAuthenticationProfilesCommandInput, DescribeAuthenticationProfilesCommandOutput } from "./commands/DescribeAuthenticationProfilesCommand";
|
|
54
55
|
import { DescribeClusterDbRevisionsCommandInput, DescribeClusterDbRevisionsCommandOutput } from "./commands/DescribeClusterDbRevisionsCommand";
|
|
@@ -125,6 +126,7 @@ import { PauseClusterCommandInput, PauseClusterCommandOutput } from "./commands/
|
|
|
125
126
|
import { PurchaseReservedNodeOfferingCommandInput, PurchaseReservedNodeOfferingCommandOutput } from "./commands/PurchaseReservedNodeOfferingCommand";
|
|
126
127
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
127
128
|
import { RebootClusterCommandInput, RebootClusterCommandOutput } from "./commands/RebootClusterCommand";
|
|
129
|
+
import { RegisterNamespaceCommandInput, RegisterNamespaceCommandOutput } from "./commands/RegisterNamespaceCommand";
|
|
128
130
|
import { RejectDataShareCommandInput, RejectDataShareCommandOutput } from "./commands/RejectDataShareCommand";
|
|
129
131
|
import { ResetClusterParameterGroupCommandInput, ResetClusterParameterGroupCommandOutput } from "./commands/ResetClusterParameterGroupCommand";
|
|
130
132
|
import { ResizeClusterCommandInput, ResizeClusterCommandOutput } from "./commands/ResizeClusterCommand";
|
|
@@ -439,6 +441,12 @@ export interface Redshift {
|
|
|
439
441
|
deleteUsageLimit(args: DeleteUsageLimitCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUsageLimitCommandOutput>;
|
|
440
442
|
deleteUsageLimit(args: DeleteUsageLimitCommandInput, cb: (err: any, data?: DeleteUsageLimitCommandOutput) => void): void;
|
|
441
443
|
deleteUsageLimit(args: DeleteUsageLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUsageLimitCommandOutput) => void): void;
|
|
444
|
+
/**
|
|
445
|
+
* @see {@link DeregisterNamespaceCommand}
|
|
446
|
+
*/
|
|
447
|
+
deregisterNamespace(args: DeregisterNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterNamespaceCommandOutput>;
|
|
448
|
+
deregisterNamespace(args: DeregisterNamespaceCommandInput, cb: (err: any, data?: DeregisterNamespaceCommandOutput) => void): void;
|
|
449
|
+
deregisterNamespace(args: DeregisterNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterNamespaceCommandOutput) => void): void;
|
|
442
450
|
/**
|
|
443
451
|
* @see {@link DescribeAccountAttributesCommand}
|
|
444
452
|
*/
|
|
@@ -932,6 +940,12 @@ export interface Redshift {
|
|
|
932
940
|
rebootCluster(args: RebootClusterCommandInput, options?: __HttpHandlerOptions): Promise<RebootClusterCommandOutput>;
|
|
933
941
|
rebootCluster(args: RebootClusterCommandInput, cb: (err: any, data?: RebootClusterCommandOutput) => void): void;
|
|
934
942
|
rebootCluster(args: RebootClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RebootClusterCommandOutput) => void): void;
|
|
943
|
+
/**
|
|
944
|
+
* @see {@link RegisterNamespaceCommand}
|
|
945
|
+
*/
|
|
946
|
+
registerNamespace(args: RegisterNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<RegisterNamespaceCommandOutput>;
|
|
947
|
+
registerNamespace(args: RegisterNamespaceCommandInput, cb: (err: any, data?: RegisterNamespaceCommandOutput) => void): void;
|
|
948
|
+
registerNamespace(args: RegisterNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterNamespaceCommandOutput) => void): void;
|
|
935
949
|
/**
|
|
936
950
|
* @see {@link RejectDataShareCommand}
|
|
937
951
|
*/
|
|
@@ -57,6 +57,7 @@ import { DeleteSnapshotCopyGrantCommandInput, DeleteSnapshotCopyGrantCommandOutp
|
|
|
57
57
|
import { DeleteSnapshotScheduleCommandInput, DeleteSnapshotScheduleCommandOutput } from "./commands/DeleteSnapshotScheduleCommand";
|
|
58
58
|
import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand";
|
|
59
59
|
import { DeleteUsageLimitCommandInput, DeleteUsageLimitCommandOutput } from "./commands/DeleteUsageLimitCommand";
|
|
60
|
+
import { DeregisterNamespaceCommandInput, DeregisterNamespaceCommandOutput } from "./commands/DeregisterNamespaceCommand";
|
|
60
61
|
import { DescribeAccountAttributesCommandInput, DescribeAccountAttributesCommandOutput } from "./commands/DescribeAccountAttributesCommand";
|
|
61
62
|
import { DescribeAuthenticationProfilesCommandInput, DescribeAuthenticationProfilesCommandOutput } from "./commands/DescribeAuthenticationProfilesCommand";
|
|
62
63
|
import { DescribeClusterDbRevisionsCommandInput, DescribeClusterDbRevisionsCommandOutput } from "./commands/DescribeClusterDbRevisionsCommand";
|
|
@@ -133,6 +134,7 @@ import { PauseClusterCommandInput, PauseClusterCommandOutput } from "./commands/
|
|
|
133
134
|
import { PurchaseReservedNodeOfferingCommandInput, PurchaseReservedNodeOfferingCommandOutput } from "./commands/PurchaseReservedNodeOfferingCommand";
|
|
134
135
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
135
136
|
import { RebootClusterCommandInput, RebootClusterCommandOutput } from "./commands/RebootClusterCommand";
|
|
137
|
+
import { RegisterNamespaceCommandInput, RegisterNamespaceCommandOutput } from "./commands/RegisterNamespaceCommand";
|
|
136
138
|
import { RejectDataShareCommandInput, RejectDataShareCommandOutput } from "./commands/RejectDataShareCommand";
|
|
137
139
|
import { ResetClusterParameterGroupCommandInput, ResetClusterParameterGroupCommandOutput } from "./commands/ResetClusterParameterGroupCommand";
|
|
138
140
|
import { ResizeClusterCommandInput, ResizeClusterCommandOutput } from "./commands/ResizeClusterCommand";
|
|
@@ -150,11 +152,11 @@ export { __Client };
|
|
|
150
152
|
/**
|
|
151
153
|
* @public
|
|
152
154
|
*/
|
|
153
|
-
export type ServiceInputTypes = AcceptReservedNodeExchangeCommandInput | AddPartnerCommandInput | AssociateDataShareConsumerCommandInput | AuthorizeClusterSecurityGroupIngressCommandInput | AuthorizeDataShareCommandInput | AuthorizeEndpointAccessCommandInput | AuthorizeSnapshotAccessCommandInput | BatchDeleteClusterSnapshotsCommandInput | BatchModifyClusterSnapshotsCommandInput | CancelResizeCommandInput | CopyClusterSnapshotCommandInput | CreateAuthenticationProfileCommandInput | CreateClusterCommandInput | CreateClusterParameterGroupCommandInput | CreateClusterSecurityGroupCommandInput | CreateClusterSnapshotCommandInput | CreateClusterSubnetGroupCommandInput | CreateCustomDomainAssociationCommandInput | CreateEndpointAccessCommandInput | CreateEventSubscriptionCommandInput | CreateHsmClientCertificateCommandInput | CreateHsmConfigurationCommandInput | CreateIntegrationCommandInput | CreateRedshiftIdcApplicationCommandInput | CreateScheduledActionCommandInput | CreateSnapshotCopyGrantCommandInput | CreateSnapshotScheduleCommandInput | CreateTagsCommandInput | CreateUsageLimitCommandInput | DeauthorizeDataShareCommandInput | DeleteAuthenticationProfileCommandInput | DeleteClusterCommandInput | DeleteClusterParameterGroupCommandInput | DeleteClusterSecurityGroupCommandInput | DeleteClusterSnapshotCommandInput | DeleteClusterSubnetGroupCommandInput | DeleteCustomDomainAssociationCommandInput | DeleteEndpointAccessCommandInput | DeleteEventSubscriptionCommandInput | DeleteHsmClientCertificateCommandInput | DeleteHsmConfigurationCommandInput | DeleteIntegrationCommandInput | DeletePartnerCommandInput | DeleteRedshiftIdcApplicationCommandInput | DeleteResourcePolicyCommandInput | DeleteScheduledActionCommandInput | DeleteSnapshotCopyGrantCommandInput | DeleteSnapshotScheduleCommandInput | DeleteTagsCommandInput | DeleteUsageLimitCommandInput | DescribeAccountAttributesCommandInput | DescribeAuthenticationProfilesCommandInput | DescribeClusterDbRevisionsCommandInput | DescribeClusterParameterGroupsCommandInput | DescribeClusterParametersCommandInput | DescribeClusterSecurityGroupsCommandInput | DescribeClusterSnapshotsCommandInput | DescribeClusterSubnetGroupsCommandInput | DescribeClusterTracksCommandInput | DescribeClusterVersionsCommandInput | DescribeClustersCommandInput | DescribeCustomDomainAssociationsCommandInput | DescribeDataSharesCommandInput | DescribeDataSharesForConsumerCommandInput | DescribeDataSharesForProducerCommandInput | DescribeDefaultClusterParametersCommandInput | DescribeEndpointAccessCommandInput | DescribeEndpointAuthorizationCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeHsmClientCertificatesCommandInput | DescribeHsmConfigurationsCommandInput | DescribeInboundIntegrationsCommandInput | DescribeIntegrationsCommandInput | DescribeLoggingStatusCommandInput | DescribeNodeConfigurationOptionsCommandInput | DescribeOrderableClusterOptionsCommandInput | DescribePartnersCommandInput | DescribeRedshiftIdcApplicationsCommandInput | DescribeReservedNodeExchangeStatusCommandInput | DescribeReservedNodeOfferingsCommandInput | DescribeReservedNodesCommandInput | DescribeResizeCommandInput | DescribeScheduledActionsCommandInput | DescribeSnapshotCopyGrantsCommandInput | DescribeSnapshotSchedulesCommandInput | DescribeStorageCommandInput | DescribeTableRestoreStatusCommandInput | DescribeTagsCommandInput | DescribeUsageLimitsCommandInput | DisableLoggingCommandInput | DisableSnapshotCopyCommandInput | DisassociateDataShareConsumerCommandInput | EnableLoggingCommandInput | EnableSnapshotCopyCommandInput | FailoverPrimaryComputeCommandInput | GetClusterCredentialsCommandInput | GetClusterCredentialsWithIAMCommandInput | GetReservedNodeExchangeConfigurationOptionsCommandInput | GetReservedNodeExchangeOfferingsCommandInput | GetResourcePolicyCommandInput | ListRecommendationsCommandInput | ModifyAquaConfigurationCommandInput | ModifyAuthenticationProfileCommandInput | ModifyClusterCommandInput | ModifyClusterDbRevisionCommandInput | ModifyClusterIamRolesCommandInput | ModifyClusterMaintenanceCommandInput | ModifyClusterParameterGroupCommandInput | ModifyClusterSnapshotCommandInput | ModifyClusterSnapshotScheduleCommandInput | ModifyClusterSubnetGroupCommandInput | ModifyCustomDomainAssociationCommandInput | ModifyEndpointAccessCommandInput | ModifyEventSubscriptionCommandInput | ModifyIntegrationCommandInput | ModifyRedshiftIdcApplicationCommandInput | ModifyScheduledActionCommandInput | ModifySnapshotCopyRetentionPeriodCommandInput | ModifySnapshotScheduleCommandInput | ModifyUsageLimitCommandInput | PauseClusterCommandInput | PurchaseReservedNodeOfferingCommandInput | PutResourcePolicyCommandInput | RebootClusterCommandInput | RejectDataShareCommandInput | ResetClusterParameterGroupCommandInput | ResizeClusterCommandInput | RestoreFromClusterSnapshotCommandInput | RestoreTableFromClusterSnapshotCommandInput | ResumeClusterCommandInput | RevokeClusterSecurityGroupIngressCommandInput | RevokeEndpointAccessCommandInput | RevokeSnapshotAccessCommandInput | RotateEncryptionKeyCommandInput | UpdatePartnerStatusCommandInput;
|
|
155
|
+
export type ServiceInputTypes = AcceptReservedNodeExchangeCommandInput | AddPartnerCommandInput | AssociateDataShareConsumerCommandInput | AuthorizeClusterSecurityGroupIngressCommandInput | AuthorizeDataShareCommandInput | AuthorizeEndpointAccessCommandInput | AuthorizeSnapshotAccessCommandInput | BatchDeleteClusterSnapshotsCommandInput | BatchModifyClusterSnapshotsCommandInput | CancelResizeCommandInput | CopyClusterSnapshotCommandInput | CreateAuthenticationProfileCommandInput | CreateClusterCommandInput | CreateClusterParameterGroupCommandInput | CreateClusterSecurityGroupCommandInput | CreateClusterSnapshotCommandInput | CreateClusterSubnetGroupCommandInput | CreateCustomDomainAssociationCommandInput | CreateEndpointAccessCommandInput | CreateEventSubscriptionCommandInput | CreateHsmClientCertificateCommandInput | CreateHsmConfigurationCommandInput | CreateIntegrationCommandInput | CreateRedshiftIdcApplicationCommandInput | CreateScheduledActionCommandInput | CreateSnapshotCopyGrantCommandInput | CreateSnapshotScheduleCommandInput | CreateTagsCommandInput | CreateUsageLimitCommandInput | DeauthorizeDataShareCommandInput | DeleteAuthenticationProfileCommandInput | DeleteClusterCommandInput | DeleteClusterParameterGroupCommandInput | DeleteClusterSecurityGroupCommandInput | DeleteClusterSnapshotCommandInput | DeleteClusterSubnetGroupCommandInput | DeleteCustomDomainAssociationCommandInput | DeleteEndpointAccessCommandInput | DeleteEventSubscriptionCommandInput | DeleteHsmClientCertificateCommandInput | DeleteHsmConfigurationCommandInput | DeleteIntegrationCommandInput | DeletePartnerCommandInput | DeleteRedshiftIdcApplicationCommandInput | DeleteResourcePolicyCommandInput | DeleteScheduledActionCommandInput | DeleteSnapshotCopyGrantCommandInput | DeleteSnapshotScheduleCommandInput | DeleteTagsCommandInput | DeleteUsageLimitCommandInput | DeregisterNamespaceCommandInput | DescribeAccountAttributesCommandInput | DescribeAuthenticationProfilesCommandInput | DescribeClusterDbRevisionsCommandInput | DescribeClusterParameterGroupsCommandInput | DescribeClusterParametersCommandInput | DescribeClusterSecurityGroupsCommandInput | DescribeClusterSnapshotsCommandInput | DescribeClusterSubnetGroupsCommandInput | DescribeClusterTracksCommandInput | DescribeClusterVersionsCommandInput | DescribeClustersCommandInput | DescribeCustomDomainAssociationsCommandInput | DescribeDataSharesCommandInput | DescribeDataSharesForConsumerCommandInput | DescribeDataSharesForProducerCommandInput | DescribeDefaultClusterParametersCommandInput | DescribeEndpointAccessCommandInput | DescribeEndpointAuthorizationCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeHsmClientCertificatesCommandInput | DescribeHsmConfigurationsCommandInput | DescribeInboundIntegrationsCommandInput | DescribeIntegrationsCommandInput | DescribeLoggingStatusCommandInput | DescribeNodeConfigurationOptionsCommandInput | DescribeOrderableClusterOptionsCommandInput | DescribePartnersCommandInput | DescribeRedshiftIdcApplicationsCommandInput | DescribeReservedNodeExchangeStatusCommandInput | DescribeReservedNodeOfferingsCommandInput | DescribeReservedNodesCommandInput | DescribeResizeCommandInput | DescribeScheduledActionsCommandInput | DescribeSnapshotCopyGrantsCommandInput | DescribeSnapshotSchedulesCommandInput | DescribeStorageCommandInput | DescribeTableRestoreStatusCommandInput | DescribeTagsCommandInput | DescribeUsageLimitsCommandInput | DisableLoggingCommandInput | DisableSnapshotCopyCommandInput | DisassociateDataShareConsumerCommandInput | EnableLoggingCommandInput | EnableSnapshotCopyCommandInput | FailoverPrimaryComputeCommandInput | GetClusterCredentialsCommandInput | GetClusterCredentialsWithIAMCommandInput | GetReservedNodeExchangeConfigurationOptionsCommandInput | GetReservedNodeExchangeOfferingsCommandInput | GetResourcePolicyCommandInput | ListRecommendationsCommandInput | ModifyAquaConfigurationCommandInput | ModifyAuthenticationProfileCommandInput | ModifyClusterCommandInput | ModifyClusterDbRevisionCommandInput | ModifyClusterIamRolesCommandInput | ModifyClusterMaintenanceCommandInput | ModifyClusterParameterGroupCommandInput | ModifyClusterSnapshotCommandInput | ModifyClusterSnapshotScheduleCommandInput | ModifyClusterSubnetGroupCommandInput | ModifyCustomDomainAssociationCommandInput | ModifyEndpointAccessCommandInput | ModifyEventSubscriptionCommandInput | ModifyIntegrationCommandInput | ModifyRedshiftIdcApplicationCommandInput | ModifyScheduledActionCommandInput | ModifySnapshotCopyRetentionPeriodCommandInput | ModifySnapshotScheduleCommandInput | ModifyUsageLimitCommandInput | PauseClusterCommandInput | PurchaseReservedNodeOfferingCommandInput | PutResourcePolicyCommandInput | RebootClusterCommandInput | RegisterNamespaceCommandInput | RejectDataShareCommandInput | ResetClusterParameterGroupCommandInput | ResizeClusterCommandInput | RestoreFromClusterSnapshotCommandInput | RestoreTableFromClusterSnapshotCommandInput | ResumeClusterCommandInput | RevokeClusterSecurityGroupIngressCommandInput | RevokeEndpointAccessCommandInput | RevokeSnapshotAccessCommandInput | RotateEncryptionKeyCommandInput | UpdatePartnerStatusCommandInput;
|
|
154
156
|
/**
|
|
155
157
|
* @public
|
|
156
158
|
*/
|
|
157
|
-
export type ServiceOutputTypes = AcceptReservedNodeExchangeCommandOutput | AddPartnerCommandOutput | AssociateDataShareConsumerCommandOutput | AuthorizeClusterSecurityGroupIngressCommandOutput | AuthorizeDataShareCommandOutput | AuthorizeEndpointAccessCommandOutput | AuthorizeSnapshotAccessCommandOutput | BatchDeleteClusterSnapshotsCommandOutput | BatchModifyClusterSnapshotsCommandOutput | CancelResizeCommandOutput | CopyClusterSnapshotCommandOutput | CreateAuthenticationProfileCommandOutput | CreateClusterCommandOutput | CreateClusterParameterGroupCommandOutput | CreateClusterSecurityGroupCommandOutput | CreateClusterSnapshotCommandOutput | CreateClusterSubnetGroupCommandOutput | CreateCustomDomainAssociationCommandOutput | CreateEndpointAccessCommandOutput | CreateEventSubscriptionCommandOutput | CreateHsmClientCertificateCommandOutput | CreateHsmConfigurationCommandOutput | CreateIntegrationCommandOutput | CreateRedshiftIdcApplicationCommandOutput | CreateScheduledActionCommandOutput | CreateSnapshotCopyGrantCommandOutput | CreateSnapshotScheduleCommandOutput | CreateTagsCommandOutput | CreateUsageLimitCommandOutput | DeauthorizeDataShareCommandOutput | DeleteAuthenticationProfileCommandOutput | DeleteClusterCommandOutput | DeleteClusterParameterGroupCommandOutput | DeleteClusterSecurityGroupCommandOutput | DeleteClusterSnapshotCommandOutput | DeleteClusterSubnetGroupCommandOutput | DeleteCustomDomainAssociationCommandOutput | DeleteEndpointAccessCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteHsmClientCertificateCommandOutput | DeleteHsmConfigurationCommandOutput | DeleteIntegrationCommandOutput | DeletePartnerCommandOutput | DeleteRedshiftIdcApplicationCommandOutput | DeleteResourcePolicyCommandOutput | DeleteScheduledActionCommandOutput | DeleteSnapshotCopyGrantCommandOutput | DeleteSnapshotScheduleCommandOutput | DeleteTagsCommandOutput | DeleteUsageLimitCommandOutput | DescribeAccountAttributesCommandOutput | DescribeAuthenticationProfilesCommandOutput | DescribeClusterDbRevisionsCommandOutput | DescribeClusterParameterGroupsCommandOutput | DescribeClusterParametersCommandOutput | DescribeClusterSecurityGroupsCommandOutput | DescribeClusterSnapshotsCommandOutput | DescribeClusterSubnetGroupsCommandOutput | DescribeClusterTracksCommandOutput | DescribeClusterVersionsCommandOutput | DescribeClustersCommandOutput | DescribeCustomDomainAssociationsCommandOutput | DescribeDataSharesCommandOutput | DescribeDataSharesForConsumerCommandOutput | DescribeDataSharesForProducerCommandOutput | DescribeDefaultClusterParametersCommandOutput | DescribeEndpointAccessCommandOutput | DescribeEndpointAuthorizationCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeHsmClientCertificatesCommandOutput | DescribeHsmConfigurationsCommandOutput | DescribeInboundIntegrationsCommandOutput | DescribeIntegrationsCommandOutput | DescribeLoggingStatusCommandOutput | DescribeNodeConfigurationOptionsCommandOutput | DescribeOrderableClusterOptionsCommandOutput | DescribePartnersCommandOutput | DescribeRedshiftIdcApplicationsCommandOutput | DescribeReservedNodeExchangeStatusCommandOutput | DescribeReservedNodeOfferingsCommandOutput | DescribeReservedNodesCommandOutput | DescribeResizeCommandOutput | DescribeScheduledActionsCommandOutput | DescribeSnapshotCopyGrantsCommandOutput | DescribeSnapshotSchedulesCommandOutput | DescribeStorageCommandOutput | DescribeTableRestoreStatusCommandOutput | DescribeTagsCommandOutput | DescribeUsageLimitsCommandOutput | DisableLoggingCommandOutput | DisableSnapshotCopyCommandOutput | DisassociateDataShareConsumerCommandOutput | EnableLoggingCommandOutput | EnableSnapshotCopyCommandOutput | FailoverPrimaryComputeCommandOutput | GetClusterCredentialsCommandOutput | GetClusterCredentialsWithIAMCommandOutput | GetReservedNodeExchangeConfigurationOptionsCommandOutput | GetReservedNodeExchangeOfferingsCommandOutput | GetResourcePolicyCommandOutput | ListRecommendationsCommandOutput | ModifyAquaConfigurationCommandOutput | ModifyAuthenticationProfileCommandOutput | ModifyClusterCommandOutput | ModifyClusterDbRevisionCommandOutput | ModifyClusterIamRolesCommandOutput | ModifyClusterMaintenanceCommandOutput | ModifyClusterParameterGroupCommandOutput | ModifyClusterSnapshotCommandOutput | ModifyClusterSnapshotScheduleCommandOutput | ModifyClusterSubnetGroupCommandOutput | ModifyCustomDomainAssociationCommandOutput | ModifyEndpointAccessCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyIntegrationCommandOutput | ModifyRedshiftIdcApplicationCommandOutput | ModifyScheduledActionCommandOutput | ModifySnapshotCopyRetentionPeriodCommandOutput | ModifySnapshotScheduleCommandOutput | ModifyUsageLimitCommandOutput | PauseClusterCommandOutput | PurchaseReservedNodeOfferingCommandOutput | PutResourcePolicyCommandOutput | RebootClusterCommandOutput | RejectDataShareCommandOutput | ResetClusterParameterGroupCommandOutput | ResizeClusterCommandOutput | RestoreFromClusterSnapshotCommandOutput | RestoreTableFromClusterSnapshotCommandOutput | ResumeClusterCommandOutput | RevokeClusterSecurityGroupIngressCommandOutput | RevokeEndpointAccessCommandOutput | RevokeSnapshotAccessCommandOutput | RotateEncryptionKeyCommandOutput | UpdatePartnerStatusCommandOutput;
|
|
159
|
+
export type ServiceOutputTypes = AcceptReservedNodeExchangeCommandOutput | AddPartnerCommandOutput | AssociateDataShareConsumerCommandOutput | AuthorizeClusterSecurityGroupIngressCommandOutput | AuthorizeDataShareCommandOutput | AuthorizeEndpointAccessCommandOutput | AuthorizeSnapshotAccessCommandOutput | BatchDeleteClusterSnapshotsCommandOutput | BatchModifyClusterSnapshotsCommandOutput | CancelResizeCommandOutput | CopyClusterSnapshotCommandOutput | CreateAuthenticationProfileCommandOutput | CreateClusterCommandOutput | CreateClusterParameterGroupCommandOutput | CreateClusterSecurityGroupCommandOutput | CreateClusterSnapshotCommandOutput | CreateClusterSubnetGroupCommandOutput | CreateCustomDomainAssociationCommandOutput | CreateEndpointAccessCommandOutput | CreateEventSubscriptionCommandOutput | CreateHsmClientCertificateCommandOutput | CreateHsmConfigurationCommandOutput | CreateIntegrationCommandOutput | CreateRedshiftIdcApplicationCommandOutput | CreateScheduledActionCommandOutput | CreateSnapshotCopyGrantCommandOutput | CreateSnapshotScheduleCommandOutput | CreateTagsCommandOutput | CreateUsageLimitCommandOutput | DeauthorizeDataShareCommandOutput | DeleteAuthenticationProfileCommandOutput | DeleteClusterCommandOutput | DeleteClusterParameterGroupCommandOutput | DeleteClusterSecurityGroupCommandOutput | DeleteClusterSnapshotCommandOutput | DeleteClusterSubnetGroupCommandOutput | DeleteCustomDomainAssociationCommandOutput | DeleteEndpointAccessCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteHsmClientCertificateCommandOutput | DeleteHsmConfigurationCommandOutput | DeleteIntegrationCommandOutput | DeletePartnerCommandOutput | DeleteRedshiftIdcApplicationCommandOutput | DeleteResourcePolicyCommandOutput | DeleteScheduledActionCommandOutput | DeleteSnapshotCopyGrantCommandOutput | DeleteSnapshotScheduleCommandOutput | DeleteTagsCommandOutput | DeleteUsageLimitCommandOutput | DeregisterNamespaceCommandOutput | DescribeAccountAttributesCommandOutput | DescribeAuthenticationProfilesCommandOutput | DescribeClusterDbRevisionsCommandOutput | DescribeClusterParameterGroupsCommandOutput | DescribeClusterParametersCommandOutput | DescribeClusterSecurityGroupsCommandOutput | DescribeClusterSnapshotsCommandOutput | DescribeClusterSubnetGroupsCommandOutput | DescribeClusterTracksCommandOutput | DescribeClusterVersionsCommandOutput | DescribeClustersCommandOutput | DescribeCustomDomainAssociationsCommandOutput | DescribeDataSharesCommandOutput | DescribeDataSharesForConsumerCommandOutput | DescribeDataSharesForProducerCommandOutput | DescribeDefaultClusterParametersCommandOutput | DescribeEndpointAccessCommandOutput | DescribeEndpointAuthorizationCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeHsmClientCertificatesCommandOutput | DescribeHsmConfigurationsCommandOutput | DescribeInboundIntegrationsCommandOutput | DescribeIntegrationsCommandOutput | DescribeLoggingStatusCommandOutput | DescribeNodeConfigurationOptionsCommandOutput | DescribeOrderableClusterOptionsCommandOutput | DescribePartnersCommandOutput | DescribeRedshiftIdcApplicationsCommandOutput | DescribeReservedNodeExchangeStatusCommandOutput | DescribeReservedNodeOfferingsCommandOutput | DescribeReservedNodesCommandOutput | DescribeResizeCommandOutput | DescribeScheduledActionsCommandOutput | DescribeSnapshotCopyGrantsCommandOutput | DescribeSnapshotSchedulesCommandOutput | DescribeStorageCommandOutput | DescribeTableRestoreStatusCommandOutput | DescribeTagsCommandOutput | DescribeUsageLimitsCommandOutput | DisableLoggingCommandOutput | DisableSnapshotCopyCommandOutput | DisassociateDataShareConsumerCommandOutput | EnableLoggingCommandOutput | EnableSnapshotCopyCommandOutput | FailoverPrimaryComputeCommandOutput | GetClusterCredentialsCommandOutput | GetClusterCredentialsWithIAMCommandOutput | GetReservedNodeExchangeConfigurationOptionsCommandOutput | GetReservedNodeExchangeOfferingsCommandOutput | GetResourcePolicyCommandOutput | ListRecommendationsCommandOutput | ModifyAquaConfigurationCommandOutput | ModifyAuthenticationProfileCommandOutput | ModifyClusterCommandOutput | ModifyClusterDbRevisionCommandOutput | ModifyClusterIamRolesCommandOutput | ModifyClusterMaintenanceCommandOutput | ModifyClusterParameterGroupCommandOutput | ModifyClusterSnapshotCommandOutput | ModifyClusterSnapshotScheduleCommandOutput | ModifyClusterSubnetGroupCommandOutput | ModifyCustomDomainAssociationCommandOutput | ModifyEndpointAccessCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyIntegrationCommandOutput | ModifyRedshiftIdcApplicationCommandOutput | ModifyScheduledActionCommandOutput | ModifySnapshotCopyRetentionPeriodCommandOutput | ModifySnapshotScheduleCommandOutput | ModifyUsageLimitCommandOutput | PauseClusterCommandOutput | PurchaseReservedNodeOfferingCommandOutput | PutResourcePolicyCommandOutput | RebootClusterCommandOutput | RegisterNamespaceCommandOutput | RejectDataShareCommandOutput | ResetClusterParameterGroupCommandOutput | ResizeClusterCommandOutput | RestoreFromClusterSnapshotCommandOutput | RestoreTableFromClusterSnapshotCommandOutput | ResumeClusterCommandOutput | RevokeClusterSecurityGroupIngressCommandOutput | RevokeEndpointAccessCommandOutput | RevokeSnapshotAccessCommandOutput | RotateEncryptionKeyCommandOutput | UpdatePartnerStatusCommandOutput;
|
|
158
160
|
/**
|
|
159
161
|
* @public
|
|
160
162
|
*/
|