@aws-sdk/client-glacier 3.169.0 → 3.171.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.
Files changed (57) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Glacier.d.ts +565 -170
  3. package/dist-types/ts3.4/GlacierClient.d.ts +310 -114
  4. package/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/AbortVaultLockCommand.d.ts +30 -17
  6. package/dist-types/ts3.4/commands/AddTagsToVaultCommand.d.ts +30 -17
  7. package/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/CompleteVaultLockCommand.d.ts +30 -17
  9. package/dist-types/ts3.4/commands/CreateVaultCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteArchiveCommand.d.ts +30 -17
  11. package/dist-types/ts3.4/commands/DeleteVaultAccessPolicyCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/DeleteVaultCommand.d.ts +30 -17
  13. package/dist-types/ts3.4/commands/DeleteVaultNotificationsCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/DescribeVaultCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/GetDataRetrievalPolicyCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/GetJobOutputCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/GetVaultAccessPolicyCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/GetVaultLockCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/GetVaultNotificationsCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/InitiateJobCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/InitiateMultipartUploadCommand.d.ts +39 -17
  23. package/dist-types/ts3.4/commands/InitiateVaultLockCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +39 -17
  26. package/dist-types/ts3.4/commands/ListPartsCommand.d.ts +32 -17
  27. package/dist-types/ts3.4/commands/ListProvisionedCapacityCommand.d.ts +39 -17
  28. package/dist-types/ts3.4/commands/ListTagsForVaultCommand.d.ts +35 -17
  29. package/dist-types/ts3.4/commands/ListVaultsCommand.d.ts +32 -17
  30. package/dist-types/ts3.4/commands/PurchaseProvisionedCapacityCommand.d.ts +39 -17
  31. package/dist-types/ts3.4/commands/RemoveTagsFromVaultCommand.d.ts +31 -17
  32. package/dist-types/ts3.4/commands/SetDataRetrievalPolicyCommand.d.ts +34 -17
  33. package/dist-types/ts3.4/commands/SetVaultAccessPolicyCommand.d.ts +34 -17
  34. package/dist-types/ts3.4/commands/SetVaultNotificationsCommand.d.ts +34 -17
  35. package/dist-types/ts3.4/commands/UploadArchiveCommand.d.ts +40 -24
  36. package/dist-types/ts3.4/commands/UploadMultipartPartCommand.d.ts +43 -24
  37. package/dist-types/ts3.4/commands/index.d.ts +33 -33
  38. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  39. package/dist-types/ts3.4/index.d.ts +7 -7
  40. package/dist-types/ts3.4/models/GlacierServiceException.d.ts +7 -6
  41. package/dist-types/ts3.4/models/index.d.ts +1 -1
  42. package/dist-types/ts3.4/models/models_0.d.ts +722 -825
  43. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  44. package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListMultipartUploadsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/ListPartsPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/ListVaultsPaginator.d.ts +11 -4
  48. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  49. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +401 -101
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +72 -45
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +72 -45
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +73 -44
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  54. package/dist-types/ts3.4/waiters/index.d.ts +2 -2
  55. package/dist-types/ts3.4/waiters/waitForVaultExists.d.ts +11 -7
  56. package/dist-types/ts3.4/waiters/waitForVaultNotExists.d.ts +11 -7
  57. package/package.json +38 -38
