@aws-sdk/client-dlm 3.50.0 → 3.53.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/DLMServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +67 -1
- package/dist-cjs/protocols/Aws_restJson1.js +118 -290
- package/dist-es/index.js +1 -0
- package/dist-es/models/DLMServiceException.js +12 -0
- package/dist-es/models/models_0.js +63 -1
- package/dist-es/protocols/Aws_restJson1.js +201 -327
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DLMServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +30 -13
- package/dist-types/ts3.4/DLM.d.ts +45 -0
- package/dist-types/ts3.4/DLMClient.d.ts +81 -0
- package/dist-types/ts3.4/commands/CreateLifecyclePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteLifecyclePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetLifecyclePoliciesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetLifecyclePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateLifecyclePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/DLMServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +536 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +26 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from DLM service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class DLMServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DLMServiceException as __BaseException } from "./DLMServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Specifies the encryption settings for shared snapshots that are copied across Regions.</p>
|
|
4
5
|
*/
|
|
@@ -600,19 +601,23 @@ export declare namespace CreateLifecyclePolicyResponse {
|
|
|
600
601
|
/**
|
|
601
602
|
* <p>The service failed in an unexpected way.</p>
|
|
602
603
|
*/
|
|
603
|
-
export
|
|
604
|
-
name: "InternalServerException";
|
|
605
|
-
$fault: "server";
|
|
604
|
+
export declare class InternalServerException extends __BaseException {
|
|
605
|
+
readonly name: "InternalServerException";
|
|
606
|
+
readonly $fault: "server";
|
|
606
607
|
Message?: string;
|
|
607
608
|
Code?: string;
|
|
609
|
+
/**
|
|
610
|
+
* @internal
|
|
611
|
+
*/
|
|
612
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
608
613
|
}
|
|
609
614
|
/**
|
|
610
615
|
* <p>Bad request. The request is missing required parameters or has invalid
|
|
611
616
|
* parameters.</p>
|
|
612
617
|
*/
|
|
613
|
-
export
|
|
614
|
-
name: "InvalidRequestException";
|
|
615
|
-
$fault: "client";
|
|
618
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
619
|
+
readonly name: "InvalidRequestException";
|
|
620
|
+
readonly $fault: "client";
|
|
616
621
|
Message?: string;
|
|
617
622
|
Code?: string;
|
|
618
623
|
/**
|
|
@@ -623,19 +628,27 @@ export interface InvalidRequestException extends __SmithyException, $MetadataBea
|
|
|
623
628
|
* <p>The request included parameters that cannot be provided together.</p>
|
|
624
629
|
*/
|
|
625
630
|
MutuallyExclusiveParameters?: string[];
|
|
631
|
+
/**
|
|
632
|
+
* @internal
|
|
633
|
+
*/
|
|
634
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
626
635
|
}
|
|
627
636
|
/**
|
|
628
637
|
* <p>The request failed because a limit was exceeded.</p>
|
|
629
638
|
*/
|
|
630
|
-
export
|
|
631
|
-
name: "LimitExceededException";
|
|
632
|
-
$fault: "client";
|
|
639
|
+
export declare class LimitExceededException extends __BaseException {
|
|
640
|
+
readonly name: "LimitExceededException";
|
|
641
|
+
readonly $fault: "client";
|
|
633
642
|
Message?: string;
|
|
634
643
|
Code?: string;
|
|
635
644
|
/**
|
|
636
645
|
* <p>Value is the type of resource for which a limit was exceeded.</p>
|
|
637
646
|
*/
|
|
638
647
|
ResourceType?: string;
|
|
648
|
+
/**
|
|
649
|
+
* @internal
|
|
650
|
+
*/
|
|
651
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
639
652
|
}
|
|
640
653
|
export interface DeleteLifecyclePolicyRequest {
|
|
641
654
|
/**
|
|
@@ -660,9 +673,9 @@ export declare namespace DeleteLifecyclePolicyResponse {
|
|
|
660
673
|
/**
|
|
661
674
|
* <p>A requested resource was not found.</p>
|
|
662
675
|
*/
|
|
663
|
-
export
|
|
664
|
-
name: "ResourceNotFoundException";
|
|
665
|
-
$fault: "client";
|
|
676
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
677
|
+
readonly name: "ResourceNotFoundException";
|
|
678
|
+
readonly $fault: "client";
|
|
666
679
|
Message?: string;
|
|
667
680
|
Code?: string;
|
|
668
681
|
/**
|
|
@@ -673,6 +686,10 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
673
686
|
* <p>Value is a list of resource IDs that were not found.</p>
|
|
674
687
|
*/
|
|
675
688
|
ResourceIds?: string[];
|
|
689
|
+
/**
|
|
690
|
+
* @internal
|
|
691
|
+
*/
|
|
692
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
676
693
|
}
|
|
677
694
|
export declare enum GettablePolicyStateValues {
|
|
678
695
|
DISABLED = "DISABLED",
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CreateLifecyclePolicyCommandInput, CreateLifecyclePolicyCommandOutput } from "./commands/CreateLifecyclePolicyCommand";
|
|
3
|
+
import { DeleteLifecyclePolicyCommandInput, DeleteLifecyclePolicyCommandOutput } from "./commands/DeleteLifecyclePolicyCommand";
|
|
4
|
+
import { GetLifecyclePoliciesCommandInput, GetLifecyclePoliciesCommandOutput } from "./commands/GetLifecyclePoliciesCommand";
|
|
5
|
+
import { GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput } from "./commands/GetLifecyclePolicyCommand";
|
|
6
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
7
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
8
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
9
|
+
import { UpdateLifecyclePolicyCommandInput, UpdateLifecyclePolicyCommandOutput } from "./commands/UpdateLifecyclePolicyCommand";
|
|
10
|
+
import { DLMClient } from "./DLMClient";
|
|
11
|
+
|
|
12
|
+
export declare class DLM extends DLMClient {
|
|
13
|
+
|
|
14
|
+
createLifecyclePolicy(args: CreateLifecyclePolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateLifecyclePolicyCommandOutput>;
|
|
15
|
+
createLifecyclePolicy(args: CreateLifecyclePolicyCommandInput, cb: (err: any, data?: CreateLifecyclePolicyCommandOutput) => void): void;
|
|
16
|
+
createLifecyclePolicy(args: CreateLifecyclePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLifecyclePolicyCommandOutput) => void): void;
|
|
17
|
+
|
|
18
|
+
deleteLifecyclePolicy(args: DeleteLifecyclePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLifecyclePolicyCommandOutput>;
|
|
19
|
+
deleteLifecyclePolicy(args: DeleteLifecyclePolicyCommandInput, cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void): void;
|
|
20
|
+
deleteLifecyclePolicy(args: DeleteLifecyclePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void): void;
|
|
21
|
+
|
|
22
|
+
getLifecyclePolicies(args: GetLifecyclePoliciesCommandInput, options?: __HttpHandlerOptions): Promise<GetLifecyclePoliciesCommandOutput>;
|
|
23
|
+
getLifecyclePolicies(args: GetLifecyclePoliciesCommandInput, cb: (err: any, data?: GetLifecyclePoliciesCommandOutput) => void): void;
|
|
24
|
+
getLifecyclePolicies(args: GetLifecyclePoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLifecyclePoliciesCommandOutput) => void): void;
|
|
25
|
+
|
|
26
|
+
getLifecyclePolicy(args: GetLifecyclePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetLifecyclePolicyCommandOutput>;
|
|
27
|
+
getLifecyclePolicy(args: GetLifecyclePolicyCommandInput, cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void): void;
|
|
28
|
+
getLifecyclePolicy(args: GetLifecyclePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLifecyclePolicyCommandOutput) => void): void;
|
|
29
|
+
|
|
30
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
31
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
32
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
33
|
+
|
|
34
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
35
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
36
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
37
|
+
|
|
38
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
39
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
40
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
41
|
+
|
|
42
|
+
updateLifecyclePolicy(args: UpdateLifecyclePolicyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLifecyclePolicyCommandOutput>;
|
|
43
|
+
updateLifecyclePolicy(args: UpdateLifecyclePolicyCommandInput, cb: (err: any, data?: UpdateLifecyclePolicyCommandOutput) => void): void;
|
|
44
|
+
updateLifecyclePolicy(args: UpdateLifecyclePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLifecyclePolicyCommandOutput) => void): void;
|
|
45
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { CreateLifecyclePolicyCommandInput, CreateLifecyclePolicyCommandOutput } from "./commands/CreateLifecyclePolicyCommand";
|
|
10
|
+
import { DeleteLifecyclePolicyCommandInput, DeleteLifecyclePolicyCommandOutput } from "./commands/DeleteLifecyclePolicyCommand";
|
|
11
|
+
import { GetLifecyclePoliciesCommandInput, GetLifecyclePoliciesCommandOutput } from "./commands/GetLifecyclePoliciesCommand";
|
|
12
|
+
import { GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput } from "./commands/GetLifecyclePolicyCommand";
|
|
13
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
14
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
15
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
16
|
+
import { UpdateLifecyclePolicyCommandInput, UpdateLifecyclePolicyCommandOutput } from "./commands/UpdateLifecyclePolicyCommand";
|
|
17
|
+
export declare type ServiceInputTypes = CreateLifecyclePolicyCommandInput | DeleteLifecyclePolicyCommandInput | GetLifecyclePoliciesCommandInput | GetLifecyclePolicyCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateLifecyclePolicyCommandInput;
|
|
18
|
+
export declare type ServiceOutputTypes = CreateLifecyclePolicyCommandOutput | DeleteLifecyclePolicyCommandOutput | GetLifecyclePoliciesCommandOutput | GetLifecyclePolicyCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateLifecyclePolicyCommandOutput;
|
|
19
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
20
|
+
|
|
21
|
+
requestHandler?: __HttpHandler;
|
|
22
|
+
|
|
23
|
+
sha256?: __HashConstructor;
|
|
24
|
+
|
|
25
|
+
urlParser?: __UrlParser;
|
|
26
|
+
|
|
27
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
28
|
+
|
|
29
|
+
streamCollector?: __StreamCollector;
|
|
30
|
+
|
|
31
|
+
base64Decoder?: __Decoder;
|
|
32
|
+
|
|
33
|
+
base64Encoder?: __Encoder;
|
|
34
|
+
|
|
35
|
+
utf8Decoder?: __Decoder;
|
|
36
|
+
|
|
37
|
+
utf8Encoder?: __Encoder;
|
|
38
|
+
|
|
39
|
+
runtime?: string;
|
|
40
|
+
|
|
41
|
+
disableHostPrefix?: boolean;
|
|
42
|
+
|
|
43
|
+
maxAttempts?: number | __Provider<number>;
|
|
44
|
+
|
|
45
|
+
retryMode?: string | __Provider<string>;
|
|
46
|
+
|
|
47
|
+
logger?: __Logger;
|
|
48
|
+
|
|
49
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
50
|
+
|
|
51
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
52
|
+
|
|
53
|
+
serviceId?: string;
|
|
54
|
+
|
|
55
|
+
region?: string | __Provider<string>;
|
|
56
|
+
|
|
57
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
58
|
+
|
|
59
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
60
|
+
|
|
61
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
62
|
+
|
|
63
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
64
|
+
}
|
|
65
|
+
declare type DLMClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
66
|
+
|
|
67
|
+
export interface DLMClientConfig extends DLMClientConfigType {
|
|
68
|
+
}
|
|
69
|
+
declare type DLMClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
70
|
+
|
|
71
|
+
export interface DLMClientResolvedConfig extends DLMClientResolvedConfigType {
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export declare class DLMClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, DLMClientResolvedConfig> {
|
|
75
|
+
|
|
76
|
+
readonly config: DLMClientResolvedConfig;
|
|
77
|
+
constructor(configuration: DLMClientConfig);
|
|
78
|
+
|
|
79
|
+
destroy(): void;
|
|
80
|
+
}
|
|
81
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient";
|
|
4
|
+
import { CreateLifecyclePolicyRequest, CreateLifecyclePolicyResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateLifecyclePolicyCommandInput extends CreateLifecyclePolicyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateLifecyclePolicyCommandOutput extends CreateLifecyclePolicyResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateLifecyclePolicyCommand extends $Command<CreateLifecyclePolicyCommandInput, CreateLifecyclePolicyCommandOutput, DLMClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateLifecyclePolicyCommandInput;
|
|
12
|
+
constructor(input: CreateLifecyclePolicyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DLMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLifecyclePolicyCommandInput, CreateLifecyclePolicyCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient";
|
|
4
|
+
import { DeleteLifecyclePolicyRequest, DeleteLifecyclePolicyResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteLifecyclePolicyCommandInput extends DeleteLifecyclePolicyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteLifecyclePolicyCommandOutput extends DeleteLifecyclePolicyResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteLifecyclePolicyCommand extends $Command<DeleteLifecyclePolicyCommandInput, DeleteLifecyclePolicyCommandOutput, DLMClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteLifecyclePolicyCommandInput;
|
|
12
|
+
constructor(input: DeleteLifecyclePolicyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DLMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLifecyclePolicyCommandInput, DeleteLifecyclePolicyCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient";
|
|
4
|
+
import { GetLifecyclePoliciesRequest, GetLifecyclePoliciesResponse } from "../models/models_0";
|
|
5
|
+
export interface GetLifecyclePoliciesCommandInput extends GetLifecyclePoliciesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetLifecyclePoliciesCommandOutput extends GetLifecyclePoliciesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetLifecyclePoliciesCommand extends $Command<GetLifecyclePoliciesCommandInput, GetLifecyclePoliciesCommandOutput, DLMClientResolvedConfig> {
|
|
11
|
+
readonly input: GetLifecyclePoliciesCommandInput;
|
|
12
|
+
constructor(input: GetLifecyclePoliciesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DLMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLifecyclePoliciesCommandInput, GetLifecyclePoliciesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient";
|
|
4
|
+
import { GetLifecyclePolicyRequest, GetLifecyclePolicyResponse } from "../models/models_0";
|
|
5
|
+
export interface GetLifecyclePolicyCommandInput extends GetLifecyclePolicyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetLifecyclePolicyCommand extends $Command<GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput, DLMClientResolvedConfig> {
|
|
11
|
+
readonly input: GetLifecyclePolicyCommandInput;
|
|
12
|
+
constructor(input: GetLifecyclePolicyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DLMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient";
|
|
4
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DLMClientResolvedConfig> {
|
|
11
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
12
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DLMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient";
|
|
4
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DLMClientResolvedConfig> {
|
|
11
|
+
readonly input: TagResourceCommandInput;
|
|
12
|
+
constructor(input: TagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DLMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient";
|
|
4
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DLMClientResolvedConfig> {
|
|
11
|
+
readonly input: UntagResourceCommandInput;
|
|
12
|
+
constructor(input: UntagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DLMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient";
|
|
4
|
+
import { UpdateLifecyclePolicyRequest, UpdateLifecyclePolicyResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateLifecyclePolicyCommandInput extends UpdateLifecyclePolicyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateLifecyclePolicyCommandOutput extends UpdateLifecyclePolicyResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateLifecyclePolicyCommand extends $Command<UpdateLifecyclePolicyCommandInput, UpdateLifecyclePolicyCommandOutput, DLMClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateLifecyclePolicyCommandInput;
|
|
12
|
+
constructor(input: UpdateLifecyclePolicyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DLMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLifecyclePolicyCommandInput, UpdateLifecyclePolicyCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from "./CreateLifecyclePolicyCommand";
|
|
2
|
+
export * from "./DeleteLifecyclePolicyCommand";
|
|
3
|
+
export * from "./GetLifecyclePoliciesCommand";
|
|
4
|
+
export * from "./GetLifecyclePolicyCommand";
|
|
5
|
+
export * from "./ListTagsForResourceCommand";
|
|
6
|
+
export * from "./TagResourceCommand";
|
|
7
|
+
export * from "./UntagResourceCommand";
|
|
8
|
+
export * from "./UpdateLifecyclePolicyCommand";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|