@aws-sdk/client-backup 3.1104.0 → 3.1106.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 +42 -0
- package/dist-cjs/index.js +190 -1
- package/dist-es/Backup.js +18 -0
- package/dist-es/commands/CreateBackupAccessPointCommand.js +4 -0
- package/dist-es/commands/DeleteBackupAccessPointCommand.js +4 -0
- package/dist-es/commands/DescribeBackupAccessPointCommand.js +4 -0
- package/dist-es/commands/ListBackupAccessPointsByRecoveryPointCommand.js +4 -0
- package/dist-es/commands/ListBackupAccessPointsByResourceCommand.js +4 -0
- package/dist-es/commands/ListBackupAccessPointsCommand.js +4 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/enums.js +15 -0
- package/dist-es/pagination/ListBackupAccessPointsByRecoveryPointPaginator.js +4 -0
- package/dist-es/pagination/ListBackupAccessPointsByResourcePaginator.js +4 -0
- package/dist-es/pagination/ListBackupAccessPointsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +113 -0
- package/dist-types/Backup.d.ts +64 -0
- package/dist-types/BackupClient.d.ts +8 -2
- package/dist-types/commands/CreateBackupAccessPointCommand.d.ts +112 -0
- package/dist-types/commands/DeleteBackupAccessPointCommand.d.ts +89 -0
- package/dist-types/commands/DescribeBackupAccessPointCommand.d.ts +103 -0
- package/dist-types/commands/GetBackupVaultNotificationsCommand.d.ts +1 -1
- package/dist-types/commands/ListBackupAccessPointsByRecoveryPointCommand.d.ts +99 -0
- package/dist-types/commands/ListBackupAccessPointsByResourceCommand.d.ts +98 -0
- package/dist-types/commands/ListBackupAccessPointsCommand.d.ts +96 -0
- package/dist-types/commands/ListProtectedResourcesCommand.d.ts +4 -3
- package/dist-types/commands/PutBackupVaultNotificationsCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/enums.d.ts +23 -0
- package/dist-types/models/models_0.d.ts +335 -3
- package/dist-types/pagination/ListBackupAccessPointsByRecoveryPointPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBackupAccessPointsByResourcePaginator.d.ts +7 -0
- package/dist-types/pagination/ListBackupAccessPointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +18 -0
- package/dist-types/ts3.4/Backup.d.ts +124 -0
- package/dist-types/ts3.4/BackupClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateBackupAccessPointCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteBackupAccessPointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeBackupAccessPointCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListBackupAccessPointsByRecoveryPointCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListBackupAccessPointsByResourceCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListBackupAccessPointsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/enums.d.ts +16 -0
- package/dist-types/ts3.4/models/models_0.d.ts +70 -0
- package/dist-types/ts3.4/pagination/ListBackupAccessPointsByRecoveryPointPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBackupAccessPointsByResourcePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBackupAccessPointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -0
- package/package.json +1 -1
|
@@ -41,6 +41,10 @@ import {
|
|
|
41
41
|
CancelLegalHoldCommandInput,
|
|
42
42
|
CancelLegalHoldCommandOutput,
|
|
43
43
|
} from "./commands/CancelLegalHoldCommand";
|
|
44
|
+
import {
|
|
45
|
+
CreateBackupAccessPointCommandInput,
|
|
46
|
+
CreateBackupAccessPointCommandOutput,
|
|
47
|
+
} from "./commands/CreateBackupAccessPointCommand";
|
|
44
48
|
import {
|
|
45
49
|
CreateBackupPlanCommandInput,
|
|
46
50
|
CreateBackupPlanCommandOutput,
|
|
@@ -85,6 +89,10 @@ import {
|
|
|
85
89
|
CreateTieringConfigurationCommandInput,
|
|
86
90
|
CreateTieringConfigurationCommandOutput,
|
|
87
91
|
} from "./commands/CreateTieringConfigurationCommand";
|
|
92
|
+
import {
|
|
93
|
+
DeleteBackupAccessPointCommandInput,
|
|
94
|
+
DeleteBackupAccessPointCommandOutput,
|
|
95
|
+
} from "./commands/DeleteBackupAccessPointCommand";
|
|
88
96
|
import {
|
|
89
97
|
DeleteBackupPlanCommandInput,
|
|
90
98
|
DeleteBackupPlanCommandOutput,
|
|
@@ -133,6 +141,10 @@ import {
|
|
|
133
141
|
DeleteTieringConfigurationCommandInput,
|
|
134
142
|
DeleteTieringConfigurationCommandOutput,
|
|
135
143
|
} from "./commands/DeleteTieringConfigurationCommand";
|
|
144
|
+
import {
|
|
145
|
+
DescribeBackupAccessPointCommandInput,
|
|
146
|
+
DescribeBackupAccessPointCommandOutput,
|
|
147
|
+
} from "./commands/DescribeBackupAccessPointCommand";
|
|
136
148
|
import {
|
|
137
149
|
DescribeBackupJobCommandInput,
|
|
138
150
|
DescribeBackupJobCommandOutput,
|
|
@@ -261,6 +273,18 @@ import {
|
|
|
261
273
|
GetTieringConfigurationCommandInput,
|
|
262
274
|
GetTieringConfigurationCommandOutput,
|
|
263
275
|
} from "./commands/GetTieringConfigurationCommand";
|
|
276
|
+
import {
|
|
277
|
+
ListBackupAccessPointsByRecoveryPointCommandInput,
|
|
278
|
+
ListBackupAccessPointsByRecoveryPointCommandOutput,
|
|
279
|
+
} from "./commands/ListBackupAccessPointsByRecoveryPointCommand";
|
|
280
|
+
import {
|
|
281
|
+
ListBackupAccessPointsByResourceCommandInput,
|
|
282
|
+
ListBackupAccessPointsByResourceCommandOutput,
|
|
283
|
+
} from "./commands/ListBackupAccessPointsByResourceCommand";
|
|
284
|
+
import {
|
|
285
|
+
ListBackupAccessPointsCommandInput,
|
|
286
|
+
ListBackupAccessPointsCommandOutput,
|
|
287
|
+
} from "./commands/ListBackupAccessPointsCommand";
|
|
264
288
|
import {
|
|
265
289
|
ListBackupJobsCommandInput,
|
|
266
290
|
ListBackupJobsCommandOutput,
|
|
@@ -473,6 +497,7 @@ export { __Client };
|
|
|
473
497
|
export type ServiceInputTypes =
|
|
474
498
|
| AssociateBackupVaultMpaApprovalTeamCommandInput
|
|
475
499
|
| CancelLegalHoldCommandInput
|
|
500
|
+
| CreateBackupAccessPointCommandInput
|
|
476
501
|
| CreateBackupPlanCommandInput
|
|
477
502
|
| CreateBackupSelectionCommandInput
|
|
478
503
|
| CreateBackupVaultCommandInput
|
|
@@ -484,6 +509,7 @@ export type ServiceInputTypes =
|
|
|
484
509
|
| CreateRestoreTestingPlanCommandInput
|
|
485
510
|
| CreateRestoreTestingSelectionCommandInput
|
|
486
511
|
| CreateTieringConfigurationCommandInput
|
|
512
|
+
| DeleteBackupAccessPointCommandInput
|
|
487
513
|
| DeleteBackupPlanCommandInput
|
|
488
514
|
| DeleteBackupSelectionCommandInput
|
|
489
515
|
| DeleteBackupVaultAccessPolicyCommandInput
|
|
@@ -496,6 +522,7 @@ export type ServiceInputTypes =
|
|
|
496
522
|
| DeleteRestoreTestingPlanCommandInput
|
|
497
523
|
| DeleteRestoreTestingSelectionCommandInput
|
|
498
524
|
| DeleteTieringConfigurationCommandInput
|
|
525
|
+
| DescribeBackupAccessPointCommandInput
|
|
499
526
|
| DescribeBackupJobCommandInput
|
|
500
527
|
| DescribeBackupVaultCommandInput
|
|
501
528
|
| DescribeCopyJobCommandInput
|
|
@@ -528,6 +555,9 @@ export type ServiceInputTypes =
|
|
|
528
555
|
| GetRestoreTestingSelectionCommandInput
|
|
529
556
|
| GetSupportedResourceTypesCommandInput
|
|
530
557
|
| GetTieringConfigurationCommandInput
|
|
558
|
+
| ListBackupAccessPointsByRecoveryPointCommandInput
|
|
559
|
+
| ListBackupAccessPointsByResourceCommandInput
|
|
560
|
+
| ListBackupAccessPointsCommandInput
|
|
531
561
|
| ListBackupJobSummariesCommandInput
|
|
532
562
|
| ListBackupJobsCommandInput
|
|
533
563
|
| ListBackupPlanTemplatesCommandInput
|
|
@@ -583,6 +613,7 @@ export type ServiceInputTypes =
|
|
|
583
613
|
export type ServiceOutputTypes =
|
|
584
614
|
| AssociateBackupVaultMpaApprovalTeamCommandOutput
|
|
585
615
|
| CancelLegalHoldCommandOutput
|
|
616
|
+
| CreateBackupAccessPointCommandOutput
|
|
586
617
|
| CreateBackupPlanCommandOutput
|
|
587
618
|
| CreateBackupSelectionCommandOutput
|
|
588
619
|
| CreateBackupVaultCommandOutput
|
|
@@ -594,6 +625,7 @@ export type ServiceOutputTypes =
|
|
|
594
625
|
| CreateRestoreTestingPlanCommandOutput
|
|
595
626
|
| CreateRestoreTestingSelectionCommandOutput
|
|
596
627
|
| CreateTieringConfigurationCommandOutput
|
|
628
|
+
| DeleteBackupAccessPointCommandOutput
|
|
597
629
|
| DeleteBackupPlanCommandOutput
|
|
598
630
|
| DeleteBackupSelectionCommandOutput
|
|
599
631
|
| DeleteBackupVaultAccessPolicyCommandOutput
|
|
@@ -606,6 +638,7 @@ export type ServiceOutputTypes =
|
|
|
606
638
|
| DeleteRestoreTestingPlanCommandOutput
|
|
607
639
|
| DeleteRestoreTestingSelectionCommandOutput
|
|
608
640
|
| DeleteTieringConfigurationCommandOutput
|
|
641
|
+
| DescribeBackupAccessPointCommandOutput
|
|
609
642
|
| DescribeBackupJobCommandOutput
|
|
610
643
|
| DescribeBackupVaultCommandOutput
|
|
611
644
|
| DescribeCopyJobCommandOutput
|
|
@@ -638,6 +671,9 @@ export type ServiceOutputTypes =
|
|
|
638
671
|
| GetRestoreTestingSelectionCommandOutput
|
|
639
672
|
| GetSupportedResourceTypesCommandOutput
|
|
640
673
|
| GetTieringConfigurationCommandOutput
|
|
674
|
+
| ListBackupAccessPointsByRecoveryPointCommandOutput
|
|
675
|
+
| ListBackupAccessPointsByResourceCommandOutput
|
|
676
|
+
| ListBackupAccessPointsCommandOutput
|
|
641
677
|
| ListBackupJobSummariesCommandOutput
|
|
642
678
|
| ListBackupJobsCommandOutput
|
|
643
679
|
| ListBackupPlanTemplatesCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateBackupAccessPointRequest,
|
|
4
|
+
CreateBackupAccessPointResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface CreateBackupAccessPointCommandInput extends CreateBackupAccessPointRequest {}
|
|
8
|
+
export interface CreateBackupAccessPointCommandOutput
|
|
9
|
+
extends CreateBackupAccessPointResponse, __MetadataBearer {}
|
|
10
|
+
declare const CreateBackupAccessPointCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: CreateBackupAccessPointCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
CreateBackupAccessPointCommandInput,
|
|
15
|
+
CreateBackupAccessPointCommandOutput,
|
|
16
|
+
import("..").BackupClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: CreateBackupAccessPointCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
CreateBackupAccessPointCommandInput,
|
|
24
|
+
CreateBackupAccessPointCommandOutput,
|
|
25
|
+
import("..").BackupClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class CreateBackupAccessPointCommand extends CreateBackupAccessPointCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: CreateBackupAccessPointRequest;
|
|
35
|
+
output: CreateBackupAccessPointResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: CreateBackupAccessPointCommandInput;
|
|
39
|
+
output: CreateBackupAccessPointCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { DeleteBackupAccessPointInput } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface DeleteBackupAccessPointCommandInput extends DeleteBackupAccessPointInput {}
|
|
5
|
+
export interface DeleteBackupAccessPointCommandOutput extends __MetadataBearer {}
|
|
6
|
+
declare const DeleteBackupAccessPointCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: DeleteBackupAccessPointCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
DeleteBackupAccessPointCommandInput,
|
|
11
|
+
DeleteBackupAccessPointCommandOutput,
|
|
12
|
+
import("..").BackupClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteBackupAccessPointCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
DeleteBackupAccessPointCommandInput,
|
|
20
|
+
DeleteBackupAccessPointCommandOutput,
|
|
21
|
+
import("..").BackupClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class DeleteBackupAccessPointCommand extends DeleteBackupAccessPointCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: DeleteBackupAccessPointInput;
|
|
31
|
+
output: {};
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: DeleteBackupAccessPointCommandInput;
|
|
35
|
+
output: DeleteBackupAccessPointCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeBackupAccessPointInput,
|
|
4
|
+
DescribeBackupAccessPointResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface DescribeBackupAccessPointCommandInput extends DescribeBackupAccessPointInput {}
|
|
8
|
+
export interface DescribeBackupAccessPointCommandOutput
|
|
9
|
+
extends DescribeBackupAccessPointResponse, __MetadataBearer {}
|
|
10
|
+
declare const DescribeBackupAccessPointCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: DescribeBackupAccessPointCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
DescribeBackupAccessPointCommandInput,
|
|
15
|
+
DescribeBackupAccessPointCommandOutput,
|
|
16
|
+
import("..").BackupClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeBackupAccessPointCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DescribeBackupAccessPointCommandInput,
|
|
24
|
+
DescribeBackupAccessPointCommandOutput,
|
|
25
|
+
import("..").BackupClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class DescribeBackupAccessPointCommand extends DescribeBackupAccessPointCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: DescribeBackupAccessPointInput;
|
|
35
|
+
output: DescribeBackupAccessPointResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: DescribeBackupAccessPointCommandInput;
|
|
39
|
+
output: DescribeBackupAccessPointCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListBackupAccessPointsByRecoveryPointRequest,
|
|
4
|
+
ListBackupAccessPointsByRecoveryPointResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface ListBackupAccessPointsByRecoveryPointCommandInput extends ListBackupAccessPointsByRecoveryPointRequest {}
|
|
8
|
+
export interface ListBackupAccessPointsByRecoveryPointCommandOutput
|
|
9
|
+
extends ListBackupAccessPointsByRecoveryPointResponse, __MetadataBearer {}
|
|
10
|
+
declare const ListBackupAccessPointsByRecoveryPointCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: ListBackupAccessPointsByRecoveryPointCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
ListBackupAccessPointsByRecoveryPointCommandInput,
|
|
15
|
+
ListBackupAccessPointsByRecoveryPointCommandOutput,
|
|
16
|
+
import("..").BackupClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: ListBackupAccessPointsByRecoveryPointCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListBackupAccessPointsByRecoveryPointCommandInput,
|
|
24
|
+
ListBackupAccessPointsByRecoveryPointCommandOutput,
|
|
25
|
+
import("..").BackupClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class ListBackupAccessPointsByRecoveryPointCommand extends ListBackupAccessPointsByRecoveryPointCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: ListBackupAccessPointsByRecoveryPointRequest;
|
|
35
|
+
output: ListBackupAccessPointsByRecoveryPointResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: ListBackupAccessPointsByRecoveryPointCommandInput;
|
|
39
|
+
output: ListBackupAccessPointsByRecoveryPointCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListBackupAccessPointsByResourceRequest,
|
|
4
|
+
ListBackupAccessPointsByResourceResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface ListBackupAccessPointsByResourceCommandInput extends ListBackupAccessPointsByResourceRequest {}
|
|
8
|
+
export interface ListBackupAccessPointsByResourceCommandOutput
|
|
9
|
+
extends ListBackupAccessPointsByResourceResponse, __MetadataBearer {}
|
|
10
|
+
declare const ListBackupAccessPointsByResourceCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: ListBackupAccessPointsByResourceCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
ListBackupAccessPointsByResourceCommandInput,
|
|
15
|
+
ListBackupAccessPointsByResourceCommandOutput,
|
|
16
|
+
import("..").BackupClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: ListBackupAccessPointsByResourceCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListBackupAccessPointsByResourceCommandInput,
|
|
24
|
+
ListBackupAccessPointsByResourceCommandOutput,
|
|
25
|
+
import("..").BackupClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class ListBackupAccessPointsByResourceCommand extends ListBackupAccessPointsByResourceCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: ListBackupAccessPointsByResourceRequest;
|
|
35
|
+
output: ListBackupAccessPointsByResourceResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: ListBackupAccessPointsByResourceCommandInput;
|
|
39
|
+
output: ListBackupAccessPointsByResourceCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { ListBackupAccessPointsRequest, ListBackupAccessPointsResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface ListBackupAccessPointsCommandInput extends ListBackupAccessPointsRequest {}
|
|
5
|
+
export interface ListBackupAccessPointsCommandOutput
|
|
6
|
+
extends ListBackupAccessPointsResponse, __MetadataBearer {}
|
|
7
|
+
declare const ListBackupAccessPointsCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: ListBackupAccessPointsCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
ListBackupAccessPointsCommandInput,
|
|
12
|
+
ListBackupAccessPointsCommandOutput,
|
|
13
|
+
import("..").BackupClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
...[input]: [] | [ListBackupAccessPointsCommandInput]
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
ListBackupAccessPointsCommandInput,
|
|
21
|
+
ListBackupAccessPointsCommandOutput,
|
|
22
|
+
import("..").BackupClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class ListBackupAccessPointsCommand extends ListBackupAccessPointsCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: ListBackupAccessPointsRequest;
|
|
32
|
+
output: ListBackupAccessPointsResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: ListBackupAccessPointsCommandInput;
|
|
36
|
+
output: ListBackupAccessPointsCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./AssociateBackupVaultMpaApprovalTeamCommand";
|
|
2
2
|
export * from "./CancelLegalHoldCommand";
|
|
3
|
+
export * from "./CreateBackupAccessPointCommand";
|
|
3
4
|
export * from "./CreateBackupPlanCommand";
|
|
4
5
|
export * from "./CreateBackupSelectionCommand";
|
|
5
6
|
export * from "./CreateBackupVaultCommand";
|
|
@@ -11,6 +12,7 @@ export * from "./CreateRestoreAccessBackupVaultCommand";
|
|
|
11
12
|
export * from "./CreateRestoreTestingPlanCommand";
|
|
12
13
|
export * from "./CreateRestoreTestingSelectionCommand";
|
|
13
14
|
export * from "./CreateTieringConfigurationCommand";
|
|
15
|
+
export * from "./DeleteBackupAccessPointCommand";
|
|
14
16
|
export * from "./DeleteBackupPlanCommand";
|
|
15
17
|
export * from "./DeleteBackupSelectionCommand";
|
|
16
18
|
export * from "./DeleteBackupVaultAccessPolicyCommand";
|
|
@@ -23,6 +25,7 @@ export * from "./DeleteReportPlanCommand";
|
|
|
23
25
|
export * from "./DeleteRestoreTestingPlanCommand";
|
|
24
26
|
export * from "./DeleteRestoreTestingSelectionCommand";
|
|
25
27
|
export * from "./DeleteTieringConfigurationCommand";
|
|
28
|
+
export * from "./DescribeBackupAccessPointCommand";
|
|
26
29
|
export * from "./DescribeBackupJobCommand";
|
|
27
30
|
export * from "./DescribeBackupVaultCommand";
|
|
28
31
|
export * from "./DescribeCopyJobCommand";
|
|
@@ -55,6 +58,9 @@ export * from "./GetRestoreTestingPlanCommand";
|
|
|
55
58
|
export * from "./GetRestoreTestingSelectionCommand";
|
|
56
59
|
export * from "./GetSupportedResourceTypesCommand";
|
|
57
60
|
export * from "./GetTieringConfigurationCommand";
|
|
61
|
+
export * from "./ListBackupAccessPointsByRecoveryPointCommand";
|
|
62
|
+
export * from "./ListBackupAccessPointsByResourceCommand";
|
|
63
|
+
export * from "./ListBackupAccessPointsCommand";
|
|
58
64
|
export * from "./ListBackupJobSummariesCommand";
|
|
59
65
|
export * from "./ListBackupJobsCommand";
|
|
60
66
|
export * from "./ListBackupPlanTemplatesCommand";
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
export declare const AccessPointStatus: {
|
|
2
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
3
|
+
readonly CREATING: "CREATING";
|
|
4
|
+
readonly DELETING: "DELETING";
|
|
5
|
+
readonly DISASSOCIATED: "DISASSOCIATED";
|
|
6
|
+
readonly DISASSOCIATING: "DISASSOCIATING";
|
|
7
|
+
readonly EXPIRED: "EXPIRED";
|
|
8
|
+
readonly FAILED: "FAILED";
|
|
9
|
+
};
|
|
10
|
+
export type AccessPointStatus = (typeof AccessPointStatus)[keyof typeof AccessPointStatus];
|
|
1
11
|
export declare const ScanFinding: {
|
|
2
12
|
readonly MALWARE: "MALWARE";
|
|
3
13
|
};
|
|
@@ -53,6 +63,12 @@ export declare const ConditionType: {
|
|
|
53
63
|
};
|
|
54
64
|
export type ConditionType = (typeof ConditionType)[keyof typeof ConditionType];
|
|
55
65
|
export declare const BackupVaultEvent: {
|
|
66
|
+
readonly ACCESS_POINT_AVAILABLE: "ACCESS_POINT_AVAILABLE";
|
|
67
|
+
readonly ACCESS_POINT_CREATION_FAILED: "ACCESS_POINT_CREATION_FAILED";
|
|
68
|
+
readonly ACCESS_POINT_DELETED: "ACCESS_POINT_DELETED";
|
|
69
|
+
readonly ACCESS_POINT_DELETION_FAILED: "ACCESS_POINT_DELETION_FAILED";
|
|
70
|
+
readonly ACCESS_POINT_DISASSOCIATED: "ACCESS_POINT_DISASSOCIATED";
|
|
71
|
+
readonly ACCESS_POINT_EXPIRED: "ACCESS_POINT_EXPIRED";
|
|
56
72
|
readonly BACKUP_JOB_COMPLETED: "BACKUP_JOB_COMPLETED";
|
|
57
73
|
readonly BACKUP_JOB_EXPIRED: "BACKUP_JOB_EXPIRED";
|
|
58
74
|
readonly BACKUP_JOB_FAILED: "BACKUP_JOB_FAILED";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
AccessPointStatus,
|
|
2
3
|
AggregationPeriod,
|
|
3
4
|
BackupJobState,
|
|
4
5
|
BackupJobStatus,
|
|
@@ -47,6 +48,19 @@ export interface AssociateBackupVaultMpaApprovalTeamInput {
|
|
|
47
48
|
MpaApprovalTeamArn: string | undefined;
|
|
48
49
|
RequesterComment?: string | undefined;
|
|
49
50
|
}
|
|
51
|
+
export interface ListAccessPointsMember {
|
|
52
|
+
AccessPointArn: string | undefined;
|
|
53
|
+
AccessPointMetadata: Record<string, string> | undefined;
|
|
54
|
+
BackupVaultArn?: string | undefined;
|
|
55
|
+
BackupVaultName: string | undefined;
|
|
56
|
+
CreationTime: Date | undefined;
|
|
57
|
+
Name: string | undefined;
|
|
58
|
+
RecoveryPointArn: string | undefined;
|
|
59
|
+
ResourceArn: string | undefined;
|
|
60
|
+
ResourceType: string | undefined;
|
|
61
|
+
Status: AccessPointStatus | undefined;
|
|
62
|
+
StatusMessage?: string | undefined;
|
|
63
|
+
}
|
|
50
64
|
export interface RecoveryPointCreator {
|
|
51
65
|
BackupPlanId?: string | undefined;
|
|
52
66
|
BackupPlanArn?: string | undefined;
|
|
@@ -283,6 +297,17 @@ export interface CopyJobSummary {
|
|
|
283
297
|
StartTime?: Date | undefined;
|
|
284
298
|
EndTime?: Date | undefined;
|
|
285
299
|
}
|
|
300
|
+
export interface CreateBackupAccessPointRequest {
|
|
301
|
+
AccessPointMetadata?: Record<string, string> | undefined;
|
|
302
|
+
AccessPointPolicy?: string | undefined;
|
|
303
|
+
Name: string | undefined;
|
|
304
|
+
RecoveryPointArn: string | undefined;
|
|
305
|
+
Tags?: Record<string, string> | undefined;
|
|
306
|
+
}
|
|
307
|
+
export interface CreateBackupAccessPointResponse {
|
|
308
|
+
AccessPointArn: string | undefined;
|
|
309
|
+
Status: AccessPointStatus | undefined;
|
|
310
|
+
}
|
|
286
311
|
export interface CreateBackupPlanInput {
|
|
287
312
|
BackupPlan: BackupPlanInput | undefined;
|
|
288
313
|
BackupPlanTags?: Record<string, string> | undefined;
|
|
@@ -482,6 +507,9 @@ export interface CreateTieringConfigurationOutput {
|
|
|
482
507
|
TieringConfigurationName?: string | undefined;
|
|
483
508
|
CreationTime?: Date | undefined;
|
|
484
509
|
}
|
|
510
|
+
export interface DeleteBackupAccessPointInput {
|
|
511
|
+
AccessPointArn: string | undefined;
|
|
512
|
+
}
|
|
485
513
|
export interface DeleteBackupPlanInput {
|
|
486
514
|
BackupPlanId: string | undefined;
|
|
487
515
|
}
|
|
@@ -528,6 +556,22 @@ export interface DeleteTieringConfigurationInput {
|
|
|
528
556
|
TieringConfigurationName: string | undefined;
|
|
529
557
|
}
|
|
530
558
|
export interface DeleteTieringConfigurationOutput {}
|
|
559
|
+
export interface DescribeBackupAccessPointInput {
|
|
560
|
+
AccessPointArn: string | undefined;
|
|
561
|
+
}
|
|
562
|
+
export interface DescribeBackupAccessPointResponse {
|
|
563
|
+
AccessPointArn: string | undefined;
|
|
564
|
+
AccessPointMetadata?: Record<string, string> | undefined;
|
|
565
|
+
BackupVaultArn?: string | undefined;
|
|
566
|
+
BackupVaultName: string | undefined;
|
|
567
|
+
CreationTime: Date | undefined;
|
|
568
|
+
Name: string | undefined;
|
|
569
|
+
RecoveryPointArn: string | undefined;
|
|
570
|
+
ResourceArn: string | undefined;
|
|
571
|
+
ResourceType: string | undefined;
|
|
572
|
+
Status: AccessPointStatus | undefined;
|
|
573
|
+
StatusMessage?: string | undefined;
|
|
574
|
+
}
|
|
531
575
|
export interface DescribeBackupJobInput {
|
|
532
576
|
BackupJobId: string | undefined;
|
|
533
577
|
}
|
|
@@ -988,6 +1032,32 @@ export interface TieringConfiguration {
|
|
|
988
1032
|
export interface GetTieringConfigurationOutput {
|
|
989
1033
|
TieringConfiguration?: TieringConfiguration | undefined;
|
|
990
1034
|
}
|
|
1035
|
+
export interface ListBackupAccessPointsRequest {
|
|
1036
|
+
MaxResults?: number | undefined;
|
|
1037
|
+
NextToken?: string | undefined;
|
|
1038
|
+
}
|
|
1039
|
+
export interface ListBackupAccessPointsResponse {
|
|
1040
|
+
BackupAccessPoints: ListAccessPointsMember[] | undefined;
|
|
1041
|
+
NextToken?: string | undefined;
|
|
1042
|
+
}
|
|
1043
|
+
export interface ListBackupAccessPointsByRecoveryPointRequest {
|
|
1044
|
+
MaxResults?: number | undefined;
|
|
1045
|
+
NextToken?: string | undefined;
|
|
1046
|
+
RecoveryPointArn: string | undefined;
|
|
1047
|
+
}
|
|
1048
|
+
export interface ListBackupAccessPointsByRecoveryPointResponse {
|
|
1049
|
+
BackupAccessPoints: ListAccessPointsMember[] | undefined;
|
|
1050
|
+
NextToken?: string | undefined;
|
|
1051
|
+
}
|
|
1052
|
+
export interface ListBackupAccessPointsByResourceRequest {
|
|
1053
|
+
MaxResults?: number | undefined;
|
|
1054
|
+
NextToken?: string | undefined;
|
|
1055
|
+
ResourceArn: string | undefined;
|
|
1056
|
+
}
|
|
1057
|
+
export interface ListBackupAccessPointsByResourceResponse {
|
|
1058
|
+
BackupAccessPoints: ListAccessPointsMember[] | undefined;
|
|
1059
|
+
NextToken?: string | undefined;
|
|
1060
|
+
}
|
|
991
1061
|
export interface ListBackupJobsInput {
|
|
992
1062
|
NextToken?: string | undefined;
|
|
993
1063
|
MaxResults?: number | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListBackupAccessPointsByRecoveryPointCommandInput,
|
|
4
|
+
ListBackupAccessPointsByRecoveryPointCommandOutput,
|
|
5
|
+
} from "../commands/ListBackupAccessPointsByRecoveryPointCommand";
|
|
6
|
+
import { BackupPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListBackupAccessPointsByRecoveryPoint: (
|
|
8
|
+
config: BackupPaginationConfiguration,
|
|
9
|
+
input: ListBackupAccessPointsByRecoveryPointCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListBackupAccessPointsByRecoveryPointCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListBackupAccessPointsByResourceCommandInput,
|
|
4
|
+
ListBackupAccessPointsByResourceCommandOutput,
|
|
5
|
+
} from "../commands/ListBackupAccessPointsByResourceCommand";
|
|
6
|
+
import { BackupPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListBackupAccessPointsByResource: (
|
|
8
|
+
config: BackupPaginationConfiguration,
|
|
9
|
+
input: ListBackupAccessPointsByResourceCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListBackupAccessPointsByResourceCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListBackupAccessPointsCommandInput,
|
|
4
|
+
ListBackupAccessPointsCommandOutput,
|
|
5
|
+
} from "../commands/ListBackupAccessPointsCommand";
|
|
6
|
+
import { BackupPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListBackupAccessPoints: (
|
|
8
|
+
config: BackupPaginationConfiguration,
|
|
9
|
+
input: ListBackupAccessPointsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListBackupAccessPointsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListBackupAccessPointsPaginator";
|
|
3
|
+
export * from "./ListBackupAccessPointsByRecoveryPointPaginator";
|
|
4
|
+
export * from "./ListBackupAccessPointsByResourcePaginator";
|
|
2
5
|
export * from "./ListBackupJobsPaginator";
|
|
3
6
|
export * from "./ListBackupJobSummariesPaginator";
|
|
4
7
|
export * from "./ListBackupPlansPaginator";
|
|
@@ -37,6 +37,8 @@ export declare var ControlScope$: StaticStructureSchema;
|
|
|
37
37
|
export declare var CopyAction$: StaticStructureSchema;
|
|
38
38
|
export declare var CopyJob$: StaticStructureSchema;
|
|
39
39
|
export declare var CopyJobSummary$: StaticStructureSchema;
|
|
40
|
+
export declare var CreateBackupAccessPointRequest$: StaticStructureSchema;
|
|
41
|
+
export declare var CreateBackupAccessPointResponse$: StaticStructureSchema;
|
|
40
42
|
export declare var CreateBackupPlanInput$: StaticStructureSchema;
|
|
41
43
|
export declare var CreateBackupPlanOutput$: StaticStructureSchema;
|
|
42
44
|
export declare var CreateBackupSelectionInput$: StaticStructureSchema;
|
|
@@ -60,6 +62,7 @@ export declare var CreateRestoreTestingSelectionOutput$: StaticStructureSchema;
|
|
|
60
62
|
export declare var CreateTieringConfigurationInput$: StaticStructureSchema;
|
|
61
63
|
export declare var CreateTieringConfigurationOutput$: StaticStructureSchema;
|
|
62
64
|
export declare var DateRange$: StaticStructureSchema;
|
|
65
|
+
export declare var DeleteBackupAccessPointInput$: StaticStructureSchema;
|
|
63
66
|
export declare var DeleteBackupPlanInput$: StaticStructureSchema;
|
|
64
67
|
export declare var DeleteBackupPlanOutput$: StaticStructureSchema;
|
|
65
68
|
export declare var DeleteBackupSelectionInput$: StaticStructureSchema;
|
|
@@ -74,6 +77,8 @@ export declare var DeleteRestoreTestingPlanInput$: StaticStructureSchema;
|
|
|
74
77
|
export declare var DeleteRestoreTestingSelectionInput$: StaticStructureSchema;
|
|
75
78
|
export declare var DeleteTieringConfigurationInput$: StaticStructureSchema;
|
|
76
79
|
export declare var DeleteTieringConfigurationOutput$: StaticStructureSchema;
|
|
80
|
+
export declare var DescribeBackupAccessPointInput$: StaticStructureSchema;
|
|
81
|
+
export declare var DescribeBackupAccessPointResponse$: StaticStructureSchema;
|
|
77
82
|
export declare var DescribeBackupJobInput$: StaticStructureSchema;
|
|
78
83
|
export declare var DescribeBackupJobOutput$: StaticStructureSchema;
|
|
79
84
|
export declare var DescribeBackupVaultInput$: StaticStructureSchema;
|
|
@@ -143,6 +148,13 @@ export declare var LatestMpaApprovalTeamUpdate$: StaticStructureSchema;
|
|
|
143
148
|
export declare var LatestRevokeRequest$: StaticStructureSchema;
|
|
144
149
|
export declare var LegalHold$: StaticStructureSchema;
|
|
145
150
|
export declare var Lifecycle$: StaticStructureSchema;
|
|
151
|
+
export declare var ListAccessPointsMember$: StaticStructureSchema;
|
|
152
|
+
export declare var ListBackupAccessPointsByRecoveryPointRequest$: StaticStructureSchema;
|
|
153
|
+
export declare var ListBackupAccessPointsByRecoveryPointResponse$: StaticStructureSchema;
|
|
154
|
+
export declare var ListBackupAccessPointsByResourceRequest$: StaticStructureSchema;
|
|
155
|
+
export declare var ListBackupAccessPointsByResourceResponse$: StaticStructureSchema;
|
|
156
|
+
export declare var ListBackupAccessPointsRequest$: StaticStructureSchema;
|
|
157
|
+
export declare var ListBackupAccessPointsResponse$: StaticStructureSchema;
|
|
146
158
|
export declare var ListBackupJobsInput$: StaticStructureSchema;
|
|
147
159
|
export declare var ListBackupJobsOutput$: StaticStructureSchema;
|
|
148
160
|
export declare var ListBackupJobSummariesInput$: StaticStructureSchema;
|
|
@@ -277,6 +289,7 @@ export declare var UpdateTieringConfigurationInput$: StaticStructureSchema;
|
|
|
277
289
|
export declare var UpdateTieringConfigurationOutput$: StaticStructureSchema;
|
|
278
290
|
export declare var AssociateBackupVaultMpaApprovalTeam$: StaticOperationSchema;
|
|
279
291
|
export declare var CancelLegalHold$: StaticOperationSchema;
|
|
292
|
+
export declare var CreateBackupAccessPoint$: StaticOperationSchema;
|
|
280
293
|
export declare var CreateBackupPlan$: StaticOperationSchema;
|
|
281
294
|
export declare var CreateBackupSelection$: StaticOperationSchema;
|
|
282
295
|
export declare var CreateBackupVault$: StaticOperationSchema;
|
|
@@ -288,6 +301,7 @@ export declare var CreateRestoreAccessBackupVault$: StaticOperationSchema;
|
|
|
288
301
|
export declare var CreateRestoreTestingPlan$: StaticOperationSchema;
|
|
289
302
|
export declare var CreateRestoreTestingSelection$: StaticOperationSchema;
|
|
290
303
|
export declare var CreateTieringConfiguration$: StaticOperationSchema;
|
|
304
|
+
export declare var DeleteBackupAccessPoint$: StaticOperationSchema;
|
|
291
305
|
export declare var DeleteBackupPlan$: StaticOperationSchema;
|
|
292
306
|
export declare var DeleteBackupSelection$: StaticOperationSchema;
|
|
293
307
|
export declare var DeleteBackupVault$: StaticOperationSchema;
|
|
@@ -300,6 +314,7 @@ export declare var DeleteReportPlan$: StaticOperationSchema;
|
|
|
300
314
|
export declare var DeleteRestoreTestingPlan$: StaticOperationSchema;
|
|
301
315
|
export declare var DeleteRestoreTestingSelection$: StaticOperationSchema;
|
|
302
316
|
export declare var DeleteTieringConfiguration$: StaticOperationSchema;
|
|
317
|
+
export declare var DescribeBackupAccessPoint$: StaticOperationSchema;
|
|
303
318
|
export declare var DescribeBackupJob$: StaticOperationSchema;
|
|
304
319
|
export declare var DescribeBackupVault$: StaticOperationSchema;
|
|
305
320
|
export declare var DescribeCopyJob$: StaticOperationSchema;
|
|
@@ -332,6 +347,9 @@ export declare var GetRestoreTestingPlan$: StaticOperationSchema;
|
|
|
332
347
|
export declare var GetRestoreTestingSelection$: StaticOperationSchema;
|
|
333
348
|
export declare var GetSupportedResourceTypes$: StaticOperationSchema;
|
|
334
349
|
export declare var GetTieringConfiguration$: StaticOperationSchema;
|
|
350
|
+
export declare var ListBackupAccessPoints$: StaticOperationSchema;
|
|
351
|
+
export declare var ListBackupAccessPointsByRecoveryPoint$: StaticOperationSchema;
|
|
352
|
+
export declare var ListBackupAccessPointsByResource$: StaticOperationSchema;
|
|
335
353
|
export declare var ListBackupJobs$: StaticOperationSchema;
|
|
336
354
|
export declare var ListBackupJobSummaries$: StaticOperationSchema;
|
|
337
355
|
export declare var ListBackupPlans$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-backup",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1106.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Backup Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-backup",
|
|
6
6
|
"license": "Apache-2.0",
|