@@ -1,17 +1,30 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
4
- import { CompleteVaultLockInput } from "../models/models_0";
5
- export interface CompleteVaultLockCommandInput extends CompleteVaultLockInput {
6
- }
7
- export interface CompleteVaultLockCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class CompleteVaultLockCommand extends $Command<CompleteVaultLockCommandInput, CompleteVaultLockCommandOutput, GlacierClientResolvedConfig> {
11
- readonly input: CompleteVaultLockCommandInput;
12
- constructor(input: CompleteVaultLockCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CompleteVaultLockCommandInput, CompleteVaultLockCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GlacierClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GlacierClient";
13
+ import { CompleteVaultLockInput } from "../models/models_0";
14
+ export interface CompleteVaultLockCommandInput extends CompleteVaultLockInput {}
15
+ export interface CompleteVaultLockCommandOutput extends __MetadataBearer {}
16
+ export declare class CompleteVaultLockCommand extends $Command<
17
+ CompleteVaultLockCommandInput,
18
+ CompleteVaultLockCommandOutput,
19
+ GlacierClientResolvedConfig
20
+ > {
21
+ readonly input: CompleteVaultLockCommandInput;
22
+ constructor(input: CompleteVaultLockCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: GlacierClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<CompleteVaultLockCommandInput, CompleteVaultLockCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
4
- import { CreateVaultInput, CreateVaultOutput } from "../models/models_0";
5
- export interface CreateVaultCommandInput extends CreateVaultInput {
6
- }
7
- export interface CreateVaultCommandOutput extends CreateVaultOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateVaultCommand extends $Command<CreateVaultCommandInput, CreateVaultCommandOutput, GlacierClientResolvedConfig> {
11
- readonly input: CreateVaultCommandInput;
12
- constructor(input: CreateVaultCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVaultCommandInput, CreateVaultCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GlacierClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GlacierClient";
13
+ import { CreateVaultInput, CreateVaultOutput } from "../models/models_0";
14
+ export interface CreateVaultCommandInput extends CreateVaultInput {}
15
+ export interface CreateVaultCommandOutput
16
+ extends CreateVaultOutput,
17
+ __MetadataBearer {}
18
+ export declare class CreateVaultCommand extends $Command<
19
+ CreateVaultCommandInput,
20
+ CreateVaultCommandOutput,
21
+ GlacierClientResolvedConfig
22
+ > {
23
+ readonly input: CreateVaultCommandInput;
24
+ constructor(input: CreateVaultCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: GlacierClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<CreateVaultCommandInput, CreateVaultCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,30 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
4
- import { DeleteArchiveInput } from "../models/models_0";
5
- export interface DeleteArchiveCommandInput extends DeleteArchiveInput {
6
- }
7
- export interface DeleteArchiveCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteArchiveCommand extends $Command<DeleteArchiveCommandInput, DeleteArchiveCommandOutput, GlacierClientResolvedConfig> {
11
- readonly input: DeleteArchiveCommandInput;
12
- constructor(input: DeleteArchiveCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteArchiveCommandInput, DeleteArchiveCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GlacierClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GlacierClient";
13
+ import { DeleteArchiveInput } from "../models/models_0";
14
+ export interface DeleteArchiveCommandInput extends DeleteArchiveInput {}
15
+ export interface DeleteArchiveCommandOutput extends __MetadataBearer {}
16
+ export declare class DeleteArchiveCommand extends $Command<
17
+ DeleteArchiveCommandInput,
18
+ DeleteArchiveCommandOutput,
19
+ GlacierClientResolvedConfig
20
+ > {
21
+ readonly input: DeleteArchiveCommandInput;
22
+ constructor(input: DeleteArchiveCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: GlacierClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<DeleteArchiveCommandInput, DeleteArchiveCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
4
- import { DeleteVaultAccessPolicyInput } from "../models/models_0";
5
- export interface DeleteVaultAccessPolicyCommandInput extends DeleteVaultAccessPolicyInput {
6
- }
7
- export interface DeleteVaultAccessPolicyCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteVaultAccessPolicyCommand extends $Command<DeleteVaultAccessPolicyCommandInput, DeleteVaultAccessPolicyCommandOutput, GlacierClientResolvedConfig> {
11
- readonly input: DeleteVaultAccessPolicyCommandInput;
12
- constructor(input: DeleteVaultAccessPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVaultAccessPolicyCommandInput, DeleteVaultAccessPolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GlacierClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GlacierClient";
13
+ import { DeleteVaultAccessPolicyInput } from "../models/models_0";
14
+ export interface DeleteVaultAccessPolicyCommandInput
15
+ extends DeleteVaultAccessPolicyInput {}
16
+ export interface DeleteVaultAccessPolicyCommandOutput
17
+ extends __MetadataBearer {}
18
+ export declare class DeleteVaultAccessPolicyCommand extends $Command<
19
+ DeleteVaultAccessPolicyCommandInput,
20
+ DeleteVaultAccessPolicyCommandOutput,
21
+ GlacierClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteVaultAccessPolicyCommandInput;
24
+ constructor(input: DeleteVaultAccessPolicyCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: GlacierClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<
30
+ DeleteVaultAccessPolicyCommandInput,
31
+ DeleteVaultAccessPolicyCommandOutput
32
+ >;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,30 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
4
- import { DeleteVaultInput } from "../models/models_0";
5
- export interface DeleteVaultCommandInput extends DeleteVaultInput {
6
- }
7
- export interface DeleteVaultCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteVaultCommand extends $Command<DeleteVaultCommandInput, DeleteVaultCommandOutput, GlacierClientResolvedConfig> {
11
- readonly input: DeleteVaultCommandInput;
12
- constructor(input: DeleteVaultCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVaultCommandInput, DeleteVaultCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GlacierClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GlacierClient";
13
+ import { DeleteVaultInput } from "../models/models_0";
14
+ export interface DeleteVaultCommandInput extends DeleteVaultInput {}
15
+ export interface DeleteVaultCommandOutput extends __MetadataBearer {}
16
+ export declare class DeleteVaultCommand extends $Command<
17
+ DeleteVaultCommandInput,
18
+ DeleteVaultCommandOutput,
19
+ GlacierClientResolvedConfig
20
+ > {
21
+ readonly input: DeleteVaultCommandInput;
22
+ constructor(input: DeleteVaultCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: GlacierClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<DeleteVaultCommandInput, DeleteVaultCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
4
- import { DeleteVaultNotificationsInput } from "../models/models_0";
5
- export interface DeleteVaultNotificationsCommandInput extends DeleteVaultNotificationsInput {
6
- }
7
- export interface DeleteVaultNotificationsCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteVaultNotificationsCommand extends $Command<DeleteVaultNotificationsCommandInput, DeleteVaultNotificationsCommandOutput, GlacierClientResolvedConfig> {
11
- readonly input: DeleteVaultNotificationsCommandInput;
12
- constructor(input: DeleteVaultNotificationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVaultNotificationsCommandInput, DeleteVaultNotificationsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GlacierClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GlacierClient";
13
+ import { DeleteVaultNotificationsInput } from "../models/models_0";
14
+ export interface DeleteVaultNotificationsCommandInput
15
+ extends DeleteVaultNotificationsInput {}
16
+ export interface DeleteVaultNotificationsCommandOutput
17
+ extends __MetadataBearer {}
18
+ export declare class DeleteVaultNotificationsCommand extends $Command<
19
+ DeleteVaultNotificationsCommandInput,
20
+ DeleteVaultNotificationsCommandOutput,
21
+ GlacierClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteVaultNotificationsCommandInput;
24
+ constructor(input: DeleteVaultNotificationsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: GlacierClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<
30
+ DeleteVaultNotificationsCommandInput,
31
+ DeleteVaultNotificationsCommandOutput
32
+ >;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
4
- import { DescribeJobInput, GlacierJobDescription } from "../models/models_0";
5
- export interface DescribeJobCommandInput extends DescribeJobInput {
6
- }
7
- export interface DescribeJobCommandOutput extends GlacierJobDescription, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeJobCommand extends $Command<DescribeJobCommandInput, DescribeJobCommandOutput, GlacierClientResolvedConfig> {
11
- readonly input: DescribeJobCommandInput;
12
- constructor(input: DescribeJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobCommandInput, DescribeJobCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GlacierClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GlacierClient";
13
+ import { DescribeJobInput, GlacierJobDescription } from "../models/models_0";
14
+ export interface DescribeJobCommandInput extends DescribeJobInput {}
15
+ export interface DescribeJobCommandOutput
16
+ extends GlacierJobDescription,
17
+ __MetadataBearer {}
18
+ export declare class DescribeJobCommand extends $Command<
19
+ DescribeJobCommandInput,
20
+ DescribeJobCommandOutput,
21
+ GlacierClientResolvedConfig
22
+ > {
23
+ readonly input: DescribeJobCommandInput;
24
+ constructor(input: DescribeJobCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: GlacierClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DescribeJobCommandInput, DescribeJobCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
4
- import { DescribeVaultInput, DescribeVaultOutput } from "../models/models_0";
5
- export interface DescribeVaultCommandInput extends DescribeVaultInput {
6
- }
7
- export interface DescribeVaultCommandOutput extends DescribeVaultOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeVaultCommand extends $Command<DescribeVaultCommandInput, DescribeVaultCommandOutput, GlacierClientResolvedConfig> {
11
- readonly input: DescribeVaultCommandInput;
12
- constructor(input: DescribeVaultCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVaultCommandInput, DescribeVaultCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GlacierClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GlacierClient";
13
+ import { DescribeVaultInput, DescribeVaultOutput } from "../models/models_0";
14
+ export interface DescribeVaultCommandInput extends DescribeVaultInput {}
15
+ export interface DescribeVaultCommandOutput
16
+ extends DescribeVaultOutput,
17
+ __MetadataBearer {}
18
+ export declare class DescribeVaultCommand extends $Command<
19
+ DescribeVaultCommandInput,
20
+ DescribeVaultCommandOutput,
21
+ GlacierClientResolvedConfig
22
+ > {
23
+ readonly input: DescribeVaultCommandInput;
24
+ constructor(input: DescribeVaultCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: GlacierClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DescribeVaultCommandInput, DescribeVaultCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
4
- import { GetDataRetrievalPolicyInput, GetDataRetrievalPolicyOutput } from "../models/models_0";
5
- export interface GetDataRetrievalPolicyCommandInput extends GetDataRetrievalPolicyInput {
6
- }
7
- export interface GetDataRetrievalPolicyCommandOutput extends GetDataRetrievalPolicyOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetDataRetrievalPolicyCommand extends $Command<GetDataRetrievalPolicyCommandInput, GetDataRetrievalPolicyCommandOutput, GlacierClientResolvedConfig> {
11
- readonly input: GetDataRetrievalPolicyCommandInput;
12
- constructor(input: GetDataRetrievalPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataRetrievalPolicyCommandInput, GetDataRetrievalPolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GlacierClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GlacierClient";
13
+ import {
14
+ GetDataRetrievalPolicyInput,
15
+ GetDataRetrievalPolicyOutput,
16
+ } from "../models/models_0";
17
+ export interface GetDataRetrievalPolicyCommandInput
18
+ extends GetDataRetrievalPolicyInput {}
19
+ export interface GetDataRetrievalPolicyCommandOutput
20
+ extends GetDataRetrievalPolicyOutput,
21
+ __MetadataBearer {}
22
+ export declare class GetDataRetrievalPolicyCommand extends $Command<
23
+ GetDataRetrievalPolicyCommandInput,
24
+ GetDataRetrievalPolicyCommandOutput,
25
+ GlacierClientResolvedConfig
26
+ > {
27
+ readonly input: GetDataRetrievalPolicyCommandInput;
28
+ constructor(input: GetDataRetrievalPolicyCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: GlacierClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ GetDataRetrievalPolicyCommandInput,
35
+ GetDataRetrievalPolicyCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
4
- import { GetJobOutputInput, GetJobOutputOutput } from "../models/models_0";
5
- export interface GetJobOutputCommandInput extends GetJobOutputInput {
6
- }
7
- export interface GetJobOutputCommandOutput extends GetJobOutputOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetJobOutputCommand extends $Command<GetJobOutputCommandInput, GetJobOutputCommandOutput, GlacierClientResolvedConfig> {
11
- readonly input: GetJobOutputCommandInput;
12
- constructor(input: GetJobOutputCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobOutputCommandInput, GetJobOutputCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GlacierClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GlacierClient";
13
+ import { GetJobOutputInput, GetJobOutputOutput } from "../models/models_0";
14
+ export interface GetJobOutputCommandInput extends GetJobOutputInput {}
15
+ export interface GetJobOutputCommandOutput
16
+ extends GetJobOutputOutput,
17
+ __MetadataBearer {}
18
+ export declare class GetJobOutputCommand extends $Command<
19
+ GetJobOutputCommandInput,
20
+ GetJobOutputCommandOutput,
21
+ GlacierClientResolvedConfig
22
+ > {
23
+ readonly input: GetJobOutputCommandInput;
24
+ constructor(input: GetJobOutputCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: GlacierClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetJobOutputCommandInput, GetJobOutputCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
4
- import { GetVaultAccessPolicyInput, GetVaultAccessPolicyOutput } from "../models/models_0";
5
- export interface GetVaultAccessPolicyCommandInput extends GetVaultAccessPolicyInput {
6
- }
7
- export interface GetVaultAccessPolicyCommandOutput extends GetVaultAccessPolicyOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetVaultAccessPolicyCommand extends $Command<GetVaultAccessPolicyCommandInput, GetVaultAccessPolicyCommandOutput, GlacierClientResolvedConfig> {
11
- readonly input: GetVaultAccessPolicyCommandInput;
12
- constructor(input: GetVaultAccessPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetVaultAccessPolicyCommandInput, GetVaultAccessPolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GlacierClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GlacierClient";
13
+ import {
14
+ GetVaultAccessPolicyInput,
15
+ GetVaultAccessPolicyOutput,
16
+ } from "../models/models_0";
17
+ export interface GetVaultAccessPolicyCommandInput
18
+ extends GetVaultAccessPolicyInput {}
19
+ export interface GetVaultAccessPolicyCommandOutput
20
+ extends GetVaultAccessPolicyOutput,
21
+ __MetadataBearer {}
22
+ export declare class GetVaultAccessPolicyCommand extends $Command<
23
+ GetVaultAccessPolicyCommandInput,
24
+ GetVaultAccessPolicyCommandOutput,
25
+ GlacierClientResolvedConfig
26
+ > {
27
+ readonly input: GetVaultAccessPolicyCommandInput;
28
+ constructor(input: GetVaultAccessPolicyCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: GlacierClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ GetVaultAccessPolicyCommandInput,
35
+ GetVaultAccessPolicyCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
4
- import { GetVaultLockInput, GetVaultLockOutput } from "../models/models_0";
5
- export interface GetVaultLockCommandInput extends GetVaultLockInput {
6
- }
7
- export interface GetVaultLockCommandOutput extends GetVaultLockOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetVaultLockCommand extends $Command<GetVaultLockCommandInput, GetVaultLockCommandOutput, GlacierClientResolvedConfig> {
11
- readonly input: GetVaultLockCommandInput;
12
- constructor(input: GetVaultLockCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetVaultLockCommandInput, GetVaultLockCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GlacierClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../GlacierClient";
13
+ import { GetVaultLockInput, GetVaultLockOutput } from "../models/models_0";
14
+ export interface GetVaultLockCommandInput extends GetVaultLockInput {}
15
+ export interface GetVaultLockCommandOutput
16
+ extends GetVaultLockOutput,
17
+ __MetadataBearer {}
18
+ export declare class GetVaultLockCommand extends $Command<
19
+ GetVaultLockCommandInput,
20
+ GetVaultLockCommandOutput,
21
+ GlacierClientResolvedConfig
22
+ > {
23
+ readonly input: GetVaultLockCommandInput;
24
+ constructor(input: GetVaultLockCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: GlacierClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetVaultLockCommandInput, GetVaultLockCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }