@aws-sdk/client-cloudcontrol 3.169.0 → 3.170.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 +148 -45
- package/dist-types/ts3.4/CloudControlClient.d.ts +178 -81
- package/dist-types/ts3.4/commands/CancelResourceRequestCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetResourceRequestStatusCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListResourceRequestsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +8 -8
- 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/CloudControlServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +460 -393
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListResourceRequestsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +101 -26
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForResourceRequestSuccess.d.ts +13 -7
- package/package.json +35 -35
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-cloudcontrol
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-cloudcontrol
|
|
@@ -1,45 +1,148 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { CloudControlClient } from "./CloudControlClient";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CloudControlClient } from "./CloudControlClient";
|
|
3
|
+
import {
|
|
4
|
+
CancelResourceRequestCommandInput,
|
|
5
|
+
CancelResourceRequestCommandOutput,
|
|
6
|
+
} from "./commands/CancelResourceRequestCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreateResourceCommandInput,
|
|
9
|
+
CreateResourceCommandOutput,
|
|
10
|
+
} from "./commands/CreateResourceCommand";
|
|
11
|
+
import {
|
|
12
|
+
DeleteResourceCommandInput,
|
|
13
|
+
DeleteResourceCommandOutput,
|
|
14
|
+
} from "./commands/DeleteResourceCommand";
|
|
15
|
+
import {
|
|
16
|
+
GetResourceCommandInput,
|
|
17
|
+
GetResourceCommandOutput,
|
|
18
|
+
} from "./commands/GetResourceCommand";
|
|
19
|
+
import {
|
|
20
|
+
GetResourceRequestStatusCommandInput,
|
|
21
|
+
GetResourceRequestStatusCommandOutput,
|
|
22
|
+
} from "./commands/GetResourceRequestStatusCommand";
|
|
23
|
+
import {
|
|
24
|
+
ListResourceRequestsCommandInput,
|
|
25
|
+
ListResourceRequestsCommandOutput,
|
|
26
|
+
} from "./commands/ListResourceRequestsCommand";
|
|
27
|
+
import {
|
|
28
|
+
ListResourcesCommandInput,
|
|
29
|
+
ListResourcesCommandOutput,
|
|
30
|
+
} from "./commands/ListResourcesCommand";
|
|
31
|
+
import {
|
|
32
|
+
UpdateResourceCommandInput,
|
|
33
|
+
UpdateResourceCommandOutput,
|
|
34
|
+
} from "./commands/UpdateResourceCommand";
|
|
35
|
+
|
|
36
|
+
export declare class CloudControl extends CloudControlClient {
|
|
37
|
+
cancelResourceRequest(
|
|
38
|
+
args: CancelResourceRequestCommandInput,
|
|
39
|
+
options?: __HttpHandlerOptions
|
|
40
|
+
): Promise<CancelResourceRequestCommandOutput>;
|
|
41
|
+
cancelResourceRequest(
|
|
42
|
+
args: CancelResourceRequestCommandInput,
|
|
43
|
+
cb: (err: any, data?: CancelResourceRequestCommandOutput) => void
|
|
44
|
+
): void;
|
|
45
|
+
cancelResourceRequest(
|
|
46
|
+
args: CancelResourceRequestCommandInput,
|
|
47
|
+
options: __HttpHandlerOptions,
|
|
48
|
+
cb: (err: any, data?: CancelResourceRequestCommandOutput) => void
|
|
49
|
+
): void;
|
|
50
|
+
|
|
51
|
+
createResource(
|
|
52
|
+
args: CreateResourceCommandInput,
|
|
53
|
+
options?: __HttpHandlerOptions
|
|
54
|
+
): Promise<CreateResourceCommandOutput>;
|
|
55
|
+
createResource(
|
|
56
|
+
args: CreateResourceCommandInput,
|
|
57
|
+
cb: (err: any, data?: CreateResourceCommandOutput) => void
|
|
58
|
+
): void;
|
|
59
|
+
createResource(
|
|
60
|
+
args: CreateResourceCommandInput,
|
|
61
|
+
options: __HttpHandlerOptions,
|
|
62
|
+
cb: (err: any, data?: CreateResourceCommandOutput) => void
|
|
63
|
+
): void;
|
|
64
|
+
|
|
65
|
+
deleteResource(
|
|
66
|
+
args: DeleteResourceCommandInput,
|
|
67
|
+
options?: __HttpHandlerOptions
|
|
68
|
+
): Promise<DeleteResourceCommandOutput>;
|
|
69
|
+
deleteResource(
|
|
70
|
+
args: DeleteResourceCommandInput,
|
|
71
|
+
cb: (err: any, data?: DeleteResourceCommandOutput) => void
|
|
72
|
+
): void;
|
|
73
|
+
deleteResource(
|
|
74
|
+
args: DeleteResourceCommandInput,
|
|
75
|
+
options: __HttpHandlerOptions,
|
|
76
|
+
cb: (err: any, data?: DeleteResourceCommandOutput) => void
|
|
77
|
+
): void;
|
|
78
|
+
|
|
79
|
+
getResource(
|
|
80
|
+
args: GetResourceCommandInput,
|
|
81
|
+
options?: __HttpHandlerOptions
|
|
82
|
+
): Promise<GetResourceCommandOutput>;
|
|
83
|
+
getResource(
|
|
84
|
+
args: GetResourceCommandInput,
|
|
85
|
+
cb: (err: any, data?: GetResourceCommandOutput) => void
|
|
86
|
+
): void;
|
|
87
|
+
getResource(
|
|
88
|
+
args: GetResourceCommandInput,
|
|
89
|
+
options: __HttpHandlerOptions,
|
|
90
|
+
cb: (err: any, data?: GetResourceCommandOutput) => void
|
|
91
|
+
): void;
|
|
92
|
+
|
|
93
|
+
getResourceRequestStatus(
|
|
94
|
+
args: GetResourceRequestStatusCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<GetResourceRequestStatusCommandOutput>;
|
|
97
|
+
getResourceRequestStatus(
|
|
98
|
+
args: GetResourceRequestStatusCommandInput,
|
|
99
|
+
cb: (err: any, data?: GetResourceRequestStatusCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
getResourceRequestStatus(
|
|
102
|
+
args: GetResourceRequestStatusCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: GetResourceRequestStatusCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
|
|
107
|
+
listResourceRequests(
|
|
108
|
+
args: ListResourceRequestsCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<ListResourceRequestsCommandOutput>;
|
|
111
|
+
listResourceRequests(
|
|
112
|
+
args: ListResourceRequestsCommandInput,
|
|
113
|
+
cb: (err: any, data?: ListResourceRequestsCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
listResourceRequests(
|
|
116
|
+
args: ListResourceRequestsCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: ListResourceRequestsCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
|
|
121
|
+
listResources(
|
|
122
|
+
args: ListResourcesCommandInput,
|
|
123
|
+
options?: __HttpHandlerOptions
|
|
124
|
+
): Promise<ListResourcesCommandOutput>;
|
|
125
|
+
listResources(
|
|
126
|
+
args: ListResourcesCommandInput,
|
|
127
|
+
cb: (err: any, data?: ListResourcesCommandOutput) => void
|
|
128
|
+
): void;
|
|
129
|
+
listResources(
|
|
130
|
+
args: ListResourcesCommandInput,
|
|
131
|
+
options: __HttpHandlerOptions,
|
|
132
|
+
cb: (err: any, data?: ListResourcesCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
|
|
135
|
+
updateResource(
|
|
136
|
+
args: UpdateResourceCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<UpdateResourceCommandOutput>;
|
|
139
|
+
updateResource(
|
|
140
|
+
args: UpdateResourceCommandInput,
|
|
141
|
+
cb: (err: any, data?: UpdateResourceCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
updateResource(
|
|
144
|
+
args: UpdateResourceCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: UpdateResourceCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
}
|
|
@@ -1,81 +1,178 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CancelResourceRequestCommandInput,
|
|
47
|
+
CancelResourceRequestCommandOutput,
|
|
48
|
+
} from "./commands/CancelResourceRequestCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateResourceCommandInput,
|
|
51
|
+
CreateResourceCommandOutput,
|
|
52
|
+
} from "./commands/CreateResourceCommand";
|
|
53
|
+
import {
|
|
54
|
+
DeleteResourceCommandInput,
|
|
55
|
+
DeleteResourceCommandOutput,
|
|
56
|
+
} from "./commands/DeleteResourceCommand";
|
|
57
|
+
import {
|
|
58
|
+
GetResourceCommandInput,
|
|
59
|
+
GetResourceCommandOutput,
|
|
60
|
+
} from "./commands/GetResourceCommand";
|
|
61
|
+
import {
|
|
62
|
+
GetResourceRequestStatusCommandInput,
|
|
63
|
+
GetResourceRequestStatusCommandOutput,
|
|
64
|
+
} from "./commands/GetResourceRequestStatusCommand";
|
|
65
|
+
import {
|
|
66
|
+
ListResourceRequestsCommandInput,
|
|
67
|
+
ListResourceRequestsCommandOutput,
|
|
68
|
+
} from "./commands/ListResourceRequestsCommand";
|
|
69
|
+
import {
|
|
70
|
+
ListResourcesCommandInput,
|
|
71
|
+
ListResourcesCommandOutput,
|
|
72
|
+
} from "./commands/ListResourcesCommand";
|
|
73
|
+
import {
|
|
74
|
+
UpdateResourceCommandInput,
|
|
75
|
+
UpdateResourceCommandOutput,
|
|
76
|
+
} from "./commands/UpdateResourceCommand";
|
|
77
|
+
export declare type ServiceInputTypes =
|
|
78
|
+
| CancelResourceRequestCommandInput
|
|
79
|
+
| CreateResourceCommandInput
|
|
80
|
+
| DeleteResourceCommandInput
|
|
81
|
+
| GetResourceCommandInput
|
|
82
|
+
| GetResourceRequestStatusCommandInput
|
|
83
|
+
| ListResourceRequestsCommandInput
|
|
84
|
+
| ListResourcesCommandInput
|
|
85
|
+
| UpdateResourceCommandInput;
|
|
86
|
+
export declare type ServiceOutputTypes =
|
|
87
|
+
| CancelResourceRequestCommandOutput
|
|
88
|
+
| CreateResourceCommandOutput
|
|
89
|
+
| DeleteResourceCommandOutput
|
|
90
|
+
| GetResourceCommandOutput
|
|
91
|
+
| GetResourceRequestStatusCommandOutput
|
|
92
|
+
| ListResourceRequestsCommandOutput
|
|
93
|
+
| ListResourcesCommandOutput
|
|
94
|
+
| UpdateResourceCommandOutput;
|
|
95
|
+
export interface ClientDefaults
|
|
96
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
97
|
+
requestHandler?: __HttpHandler;
|
|
98
|
+
|
|
99
|
+
sha256?: __HashConstructor;
|
|
100
|
+
|
|
101
|
+
urlParser?: __UrlParser;
|
|
102
|
+
|
|
103
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
104
|
+
|
|
105
|
+
streamCollector?: __StreamCollector;
|
|
106
|
+
|
|
107
|
+
base64Decoder?: __Decoder;
|
|
108
|
+
|
|
109
|
+
base64Encoder?: __Encoder;
|
|
110
|
+
|
|
111
|
+
utf8Decoder?: __Decoder;
|
|
112
|
+
|
|
113
|
+
utf8Encoder?: __Encoder;
|
|
114
|
+
|
|
115
|
+
runtime?: string;
|
|
116
|
+
|
|
117
|
+
disableHostPrefix?: boolean;
|
|
118
|
+
|
|
119
|
+
maxAttempts?: number | __Provider<number>;
|
|
120
|
+
|
|
121
|
+
retryMode?: string | __Provider<string>;
|
|
122
|
+
|
|
123
|
+
logger?: __Logger;
|
|
124
|
+
|
|
125
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
126
|
+
|
|
127
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
128
|
+
|
|
129
|
+
serviceId?: string;
|
|
130
|
+
|
|
131
|
+
region?: string | __Provider<string>;
|
|
132
|
+
|
|
133
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
134
|
+
|
|
135
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
136
|
+
|
|
137
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
138
|
+
|
|
139
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
140
|
+
}
|
|
141
|
+
declare type CloudControlClientConfigType = Partial<
|
|
142
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
143
|
+
> &
|
|
144
|
+
ClientDefaults &
|
|
145
|
+
RegionInputConfig &
|
|
146
|
+
EndpointsInputConfig &
|
|
147
|
+
RetryInputConfig &
|
|
148
|
+
HostHeaderInputConfig &
|
|
149
|
+
AwsAuthInputConfig &
|
|
150
|
+
UserAgentInputConfig;
|
|
151
|
+
|
|
152
|
+
export interface CloudControlClientConfig
|
|
153
|
+
extends CloudControlClientConfigType {}
|
|
154
|
+
declare type CloudControlClientResolvedConfigType =
|
|
155
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
156
|
+
Required<ClientDefaults> &
|
|
157
|
+
RegionResolvedConfig &
|
|
158
|
+
EndpointsResolvedConfig &
|
|
159
|
+
RetryResolvedConfig &
|
|
160
|
+
HostHeaderResolvedConfig &
|
|
161
|
+
AwsAuthResolvedConfig &
|
|
162
|
+
UserAgentResolvedConfig;
|
|
163
|
+
|
|
164
|
+
export interface CloudControlClientResolvedConfig
|
|
165
|
+
extends CloudControlClientResolvedConfigType {}
|
|
166
|
+
|
|
167
|
+
export declare class CloudControlClient extends __Client<
|
|
168
|
+
__HttpHandlerOptions,
|
|
169
|
+
ServiceInputTypes,
|
|
170
|
+
ServiceOutputTypes,
|
|
171
|
+
CloudControlClientResolvedConfig
|
|
172
|
+
> {
|
|
173
|
+
readonly config: CloudControlClientResolvedConfig;
|
|
174
|
+
constructor(configuration: CloudControlClientConfig);
|
|
175
|
+
|
|
176
|
+
destroy(): void;
|
|
177
|
+
}
|
|
178
|
+
export {};
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
CloudControlClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudControlClient";
|
|
13
|
+
import {
|
|
14
|
+
CancelResourceRequestInput,
|
|
15
|
+
CancelResourceRequestOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CancelResourceRequestCommandInput
|
|
18
|
+
extends CancelResourceRequestInput {}
|
|
19
|
+
export interface CancelResourceRequestCommandOutput
|
|
20
|
+
extends CancelResourceRequestOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CancelResourceRequestCommand extends $Command<
|
|
24
|
+
CancelResourceRequestCommandInput,
|
|
25
|
+
CancelResourceRequestCommandOutput,
|
|
26
|
+
CloudControlClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CancelResourceRequestCommandInput;
|
|
29
|
+
constructor(input: CancelResourceRequestCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CloudControlClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CancelResourceRequestCommandInput,
|
|
37
|
+
CancelResourceRequestCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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
|
+
CloudControlClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudControlClient";
|
|
13
|
+
import { CreateResourceInput, CreateResourceOutput } from "../models/models_0";
|
|
14
|
+
export interface CreateResourceCommandInput extends CreateResourceInput {}
|
|
15
|
+
export interface CreateResourceCommandOutput
|
|
16
|
+
extends CreateResourceOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class CreateResourceCommand extends $Command<
|
|
20
|
+
CreateResourceCommandInput,
|
|
21
|
+
CreateResourceCommandOutput,
|
|
22
|
+
CloudControlClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateResourceCommandInput;
|
|
25
|
+
constructor(input: CreateResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudControlClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateResourceCommandInput, CreateResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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
|
+
CloudControlClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudControlClient";
|
|
13
|
+
import { DeleteResourceInput, DeleteResourceOutput } from "../models/models_0";
|
|
14
|
+
export interface DeleteResourceCommandInput extends DeleteResourceInput {}
|
|
15
|
+
export interface DeleteResourceCommandOutput
|
|
16
|
+
extends DeleteResourceOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteResourceCommand extends $Command<
|
|
20
|
+
DeleteResourceCommandInput,
|
|
21
|
+
DeleteResourceCommandOutput,
|
|
22
|
+
CloudControlClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteResourceCommandInput;
|
|
25
|
+
constructor(input: DeleteResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudControlClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteResourceCommandInput, DeleteResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|