@aws-sdk/client-docdb 3.325.0 → 3.327.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AddSourceIdentifierToSubscriptionCommand.d.ts +21 -0
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +4 -0
- package/dist-types/commands/ApplyPendingMaintenanceActionCommand.d.ts +18 -0
- package/dist-types/commands/CopyDBClusterParameterGroupCommand.d.ts +11 -0
- package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +26 -0
- package/dist-types/commands/CreateDBClusterCommand.d.ts +62 -0
- package/dist-types/commands/CreateDBClusterParameterGroupCommand.d.ts +11 -0
- package/dist-types/commands/CreateDBClusterSnapshotCommand.d.ts +26 -0
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +89 -0
- package/dist-types/commands/CreateDBSubnetGroupCommand.d.ts +21 -0
- package/dist-types/commands/CreateEventSubscriptionCommand.d.ts +21 -0
- package/dist-types/commands/CreateGlobalClusterCommand.d.ts +25 -0
- package/dist-types/commands/DeleteDBClusterCommand.d.ts +62 -0
- package/dist-types/commands/DeleteDBClusterParameterGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDBClusterSnapshotCommand.d.ts +26 -0
- package/dist-types/commands/DeleteDBInstanceCommand.d.ts +89 -0
- package/dist-types/commands/DeleteDBSubnetGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteEventSubscriptionCommand.d.ts +21 -0
- package/dist-types/commands/DeleteGlobalClusterCommand.d.ts +25 -0
- package/dist-types/commands/DescribeCertificatesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDBClusterParameterGroupsCommand.d.ts +14 -0
- package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +20 -0
- package/dist-types/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +29 -0
- package/dist-types/commands/DescribeDBClustersCommand.d.ts +65 -0
- package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +28 -0
- package/dist-types/commands/DescribeDBInstancesCommand.d.ts +92 -0
- package/dist-types/commands/DescribeDBSubnetGroupsCommand.d.ts +24 -0
- package/dist-types/commands/DescribeEngineDefaultClusterParametersCommand.d.ts +23 -0
- package/dist-types/commands/DescribeEventCategoriesCommand.d.ts +13 -0
- package/dist-types/commands/DescribeEventSubscriptionsCommand.d.ts +24 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +18 -0
- package/dist-types/commands/DescribeGlobalClustersCommand.d.ts +28 -0
- package/dist-types/commands/DescribeOrderableDBInstanceOptionsCommand.d.ts +20 -0
- package/dist-types/commands/DescribePendingMaintenanceActionsCommand.d.ts +21 -0
- package/dist-types/commands/FailoverDBClusterCommand.d.ts +62 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/ModifyDBClusterCommand.d.ts +62 -0
- package/dist-types/commands/ModifyDBClusterParameterGroupCommand.d.ts +6 -0
- package/dist-types/commands/ModifyDBClusterSnapshotAttributeCommand.d.ts +16 -0
- package/dist-types/commands/ModifyDBInstanceCommand.d.ts +89 -0
- package/dist-types/commands/ModifyDBSubnetGroupCommand.d.ts +21 -0
- package/dist-types/commands/ModifyEventSubscriptionCommand.d.ts +21 -0
- package/dist-types/commands/ModifyGlobalClusterCommand.d.ts +25 -0
- package/dist-types/commands/RebootDBInstanceCommand.d.ts +89 -0
- package/dist-types/commands/RemoveFromGlobalClusterCommand.d.ts +25 -0
- package/dist-types/commands/RemoveSourceIdentifierFromSubscriptionCommand.d.ts +21 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +4 -0
- package/dist-types/commands/ResetDBClusterParameterGroupCommand.d.ts +6 -0
- package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +62 -0
- package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +62 -0
- package/dist-types/commands/StartDBClusterCommand.d.ts +62 -0
- package/dist-types/commands/StopDBClusterCommand.d.ts +62 -0
- package/package.json +8 -8
|
@@ -36,6 +36,29 @@ export interface ModifyGlobalClusterCommandOutput extends ModifyGlobalClusterRes
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ModifyGlobalClusterCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ModifyGlobalClusterResult
|
|
40
|
+
* // GlobalCluster: { // GlobalCluster
|
|
41
|
+
* // GlobalClusterIdentifier: "STRING_VALUE",
|
|
42
|
+
* // GlobalClusterResourceId: "STRING_VALUE",
|
|
43
|
+
* // GlobalClusterArn: "STRING_VALUE",
|
|
44
|
+
* // Status: "STRING_VALUE",
|
|
45
|
+
* // Engine: "STRING_VALUE",
|
|
46
|
+
* // EngineVersion: "STRING_VALUE",
|
|
47
|
+
* // DatabaseName: "STRING_VALUE",
|
|
48
|
+
* // StorageEncrypted: true || false,
|
|
49
|
+
* // DeletionProtection: true || false,
|
|
50
|
+
* // GlobalClusterMembers: [ // GlobalClusterMemberList
|
|
51
|
+
* // { // GlobalClusterMember
|
|
52
|
+
* // DBClusterArn: "STRING_VALUE",
|
|
53
|
+
* // Readers: [ // ReadersArnList
|
|
54
|
+
* // "STRING_VALUE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // IsWriter: true || false,
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // },
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
39
62
|
* ```
|
|
40
63
|
*
|
|
41
64
|
* @param ModifyGlobalClusterCommandInput - {@link ModifyGlobalClusterCommandInput}
|
|
@@ -50,6 +73,8 @@ export interface ModifyGlobalClusterCommandOutput extends ModifyGlobalClusterRes
|
|
|
50
73
|
* @throws {@link InvalidGlobalClusterStateFault} (client fault)
|
|
51
74
|
* <p>The requested operation can't be performed while the cluster is in this state.</p>
|
|
52
75
|
*
|
|
76
|
+
* @throws {@link DocDBServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from DocDB service.</p>
|
|
53
78
|
*
|
|
54
79
|
*/
|
|
55
80
|
export declare class ModifyGlobalClusterCommand extends $Command<ModifyGlobalClusterCommandInput, ModifyGlobalClusterCommandOutput, DocDBClientResolvedConfig> {
|
|
@@ -38,6 +38,93 @@ export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, _
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new RebootDBInstanceCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // RebootDBInstanceResult
|
|
42
|
+
* // DBInstance: { // DBInstance
|
|
43
|
+
* // DBInstanceIdentifier: "STRING_VALUE",
|
|
44
|
+
* // DBInstanceClass: "STRING_VALUE",
|
|
45
|
+
* // Engine: "STRING_VALUE",
|
|
46
|
+
* // DBInstanceStatus: "STRING_VALUE",
|
|
47
|
+
* // Endpoint: { // Endpoint
|
|
48
|
+
* // Address: "STRING_VALUE",
|
|
49
|
+
* // Port: Number("int"),
|
|
50
|
+
* // HostedZoneId: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // InstanceCreateTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // PreferredBackupWindow: "STRING_VALUE",
|
|
54
|
+
* // BackupRetentionPeriod: Number("int"),
|
|
55
|
+
* // VpcSecurityGroups: [ // VpcSecurityGroupMembershipList
|
|
56
|
+
* // { // VpcSecurityGroupMembership
|
|
57
|
+
* // VpcSecurityGroupId: "STRING_VALUE",
|
|
58
|
+
* // Status: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
62
|
+
* // DBSubnetGroup: { // DBSubnetGroup
|
|
63
|
+
* // DBSubnetGroupName: "STRING_VALUE",
|
|
64
|
+
* // DBSubnetGroupDescription: "STRING_VALUE",
|
|
65
|
+
* // VpcId: "STRING_VALUE",
|
|
66
|
+
* // SubnetGroupStatus: "STRING_VALUE",
|
|
67
|
+
* // Subnets: [ // SubnetList
|
|
68
|
+
* // { // Subnet
|
|
69
|
+
* // SubnetIdentifier: "STRING_VALUE",
|
|
70
|
+
* // SubnetAvailabilityZone: { // AvailabilityZone
|
|
71
|
+
* // Name: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // SubnetStatus: "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // ],
|
|
76
|
+
* // DBSubnetGroupArn: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // PreferredMaintenanceWindow: "STRING_VALUE",
|
|
79
|
+
* // PendingModifiedValues: { // PendingModifiedValues
|
|
80
|
+
* // DBInstanceClass: "STRING_VALUE",
|
|
81
|
+
* // AllocatedStorage: Number("int"),
|
|
82
|
+
* // MasterUserPassword: "STRING_VALUE",
|
|
83
|
+
* // Port: Number("int"),
|
|
84
|
+
* // BackupRetentionPeriod: Number("int"),
|
|
85
|
+
* // MultiAZ: true || false,
|
|
86
|
+
* // EngineVersion: "STRING_VALUE",
|
|
87
|
+
* // LicenseModel: "STRING_VALUE",
|
|
88
|
+
* // Iops: Number("int"),
|
|
89
|
+
* // DBInstanceIdentifier: "STRING_VALUE",
|
|
90
|
+
* // StorageType: "STRING_VALUE",
|
|
91
|
+
* // CACertificateIdentifier: "STRING_VALUE",
|
|
92
|
+
* // DBSubnetGroupName: "STRING_VALUE",
|
|
93
|
+
* // PendingCloudwatchLogsExports: { // PendingCloudwatchLogsExports
|
|
94
|
+
* // LogTypesToEnable: [ // LogTypeList
|
|
95
|
+
* // "STRING_VALUE",
|
|
96
|
+
* // ],
|
|
97
|
+
* // LogTypesToDisable: [
|
|
98
|
+
* // "STRING_VALUE",
|
|
99
|
+
* // ],
|
|
100
|
+
* // },
|
|
101
|
+
* // },
|
|
102
|
+
* // LatestRestorableTime: new Date("TIMESTAMP"),
|
|
103
|
+
* // EngineVersion: "STRING_VALUE",
|
|
104
|
+
* // AutoMinorVersionUpgrade: true || false,
|
|
105
|
+
* // PubliclyAccessible: true || false,
|
|
106
|
+
* // StatusInfos: [ // DBInstanceStatusInfoList
|
|
107
|
+
* // { // DBInstanceStatusInfo
|
|
108
|
+
* // StatusType: "STRING_VALUE",
|
|
109
|
+
* // Normal: true || false,
|
|
110
|
+
* // Status: "STRING_VALUE",
|
|
111
|
+
* // Message: "STRING_VALUE",
|
|
112
|
+
* // },
|
|
113
|
+
* // ],
|
|
114
|
+
* // DBClusterIdentifier: "STRING_VALUE",
|
|
115
|
+
* // StorageEncrypted: true || false,
|
|
116
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
117
|
+
* // DbiResourceId: "STRING_VALUE",
|
|
118
|
+
* // CACertificateIdentifier: "STRING_VALUE",
|
|
119
|
+
* // CopyTagsToSnapshot: true || false,
|
|
120
|
+
* // PromotionTier: Number("int"),
|
|
121
|
+
* // DBInstanceArn: "STRING_VALUE",
|
|
122
|
+
* // EnabledCloudwatchLogsExports: [
|
|
123
|
+
* // "STRING_VALUE",
|
|
124
|
+
* // ],
|
|
125
|
+
* // },
|
|
126
|
+
* // };
|
|
127
|
+
*
|
|
41
128
|
* ```
|
|
42
129
|
*
|
|
43
130
|
* @param RebootDBInstanceCommandInput - {@link RebootDBInstanceCommandInput}
|
|
@@ -54,6 +141,8 @@ export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, _
|
|
|
54
141
|
* <p> The specified instance isn't in the <i>available</i> state.
|
|
55
142
|
* </p>
|
|
56
143
|
*
|
|
144
|
+
* @throws {@link DocDBServiceException}
|
|
145
|
+
* <p>Base exception class for all service exceptions from DocDB service.</p>
|
|
57
146
|
*
|
|
58
147
|
*/
|
|
59
148
|
export declare class RebootDBInstanceCommand extends $Command<RebootDBInstanceCommandInput, RebootDBInstanceCommandOutput, DocDBClientResolvedConfig> {
|
|
@@ -35,6 +35,29 @@ export interface RemoveFromGlobalClusterCommandOutput extends RemoveFromGlobalCl
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new RemoveFromGlobalClusterCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // RemoveFromGlobalClusterResult
|
|
39
|
+
* // GlobalCluster: { // GlobalCluster
|
|
40
|
+
* // GlobalClusterIdentifier: "STRING_VALUE",
|
|
41
|
+
* // GlobalClusterResourceId: "STRING_VALUE",
|
|
42
|
+
* // GlobalClusterArn: "STRING_VALUE",
|
|
43
|
+
* // Status: "STRING_VALUE",
|
|
44
|
+
* // Engine: "STRING_VALUE",
|
|
45
|
+
* // EngineVersion: "STRING_VALUE",
|
|
46
|
+
* // DatabaseName: "STRING_VALUE",
|
|
47
|
+
* // StorageEncrypted: true || false,
|
|
48
|
+
* // DeletionProtection: true || false,
|
|
49
|
+
* // GlobalClusterMembers: [ // GlobalClusterMemberList
|
|
50
|
+
* // { // GlobalClusterMember
|
|
51
|
+
* // DBClusterArn: "STRING_VALUE",
|
|
52
|
+
* // Readers: [ // ReadersArnList
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // IsWriter: true || false,
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
38
61
|
* ```
|
|
39
62
|
*
|
|
40
63
|
* @param RemoveFromGlobalClusterCommandInput - {@link RemoveFromGlobalClusterCommandInput}
|
|
@@ -53,6 +76,8 @@ export interface RemoveFromGlobalClusterCommandOutput extends RemoveFromGlobalCl
|
|
|
53
76
|
* @throws {@link InvalidGlobalClusterStateFault} (client fault)
|
|
54
77
|
* <p>The requested operation can't be performed while the cluster is in this state.</p>
|
|
55
78
|
*
|
|
79
|
+
* @throws {@link DocDBServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from DocDB service.</p>
|
|
56
81
|
*
|
|
57
82
|
*/
|
|
58
83
|
export declare class RemoveFromGlobalClusterCommand extends $Command<RemoveFromGlobalClusterCommandInput, RemoveFromGlobalClusterCommandOutput, DocDBClientResolvedConfig> {
|
|
@@ -33,6 +33,25 @@ export interface RemoveSourceIdentifierFromSubscriptionCommandOutput extends Rem
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new RemoveSourceIdentifierFromSubscriptionCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // RemoveSourceIdentifierFromSubscriptionResult
|
|
37
|
+
* // EventSubscription: { // EventSubscription
|
|
38
|
+
* // CustomerAwsId: "STRING_VALUE",
|
|
39
|
+
* // CustSubscriptionId: "STRING_VALUE",
|
|
40
|
+
* // SnsTopicArn: "STRING_VALUE",
|
|
41
|
+
* // Status: "STRING_VALUE",
|
|
42
|
+
* // SubscriptionCreationTime: "STRING_VALUE",
|
|
43
|
+
* // SourceType: "STRING_VALUE",
|
|
44
|
+
* // SourceIdsList: [ // SourceIdsList
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // EventCategoriesList: [ // EventCategoriesList
|
|
48
|
+
* // "STRING_VALUE",
|
|
49
|
+
* // ],
|
|
50
|
+
* // Enabled: true || false,
|
|
51
|
+
* // EventSubscriptionArn: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
36
55
|
* ```
|
|
37
56
|
*
|
|
38
57
|
* @param RemoveSourceIdentifierFromSubscriptionCommandInput - {@link RemoveSourceIdentifierFromSubscriptionCommandInput}
|
|
@@ -47,6 +66,8 @@ export interface RemoveSourceIdentifierFromSubscriptionCommandOutput extends Rem
|
|
|
47
66
|
* @throws {@link SubscriptionNotFoundFault} (client fault)
|
|
48
67
|
* <p>The subscription name does not exist. </p>
|
|
49
68
|
*
|
|
69
|
+
* @throws {@link DocDBServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from DocDB service.</p>
|
|
50
71
|
*
|
|
51
72
|
*/
|
|
52
73
|
export declare class RemoveSourceIdentifierFromSubscriptionCommand extends $Command<RemoveSourceIdentifierFromSubscriptionCommandInput, RemoveSourceIdentifierFromSubscriptionCommandOutput, DocDBClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface RemoveTagsFromResourceCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new RemoveTagsFromResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param RemoveTagsFromResourceCommandInput - {@link RemoveTagsFromResourceCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface RemoveTagsFromResourceCommandOutput extends __MetadataBearer {
|
|
|
54
56
|
* <p>
|
|
55
57
|
* <code>DBSnapshotIdentifier</code> doesn't refer to an existing snapshot. </p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link DocDBServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from DocDB service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class RemoveTagsFromResourceCommand extends $Command<RemoveTagsFromResourceCommandInput, RemoveTagsFromResourceCommandOutput, DocDBClientResolvedConfig> {
|
|
@@ -53,6 +53,10 @@ export interface ResetDBClusterParameterGroupCommandOutput extends DBClusterPara
|
|
|
53
53
|
* };
|
|
54
54
|
* const command = new ResetDBClusterParameterGroupCommand(input);
|
|
55
55
|
* const response = await client.send(command);
|
|
56
|
+
* // { // DBClusterParameterGroupNameMessage
|
|
57
|
+
* // DBClusterParameterGroupName: "STRING_VALUE",
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
56
60
|
* ```
|
|
57
61
|
*
|
|
58
62
|
* @param ResetDBClusterParameterGroupCommandInput - {@link ResetDBClusterParameterGroupCommandInput}
|
|
@@ -68,6 +72,8 @@ export interface ResetDBClusterParameterGroupCommandOutput extends DBClusterPara
|
|
|
68
72
|
* @throws {@link InvalidDBParameterGroupStateFault} (client fault)
|
|
69
73
|
* <p>The parameter group is in use, or it is in a state that is not valid. If you are trying to delete the parameter group, you can't delete it when the parameter group is in this state.</p>
|
|
70
74
|
*
|
|
75
|
+
* @throws {@link DocDBServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from DocDB service.</p>
|
|
71
77
|
*
|
|
72
78
|
*/
|
|
73
79
|
export declare class ResetDBClusterParameterGroupCommand extends $Command<ResetDBClusterParameterGroupCommandInput, ResetDBClusterParameterGroupCommandOutput, DocDBClientResolvedConfig> {
|
|
@@ -56,6 +56,66 @@ export interface RestoreDBClusterFromSnapshotCommandOutput extends RestoreDBClus
|
|
|
56
56
|
* };
|
|
57
57
|
* const command = new RestoreDBClusterFromSnapshotCommand(input);
|
|
58
58
|
* const response = await client.send(command);
|
|
59
|
+
* // { // RestoreDBClusterFromSnapshotResult
|
|
60
|
+
* // DBCluster: { // DBCluster
|
|
61
|
+
* // AvailabilityZones: [ // AvailabilityZones
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // BackupRetentionPeriod: Number("int"),
|
|
65
|
+
* // DBClusterIdentifier: "STRING_VALUE",
|
|
66
|
+
* // DBClusterParameterGroup: "STRING_VALUE",
|
|
67
|
+
* // DBSubnetGroup: "STRING_VALUE",
|
|
68
|
+
* // Status: "STRING_VALUE",
|
|
69
|
+
* // PercentProgress: "STRING_VALUE",
|
|
70
|
+
* // EarliestRestorableTime: new Date("TIMESTAMP"),
|
|
71
|
+
* // Endpoint: "STRING_VALUE",
|
|
72
|
+
* // ReaderEndpoint: "STRING_VALUE",
|
|
73
|
+
* // MultiAZ: true || false,
|
|
74
|
+
* // Engine: "STRING_VALUE",
|
|
75
|
+
* // EngineVersion: "STRING_VALUE",
|
|
76
|
+
* // LatestRestorableTime: new Date("TIMESTAMP"),
|
|
77
|
+
* // Port: Number("int"),
|
|
78
|
+
* // MasterUsername: "STRING_VALUE",
|
|
79
|
+
* // PreferredBackupWindow: "STRING_VALUE",
|
|
80
|
+
* // PreferredMaintenanceWindow: "STRING_VALUE",
|
|
81
|
+
* // ReplicationSourceIdentifier: "STRING_VALUE",
|
|
82
|
+
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
|
|
83
|
+
* // "STRING_VALUE",
|
|
84
|
+
* // ],
|
|
85
|
+
* // DBClusterMembers: [ // DBClusterMemberList
|
|
86
|
+
* // { // DBClusterMember
|
|
87
|
+
* // DBInstanceIdentifier: "STRING_VALUE",
|
|
88
|
+
* // IsClusterWriter: true || false,
|
|
89
|
+
* // DBClusterParameterGroupStatus: "STRING_VALUE",
|
|
90
|
+
* // PromotionTier: Number("int"),
|
|
91
|
+
* // },
|
|
92
|
+
* // ],
|
|
93
|
+
* // VpcSecurityGroups: [ // VpcSecurityGroupMembershipList
|
|
94
|
+
* // { // VpcSecurityGroupMembership
|
|
95
|
+
* // VpcSecurityGroupId: "STRING_VALUE",
|
|
96
|
+
* // Status: "STRING_VALUE",
|
|
97
|
+
* // },
|
|
98
|
+
* // ],
|
|
99
|
+
* // HostedZoneId: "STRING_VALUE",
|
|
100
|
+
* // StorageEncrypted: true || false,
|
|
101
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
102
|
+
* // DbClusterResourceId: "STRING_VALUE",
|
|
103
|
+
* // DBClusterArn: "STRING_VALUE",
|
|
104
|
+
* // AssociatedRoles: [ // DBClusterRoles
|
|
105
|
+
* // { // DBClusterRole
|
|
106
|
+
* // RoleArn: "STRING_VALUE",
|
|
107
|
+
* // Status: "STRING_VALUE",
|
|
108
|
+
* // },
|
|
109
|
+
* // ],
|
|
110
|
+
* // CloneGroupId: "STRING_VALUE",
|
|
111
|
+
* // ClusterCreateTime: new Date("TIMESTAMP"),
|
|
112
|
+
* // EnabledCloudwatchLogsExports: [ // LogTypeList
|
|
113
|
+
* // "STRING_VALUE",
|
|
114
|
+
* // ],
|
|
115
|
+
* // DeletionProtection: true || false,
|
|
116
|
+
* // },
|
|
117
|
+
* // };
|
|
118
|
+
*
|
|
59
119
|
* ```
|
|
60
120
|
*
|
|
61
121
|
* @param RestoreDBClusterFromSnapshotCommandInput - {@link RestoreDBClusterFromSnapshotCommandInput}
|
|
@@ -113,6 +173,8 @@ export interface RestoreDBClusterFromSnapshotCommandOutput extends RestoreDBClus
|
|
|
113
173
|
* <p>The request would cause you to exceed the allowed amount of storage available across
|
|
114
174
|
* all instances.</p>
|
|
115
175
|
*
|
|
176
|
+
* @throws {@link DocDBServiceException}
|
|
177
|
+
* <p>Base exception class for all service exceptions from DocDB service.</p>
|
|
116
178
|
*
|
|
117
179
|
*/
|
|
118
180
|
export declare class RestoreDBClusterFromSnapshotCommand extends $Command<RestoreDBClusterFromSnapshotCommandInput, RestoreDBClusterFromSnapshotCommandOutput, DocDBClientResolvedConfig> {
|
|
@@ -55,6 +55,66 @@ export interface RestoreDBClusterToPointInTimeCommandOutput extends RestoreDBClu
|
|
|
55
55
|
* };
|
|
56
56
|
* const command = new RestoreDBClusterToPointInTimeCommand(input);
|
|
57
57
|
* const response = await client.send(command);
|
|
58
|
+
* // { // RestoreDBClusterToPointInTimeResult
|
|
59
|
+
* // DBCluster: { // DBCluster
|
|
60
|
+
* // AvailabilityZones: [ // AvailabilityZones
|
|
61
|
+
* // "STRING_VALUE",
|
|
62
|
+
* // ],
|
|
63
|
+
* // BackupRetentionPeriod: Number("int"),
|
|
64
|
+
* // DBClusterIdentifier: "STRING_VALUE",
|
|
65
|
+
* // DBClusterParameterGroup: "STRING_VALUE",
|
|
66
|
+
* // DBSubnetGroup: "STRING_VALUE",
|
|
67
|
+
* // Status: "STRING_VALUE",
|
|
68
|
+
* // PercentProgress: "STRING_VALUE",
|
|
69
|
+
* // EarliestRestorableTime: new Date("TIMESTAMP"),
|
|
70
|
+
* // Endpoint: "STRING_VALUE",
|
|
71
|
+
* // ReaderEndpoint: "STRING_VALUE",
|
|
72
|
+
* // MultiAZ: true || false,
|
|
73
|
+
* // Engine: "STRING_VALUE",
|
|
74
|
+
* // EngineVersion: "STRING_VALUE",
|
|
75
|
+
* // LatestRestorableTime: new Date("TIMESTAMP"),
|
|
76
|
+
* // Port: Number("int"),
|
|
77
|
+
* // MasterUsername: "STRING_VALUE",
|
|
78
|
+
* // PreferredBackupWindow: "STRING_VALUE",
|
|
79
|
+
* // PreferredMaintenanceWindow: "STRING_VALUE",
|
|
80
|
+
* // ReplicationSourceIdentifier: "STRING_VALUE",
|
|
81
|
+
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
|
|
82
|
+
* // "STRING_VALUE",
|
|
83
|
+
* // ],
|
|
84
|
+
* // DBClusterMembers: [ // DBClusterMemberList
|
|
85
|
+
* // { // DBClusterMember
|
|
86
|
+
* // DBInstanceIdentifier: "STRING_VALUE",
|
|
87
|
+
* // IsClusterWriter: true || false,
|
|
88
|
+
* // DBClusterParameterGroupStatus: "STRING_VALUE",
|
|
89
|
+
* // PromotionTier: Number("int"),
|
|
90
|
+
* // },
|
|
91
|
+
* // ],
|
|
92
|
+
* // VpcSecurityGroups: [ // VpcSecurityGroupMembershipList
|
|
93
|
+
* // { // VpcSecurityGroupMembership
|
|
94
|
+
* // VpcSecurityGroupId: "STRING_VALUE",
|
|
95
|
+
* // Status: "STRING_VALUE",
|
|
96
|
+
* // },
|
|
97
|
+
* // ],
|
|
98
|
+
* // HostedZoneId: "STRING_VALUE",
|
|
99
|
+
* // StorageEncrypted: true || false,
|
|
100
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
101
|
+
* // DbClusterResourceId: "STRING_VALUE",
|
|
102
|
+
* // DBClusterArn: "STRING_VALUE",
|
|
103
|
+
* // AssociatedRoles: [ // DBClusterRoles
|
|
104
|
+
* // { // DBClusterRole
|
|
105
|
+
* // RoleArn: "STRING_VALUE",
|
|
106
|
+
* // Status: "STRING_VALUE",
|
|
107
|
+
* // },
|
|
108
|
+
* // ],
|
|
109
|
+
* // CloneGroupId: "STRING_VALUE",
|
|
110
|
+
* // ClusterCreateTime: new Date("TIMESTAMP"),
|
|
111
|
+
* // EnabledCloudwatchLogsExports: [ // LogTypeList
|
|
112
|
+
* // "STRING_VALUE",
|
|
113
|
+
* // ],
|
|
114
|
+
* // DeletionProtection: true || false,
|
|
115
|
+
* // },
|
|
116
|
+
* // };
|
|
117
|
+
*
|
|
58
118
|
* ```
|
|
59
119
|
*
|
|
60
120
|
* @param RestoreDBClusterToPointInTimeCommandInput - {@link RestoreDBClusterToPointInTimeCommandInput}
|
|
@@ -115,6 +175,8 @@ export interface RestoreDBClusterToPointInTimeCommandOutput extends RestoreDBClu
|
|
|
115
175
|
* <p>The request would cause you to exceed the allowed amount of storage available across
|
|
116
176
|
* all instances.</p>
|
|
117
177
|
*
|
|
178
|
+
* @throws {@link DocDBServiceException}
|
|
179
|
+
* <p>Base exception class for all service exceptions from DocDB service.</p>
|
|
118
180
|
*
|
|
119
181
|
*/
|
|
120
182
|
export declare class RestoreDBClusterToPointInTimeCommand extends $Command<RestoreDBClusterToPointInTimeCommandInput, RestoreDBClusterToPointInTimeCommandOutput, DocDBClientResolvedConfig> {
|
|
@@ -33,6 +33,66 @@ export interface StartDBClusterCommandOutput extends StartDBClusterResult, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new StartDBClusterCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // StartDBClusterResult
|
|
37
|
+
* // DBCluster: { // DBCluster
|
|
38
|
+
* // AvailabilityZones: [ // AvailabilityZones
|
|
39
|
+
* // "STRING_VALUE",
|
|
40
|
+
* // ],
|
|
41
|
+
* // BackupRetentionPeriod: Number("int"),
|
|
42
|
+
* // DBClusterIdentifier: "STRING_VALUE",
|
|
43
|
+
* // DBClusterParameterGroup: "STRING_VALUE",
|
|
44
|
+
* // DBSubnetGroup: "STRING_VALUE",
|
|
45
|
+
* // Status: "STRING_VALUE",
|
|
46
|
+
* // PercentProgress: "STRING_VALUE",
|
|
47
|
+
* // EarliestRestorableTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // Endpoint: "STRING_VALUE",
|
|
49
|
+
* // ReaderEndpoint: "STRING_VALUE",
|
|
50
|
+
* // MultiAZ: true || false,
|
|
51
|
+
* // Engine: "STRING_VALUE",
|
|
52
|
+
* // EngineVersion: "STRING_VALUE",
|
|
53
|
+
* // LatestRestorableTime: new Date("TIMESTAMP"),
|
|
54
|
+
* // Port: Number("int"),
|
|
55
|
+
* // MasterUsername: "STRING_VALUE",
|
|
56
|
+
* // PreferredBackupWindow: "STRING_VALUE",
|
|
57
|
+
* // PreferredMaintenanceWindow: "STRING_VALUE",
|
|
58
|
+
* // ReplicationSourceIdentifier: "STRING_VALUE",
|
|
59
|
+
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
|
|
60
|
+
* // "STRING_VALUE",
|
|
61
|
+
* // ],
|
|
62
|
+
* // DBClusterMembers: [ // DBClusterMemberList
|
|
63
|
+
* // { // DBClusterMember
|
|
64
|
+
* // DBInstanceIdentifier: "STRING_VALUE",
|
|
65
|
+
* // IsClusterWriter: true || false,
|
|
66
|
+
* // DBClusterParameterGroupStatus: "STRING_VALUE",
|
|
67
|
+
* // PromotionTier: Number("int"),
|
|
68
|
+
* // },
|
|
69
|
+
* // ],
|
|
70
|
+
* // VpcSecurityGroups: [ // VpcSecurityGroupMembershipList
|
|
71
|
+
* // { // VpcSecurityGroupMembership
|
|
72
|
+
* // VpcSecurityGroupId: "STRING_VALUE",
|
|
73
|
+
* // Status: "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // ],
|
|
76
|
+
* // HostedZoneId: "STRING_VALUE",
|
|
77
|
+
* // StorageEncrypted: true || false,
|
|
78
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
79
|
+
* // DbClusterResourceId: "STRING_VALUE",
|
|
80
|
+
* // DBClusterArn: "STRING_VALUE",
|
|
81
|
+
* // AssociatedRoles: [ // DBClusterRoles
|
|
82
|
+
* // { // DBClusterRole
|
|
83
|
+
* // RoleArn: "STRING_VALUE",
|
|
84
|
+
* // Status: "STRING_VALUE",
|
|
85
|
+
* // },
|
|
86
|
+
* // ],
|
|
87
|
+
* // CloneGroupId: "STRING_VALUE",
|
|
88
|
+
* // ClusterCreateTime: new Date("TIMESTAMP"),
|
|
89
|
+
* // EnabledCloudwatchLogsExports: [ // LogTypeList
|
|
90
|
+
* // "STRING_VALUE",
|
|
91
|
+
* // ],
|
|
92
|
+
* // DeletionProtection: true || false,
|
|
93
|
+
* // },
|
|
94
|
+
* // };
|
|
95
|
+
*
|
|
36
96
|
* ```
|
|
37
97
|
*
|
|
38
98
|
* @param StartDBClusterCommandInput - {@link StartDBClusterCommandInput}
|
|
@@ -52,6 +112,8 @@ export interface StartDBClusterCommandOutput extends StartDBClusterResult, __Met
|
|
|
52
112
|
* <p> The specified instance isn't in the <i>available</i> state.
|
|
53
113
|
* </p>
|
|
54
114
|
*
|
|
115
|
+
* @throws {@link DocDBServiceException}
|
|
116
|
+
* <p>Base exception class for all service exceptions from DocDB service.</p>
|
|
55
117
|
*
|
|
56
118
|
*/
|
|
57
119
|
export declare class StartDBClusterCommand extends $Command<StartDBClusterCommandInput, StartDBClusterCommandOutput, DocDBClientResolvedConfig> {
|
|
@@ -34,6 +34,66 @@ export interface StopDBClusterCommandOutput extends StopDBClusterResult, __Metad
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new StopDBClusterCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // StopDBClusterResult
|
|
38
|
+
* // DBCluster: { // DBCluster
|
|
39
|
+
* // AvailabilityZones: [ // AvailabilityZones
|
|
40
|
+
* // "STRING_VALUE",
|
|
41
|
+
* // ],
|
|
42
|
+
* // BackupRetentionPeriod: Number("int"),
|
|
43
|
+
* // DBClusterIdentifier: "STRING_VALUE",
|
|
44
|
+
* // DBClusterParameterGroup: "STRING_VALUE",
|
|
45
|
+
* // DBSubnetGroup: "STRING_VALUE",
|
|
46
|
+
* // Status: "STRING_VALUE",
|
|
47
|
+
* // PercentProgress: "STRING_VALUE",
|
|
48
|
+
* // EarliestRestorableTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // Endpoint: "STRING_VALUE",
|
|
50
|
+
* // ReaderEndpoint: "STRING_VALUE",
|
|
51
|
+
* // MultiAZ: true || false,
|
|
52
|
+
* // Engine: "STRING_VALUE",
|
|
53
|
+
* // EngineVersion: "STRING_VALUE",
|
|
54
|
+
* // LatestRestorableTime: new Date("TIMESTAMP"),
|
|
55
|
+
* // Port: Number("int"),
|
|
56
|
+
* // MasterUsername: "STRING_VALUE",
|
|
57
|
+
* // PreferredBackupWindow: "STRING_VALUE",
|
|
58
|
+
* // PreferredMaintenanceWindow: "STRING_VALUE",
|
|
59
|
+
* // ReplicationSourceIdentifier: "STRING_VALUE",
|
|
60
|
+
* // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
|
|
61
|
+
* // "STRING_VALUE",
|
|
62
|
+
* // ],
|
|
63
|
+
* // DBClusterMembers: [ // DBClusterMemberList
|
|
64
|
+
* // { // DBClusterMember
|
|
65
|
+
* // DBInstanceIdentifier: "STRING_VALUE",
|
|
66
|
+
* // IsClusterWriter: true || false,
|
|
67
|
+
* // DBClusterParameterGroupStatus: "STRING_VALUE",
|
|
68
|
+
* // PromotionTier: Number("int"),
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // VpcSecurityGroups: [ // VpcSecurityGroupMembershipList
|
|
72
|
+
* // { // VpcSecurityGroupMembership
|
|
73
|
+
* // VpcSecurityGroupId: "STRING_VALUE",
|
|
74
|
+
* // Status: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // HostedZoneId: "STRING_VALUE",
|
|
78
|
+
* // StorageEncrypted: true || false,
|
|
79
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
80
|
+
* // DbClusterResourceId: "STRING_VALUE",
|
|
81
|
+
* // DBClusterArn: "STRING_VALUE",
|
|
82
|
+
* // AssociatedRoles: [ // DBClusterRoles
|
|
83
|
+
* // { // DBClusterRole
|
|
84
|
+
* // RoleArn: "STRING_VALUE",
|
|
85
|
+
* // Status: "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // ],
|
|
88
|
+
* // CloneGroupId: "STRING_VALUE",
|
|
89
|
+
* // ClusterCreateTime: new Date("TIMESTAMP"),
|
|
90
|
+
* // EnabledCloudwatchLogsExports: [ // LogTypeList
|
|
91
|
+
* // "STRING_VALUE",
|
|
92
|
+
* // ],
|
|
93
|
+
* // DeletionProtection: true || false,
|
|
94
|
+
* // },
|
|
95
|
+
* // };
|
|
96
|
+
*
|
|
37
97
|
* ```
|
|
38
98
|
*
|
|
39
99
|
* @param StopDBClusterCommandInput - {@link StopDBClusterCommandInput}
|
|
@@ -53,6 +113,8 @@ export interface StopDBClusterCommandOutput extends StopDBClusterResult, __Metad
|
|
|
53
113
|
* <p> The specified instance isn't in the <i>available</i> state.
|
|
54
114
|
* </p>
|
|
55
115
|
*
|
|
116
|
+
* @throws {@link DocDBServiceException}
|
|
117
|
+
* <p>Base exception class for all service exceptions from DocDB service.</p>
|
|
56
118
|
*
|
|
57
119
|
*/
|
|
58
120
|
export declare class StopDBClusterCommand extends $Command<StopDBClusterCommandInput, StopDBClusterCommandOutput, DocDBClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-docdb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Docdb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.327.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-sdk-rds": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
|
+
"@aws-sdk/middleware-sdk-rds": "3.326.0",
|
|
37
37
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
39
39
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
40
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
41
41
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
42
42
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
43
43
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
52
|
-
"@aws-sdk/util-endpoints": "3.
|
|
53
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
53
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
56
56
|
"@aws-sdk/util-utf8": "3.310.0",
|