@aws-sdk/client-cloudcontrol 3.50.0 → 3.51.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 +8 -0
- package/dist-types/ts3.4/CloudControl.d.ts +45 -0
- package/dist-types/ts3.4/CloudControlClient.d.ts +81 -0
- package/dist-types/ts3.4/commands/CancelResourceRequestCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourceRequestStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListResourceRequestsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateResourceCommand.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 +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +388 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListResourceRequestsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListResourcesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.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/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForResourceRequestSuccess.d.ts +7 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-cloudcontrol
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-cloudcontrol
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CloudControlClient } from "./CloudControlClient";
|
|
3
|
+
import { CancelResourceRequestCommandInput, CancelResourceRequestCommandOutput } from "./commands/CancelResourceRequestCommand";
|
|
4
|
+
import { CreateResourceCommandInput, CreateResourceCommandOutput } from "./commands/CreateResourceCommand";
|
|
5
|
+
import { DeleteResourceCommandInput, DeleteResourceCommandOutput } from "./commands/DeleteResourceCommand";
|
|
6
|
+
import { GetResourceCommandInput, GetResourceCommandOutput } from "./commands/GetResourceCommand";
|
|
7
|
+
import { GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput } from "./commands/GetResourceRequestStatusCommand";
|
|
8
|
+
import { ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput } from "./commands/ListResourceRequestsCommand";
|
|
9
|
+
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "./commands/ListResourcesCommand";
|
|
10
|
+
import { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand";
|
|
11
|
+
|
|
12
|
+
export declare class CloudControl extends CloudControlClient {
|
|
13
|
+
|
|
14
|
+
cancelResourceRequest(args: CancelResourceRequestCommandInput, options?: __HttpHandlerOptions): Promise<CancelResourceRequestCommandOutput>;
|
|
15
|
+
cancelResourceRequest(args: CancelResourceRequestCommandInput, cb: (err: any, data?: CancelResourceRequestCommandOutput) => void): void;
|
|
16
|
+
cancelResourceRequest(args: CancelResourceRequestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelResourceRequestCommandOutput) => void): void;
|
|
17
|
+
|
|
18
|
+
createResource(args: CreateResourceCommandInput, options?: __HttpHandlerOptions): Promise<CreateResourceCommandOutput>;
|
|
19
|
+
createResource(args: CreateResourceCommandInput, cb: (err: any, data?: CreateResourceCommandOutput) => void): void;
|
|
20
|
+
createResource(args: CreateResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResourceCommandOutput) => void): void;
|
|
21
|
+
|
|
22
|
+
deleteResource(args: DeleteResourceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourceCommandOutput>;
|
|
23
|
+
deleteResource(args: DeleteResourceCommandInput, cb: (err: any, data?: DeleteResourceCommandOutput) => void): void;
|
|
24
|
+
deleteResource(args: DeleteResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourceCommandOutput) => void): void;
|
|
25
|
+
|
|
26
|
+
getResource(args: GetResourceCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceCommandOutput>;
|
|
27
|
+
getResource(args: GetResourceCommandInput, cb: (err: any, data?: GetResourceCommandOutput) => void): void;
|
|
28
|
+
getResource(args: GetResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceCommandOutput) => void): void;
|
|
29
|
+
|
|
30
|
+
getResourceRequestStatus(args: GetResourceRequestStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceRequestStatusCommandOutput>;
|
|
31
|
+
getResourceRequestStatus(args: GetResourceRequestStatusCommandInput, cb: (err: any, data?: GetResourceRequestStatusCommandOutput) => void): void;
|
|
32
|
+
getResourceRequestStatus(args: GetResourceRequestStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceRequestStatusCommandOutput) => void): void;
|
|
33
|
+
|
|
34
|
+
listResourceRequests(args: ListResourceRequestsCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceRequestsCommandOutput>;
|
|
35
|
+
listResourceRequests(args: ListResourceRequestsCommandInput, cb: (err: any, data?: ListResourceRequestsCommandOutput) => void): void;
|
|
36
|
+
listResourceRequests(args: ListResourceRequestsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceRequestsCommandOutput) => void): void;
|
|
37
|
+
|
|
38
|
+
listResources(args: ListResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListResourcesCommandOutput>;
|
|
39
|
+
listResources(args: ListResourcesCommandInput, cb: (err: any, data?: ListResourcesCommandOutput) => void): void;
|
|
40
|
+
listResources(args: ListResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourcesCommandOutput) => void): void;
|
|
41
|
+
|
|
42
|
+
updateResource(args: UpdateResourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceCommandOutput>;
|
|
43
|
+
updateResource(args: UpdateResourceCommandInput, cb: (err: any, data?: UpdateResourceCommandOutput) => void): void;
|
|
44
|
+
updateResource(args: UpdateResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResourceCommandOutput) => 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 { CancelResourceRequestCommandInput, CancelResourceRequestCommandOutput } from "./commands/CancelResourceRequestCommand";
|
|
10
|
+
import { CreateResourceCommandInput, CreateResourceCommandOutput } from "./commands/CreateResourceCommand";
|
|
11
|
+
import { DeleteResourceCommandInput, DeleteResourceCommandOutput } from "./commands/DeleteResourceCommand";
|
|
12
|
+
import { GetResourceCommandInput, GetResourceCommandOutput } from "./commands/GetResourceCommand";
|
|
13
|
+
import { GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput } from "./commands/GetResourceRequestStatusCommand";
|
|
14
|
+
import { ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput } from "./commands/ListResourceRequestsCommand";
|
|
15
|
+
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "./commands/ListResourcesCommand";
|
|
16
|
+
import { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand";
|
|
17
|
+
export declare type ServiceInputTypes = CancelResourceRequestCommandInput | CreateResourceCommandInput | DeleteResourceCommandInput | GetResourceCommandInput | GetResourceRequestStatusCommandInput | ListResourceRequestsCommandInput | ListResourcesCommandInput | UpdateResourceCommandInput;
|
|
18
|
+
export declare type ServiceOutputTypes = CancelResourceRequestCommandOutput | CreateResourceCommandOutput | DeleteResourceCommandOutput | GetResourceCommandOutput | GetResourceRequestStatusCommandOutput | ListResourceRequestsCommandOutput | ListResourcesCommandOutput | UpdateResourceCommandOutput;
|
|
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 CloudControlClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
66
|
+
|
|
67
|
+
export interface CloudControlClientConfig extends CloudControlClientConfigType {
|
|
68
|
+
}
|
|
69
|
+
declare type CloudControlClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
70
|
+
|
|
71
|
+
export interface CloudControlClientResolvedConfig extends CloudControlClientResolvedConfigType {
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export declare class CloudControlClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CloudControlClientResolvedConfig> {
|
|
75
|
+
|
|
76
|
+
readonly config: CloudControlClientResolvedConfig;
|
|
77
|
+
constructor(configuration: CloudControlClientConfig);
|
|
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 { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
4
|
+
import { CancelResourceRequestInput, CancelResourceRequestOutput } from "../models/models_0";
|
|
5
|
+
export interface CancelResourceRequestCommandInput extends CancelResourceRequestInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CancelResourceRequestCommandOutput extends CancelResourceRequestOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CancelResourceRequestCommand extends $Command<CancelResourceRequestCommandInput, CancelResourceRequestCommandOutput, CloudControlClientResolvedConfig> {
|
|
11
|
+
readonly input: CancelResourceRequestCommandInput;
|
|
12
|
+
constructor(input: CancelResourceRequestCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelResourceRequestCommandInput, CancelResourceRequestCommandOutput>;
|
|
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 { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
4
|
+
import { CreateResourceInput, CreateResourceOutput } from "../models/models_0";
|
|
5
|
+
export interface CreateResourceCommandInput extends CreateResourceInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateResourceCommandOutput extends CreateResourceOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateResourceCommand extends $Command<CreateResourceCommandInput, CreateResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateResourceCommandInput;
|
|
12
|
+
constructor(input: CreateResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateResourceCommandInput, CreateResourceCommandOutput>;
|
|
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 { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
4
|
+
import { DeleteResourceInput, DeleteResourceOutput } from "../models/models_0";
|
|
5
|
+
export interface DeleteResourceCommandInput extends DeleteResourceInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteResourceCommandOutput extends DeleteResourceOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteResourceCommand extends $Command<DeleteResourceCommandInput, DeleteResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteResourceCommandInput;
|
|
12
|
+
constructor(input: DeleteResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourceCommandInput, DeleteResourceCommandOutput>;
|
|
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 { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
4
|
+
import { GetResourceInput, GetResourceOutput } from "../models/models_0";
|
|
5
|
+
export interface GetResourceCommandInput extends GetResourceInput {
|
|
6
|
+
}
|
|
7
|
+
export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetResourceCommand extends $Command<GetResourceCommandInput, GetResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
11
|
+
readonly input: GetResourceCommandInput;
|
|
12
|
+
constructor(input: GetResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceCommandInput, GetResourceCommandOutput>;
|
|
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 { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
4
|
+
import { GetResourceRequestStatusInput, GetResourceRequestStatusOutput } from "../models/models_0";
|
|
5
|
+
export interface GetResourceRequestStatusCommandInput extends GetResourceRequestStatusInput {
|
|
6
|
+
}
|
|
7
|
+
export interface GetResourceRequestStatusCommandOutput extends GetResourceRequestStatusOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetResourceRequestStatusCommand extends $Command<GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput, CloudControlClientResolvedConfig> {
|
|
11
|
+
readonly input: GetResourceRequestStatusCommandInput;
|
|
12
|
+
constructor(input: GetResourceRequestStatusCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput>;
|
|
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 { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
4
|
+
import { ListResourceRequestsInput, ListResourceRequestsOutput } from "../models/models_0";
|
|
5
|
+
export interface ListResourceRequestsCommandInput extends ListResourceRequestsInput {
|
|
6
|
+
}
|
|
7
|
+
export interface ListResourceRequestsCommandOutput extends ListResourceRequestsOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListResourceRequestsCommand extends $Command<ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput, CloudControlClientResolvedConfig> {
|
|
11
|
+
readonly input: ListResourceRequestsCommandInput;
|
|
12
|
+
constructor(input: ListResourceRequestsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput>;
|
|
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 { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
4
|
+
import { ListResourcesInput, ListResourcesOutput } from "../models/models_0";
|
|
5
|
+
export interface ListResourcesCommandInput extends ListResourcesInput {
|
|
6
|
+
}
|
|
7
|
+
export interface ListResourcesCommandOutput extends ListResourcesOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListResourcesCommand extends $Command<ListResourcesCommandInput, ListResourcesCommandOutput, CloudControlClientResolvedConfig> {
|
|
11
|
+
readonly input: ListResourcesCommandInput;
|
|
12
|
+
constructor(input: ListResourcesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListResourcesCommandInput, ListResourcesCommandOutput>;
|
|
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 { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
|
|
4
|
+
import { UpdateResourceInput, UpdateResourceOutput } from "../models/models_0";
|
|
5
|
+
export interface UpdateResourceCommandInput extends UpdateResourceInput {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateResourceCommand extends $Command<UpdateResourceCommandInput, UpdateResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateResourceCommandInput;
|
|
12
|
+
constructor(input: UpdateResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateResourceCommandInput, UpdateResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from "./CancelResourceRequestCommand";
|
|
2
|
+
export * from "./CreateResourceCommand";
|
|
3
|
+
export * from "./DeleteResourceCommand";
|
|
4
|
+
export * from "./GetResourceCommand";
|
|
5
|
+
export * from "./GetResourceRequestStatusCommand";
|
|
6
|
+
export * from "./ListResourceRequestsCommand";
|
|
7
|
+
export * from "./ListResourcesCommand";
|
|
8
|
+
export * from "./UpdateResourceCommand";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,388 @@
|
|
|
1
|
+
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
+
|
|
3
|
+
export interface AlreadyExistsException extends __SmithyException, $MetadataBearer {
|
|
4
|
+
name: "AlreadyExistsException";
|
|
5
|
+
$fault: "client";
|
|
6
|
+
Message?: string;
|
|
7
|
+
}
|
|
8
|
+
export interface CancelResourceRequestInput {
|
|
9
|
+
|
|
10
|
+
RequestToken: string | undefined;
|
|
11
|
+
}
|
|
12
|
+
export declare namespace CancelResourceRequestInput {
|
|
13
|
+
|
|
14
|
+
const filterSensitiveLog: (obj: CancelResourceRequestInput) => any;
|
|
15
|
+
}
|
|
16
|
+
export declare enum HandlerErrorCode {
|
|
17
|
+
ACCESS_DENIED = "AccessDenied",
|
|
18
|
+
ALREADY_EXISTS = "AlreadyExists",
|
|
19
|
+
GENERAL_SERVICE_EXCEPTION = "GeneralServiceException",
|
|
20
|
+
INTERNAL_FAILURE = "InternalFailure",
|
|
21
|
+
INVALID_CREDENTIALS = "InvalidCredentials",
|
|
22
|
+
INVALID_REQUEST = "InvalidRequest",
|
|
23
|
+
NETWORK_FAILURE = "NetworkFailure",
|
|
24
|
+
NOT_FOUND = "NotFound",
|
|
25
|
+
NOT_STABILIZED = "NotStabilized",
|
|
26
|
+
NOT_UPDATABLE = "NotUpdatable",
|
|
27
|
+
RESOURCE_CONFLICT = "ResourceConflict",
|
|
28
|
+
SERVICE_INTERNAL_ERROR = "ServiceInternalError",
|
|
29
|
+
SERVICE_LIMIT_EXCEEDED = "ServiceLimitExceeded",
|
|
30
|
+
SERVICE_TIMEOUT = "ServiceTimeout",
|
|
31
|
+
THROTTLING = "Throttling"
|
|
32
|
+
}
|
|
33
|
+
export declare enum Operation {
|
|
34
|
+
CREATE = "CREATE",
|
|
35
|
+
DELETE = "DELETE",
|
|
36
|
+
UPDATE = "UPDATE"
|
|
37
|
+
}
|
|
38
|
+
export declare enum OperationStatus {
|
|
39
|
+
CANCEL_COMPLETE = "CANCEL_COMPLETE",
|
|
40
|
+
CANCEL_IN_PROGRESS = "CANCEL_IN_PROGRESS",
|
|
41
|
+
FAILED = "FAILED",
|
|
42
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
43
|
+
PENDING = "PENDING",
|
|
44
|
+
SUCCESS = "SUCCESS"
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface ProgressEvent {
|
|
48
|
+
|
|
49
|
+
TypeName?: string;
|
|
50
|
+
|
|
51
|
+
Identifier?: string;
|
|
52
|
+
|
|
53
|
+
RequestToken?: string;
|
|
54
|
+
|
|
55
|
+
Operation?: Operation | string;
|
|
56
|
+
|
|
57
|
+
OperationStatus?: OperationStatus | string;
|
|
58
|
+
|
|
59
|
+
EventTime?: Date;
|
|
60
|
+
|
|
61
|
+
ResourceModel?: string;
|
|
62
|
+
|
|
63
|
+
StatusMessage?: string;
|
|
64
|
+
|
|
65
|
+
ErrorCode?: HandlerErrorCode | string;
|
|
66
|
+
|
|
67
|
+
RetryAfter?: Date;
|
|
68
|
+
}
|
|
69
|
+
export declare namespace ProgressEvent {
|
|
70
|
+
|
|
71
|
+
const filterSensitiveLog: (obj: ProgressEvent) => any;
|
|
72
|
+
}
|
|
73
|
+
export interface CancelResourceRequestOutput {
|
|
74
|
+
|
|
75
|
+
ProgressEvent?: ProgressEvent;
|
|
76
|
+
}
|
|
77
|
+
export declare namespace CancelResourceRequestOutput {
|
|
78
|
+
|
|
79
|
+
const filterSensitiveLog: (obj: CancelResourceRequestOutput) => any;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
|
|
83
|
+
name: "ConcurrentModificationException";
|
|
84
|
+
$fault: "server";
|
|
85
|
+
Message?: string;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface RequestTokenNotFoundException extends __SmithyException, $MetadataBearer {
|
|
89
|
+
name: "RequestTokenNotFoundException";
|
|
90
|
+
$fault: "client";
|
|
91
|
+
Message?: string;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export interface ClientTokenConflictException extends __SmithyException, $MetadataBearer {
|
|
95
|
+
name: "ClientTokenConflictException";
|
|
96
|
+
$fault: "client";
|
|
97
|
+
Message?: string;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export interface ConcurrentOperationException extends __SmithyException, $MetadataBearer {
|
|
101
|
+
name: "ConcurrentOperationException";
|
|
102
|
+
$fault: "client";
|
|
103
|
+
Message?: string;
|
|
104
|
+
}
|
|
105
|
+
export interface CreateResourceInput {
|
|
106
|
+
|
|
107
|
+
TypeName: string | undefined;
|
|
108
|
+
|
|
109
|
+
TypeVersionId?: string;
|
|
110
|
+
|
|
111
|
+
RoleArn?: string;
|
|
112
|
+
|
|
113
|
+
ClientToken?: string;
|
|
114
|
+
|
|
115
|
+
DesiredState: string | undefined;
|
|
116
|
+
}
|
|
117
|
+
export declare namespace CreateResourceInput {
|
|
118
|
+
|
|
119
|
+
const filterSensitiveLog: (obj: CreateResourceInput) => any;
|
|
120
|
+
}
|
|
121
|
+
export interface CreateResourceOutput {
|
|
122
|
+
|
|
123
|
+
ProgressEvent?: ProgressEvent;
|
|
124
|
+
}
|
|
125
|
+
export declare namespace CreateResourceOutput {
|
|
126
|
+
|
|
127
|
+
const filterSensitiveLog: (obj: CreateResourceOutput) => any;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export interface GeneralServiceException extends __SmithyException, $MetadataBearer {
|
|
131
|
+
name: "GeneralServiceException";
|
|
132
|
+
$fault: "client";
|
|
133
|
+
Message?: string;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export interface HandlerFailureException extends __SmithyException, $MetadataBearer {
|
|
137
|
+
name: "HandlerFailureException";
|
|
138
|
+
$fault: "server";
|
|
139
|
+
Message?: string;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export interface HandlerInternalFailureException extends __SmithyException, $MetadataBearer {
|
|
143
|
+
name: "HandlerInternalFailureException";
|
|
144
|
+
$fault: "server";
|
|
145
|
+
Message?: string;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
export interface InvalidCredentialsException extends __SmithyException, $MetadataBearer {
|
|
149
|
+
name: "InvalidCredentialsException";
|
|
150
|
+
$fault: "client";
|
|
151
|
+
Message?: string;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
|
|
155
|
+
name: "InvalidRequestException";
|
|
156
|
+
$fault: "client";
|
|
157
|
+
Message?: string;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export interface NetworkFailureException extends __SmithyException, $MetadataBearer {
|
|
161
|
+
name: "NetworkFailureException";
|
|
162
|
+
$fault: "server";
|
|
163
|
+
Message?: string;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export interface NotStabilizedException extends __SmithyException, $MetadataBearer {
|
|
167
|
+
name: "NotStabilizedException";
|
|
168
|
+
$fault: "client";
|
|
169
|
+
Message?: string;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
export interface NotUpdatableException extends __SmithyException, $MetadataBearer {
|
|
173
|
+
name: "NotUpdatableException";
|
|
174
|
+
$fault: "client";
|
|
175
|
+
Message?: string;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export interface PrivateTypeException extends __SmithyException, $MetadataBearer {
|
|
179
|
+
name: "PrivateTypeException";
|
|
180
|
+
$fault: "client";
|
|
181
|
+
Message?: string;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
export interface ResourceConflictException extends __SmithyException, $MetadataBearer {
|
|
185
|
+
name: "ResourceConflictException";
|
|
186
|
+
$fault: "client";
|
|
187
|
+
Message?: string;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
191
|
+
name: "ResourceNotFoundException";
|
|
192
|
+
$fault: "client";
|
|
193
|
+
Message?: string;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
export interface ServiceInternalErrorException extends __SmithyException, $MetadataBearer {
|
|
197
|
+
name: "ServiceInternalErrorException";
|
|
198
|
+
$fault: "server";
|
|
199
|
+
Message?: string;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export interface ServiceLimitExceededException extends __SmithyException, $MetadataBearer {
|
|
203
|
+
name: "ServiceLimitExceededException";
|
|
204
|
+
$fault: "client";
|
|
205
|
+
Message?: string;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
209
|
+
name: "ThrottlingException";
|
|
210
|
+
$fault: "client";
|
|
211
|
+
Message?: string;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
export interface TypeNotFoundException extends __SmithyException, $MetadataBearer {
|
|
215
|
+
name: "TypeNotFoundException";
|
|
216
|
+
$fault: "client";
|
|
217
|
+
Message?: string;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
export interface UnsupportedActionException extends __SmithyException, $MetadataBearer {
|
|
221
|
+
name: "UnsupportedActionException";
|
|
222
|
+
$fault: "client";
|
|
223
|
+
Message?: string;
|
|
224
|
+
}
|
|
225
|
+
export interface DeleteResourceInput {
|
|
226
|
+
|
|
227
|
+
TypeName: string | undefined;
|
|
228
|
+
|
|
229
|
+
TypeVersionId?: string;
|
|
230
|
+
|
|
231
|
+
RoleArn?: string;
|
|
232
|
+
|
|
233
|
+
ClientToken?: string;
|
|
234
|
+
|
|
235
|
+
Identifier: string | undefined;
|
|
236
|
+
}
|
|
237
|
+
export declare namespace DeleteResourceInput {
|
|
238
|
+
|
|
239
|
+
const filterSensitiveLog: (obj: DeleteResourceInput) => any;
|
|
240
|
+
}
|
|
241
|
+
export interface DeleteResourceOutput {
|
|
242
|
+
|
|
243
|
+
ProgressEvent?: ProgressEvent;
|
|
244
|
+
}
|
|
245
|
+
export declare namespace DeleteResourceOutput {
|
|
246
|
+
|
|
247
|
+
const filterSensitiveLog: (obj: DeleteResourceOutput) => any;
|
|
248
|
+
}
|
|
249
|
+
export interface GetResourceInput {
|
|
250
|
+
|
|
251
|
+
TypeName: string | undefined;
|
|
252
|
+
|
|
253
|
+
TypeVersionId?: string;
|
|
254
|
+
|
|
255
|
+
RoleArn?: string;
|
|
256
|
+
|
|
257
|
+
Identifier: string | undefined;
|
|
258
|
+
}
|
|
259
|
+
export declare namespace GetResourceInput {
|
|
260
|
+
|
|
261
|
+
const filterSensitiveLog: (obj: GetResourceInput) => any;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
export interface ResourceDescription {
|
|
265
|
+
|
|
266
|
+
Identifier?: string;
|
|
267
|
+
|
|
268
|
+
Properties?: string;
|
|
269
|
+
}
|
|
270
|
+
export declare namespace ResourceDescription {
|
|
271
|
+
|
|
272
|
+
const filterSensitiveLog: (obj: ResourceDescription) => any;
|
|
273
|
+
}
|
|
274
|
+
export interface GetResourceOutput {
|
|
275
|
+
|
|
276
|
+
TypeName?: string;
|
|
277
|
+
|
|
278
|
+
ResourceDescription?: ResourceDescription;
|
|
279
|
+
}
|
|
280
|
+
export declare namespace GetResourceOutput {
|
|
281
|
+
|
|
282
|
+
const filterSensitiveLog: (obj: GetResourceOutput) => any;
|
|
283
|
+
}
|
|
284
|
+
export interface GetResourceRequestStatusInput {
|
|
285
|
+
|
|
286
|
+
RequestToken: string | undefined;
|
|
287
|
+
}
|
|
288
|
+
export declare namespace GetResourceRequestStatusInput {
|
|
289
|
+
|
|
290
|
+
const filterSensitiveLog: (obj: GetResourceRequestStatusInput) => any;
|
|
291
|
+
}
|
|
292
|
+
export interface GetResourceRequestStatusOutput {
|
|
293
|
+
|
|
294
|
+
ProgressEvent?: ProgressEvent;
|
|
295
|
+
}
|
|
296
|
+
export declare namespace GetResourceRequestStatusOutput {
|
|
297
|
+
|
|
298
|
+
const filterSensitiveLog: (obj: GetResourceRequestStatusOutput) => any;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
export interface ResourceRequestStatusFilter {
|
|
302
|
+
|
|
303
|
+
Operations?: (Operation | string)[];
|
|
304
|
+
|
|
305
|
+
OperationStatuses?: (OperationStatus | string)[];
|
|
306
|
+
}
|
|
307
|
+
export declare namespace ResourceRequestStatusFilter {
|
|
308
|
+
|
|
309
|
+
const filterSensitiveLog: (obj: ResourceRequestStatusFilter) => any;
|
|
310
|
+
}
|
|
311
|
+
export interface ListResourceRequestsInput {
|
|
312
|
+
|
|
313
|
+
MaxResults?: number;
|
|
314
|
+
|
|
315
|
+
NextToken?: string;
|
|
316
|
+
|
|
317
|
+
ResourceRequestStatusFilter?: ResourceRequestStatusFilter;
|
|
318
|
+
}
|
|
319
|
+
export declare namespace ListResourceRequestsInput {
|
|
320
|
+
|
|
321
|
+
const filterSensitiveLog: (obj: ListResourceRequestsInput) => any;
|
|
322
|
+
}
|
|
323
|
+
export interface ListResourceRequestsOutput {
|
|
324
|
+
|
|
325
|
+
ResourceRequestStatusSummaries?: ProgressEvent[];
|
|
326
|
+
|
|
327
|
+
NextToken?: string;
|
|
328
|
+
}
|
|
329
|
+
export declare namespace ListResourceRequestsOutput {
|
|
330
|
+
|
|
331
|
+
const filterSensitiveLog: (obj: ListResourceRequestsOutput) => any;
|
|
332
|
+
}
|
|
333
|
+
export interface ListResourcesInput {
|
|
334
|
+
|
|
335
|
+
TypeName: string | undefined;
|
|
336
|
+
|
|
337
|
+
TypeVersionId?: string;
|
|
338
|
+
|
|
339
|
+
RoleArn?: string;
|
|
340
|
+
|
|
341
|
+
NextToken?: string;
|
|
342
|
+
|
|
343
|
+
MaxResults?: number;
|
|
344
|
+
|
|
345
|
+
ResourceModel?: string;
|
|
346
|
+
}
|
|
347
|
+
export declare namespace ListResourcesInput {
|
|
348
|
+
|
|
349
|
+
const filterSensitiveLog: (obj: ListResourcesInput) => any;
|
|
350
|
+
}
|
|
351
|
+
export interface ListResourcesOutput {
|
|
352
|
+
|
|
353
|
+
TypeName?: string;
|
|
354
|
+
|
|
355
|
+
ResourceDescriptions?: ResourceDescription[];
|
|
356
|
+
|
|
357
|
+
NextToken?: string;
|
|
358
|
+
}
|
|
359
|
+
export declare namespace ListResourcesOutput {
|
|
360
|
+
|
|
361
|
+
const filterSensitiveLog: (obj: ListResourcesOutput) => any;
|
|
362
|
+
}
|
|
363
|
+
export interface UpdateResourceInput {
|
|
364
|
+
|
|
365
|
+
TypeName: string | undefined;
|
|
366
|
+
|
|
367
|
+
TypeVersionId?: string;
|
|
368
|
+
|
|
369
|
+
RoleArn?: string;
|
|
370
|
+
|
|
371
|
+
ClientToken?: string;
|
|
372
|
+
|
|
373
|
+
Identifier: string | undefined;
|
|
374
|
+
|
|
375
|
+
PatchDocument: string | undefined;
|
|
376
|
+
}
|
|
377
|
+
export declare namespace UpdateResourceInput {
|
|
378
|
+
|
|
379
|
+
const filterSensitiveLog: (obj: UpdateResourceInput) => any;
|
|
380
|
+
}
|
|
381
|
+
export interface UpdateResourceOutput {
|
|
382
|
+
|
|
383
|
+
ProgressEvent?: ProgressEvent;
|
|
384
|
+
}
|
|
385
|
+
export declare namespace UpdateResourceOutput {
|
|
386
|
+
|
|
387
|
+
const filterSensitiveLog: (obj: UpdateResourceOutput) => any;
|
|
388
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { CloudControl } from "../CloudControl";
|
|
3
|
+
import { CloudControlClient } from "../CloudControlClient";
|
|
4
|
+
export interface CloudControlPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: CloudControl | CloudControlClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput } from "../commands/ListResourceRequestsCommand";
|
|
3
|
+
import { CloudControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListResourceRequests(config: CloudControlPaginationConfiguration, input: ListResourceRequestsCommandInput, ...additionalArguments: any): Paginator<ListResourceRequestsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "../commands/ListResourcesCommand";
|
|
3
|
+
import { CloudControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListResources(config: CloudControlPaginationConfiguration, input: ListResourcesCommandInput, ...additionalArguments: any): Paginator<ListResourcesCommandOutput>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { CancelResourceRequestCommandInput, CancelResourceRequestCommandOutput } from "../commands/CancelResourceRequestCommand";
|
|
4
|
+
import { CreateResourceCommandInput, CreateResourceCommandOutput } from "../commands/CreateResourceCommand";
|
|
5
|
+
import { DeleteResourceCommandInput, DeleteResourceCommandOutput } from "../commands/DeleteResourceCommand";
|
|
6
|
+
import { GetResourceCommandInput, GetResourceCommandOutput } from "../commands/GetResourceCommand";
|
|
7
|
+
import { GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput } from "../commands/GetResourceRequestStatusCommand";
|
|
8
|
+
import { ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput } from "../commands/ListResourceRequestsCommand";
|
|
9
|
+
import { ListResourcesCommandInput, ListResourcesCommandOutput } from "../commands/ListResourcesCommand";
|
|
10
|
+
import { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "../commands/UpdateResourceCommand";
|
|
11
|
+
export declare const serializeAws_json1_0CancelResourceRequestCommand: (input: CancelResourceRequestCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
|
+
export declare const serializeAws_json1_0CreateResourceCommand: (input: CreateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
|
+
export declare const serializeAws_json1_0DeleteResourceCommand: (input: DeleteResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
|
+
export declare const serializeAws_json1_0GetResourceCommand: (input: GetResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
15
|
+
export declare const serializeAws_json1_0GetResourceRequestStatusCommand: (input: GetResourceRequestStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
|
+
export declare const serializeAws_json1_0ListResourceRequestsCommand: (input: ListResourceRequestsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
|
+
export declare const serializeAws_json1_0ListResourcesCommand: (input: ListResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
|
+
export declare const serializeAws_json1_0UpdateResourceCommand: (input: UpdateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
|
+
export declare const deserializeAws_json1_0CancelResourceRequestCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelResourceRequestCommandOutput>;
|
|
20
|
+
export declare const deserializeAws_json1_0CreateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateResourceCommandOutput>;
|
|
21
|
+
export declare const deserializeAws_json1_0DeleteResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourceCommandOutput>;
|
|
22
|
+
export declare const deserializeAws_json1_0GetResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceCommandOutput>;
|
|
23
|
+
export declare const deserializeAws_json1_0GetResourceRequestStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceRequestStatusCommandOutput>;
|
|
24
|
+
export declare const deserializeAws_json1_0ListResourceRequestsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourceRequestsCommandOutput>;
|
|
25
|
+
export declare const deserializeAws_json1_0ListResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourcesCommandOutput>;
|
|
26
|
+
export declare const deserializeAws_json1_0UpdateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateResourceCommandOutput>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { CloudControlClientConfig } from "./CloudControlClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { CloudControlClientConfig } from "./CloudControlClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { CloudControlClientConfig } from "./CloudControlClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
disableHostPrefix: boolean;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
27
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
tls?: boolean | undefined;
|
|
29
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
+
signingEscapePath?: boolean | undefined;
|
|
33
|
+
systemClockOffset?: number | undefined;
|
|
34
|
+
signingRegion?: string | undefined;
|
|
35
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { CloudControlClientConfig } from "./CloudControlClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
logger: __Logger;
|
|
8
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
+
serviceId: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./waitForResourceRequestSuccess";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
+
import { CloudControlClient } from "../CloudControlClient";
|
|
3
|
+
import { GetResourceRequestStatusCommandInput } from "../commands/GetResourceRequestStatusCommand";
|
|
4
|
+
|
|
5
|
+
export declare const waitForResourceRequestSuccess: (params: WaiterConfiguration<CloudControlClient>, input: GetResourceRequestStatusCommandInput) => Promise<WaiterResult>;
|
|
6
|
+
|
|
7
|
+
export declare const waitUntilResourceRequestSuccess: (params: WaiterConfiguration<CloudControlClient>, input: GetResourceRequestStatusCommandInput) => Promise<WaiterResult>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudcontrol",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudcontrol Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.51.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,21 +18,21 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.51.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.51.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.51.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.50.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.51.0",
|
|
31
31
|
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
32
|
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.51.0",
|
|
36
36
|
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
38
|
"@aws-sdk/smithy-client": "3.50.0",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
45
|
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.51.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.51.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"@aws-sdk/util-waiter": "3.50.0",
|