@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Glacier.d.ts +565 -170
- package/dist-types/ts3.4/GlacierClient.d.ts +310 -114
- package/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/AbortVaultLockCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/AddTagsToVaultCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CompleteVaultLockCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/CreateVaultCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteArchiveCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteVaultAccessPolicyCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteVaultCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteVaultNotificationsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeVaultCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetDataRetrievalPolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetJobOutputCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetVaultAccessPolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetVaultLockCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetVaultNotificationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/InitiateJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/InitiateMultipartUploadCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/InitiateVaultLockCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListPartsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListProvisionedCapacityCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForVaultCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListVaultsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PurchaseProvisionedCapacityCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/RemoveTagsFromVaultCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/SetDataRetrievalPolicyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/SetVaultAccessPolicyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/SetVaultNotificationsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UploadArchiveCommand.d.ts +40 -24
- package/dist-types/ts3.4/commands/UploadMultipartPartCommand.d.ts +43 -24
- package/dist-types/ts3.4/commands/index.d.ts +33 -33
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/GlacierServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +722 -825
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListMultipartUploadsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPartsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListVaultsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +401 -101
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +72 -45
- package/dist-types/ts3.4/runtimeConfig.d.ts +72 -45
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +73 -44
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/dist-types/ts3.4/waiters/waitForVaultExists.d.ts +11 -7
- package/dist-types/ts3.4/waiters/waitForVaultNotExists.d.ts +11 -7
- package/package.json +38 -38
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|