@aws-sdk/client-cloudcontrol 3.170.0 → 3.178.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 CHANGED
@@ -3,6 +3,22 @@
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.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-cloudcontrol
9
+
10
+
11
+
12
+
13
+
14
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-cloudcontrol
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-cloudcontrol
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
30
30
  tls?: boolean | undefined;
31
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
32
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
33
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
34
34
  signingEscapePath?: boolean | undefined;
35
35
  systemClockOffset?: number | undefined;
36
36
  signingRegion?: string | undefined;
@@ -32,7 +32,6 @@ import {
32
32
  UpdateResourceCommandInput,
33
33
  UpdateResourceCommandOutput,
34
34
  } from "./commands/UpdateResourceCommand";
35
-
36
35
  export declare class CloudControl extends CloudControlClient {
37
36
  cancelResourceRequest(
38
37
  args: CancelResourceRequestCommandInput,
@@ -47,7 +46,6 @@ export declare class CloudControl extends CloudControlClient {
47
46
  options: __HttpHandlerOptions,
48
47
  cb: (err: any, data?: CancelResourceRequestCommandOutput) => void
49
48
  ): void;
50
-
51
49
  createResource(
52
50
  args: CreateResourceCommandInput,
53
51
  options?: __HttpHandlerOptions
@@ -61,7 +59,6 @@ export declare class CloudControl extends CloudControlClient {
61
59
  options: __HttpHandlerOptions,
62
60
  cb: (err: any, data?: CreateResourceCommandOutput) => void
63
61
  ): void;
64
-
65
62
  deleteResource(
66
63
  args: DeleteResourceCommandInput,
67
64
  options?: __HttpHandlerOptions
@@ -75,7 +72,6 @@ export declare class CloudControl extends CloudControlClient {
75
72
  options: __HttpHandlerOptions,
76
73
  cb: (err: any, data?: DeleteResourceCommandOutput) => void
77
74
  ): void;
78
-
79
75
  getResource(
80
76
  args: GetResourceCommandInput,
81
77
  options?: __HttpHandlerOptions
@@ -89,7 +85,6 @@ export declare class CloudControl extends CloudControlClient {
89
85
  options: __HttpHandlerOptions,
90
86
  cb: (err: any, data?: GetResourceCommandOutput) => void
91
87
  ): void;
92
-
93
88
  getResourceRequestStatus(
94
89
  args: GetResourceRequestStatusCommandInput,
95
90
  options?: __HttpHandlerOptions
@@ -103,7 +98,6 @@ export declare class CloudControl extends CloudControlClient {
103
98
  options: __HttpHandlerOptions,
104
99
  cb: (err: any, data?: GetResourceRequestStatusCommandOutput) => void
105
100
  ): void;
106
-
107
101
  listResourceRequests(
108
102
  args: ListResourceRequestsCommandInput,
109
103
  options?: __HttpHandlerOptions
@@ -117,7 +111,6 @@ export declare class CloudControl extends CloudControlClient {
117
111
  options: __HttpHandlerOptions,
118
112
  cb: (err: any, data?: ListResourceRequestsCommandOutput) => void
119
113
  ): void;
120
-
121
114
  listResources(
122
115
  args: ListResourcesCommandInput,
123
116
  options?: __HttpHandlerOptions
@@ -131,7 +124,6 @@ export declare class CloudControl extends CloudControlClient {
131
124
  options: __HttpHandlerOptions,
132
125
  cb: (err: any, data?: ListResourcesCommandOutput) => void
133
126
  ): void;
134
-
135
127
  updateResource(
136
128
  args: UpdateResourceCommandInput,
137
129
  options?: __HttpHandlerOptions
@@ -95,47 +95,26 @@ export declare type ServiceOutputTypes =
95
95
  export interface ClientDefaults
96
96
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
97
97
  requestHandler?: __HttpHandler;
98
-
99
98
  sha256?: __HashConstructor;
100
-
101
99
  urlParser?: __UrlParser;
102
-
103
100
  bodyLengthChecker?: __BodyLengthCalculator;
104
-
105
101
  streamCollector?: __StreamCollector;
106
-
107
102
  base64Decoder?: __Decoder;
108
-
109
103
  base64Encoder?: __Encoder;
110
-
111
104
  utf8Decoder?: __Decoder;
112
-
113
105
  utf8Encoder?: __Encoder;
114
-
115
106
  runtime?: string;
116
-
117
107
  disableHostPrefix?: boolean;
118
-
119
108
  maxAttempts?: number | __Provider<number>;
120
-
121
109
  retryMode?: string | __Provider<string>;
122
-
123
110
  logger?: __Logger;
124
-
125
111
  useDualstackEndpoint?: boolean | __Provider<boolean>;
126
-
127
112
  useFipsEndpoint?: boolean | __Provider<boolean>;
128
-
129
113
  serviceId?: string;
130
-
131
114
  region?: string | __Provider<string>;
132
-
133
115
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
134
-
135
116
  regionInfoProvider?: RegionInfoProvider;
136
-
137
117
  defaultUserAgentProvider?: Provider<__UserAgent>;
138
-
139
118
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
140
119
  }
141
120
  declare type CloudControlClientConfigType = Partial<
@@ -148,7 +127,6 @@ declare type CloudControlClientConfigType = Partial<
148
127
  HostHeaderInputConfig &
149
128
  AwsAuthInputConfig &
150
129
  UserAgentInputConfig;
151
-
152
130
  export interface CloudControlClientConfig
153
131
  extends CloudControlClientConfigType {}
154
132
  declare type CloudControlClientResolvedConfigType =
@@ -160,10 +138,8 @@ declare type CloudControlClientResolvedConfigType =
160
138
  HostHeaderResolvedConfig &
161
139
  AwsAuthResolvedConfig &
162
140
  UserAgentResolvedConfig;
163
-
164
141
  export interface CloudControlClientResolvedConfig
165
142
  extends CloudControlClientResolvedConfigType {}
166
-
167
143
  export declare class CloudControlClient extends __Client<
168
144
  __HttpHandlerOptions,
169
145
  ServiceInputTypes,
@@ -172,7 +148,6 @@ export declare class CloudControlClient extends __Client<
172
148
  > {
173
149
  readonly config: CloudControlClientResolvedConfig;
174
150
  constructor(configuration: CloudControlClientConfig);
175
-
176
151
  destroy(): void;
177
152
  }
178
153
  export {};
@@ -19,7 +19,6 @@ export interface CancelResourceRequestCommandInput
19
19
  export interface CancelResourceRequestCommandOutput
20
20
  extends CancelResourceRequestOutput,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class CancelResourceRequestCommand extends $Command<
24
23
  CancelResourceRequestCommandInput,
25
24
  CancelResourceRequestCommandOutput,
@@ -27,7 +26,6 @@ export declare class CancelResourceRequestCommand extends $Command<
27
26
  > {
28
27
  readonly input: CancelResourceRequestCommandInput;
29
28
  constructor(input: CancelResourceRequestCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: CloudControlClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface CreateResourceCommandInput extends CreateResourceInput {}
15
15
  export interface CreateResourceCommandOutput
16
16
  extends CreateResourceOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class CreateResourceCommand extends $Command<
20
19
  CreateResourceCommandInput,
21
20
  CreateResourceCommandOutput,
@@ -23,7 +22,6 @@ export declare class CreateResourceCommand extends $Command<
23
22
  > {
24
23
  readonly input: CreateResourceCommandInput;
25
24
  constructor(input: CreateResourceCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: CloudControlClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface DeleteResourceCommandInput extends DeleteResourceInput {}
15
15
  export interface DeleteResourceCommandOutput
16
16
  extends DeleteResourceOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class DeleteResourceCommand extends $Command<
20
19
  DeleteResourceCommandInput,
21
20
  DeleteResourceCommandOutput,
@@ -23,7 +22,6 @@ export declare class DeleteResourceCommand extends $Command<
23
22
  > {
24
23
  readonly input: DeleteResourceCommandInput;
25
24
  constructor(input: DeleteResourceCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: CloudControlClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface GetResourceCommandInput extends GetResourceInput {}
15
15
  export interface GetResourceCommandOutput
16
16
  extends GetResourceOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class GetResourceCommand extends $Command<
20
19
  GetResourceCommandInput,
21
20
  GetResourceCommandOutput,
@@ -23,7 +22,6 @@ export declare class GetResourceCommand extends $Command<
23
22
  > {
24
23
  readonly input: GetResourceCommandInput;
25
24
  constructor(input: GetResourceCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: CloudControlClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface GetResourceRequestStatusCommandInput
19
19
  export interface GetResourceRequestStatusCommandOutput
20
20
  extends GetResourceRequestStatusOutput,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class GetResourceRequestStatusCommand extends $Command<
24
23
  GetResourceRequestStatusCommandInput,
25
24
  GetResourceRequestStatusCommandOutput,
@@ -27,7 +26,6 @@ export declare class GetResourceRequestStatusCommand extends $Command<
27
26
  > {
28
27
  readonly input: GetResourceRequestStatusCommandInput;
29
28
  constructor(input: GetResourceRequestStatusCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: CloudControlClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface ListResourceRequestsCommandInput
19
19
  export interface ListResourceRequestsCommandOutput
20
20
  extends ListResourceRequestsOutput,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class ListResourceRequestsCommand extends $Command<
24
23
  ListResourceRequestsCommandInput,
25
24
  ListResourceRequestsCommandOutput,
@@ -27,7 +26,6 @@ export declare class ListResourceRequestsCommand extends $Command<
27
26
  > {
28
27
  readonly input: ListResourceRequestsCommandInput;
29
28
  constructor(input: ListResourceRequestsCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: CloudControlClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface ListResourcesCommandInput extends ListResourcesInput {}
15
15
  export interface ListResourcesCommandOutput
16
16
  extends ListResourcesOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class ListResourcesCommand extends $Command<
20
19
  ListResourcesCommandInput,
21
20
  ListResourcesCommandOutput,
@@ -23,7 +22,6 @@ export declare class ListResourcesCommand extends $Command<
23
22
  > {
24
23
  readonly input: ListResourcesCommandInput;
25
24
  constructor(input: ListResourcesCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: CloudControlClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface UpdateResourceCommandInput extends UpdateResourceInput {}
15
15
  export interface UpdateResourceCommandOutput
16
16
  extends UpdateResourceOutput,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class UpdateResourceCommand extends $Command<
20
19
  UpdateResourceCommandInput,
21
20
  UpdateResourceCommandOutput,
@@ -23,7 +22,6 @@ export declare class UpdateResourceCommand extends $Command<
23
22
  > {
24
23
  readonly input: UpdateResourceCommandInput;
25
24
  constructor(input: UpdateResourceCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: CloudControlClientResolvedConfig,
@@ -2,7 +2,6 @@ import {
2
2
  ServiceException as __ServiceException,
3
3
  ServiceExceptionOptions as __ServiceExceptionOptions,
4
4
  } from "@aws-sdk/smithy-client";
5
-
6
5
  export declare class CloudControlServiceException extends __ServiceException {
7
6
  constructor(options: __ServiceExceptionOptions);
8
7
  }
@@ -1,11 +1,9 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { CloudControlServiceException as __BaseException } from "./CloudControlServiceException";
3
-
4
3
  export declare class AlreadyExistsException extends __BaseException {
5
4
  readonly name: "AlreadyExistsException";
6
5
  readonly $fault: "client";
7
6
  Message?: string;
8
-
9
7
  constructor(
10
8
  opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
11
9
  );
@@ -43,37 +41,25 @@ export declare enum OperationStatus {
43
41
  PENDING = "PENDING",
44
42
  SUCCESS = "SUCCESS",
45
43
  }
46
-
47
44
  export interface ProgressEvent {
48
45
  TypeName?: string;
49
-
50
46
  Identifier?: string;
51
-
52
47
  RequestToken?: string;
53
-
54
48
  Operation?: Operation | string;
55
-
56
49
  OperationStatus?: OperationStatus | string;
57
-
58
50
  EventTime?: Date;
59
-
60
51
  ResourceModel?: string;
61
-
62
52
  StatusMessage?: string;
63
-
64
53
  ErrorCode?: HandlerErrorCode | string;
65
-
66
54
  RetryAfter?: Date;
67
55
  }
68
56
  export interface CancelResourceRequestOutput {
69
57
  ProgressEvent?: ProgressEvent;
70
58
  }
71
-
72
59
  export declare class ConcurrentModificationException extends __BaseException {
73
60
  readonly name: "ConcurrentModificationException";
74
61
  readonly $fault: "server";
75
62
  Message?: string;
76
-
77
63
  constructor(
78
64
  opts: __ExceptionOptionType<
79
65
  ConcurrentModificationException,
@@ -81,76 +67,60 @@ export declare class ConcurrentModificationException extends __BaseException {
81
67
  >
82
68
  );
83
69
  }
84
-
85
70
  export declare class RequestTokenNotFoundException extends __BaseException {
86
71
  readonly name: "RequestTokenNotFoundException";
87
72
  readonly $fault: "client";
88
73
  Message?: string;
89
-
90
74
  constructor(
91
75
  opts: __ExceptionOptionType<RequestTokenNotFoundException, __BaseException>
92
76
  );
93
77
  }
94
-
95
78
  export declare class ClientTokenConflictException extends __BaseException {
96
79
  readonly name: "ClientTokenConflictException";
97
80
  readonly $fault: "client";
98
81
  Message?: string;
99
-
100
82
  constructor(
101
83
  opts: __ExceptionOptionType<ClientTokenConflictException, __BaseException>
102
84
  );
103
85
  }
104
-
105
86
  export declare class ConcurrentOperationException extends __BaseException {
106
87
  readonly name: "ConcurrentOperationException";
107
88
  readonly $fault: "client";
108
89
  Message?: string;
109
-
110
90
  constructor(
111
91
  opts: __ExceptionOptionType<ConcurrentOperationException, __BaseException>
112
92
  );
113
93
  }
114
94
  export interface CreateResourceInput {
115
95
  TypeName: string | undefined;
116
-
117
96
  TypeVersionId?: string;
118
-
119
97
  RoleArn?: string;
120
-
121
98
  ClientToken?: string;
122
-
123
99
  DesiredState: string | undefined;
124
100
  }
125
101
  export interface CreateResourceOutput {
126
102
  ProgressEvent?: ProgressEvent;
127
103
  }
128
-
129
104
  export declare class GeneralServiceException extends __BaseException {
130
105
  readonly name: "GeneralServiceException";
131
106
  readonly $fault: "client";
132
107
  Message?: string;
133
-
134
108
  constructor(
135
109
  opts: __ExceptionOptionType<GeneralServiceException, __BaseException>
136
110
  );
137
111
  }
138
-
139
112
  export declare class HandlerFailureException extends __BaseException {
140
113
  readonly name: "HandlerFailureException";
141
114
  readonly $fault: "server";
142
115
  Message?: string;
143
-
144
116
  constructor(
145
117
  opts: __ExceptionOptionType<HandlerFailureException, __BaseException>
146
118
  );
147
119
  }
148
-
149
120
  export declare class HandlerInternalFailureException extends __BaseException {
150
121
  readonly name: "HandlerInternalFailureException";
151
122
  readonly $fault: "server";
152
123
  Message?: string;
153
-
154
124
  constructor(
155
125
  opts: __ExceptionOptionType<
156
126
  HandlerInternalFailureException,
@@ -158,145 +128,115 @@ export declare class HandlerInternalFailureException extends __BaseException {
158
128
  >
159
129
  );
160
130
  }
161
-
162
131
  export declare class InvalidCredentialsException extends __BaseException {
163
132
  readonly name: "InvalidCredentialsException";
164
133
  readonly $fault: "client";
165
134
  Message?: string;
166
-
167
135
  constructor(
168
136
  opts: __ExceptionOptionType<InvalidCredentialsException, __BaseException>
169
137
  );
170
138
  }
171
-
172
139
  export declare class InvalidRequestException extends __BaseException {
173
140
  readonly name: "InvalidRequestException";
174
141
  readonly $fault: "client";
175
142
  Message?: string;
176
-
177
143
  constructor(
178
144
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
179
145
  );
180
146
  }
181
-
182
147
  export declare class NetworkFailureException extends __BaseException {
183
148
  readonly name: "NetworkFailureException";
184
149
  readonly $fault: "server";
185
150
  Message?: string;
186
-
187
151
  constructor(
188
152
  opts: __ExceptionOptionType<NetworkFailureException, __BaseException>
189
153
  );
190
154
  }
191
-
192
155
  export declare class NotStabilizedException extends __BaseException {
193
156
  readonly name: "NotStabilizedException";
194
157
  readonly $fault: "client";
195
158
  Message?: string;
196
-
197
159
  constructor(
198
160
  opts: __ExceptionOptionType<NotStabilizedException, __BaseException>
199
161
  );
200
162
  }
201
-
202
163
  export declare class NotUpdatableException extends __BaseException {
203
164
  readonly name: "NotUpdatableException";
204
165
  readonly $fault: "client";
205
166
  Message?: string;
206
-
207
167
  constructor(
208
168
  opts: __ExceptionOptionType<NotUpdatableException, __BaseException>
209
169
  );
210
170
  }
211
-
212
171
  export declare class PrivateTypeException extends __BaseException {
213
172
  readonly name: "PrivateTypeException";
214
173
  readonly $fault: "client";
215
174
  Message?: string;
216
-
217
175
  constructor(
218
176
  opts: __ExceptionOptionType<PrivateTypeException, __BaseException>
219
177
  );
220
178
  }
221
-
222
179
  export declare class ResourceConflictException extends __BaseException {
223
180
  readonly name: "ResourceConflictException";
224
181
  readonly $fault: "client";
225
182
  Message?: string;
226
-
227
183
  constructor(
228
184
  opts: __ExceptionOptionType<ResourceConflictException, __BaseException>
229
185
  );
230
186
  }
231
-
232
187
  export declare class ResourceNotFoundException extends __BaseException {
233
188
  readonly name: "ResourceNotFoundException";
234
189
  readonly $fault: "client";
235
190
  Message?: string;
236
-
237
191
  constructor(
238
192
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
239
193
  );
240
194
  }
241
-
242
195
  export declare class ServiceInternalErrorException extends __BaseException {
243
196
  readonly name: "ServiceInternalErrorException";
244
197
  readonly $fault: "server";
245
198
  Message?: string;
246
-
247
199
  constructor(
248
200
  opts: __ExceptionOptionType<ServiceInternalErrorException, __BaseException>
249
201
  );
250
202
  }
251
-
252
203
  export declare class ServiceLimitExceededException extends __BaseException {
253
204
  readonly name: "ServiceLimitExceededException";
254
205
  readonly $fault: "client";
255
206
  Message?: string;
256
-
257
207
  constructor(
258
208
  opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>
259
209
  );
260
210
  }
261
-
262
211
  export declare class ThrottlingException extends __BaseException {
263
212
  readonly name: "ThrottlingException";
264
213
  readonly $fault: "client";
265
214
  Message?: string;
266
-
267
215
  constructor(
268
216
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
269
217
  );
270
218
  }
271
-
272
219
  export declare class TypeNotFoundException extends __BaseException {
273
220
  readonly name: "TypeNotFoundException";
274
221
  readonly $fault: "client";
275
222
  Message?: string;
276
-
277
223
  constructor(
278
224
  opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>
279
225
  );
280
226
  }
281
-
282
227
  export declare class UnsupportedActionException extends __BaseException {
283
228
  readonly name: "UnsupportedActionException";
284
229
  readonly $fault: "client";
285
230
  Message?: string;
286
-
287
231
  constructor(
288
232
  opts: __ExceptionOptionType<UnsupportedActionException, __BaseException>
289
233
  );
290
234
  }
291
235
  export interface DeleteResourceInput {
292
236
  TypeName: string | undefined;
293
-
294
237
  TypeVersionId?: string;
295
-
296
238
  RoleArn?: string;
297
-
298
239
  ClientToken?: string;
299
-
300
240
  Identifier: string | undefined;
301
241
  }
302
242
  export interface DeleteResourceOutput {
@@ -304,22 +244,16 @@ export interface DeleteResourceOutput {
304
244
  }
305
245
  export interface GetResourceInput {
306
246
  TypeName: string | undefined;
307
-
308
247
  TypeVersionId?: string;
309
-
310
248
  RoleArn?: string;
311
-
312
249
  Identifier: string | undefined;
313
250
  }
314
-
315
251
  export interface ResourceDescription {
316
252
  Identifier?: string;
317
-
318
253
  Properties?: string;
319
254
  }
320
255
  export interface GetResourceOutput {
321
256
  TypeName?: string;
322
-
323
257
  ResourceDescription?: ResourceDescription;
324
258
  }
325
259
  export interface GetResourceRequestStatusInput {
@@ -328,133 +262,97 @@ export interface GetResourceRequestStatusInput {
328
262
  export interface GetResourceRequestStatusOutput {
329
263
  ProgressEvent?: ProgressEvent;
330
264
  }
331
-
332
265
  export interface ResourceRequestStatusFilter {
333
266
  Operations?: (Operation | string)[];
334
-
335
267
  OperationStatuses?: (OperationStatus | string)[];
336
268
  }
337
269
  export interface ListResourceRequestsInput {
338
270
  MaxResults?: number;
339
-
340
271
  NextToken?: string;
341
-
342
272
  ResourceRequestStatusFilter?: ResourceRequestStatusFilter;
343
273
  }
344
274
  export interface ListResourceRequestsOutput {
345
275
  ResourceRequestStatusSummaries?: ProgressEvent[];
346
-
347
276
  NextToken?: string;
348
277
  }
349
278
  export interface ListResourcesInput {
350
279
  TypeName: string | undefined;
351
-
352
280
  TypeVersionId?: string;
353
-
354
281
  RoleArn?: string;
355
-
356
282
  NextToken?: string;
357
-
358
283
  MaxResults?: number;
359
-
360
284
  ResourceModel?: string;
361
285
  }
362
286
  export interface ListResourcesOutput {
363
287
  TypeName?: string;
364
-
365
288
  ResourceDescriptions?: ResourceDescription[];
366
-
367
289
  NextToken?: string;
368
290
  }
369
291
  export interface UpdateResourceInput {
370
292
  TypeName: string | undefined;
371
-
372
293
  TypeVersionId?: string;
373
-
374
294
  RoleArn?: string;
375
-
376
295
  ClientToken?: string;
377
-
378
296
  Identifier: string | undefined;
379
-
380
297
  PatchDocument: string | undefined;
381
298
  }
382
299
  export interface UpdateResourceOutput {
383
300
  ProgressEvent?: ProgressEvent;
384
301
  }
385
-
386
302
  export declare const CancelResourceRequestInputFilterSensitiveLog: (
387
303
  obj: CancelResourceRequestInput
388
304
  ) => any;
389
-
390
305
  export declare const ProgressEventFilterSensitiveLog: (
391
306
  obj: ProgressEvent
392
307
  ) => any;
393
-
394
308
  export declare const CancelResourceRequestOutputFilterSensitiveLog: (
395
309
  obj: CancelResourceRequestOutput
396
310
  ) => any;
397
-
398
311
  export declare const CreateResourceInputFilterSensitiveLog: (
399
312
  obj: CreateResourceInput
400
313
  ) => any;
401
-
402
314
  export declare const CreateResourceOutputFilterSensitiveLog: (
403
315
  obj: CreateResourceOutput
404
316
  ) => any;
405
-
406
317
  export declare const DeleteResourceInputFilterSensitiveLog: (
407
318
  obj: DeleteResourceInput
408
319
  ) => any;
409
-
410
320
  export declare const DeleteResourceOutputFilterSensitiveLog: (
411
321
  obj: DeleteResourceOutput
412
322
  ) => any;
413
-
414
323
  export declare const GetResourceInputFilterSensitiveLog: (
415
324
  obj: GetResourceInput
416
325
  ) => any;
417
-
418
326
  export declare const ResourceDescriptionFilterSensitiveLog: (
419
327
  obj: ResourceDescription
420
328
  ) => any;
421
-
422
329
  export declare const GetResourceOutputFilterSensitiveLog: (
423
330
  obj: GetResourceOutput
424
331
  ) => any;
425
-
426
332
  export declare const GetResourceRequestStatusInputFilterSensitiveLog: (
427
333
  obj: GetResourceRequestStatusInput
428
334
  ) => any;
429
-
430
335
  export declare const GetResourceRequestStatusOutputFilterSensitiveLog: (
431
336
  obj: GetResourceRequestStatusOutput
432
337
  ) => any;
433
-
434
338
  export declare const ResourceRequestStatusFilterFilterSensitiveLog: (
435
339
  obj: ResourceRequestStatusFilter
436
340
  ) => any;
437
-
438
341
  export declare const ListResourceRequestsInputFilterSensitiveLog: (
439
342
  obj: ListResourceRequestsInput
440
343
  ) => any;
441
-
442
344
  export declare const ListResourceRequestsOutputFilterSensitiveLog: (
443
345
  obj: ListResourceRequestsOutput
444
346
  ) => any;
445
-
446
347
  export declare const ListResourcesInputFilterSensitiveLog: (
447
348
  obj: ListResourcesInput
448
349
  ) => any;
449
-
450
350
  export declare const ListResourcesOutputFilterSensitiveLog: (
451
351
  obj: ListResourcesOutput
452
352
  ) => any;
453
-
454
353
  export declare const UpdateResourceInputFilterSensitiveLog: (
455
354
  obj: UpdateResourceInput
456
355
  ) => any;
457
-
458
356
  export declare const UpdateResourceOutputFilterSensitiveLog: (
459
357
  obj: UpdateResourceOutput
460
358
  ) => any;
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { CloudControlClientConfig } from "./CloudControlClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
51
50
  | undefined;
52
51
  signer?:
53
52
  | import("@aws-sdk/types").RequestSigner
54
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
53
+ | ((
54
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
55
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
55
56
  | undefined;
56
57
  signingEscapePath?: boolean | undefined;
57
58
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { CloudControlClientConfig } from "./CloudControlClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
51
50
  | undefined;
52
51
  signer?:
53
52
  | import("@aws-sdk/types").RequestSigner
54
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
53
+ | ((
54
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
55
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
55
56
  | undefined;
56
57
  signingEscapePath?: boolean | undefined;
57
58
  systemClockOffset?: number | undefined;
@@ -1,5 +1,4 @@
1
1
  import { CloudControlClientConfig } from "./CloudControlClient";
2
-
3
2
  export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
4
3
  runtime: string;
5
4
  sha256: import("@aws-sdk/types").HashConstructor;
@@ -52,7 +51,9 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
52
51
  | undefined;
53
52
  signer?:
54
53
  | import("@aws-sdk/types").RequestSigner
55
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | ((
55
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
56
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
56
57
  | undefined;
57
58
  signingEscapePath?: boolean | undefined;
58
59
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { CloudControlClientConfig } from "./CloudControlClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
5
4
  apiVersion: string;
6
5
  disableHostPrefix: boolean;
@@ -1,12 +1,10 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
2
2
  import { CloudControlClient } from "../CloudControlClient";
3
3
  import { GetResourceRequestStatusCommandInput } from "../commands/GetResourceRequestStatusCommand";
4
-
5
4
  export declare const waitForResourceRequestSuccess: (
6
5
  params: WaiterConfiguration<CloudControlClient>,
7
6
  input: GetResourceRequestStatusCommandInput
8
7
  ) => Promise<WaiterResult>;
9
-
10
8
  export declare const waitUntilResourceRequestSuccess: (
11
9
  params: WaiterConfiguration<CloudControlClient>,
12
10
  input: GetResourceRequestStatusCommandInput
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.170.0",
4
+ "version": "3.178.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",
@@ -19,38 +19,38 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.170.0",
23
- "@aws-sdk/config-resolver": "3.170.0",
24
- "@aws-sdk/credential-provider-node": "3.170.0",
25
- "@aws-sdk/fetch-http-handler": "3.170.0",
26
- "@aws-sdk/hash-node": "3.170.0",
27
- "@aws-sdk/invalid-dependency": "3.170.0",
28
- "@aws-sdk/middleware-content-length": "3.170.0",
29
- "@aws-sdk/middleware-host-header": "3.170.0",
30
- "@aws-sdk/middleware-logger": "3.170.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.170.0",
32
- "@aws-sdk/middleware-retry": "3.170.0",
33
- "@aws-sdk/middleware-serde": "3.170.0",
34
- "@aws-sdk/middleware-signing": "3.170.0",
35
- "@aws-sdk/middleware-stack": "3.170.0",
36
- "@aws-sdk/middleware-user-agent": "3.170.0",
37
- "@aws-sdk/node-config-provider": "3.170.0",
38
- "@aws-sdk/node-http-handler": "3.170.0",
39
- "@aws-sdk/protocol-http": "3.170.0",
40
- "@aws-sdk/smithy-client": "3.170.0",
41
- "@aws-sdk/types": "3.170.0",
42
- "@aws-sdk/url-parser": "3.170.0",
22
+ "@aws-sdk/client-sts": "3.178.0",
23
+ "@aws-sdk/config-resolver": "3.178.0",
24
+ "@aws-sdk/credential-provider-node": "3.178.0",
25
+ "@aws-sdk/fetch-http-handler": "3.178.0",
26
+ "@aws-sdk/hash-node": "3.178.0",
27
+ "@aws-sdk/invalid-dependency": "3.178.0",
28
+ "@aws-sdk/middleware-content-length": "3.178.0",
29
+ "@aws-sdk/middleware-host-header": "3.178.0",
30
+ "@aws-sdk/middleware-logger": "3.178.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.178.0",
32
+ "@aws-sdk/middleware-retry": "3.178.0",
33
+ "@aws-sdk/middleware-serde": "3.178.0",
34
+ "@aws-sdk/middleware-signing": "3.178.0",
35
+ "@aws-sdk/middleware-stack": "3.178.0",
36
+ "@aws-sdk/middleware-user-agent": "3.178.0",
37
+ "@aws-sdk/node-config-provider": "3.178.0",
38
+ "@aws-sdk/node-http-handler": "3.178.0",
39
+ "@aws-sdk/protocol-http": "3.178.0",
40
+ "@aws-sdk/smithy-client": "3.178.0",
41
+ "@aws-sdk/types": "3.178.0",
42
+ "@aws-sdk/url-parser": "3.178.0",
43
43
  "@aws-sdk/util-base64-browser": "3.170.0",
44
44
  "@aws-sdk/util-base64-node": "3.170.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.170.0",
46
46
  "@aws-sdk/util-body-length-node": "3.170.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.170.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.170.0",
49
- "@aws-sdk/util-user-agent-browser": "3.170.0",
50
- "@aws-sdk/util-user-agent-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.178.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.178.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.178.0",
50
+ "@aws-sdk/util-user-agent-node": "3.178.0",
51
51
  "@aws-sdk/util-utf8-browser": "3.170.0",
52
52
  "@aws-sdk/util-utf8-node": "3.170.0",
53
- "@aws-sdk/util-waiter": "3.170.0",
53
+ "@aws-sdk/util-waiter": "3.178.0",
54
54
  "tslib": "^2.3.1",
55
55
  "uuid": "^8.3.2"
56
56
  },