@aws-sdk/client-backup 3.933.0 → 3.935.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 +72 -0
- package/dist-cjs/index.js +854 -197
- package/dist-es/Backup.js +18 -0
- package/dist-es/commands/CreateTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/DescribeScanJobCommand.js +16 -0
- package/dist-es/commands/GetTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/ListScanJobSummariesCommand.js +16 -0
- package/dist-es/commands/ListScanJobsCommand.js +16 -0
- package/dist-es/commands/ListTieringConfigurationsCommand.js +16 -0
- package/dist-es/commands/StartScanJobCommand.js +16 -0
- package/dist-es/commands/UpdateTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +215 -0
- package/dist-es/models/errors.js +205 -0
- package/dist-es/models/models_0.js +1 -377
- package/dist-es/pagination/ListScanJobSummariesPaginator.js +4 -0
- package/dist-es/pagination/ListScanJobsPaginator.js +4 -0
- package/dist-es/pagination/ListTieringConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +490 -19
- package/dist-types/Backup.d.ts +66 -0
- package/dist-types/BackupClient.d.ts +11 -2
- package/dist-types/commands/CreateBackupPlanCommand.d.ts +15 -0
- package/dist-types/commands/CreateTieringConfigurationCommand.d.ts +115 -0
- package/dist-types/commands/DeleteTieringConfigurationCommand.d.ts +85 -0
- package/dist-types/commands/DescribeRecoveryPointCommand.d.ts +10 -0
- package/dist-types/commands/DescribeScanJobCommand.d.ts +113 -0
- package/dist-types/commands/GetBackupPlanCommand.d.ts +15 -0
- package/dist-types/commands/GetBackupPlanFromJSONCommand.d.ts +15 -0
- package/dist-types/commands/GetBackupPlanFromTemplateCommand.d.ts +15 -0
- package/dist-types/commands/GetTieringConfigurationCommand.d.ts +105 -0
- package/dist-types/commands/ListRecoveryPointsByBackupVaultCommand.d.ts +7 -0
- package/dist-types/commands/ListRecoveryPointsByResourceCommand.d.ts +7 -0
- package/dist-types/commands/ListScanJobSummariesCommand.d.ts +102 -0
- package/dist-types/commands/ListScanJobsCommand.d.ts +123 -0
- package/dist-types/commands/ListTieringConfigurationsCommand.d.ts +91 -0
- package/dist-types/commands/StartScanJobCommand.d.ts +103 -0
- package/dist-types/commands/UpdateBackupPlanCommand.d.ts +24 -0
- package/dist-types/commands/UpdateTieringConfigurationCommand.d.ts +134 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +479 -0
- package/dist-types/models/errors.d.ts +257 -0
- package/dist-types/models/models_0.d.ts +1231 -723
- package/dist-types/pagination/ListScanJobSummariesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListScanJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTieringConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +48 -0
- package/dist-types/ts3.4/Backup.d.ts +156 -0
- package/dist-types/ts3.4/BackupClient.d.ts +56 -2
- package/dist-types/ts3.4/commands/CreateTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeScanJobCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListScanJobSummariesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListScanJobsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTieringConfigurationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartScanJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +268 -0
- package/dist-types/ts3.4/models/errors.d.ts +112 -0
- package/dist-types/ts3.4/models/models_0.d.ts +243 -324
- package/dist-types/ts3.4/pagination/ListScanJobSummariesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListScanJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTieringConfigurationsPaginator.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 +48 -0
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateTieringConfigurationInput,
|
|
10
|
+
CreateTieringConfigurationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateTieringConfigurationCommandInput
|
|
15
|
+
extends CreateTieringConfigurationInput {}
|
|
16
|
+
export interface CreateTieringConfigurationCommandOutput
|
|
17
|
+
extends CreateTieringConfigurationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateTieringConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateTieringConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateTieringConfigurationCommandInput,
|
|
24
|
+
CreateTieringConfigurationCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateTieringConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateTieringConfigurationCommandInput,
|
|
33
|
+
CreateTieringConfigurationCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateTieringConfigurationCommand extends CreateTieringConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateTieringConfigurationInput;
|
|
44
|
+
output: CreateTieringConfigurationOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateTieringConfigurationCommandInput;
|
|
48
|
+
output: CreateTieringConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteTieringConfigurationInput,
|
|
10
|
+
DeleteTieringConfigurationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteTieringConfigurationCommandInput
|
|
15
|
+
extends DeleteTieringConfigurationInput {}
|
|
16
|
+
export interface DeleteTieringConfigurationCommandOutput
|
|
17
|
+
extends DeleteTieringConfigurationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteTieringConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteTieringConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteTieringConfigurationCommandInput,
|
|
24
|
+
DeleteTieringConfigurationCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteTieringConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteTieringConfigurationCommandInput,
|
|
33
|
+
DeleteTieringConfigurationCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteTieringConfigurationCommand extends DeleteTieringConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteTieringConfigurationInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteTieringConfigurationCommandInput;
|
|
48
|
+
output: DeleteTieringConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeScanJobInput,
|
|
10
|
+
DescribeScanJobOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeScanJobCommandInput extends DescribeScanJobInput {}
|
|
15
|
+
export interface DescribeScanJobCommandOutput
|
|
16
|
+
extends DescribeScanJobOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DescribeScanJobCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DescribeScanJobCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DescribeScanJobCommandInput,
|
|
23
|
+
DescribeScanJobCommandOutput,
|
|
24
|
+
BackupClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: DescribeScanJobCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeScanJobCommandInput,
|
|
32
|
+
DescribeScanJobCommandOutput,
|
|
33
|
+
BackupClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DescribeScanJobCommand extends DescribeScanJobCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DescribeScanJobInput;
|
|
43
|
+
output: DescribeScanJobOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DescribeScanJobCommandInput;
|
|
47
|
+
output: DescribeScanJobCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
GetTieringConfigurationInput,
|
|
10
|
+
GetTieringConfigurationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetTieringConfigurationCommandInput
|
|
15
|
+
extends GetTieringConfigurationInput {}
|
|
16
|
+
export interface GetTieringConfigurationCommandOutput
|
|
17
|
+
extends GetTieringConfigurationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetTieringConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetTieringConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetTieringConfigurationCommandInput,
|
|
24
|
+
GetTieringConfigurationCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetTieringConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetTieringConfigurationCommandInput,
|
|
33
|
+
GetTieringConfigurationCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetTieringConfigurationCommand extends GetTieringConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetTieringConfigurationInput;
|
|
44
|
+
output: GetTieringConfigurationOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetTieringConfigurationCommandInput;
|
|
48
|
+
output: GetTieringConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
ListScanJobSummariesInput,
|
|
10
|
+
ListScanJobSummariesOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListScanJobSummariesCommandInput
|
|
15
|
+
extends ListScanJobSummariesInput {}
|
|
16
|
+
export interface ListScanJobSummariesCommandOutput
|
|
17
|
+
extends ListScanJobSummariesOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListScanJobSummariesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListScanJobSummariesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListScanJobSummariesCommandInput,
|
|
24
|
+
ListScanJobSummariesCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListScanJobSummariesCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListScanJobSummariesCommandInput,
|
|
33
|
+
ListScanJobSummariesCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListScanJobSummariesCommand extends ListScanJobSummariesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListScanJobSummariesInput;
|
|
44
|
+
output: ListScanJobSummariesOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListScanJobSummariesCommandInput;
|
|
48
|
+
output: ListScanJobSummariesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import { ListScanJobsInput, ListScanJobsOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListScanJobsCommandInput extends ListScanJobsInput {}
|
|
12
|
+
export interface ListScanJobsCommandOutput
|
|
13
|
+
extends ListScanJobsOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListScanJobsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListScanJobsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListScanJobsCommandInput,
|
|
20
|
+
ListScanJobsCommandOutput,
|
|
21
|
+
BackupClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListScanJobsCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListScanJobsCommandInput,
|
|
29
|
+
ListScanJobsCommandOutput,
|
|
30
|
+
BackupClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListScanJobsCommand extends ListScanJobsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListScanJobsInput;
|
|
40
|
+
output: ListScanJobsOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListScanJobsCommandInput;
|
|
44
|
+
output: ListScanJobsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
ListTieringConfigurationsInput,
|
|
10
|
+
ListTieringConfigurationsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListTieringConfigurationsCommandInput
|
|
15
|
+
extends ListTieringConfigurationsInput {}
|
|
16
|
+
export interface ListTieringConfigurationsCommandOutput
|
|
17
|
+
extends ListTieringConfigurationsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListTieringConfigurationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListTieringConfigurationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListTieringConfigurationsCommandInput,
|
|
24
|
+
ListTieringConfigurationsCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListTieringConfigurationsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListTieringConfigurationsCommandInput,
|
|
33
|
+
ListTieringConfigurationsCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListTieringConfigurationsCommand extends ListTieringConfigurationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListTieringConfigurationsInput;
|
|
44
|
+
output: ListTieringConfigurationsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListTieringConfigurationsCommandInput;
|
|
48
|
+
output: ListTieringConfigurationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import { StartScanJobInput, StartScanJobOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface StartScanJobCommandInput extends StartScanJobInput {}
|
|
12
|
+
export interface StartScanJobCommandOutput
|
|
13
|
+
extends StartScanJobOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const StartScanJobCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: StartScanJobCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
StartScanJobCommandInput,
|
|
20
|
+
StartScanJobCommandOutput,
|
|
21
|
+
BackupClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: StartScanJobCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
StartScanJobCommandInput,
|
|
29
|
+
StartScanJobCommandOutput,
|
|
30
|
+
BackupClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class StartScanJobCommand extends StartScanJobCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: StartScanJobInput;
|
|
40
|
+
output: StartScanJobOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: StartScanJobCommandInput;
|
|
44
|
+
output: StartScanJobCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateTieringConfigurationInput,
|
|
10
|
+
UpdateTieringConfigurationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateTieringConfigurationCommandInput
|
|
15
|
+
extends UpdateTieringConfigurationInput {}
|
|
16
|
+
export interface UpdateTieringConfigurationCommandOutput
|
|
17
|
+
extends UpdateTieringConfigurationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateTieringConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateTieringConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateTieringConfigurationCommandInput,
|
|
24
|
+
UpdateTieringConfigurationCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateTieringConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateTieringConfigurationCommandInput,
|
|
33
|
+
UpdateTieringConfigurationCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateTieringConfigurationCommand extends UpdateTieringConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateTieringConfigurationInput;
|
|
44
|
+
output: UpdateTieringConfigurationOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateTieringConfigurationCommandInput;
|
|
48
|
+
output: UpdateTieringConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -10,6 +10,7 @@ export * from "./CreateReportPlanCommand";
|
|
|
10
10
|
export * from "./CreateRestoreAccessBackupVaultCommand";
|
|
11
11
|
export * from "./CreateRestoreTestingPlanCommand";
|
|
12
12
|
export * from "./CreateRestoreTestingSelectionCommand";
|
|
13
|
+
export * from "./CreateTieringConfigurationCommand";
|
|
13
14
|
export * from "./DeleteBackupPlanCommand";
|
|
14
15
|
export * from "./DeleteBackupSelectionCommand";
|
|
15
16
|
export * from "./DeleteBackupVaultAccessPolicyCommand";
|
|
@@ -21,6 +22,7 @@ export * from "./DeleteRecoveryPointCommand";
|
|
|
21
22
|
export * from "./DeleteReportPlanCommand";
|
|
22
23
|
export * from "./DeleteRestoreTestingPlanCommand";
|
|
23
24
|
export * from "./DeleteRestoreTestingSelectionCommand";
|
|
25
|
+
export * from "./DeleteTieringConfigurationCommand";
|
|
24
26
|
export * from "./DescribeBackupJobCommand";
|
|
25
27
|
export * from "./DescribeBackupVaultCommand";
|
|
26
28
|
export * from "./DescribeCopyJobCommand";
|
|
@@ -32,6 +34,7 @@ export * from "./DescribeRegionSettingsCommand";
|
|
|
32
34
|
export * from "./DescribeReportJobCommand";
|
|
33
35
|
export * from "./DescribeReportPlanCommand";
|
|
34
36
|
export * from "./DescribeRestoreJobCommand";
|
|
37
|
+
export * from "./DescribeScanJobCommand";
|
|
35
38
|
export * from "./DisassociateBackupVaultMpaApprovalTeamCommand";
|
|
36
39
|
export * from "./DisassociateRecoveryPointCommand";
|
|
37
40
|
export * from "./DisassociateRecoveryPointFromParentCommand";
|
|
@@ -50,6 +53,7 @@ export * from "./GetRestoreTestingInferredMetadataCommand";
|
|
|
50
53
|
export * from "./GetRestoreTestingPlanCommand";
|
|
51
54
|
export * from "./GetRestoreTestingSelectionCommand";
|
|
52
55
|
export * from "./GetSupportedResourceTypesCommand";
|
|
56
|
+
export * from "./GetTieringConfigurationCommand";
|
|
53
57
|
export * from "./ListBackupJobSummariesCommand";
|
|
54
58
|
export * from "./ListBackupJobsCommand";
|
|
55
59
|
export * from "./ListBackupPlanTemplatesCommand";
|
|
@@ -75,7 +79,10 @@ export * from "./ListRestoreJobsByProtectedResourceCommand";
|
|
|
75
79
|
export * from "./ListRestoreJobsCommand";
|
|
76
80
|
export * from "./ListRestoreTestingPlansCommand";
|
|
77
81
|
export * from "./ListRestoreTestingSelectionsCommand";
|
|
82
|
+
export * from "./ListScanJobSummariesCommand";
|
|
83
|
+
export * from "./ListScanJobsCommand";
|
|
78
84
|
export * from "./ListTagsCommand";
|
|
85
|
+
export * from "./ListTieringConfigurationsCommand";
|
|
79
86
|
export * from "./PutBackupVaultAccessPolicyCommand";
|
|
80
87
|
export * from "./PutBackupVaultLockConfigurationCommand";
|
|
81
88
|
export * from "./PutBackupVaultNotificationsCommand";
|
|
@@ -85,6 +92,7 @@ export * from "./StartBackupJobCommand";
|
|
|
85
92
|
export * from "./StartCopyJobCommand";
|
|
86
93
|
export * from "./StartReportJobCommand";
|
|
87
94
|
export * from "./StartRestoreJobCommand";
|
|
95
|
+
export * from "./StartScanJobCommand";
|
|
88
96
|
export * from "./StopBackupJobCommand";
|
|
89
97
|
export * from "./TagResourceCommand";
|
|
90
98
|
export * from "./UntagResourceCommand";
|
|
@@ -97,3 +105,4 @@ export * from "./UpdateRegionSettingsCommand";
|
|
|
97
105
|
export * from "./UpdateReportPlanCommand";
|
|
98
106
|
export * from "./UpdateRestoreTestingPlanCommand";
|
|
99
107
|
export * from "./UpdateRestoreTestingSelectionCommand";
|
|
108
|
+
export * from "./UpdateTieringConfigurationCommand";
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { BackupExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { BackupServiceException } from "./models/BackupServiceException";
|