@aws-sdk/client-backup 3.713.0 → 3.714.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 +24 -0
- package/dist-cjs/index.js +206 -4
- package/dist-cjs/runtimeConfig.js +8 -6
- package/dist-es/Backup.js +6 -0
- package/dist-es/commands/GetRecoveryPointIndexDetailsCommand.js +22 -0
- package/dist-es/commands/ListIndexedRecoveryPointsCommand.js +22 -0
- package/dist-es/commands/UpdateRecoveryPointIndexSettingsCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +10 -0
- package/dist-es/pagination/ListIndexedRecoveryPointsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +135 -4
- package/dist-es/runtimeConfig.js +8 -6
- package/dist-types/Backup.d.ts +22 -0
- package/dist-types/BackupClient.d.ts +23 -2
- package/dist-types/commands/CreateBackupPlanCommand.d.ts +7 -0
- package/dist-types/commands/DescribeRecoveryPointCommand.d.ts +2 -0
- package/dist-types/commands/GetBackupPlanCommand.d.ts +7 -0
- package/dist-types/commands/GetBackupPlanFromJSONCommand.d.ts +7 -0
- package/dist-types/commands/GetBackupPlanFromTemplateCommand.d.ts +7 -0
- package/dist-types/commands/GetRecoveryPointIndexDetailsCommand.d.ts +94 -0
- package/dist-types/commands/ListIndexedRecoveryPointsCommand.d.ts +104 -0
- package/dist-types/commands/ListRecoveryPointsByBackupVaultCommand.d.ts +2 -0
- package/dist-types/commands/ListRecoveryPointsByResourceCommand.d.ts +2 -0
- package/dist-types/commands/StartBackupJobCommand.d.ts +1 -0
- package/dist-types/commands/UpdateBackupPlanCommand.d.ts +7 -0
- package/dist-types/commands/UpdateRecoveryPointIndexSettingsCommand.d.ts +95 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +475 -0
- package/dist-types/pagination/ListIndexedRecoveryPointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/Backup.d.ts +52 -0
- package/dist-types/ts3.4/BackupClient.d.ts +19 -0
- package/dist-types/ts3.4/commands/GetRecoveryPointIndexDetailsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListIndexedRecoveryPointsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateRecoveryPointIndexSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +75 -0
- package/dist-types/ts3.4/pagination/ListIndexedRecoveryPointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +14 -14
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient";
|
|
4
|
+
import { GetRecoveryPointIndexDetailsInput, GetRecoveryPointIndexDetailsOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetRecoveryPointIndexDetailsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetRecoveryPointIndexDetailsCommandInput extends GetRecoveryPointIndexDetailsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetRecoveryPointIndexDetailsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetRecoveryPointIndexDetailsCommandOutput extends GetRecoveryPointIndexDetailsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetRecoveryPointIndexDetailsCommand_base: {
|
|
25
|
+
new (input: GetRecoveryPointIndexDetailsCommandInput): import("@smithy/smithy-client").CommandImpl<GetRecoveryPointIndexDetailsCommandInput, GetRecoveryPointIndexDetailsCommandOutput, BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetRecoveryPointIndexDetailsCommandInput): import("@smithy/smithy-client").CommandImpl<GetRecoveryPointIndexDetailsCommandInput, GetRecoveryPointIndexDetailsCommandOutput, BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>This operation returns the metadata and details specific to
|
|
31
|
+
* the backup index associated with the specified recovery point.</p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { BackupClient, GetRecoveryPointIndexDetailsCommand } from "@aws-sdk/client-backup"; // ES Modules import
|
|
36
|
+
* // const { BackupClient, GetRecoveryPointIndexDetailsCommand } = require("@aws-sdk/client-backup"); // CommonJS import
|
|
37
|
+
* const client = new BackupClient(config);
|
|
38
|
+
* const input = { // GetRecoveryPointIndexDetailsInput
|
|
39
|
+
* BackupVaultName: "STRING_VALUE", // required
|
|
40
|
+
* RecoveryPointArn: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new GetRecoveryPointIndexDetailsCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // GetRecoveryPointIndexDetailsOutput
|
|
45
|
+
* // RecoveryPointArn: "STRING_VALUE",
|
|
46
|
+
* // BackupVaultArn: "STRING_VALUE",
|
|
47
|
+
* // SourceResourceArn: "STRING_VALUE",
|
|
48
|
+
* // IndexCreationDate: new Date("TIMESTAMP"),
|
|
49
|
+
* // IndexDeletionDate: new Date("TIMESTAMP"),
|
|
50
|
+
* // IndexCompletionDate: new Date("TIMESTAMP"),
|
|
51
|
+
* // IndexStatus: "PENDING" || "ACTIVE" || "FAILED" || "DELETING",
|
|
52
|
+
* // IndexStatusMessage: "STRING_VALUE",
|
|
53
|
+
* // TotalItemsIndexed: Number("long"),
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
56
|
+
* ```
|
|
57
|
+
*
|
|
58
|
+
* @param GetRecoveryPointIndexDetailsCommandInput - {@link GetRecoveryPointIndexDetailsCommandInput}
|
|
59
|
+
* @returns {@link GetRecoveryPointIndexDetailsCommandOutput}
|
|
60
|
+
* @see {@link GetRecoveryPointIndexDetailsCommandInput} for command's `input` shape.
|
|
61
|
+
* @see {@link GetRecoveryPointIndexDetailsCommandOutput} for command's `response` shape.
|
|
62
|
+
* @see {@link BackupClientResolvedConfig | config} for BackupClient's `config` shape.
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
65
|
+
* <p>Indicates that something is wrong with a parameter's value. For example, the value is
|
|
66
|
+
* out of range.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link MissingParameterValueException} (client fault)
|
|
69
|
+
* <p>Indicates that a required parameter is missing.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
72
|
+
* <p>A resource that is required for the action doesn't exist.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
75
|
+
* <p>The request failed due to a temporary failure of the server.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link BackupServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Backup service.</p>
|
|
79
|
+
*
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export declare class GetRecoveryPointIndexDetailsCommand extends GetRecoveryPointIndexDetailsCommand_base {
|
|
83
|
+
/** @internal type navigation helper, not in runtime. */
|
|
84
|
+
protected static __types: {
|
|
85
|
+
api: {
|
|
86
|
+
input: GetRecoveryPointIndexDetailsInput;
|
|
87
|
+
output: GetRecoveryPointIndexDetailsOutput;
|
|
88
|
+
};
|
|
89
|
+
sdk: {
|
|
90
|
+
input: GetRecoveryPointIndexDetailsCommandInput;
|
|
91
|
+
output: GetRecoveryPointIndexDetailsCommandOutput;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient";
|
|
4
|
+
import { ListIndexedRecoveryPointsInput, ListIndexedRecoveryPointsOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListIndexedRecoveryPointsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListIndexedRecoveryPointsCommandInput extends ListIndexedRecoveryPointsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListIndexedRecoveryPointsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListIndexedRecoveryPointsCommandOutput extends ListIndexedRecoveryPointsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListIndexedRecoveryPointsCommand_base: {
|
|
25
|
+
new (input: ListIndexedRecoveryPointsCommandInput): import("@smithy/smithy-client").CommandImpl<ListIndexedRecoveryPointsCommandInput, ListIndexedRecoveryPointsCommandOutput, BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListIndexedRecoveryPointsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListIndexedRecoveryPointsCommandInput, ListIndexedRecoveryPointsCommandOutput, BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>This operation returns a list of recovery points that have an
|
|
31
|
+
* associated index, belonging to the specified account.</p>
|
|
32
|
+
* <p>Optional parameters you can include are: MaxResults;
|
|
33
|
+
* NextToken; SourceResourceArns; CreatedBefore; CreatedAfter;
|
|
34
|
+
* and ResourceType.</p>
|
|
35
|
+
* @example
|
|
36
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
37
|
+
* ```javascript
|
|
38
|
+
* import { BackupClient, ListIndexedRecoveryPointsCommand } from "@aws-sdk/client-backup"; // ES Modules import
|
|
39
|
+
* // const { BackupClient, ListIndexedRecoveryPointsCommand } = require("@aws-sdk/client-backup"); // CommonJS import
|
|
40
|
+
* const client = new BackupClient(config);
|
|
41
|
+
* const input = { // ListIndexedRecoveryPointsInput
|
|
42
|
+
* NextToken: "STRING_VALUE",
|
|
43
|
+
* MaxResults: Number("int"),
|
|
44
|
+
* SourceResourceArn: "STRING_VALUE",
|
|
45
|
+
* CreatedBefore: new Date("TIMESTAMP"),
|
|
46
|
+
* CreatedAfter: new Date("TIMESTAMP"),
|
|
47
|
+
* ResourceType: "STRING_VALUE",
|
|
48
|
+
* IndexStatus: "PENDING" || "ACTIVE" || "FAILED" || "DELETING",
|
|
49
|
+
* };
|
|
50
|
+
* const command = new ListIndexedRecoveryPointsCommand(input);
|
|
51
|
+
* const response = await client.send(command);
|
|
52
|
+
* // { // ListIndexedRecoveryPointsOutput
|
|
53
|
+
* // IndexedRecoveryPoints: [ // IndexedRecoveryPointList
|
|
54
|
+
* // { // IndexedRecoveryPoint
|
|
55
|
+
* // RecoveryPointArn: "STRING_VALUE",
|
|
56
|
+
* // SourceResourceArn: "STRING_VALUE",
|
|
57
|
+
* // IamRoleArn: "STRING_VALUE",
|
|
58
|
+
* // BackupCreationDate: new Date("TIMESTAMP"),
|
|
59
|
+
* // ResourceType: "STRING_VALUE",
|
|
60
|
+
* // IndexCreationDate: new Date("TIMESTAMP"),
|
|
61
|
+
* // IndexStatus: "PENDING" || "ACTIVE" || "FAILED" || "DELETING",
|
|
62
|
+
* // IndexStatusMessage: "STRING_VALUE",
|
|
63
|
+
* // BackupVaultArn: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // NextToken: "STRING_VALUE",
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
69
|
+
* ```
|
|
70
|
+
*
|
|
71
|
+
* @param ListIndexedRecoveryPointsCommandInput - {@link ListIndexedRecoveryPointsCommandInput}
|
|
72
|
+
* @returns {@link ListIndexedRecoveryPointsCommandOutput}
|
|
73
|
+
* @see {@link ListIndexedRecoveryPointsCommandInput} for command's `input` shape.
|
|
74
|
+
* @see {@link ListIndexedRecoveryPointsCommandOutput} for command's `response` shape.
|
|
75
|
+
* @see {@link BackupClientResolvedConfig | config} for BackupClient's `config` shape.
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
78
|
+
* <p>Indicates that something is wrong with a parameter's value. For example, the value is
|
|
79
|
+
* out of range.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
82
|
+
* <p>A resource that is required for the action doesn't exist.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
85
|
+
* <p>The request failed due to a temporary failure of the server.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link BackupServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from Backup service.</p>
|
|
89
|
+
*
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare class ListIndexedRecoveryPointsCommand extends ListIndexedRecoveryPointsCommand_base {
|
|
93
|
+
/** @internal type navigation helper, not in runtime. */
|
|
94
|
+
protected static __types: {
|
|
95
|
+
api: {
|
|
96
|
+
input: ListIndexedRecoveryPointsInput;
|
|
97
|
+
output: ListIndexedRecoveryPointsOutput;
|
|
98
|
+
};
|
|
99
|
+
sdk: {
|
|
100
|
+
input: ListIndexedRecoveryPointsCommandInput;
|
|
101
|
+
output: ListIndexedRecoveryPointsCommandOutput;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
}
|
|
@@ -87,6 +87,8 @@ declare const ListRecoveryPointsByBackupVaultCommand_base: {
|
|
|
87
87
|
* // IsParent: true || false,
|
|
88
88
|
* // ResourceName: "STRING_VALUE",
|
|
89
89
|
* // VaultType: "BACKUP_VAULT" || "LOGICALLY_AIR_GAPPED_BACKUP_VAULT",
|
|
90
|
+
* // IndexStatus: "PENDING" || "ACTIVE" || "FAILED" || "DELETING",
|
|
91
|
+
* // IndexStatusMessage: "STRING_VALUE",
|
|
90
92
|
* // },
|
|
91
93
|
* // ],
|
|
92
94
|
* // };
|
|
@@ -62,6 +62,8 @@ declare const ListRecoveryPointsByResourceCommand_base: {
|
|
|
62
62
|
* // ParentRecoveryPointArn: "STRING_VALUE",
|
|
63
63
|
* // ResourceName: "STRING_VALUE",
|
|
64
64
|
* // VaultType: "BACKUP_VAULT" || "LOGICALLY_AIR_GAPPED_BACKUP_VAULT",
|
|
65
|
+
* // IndexStatus: "PENDING" || "ACTIVE" || "FAILED" || "DELETING",
|
|
66
|
+
* // IndexStatusMessage: "STRING_VALUE",
|
|
65
67
|
* // },
|
|
66
68
|
* // ],
|
|
67
69
|
* // };
|
|
@@ -52,6 +52,7 @@ declare const StartBackupJobCommand_base: {
|
|
|
52
52
|
* BackupOptions: { // BackupOptions
|
|
53
53
|
* "<keys>": "STRING_VALUE",
|
|
54
54
|
* },
|
|
55
|
+
* Index: "ENABLED" || "DISABLED",
|
|
55
56
|
* };
|
|
56
57
|
* const command = new StartBackupJobCommand(input);
|
|
57
58
|
* const response = await client.send(command);
|
|
@@ -65,6 +65,13 @@ declare const UpdateBackupPlanCommand_base: {
|
|
|
65
65
|
* ],
|
|
66
66
|
* EnableContinuousBackup: true || false,
|
|
67
67
|
* ScheduleExpressionTimezone: "STRING_VALUE",
|
|
68
|
+
* IndexActions: [ // IndexActions
|
|
69
|
+
* { // IndexAction
|
|
70
|
+
* ResourceTypes: [ // ResourceTypes
|
|
71
|
+
* "STRING_VALUE",
|
|
72
|
+
* ],
|
|
73
|
+
* },
|
|
74
|
+
* ],
|
|
68
75
|
* },
|
|
69
76
|
* ],
|
|
70
77
|
* AdvancedBackupSettings: [ // AdvancedBackupSettings
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient";
|
|
4
|
+
import { UpdateRecoveryPointIndexSettingsInput, UpdateRecoveryPointIndexSettingsOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateRecoveryPointIndexSettingsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateRecoveryPointIndexSettingsCommandInput extends UpdateRecoveryPointIndexSettingsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateRecoveryPointIndexSettingsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateRecoveryPointIndexSettingsCommandOutput extends UpdateRecoveryPointIndexSettingsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateRecoveryPointIndexSettingsCommand_base: {
|
|
25
|
+
new (input: UpdateRecoveryPointIndexSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRecoveryPointIndexSettingsCommandInput, UpdateRecoveryPointIndexSettingsCommandOutput, BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: UpdateRecoveryPointIndexSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRecoveryPointIndexSettingsCommandInput, UpdateRecoveryPointIndexSettingsCommandOutput, BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>This operation updates the settings of a recovery point index.</p>
|
|
31
|
+
* <p>Required: BackupVaultName, RecoveryPointArn, and IAMRoleArn</p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { BackupClient, UpdateRecoveryPointIndexSettingsCommand } from "@aws-sdk/client-backup"; // ES Modules import
|
|
36
|
+
* // const { BackupClient, UpdateRecoveryPointIndexSettingsCommand } = require("@aws-sdk/client-backup"); // CommonJS import
|
|
37
|
+
* const client = new BackupClient(config);
|
|
38
|
+
* const input = { // UpdateRecoveryPointIndexSettingsInput
|
|
39
|
+
* BackupVaultName: "STRING_VALUE", // required
|
|
40
|
+
* RecoveryPointArn: "STRING_VALUE", // required
|
|
41
|
+
* IamRoleArn: "STRING_VALUE",
|
|
42
|
+
* Index: "ENABLED" || "DISABLED", // required
|
|
43
|
+
* };
|
|
44
|
+
* const command = new UpdateRecoveryPointIndexSettingsCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // UpdateRecoveryPointIndexSettingsOutput
|
|
47
|
+
* // BackupVaultName: "STRING_VALUE",
|
|
48
|
+
* // RecoveryPointArn: "STRING_VALUE",
|
|
49
|
+
* // IndexStatus: "PENDING" || "ACTIVE" || "FAILED" || "DELETING",
|
|
50
|
+
* // Index: "ENABLED" || "DISABLED",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* @param UpdateRecoveryPointIndexSettingsCommandInput - {@link UpdateRecoveryPointIndexSettingsCommandInput}
|
|
56
|
+
* @returns {@link UpdateRecoveryPointIndexSettingsCommandOutput}
|
|
57
|
+
* @see {@link UpdateRecoveryPointIndexSettingsCommandInput} for command's `input` shape.
|
|
58
|
+
* @see {@link UpdateRecoveryPointIndexSettingsCommandOutput} for command's `response` shape.
|
|
59
|
+
* @see {@link BackupClientResolvedConfig | config} for BackupClient's `config` shape.
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
62
|
+
* <p>Indicates that something is wrong with a parameter's value. For example, the value is
|
|
63
|
+
* out of range.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
66
|
+
* <p>Indicates that something is wrong with the input to the request. For example, a
|
|
67
|
+
* parameter is of the wrong type.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link MissingParameterValueException} (client fault)
|
|
70
|
+
* <p>Indicates that a required parameter is missing.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
73
|
+
* <p>A resource that is required for the action doesn't exist.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
76
|
+
* <p>The request failed due to a temporary failure of the server.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link BackupServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Backup service.</p>
|
|
80
|
+
*
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class UpdateRecoveryPointIndexSettingsCommand extends UpdateRecoveryPointIndexSettingsCommand_base {
|
|
84
|
+
/** @internal type navigation helper, not in runtime. */
|
|
85
|
+
protected static __types: {
|
|
86
|
+
api: {
|
|
87
|
+
input: UpdateRecoveryPointIndexSettingsInput;
|
|
88
|
+
output: UpdateRecoveryPointIndexSettingsOutput;
|
|
89
|
+
};
|
|
90
|
+
sdk: {
|
|
91
|
+
input: UpdateRecoveryPointIndexSettingsCommandInput;
|
|
92
|
+
output: UpdateRecoveryPointIndexSettingsCommandOutput;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
}
|
|
@@ -40,6 +40,7 @@ export * from "./GetBackupSelectionCommand";
|
|
|
40
40
|
export * from "./GetBackupVaultAccessPolicyCommand";
|
|
41
41
|
export * from "./GetBackupVaultNotificationsCommand";
|
|
42
42
|
export * from "./GetLegalHoldCommand";
|
|
43
|
+
export * from "./GetRecoveryPointIndexDetailsCommand";
|
|
43
44
|
export * from "./GetRecoveryPointRestoreMetadataCommand";
|
|
44
45
|
export * from "./GetRestoreJobMetadataCommand";
|
|
45
46
|
export * from "./GetRestoreTestingInferredMetadataCommand";
|
|
@@ -56,6 +57,7 @@ export * from "./ListBackupVaultsCommand";
|
|
|
56
57
|
export * from "./ListCopyJobSummariesCommand";
|
|
57
58
|
export * from "./ListCopyJobsCommand";
|
|
58
59
|
export * from "./ListFrameworksCommand";
|
|
60
|
+
export * from "./ListIndexedRecoveryPointsCommand";
|
|
59
61
|
export * from "./ListLegalHoldsCommand";
|
|
60
62
|
export * from "./ListProtectedResourcesByBackupVaultCommand";
|
|
61
63
|
export * from "./ListProtectedResourcesCommand";
|
|
@@ -84,6 +86,7 @@ export * from "./UntagResourceCommand";
|
|
|
84
86
|
export * from "./UpdateBackupPlanCommand";
|
|
85
87
|
export * from "./UpdateFrameworkCommand";
|
|
86
88
|
export * from "./UpdateGlobalSettingsCommand";
|
|
89
|
+
export * from "./UpdateRecoveryPointIndexSettingsCommand";
|
|
87
90
|
export * from "./UpdateRecoveryPointLifecycleCommand";
|
|
88
91
|
export * from "./UpdateRegionSettingsCommand";
|
|
89
92
|
export * from "./UpdateReportPlanCommand";
|