@aws-sdk/client-cloudcontrol 3.1087.0 → 3.1089.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.
Files changed (28) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/CloudControl.d.ts +29 -34
  3. package/dist-types/ts3.4/CloudControlClient.d.ts +7 -20
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/CancelResourceRequestCommand.d.ts +5 -10
  8. package/dist-types/ts3.4/commands/CreateResourceCommand.d.ts +3 -5
  9. package/dist-types/ts3.4/commands/DeleteResourceCommand.d.ts +3 -5
  10. package/dist-types/ts3.4/commands/GetResourceCommand.d.ts +3 -5
  11. package/dist-types/ts3.4/commands/GetResourceRequestStatusCommand.d.ts +5 -10
  12. package/dist-types/ts3.4/commands/ListResourceRequestsCommand.d.ts +4 -9
  13. package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +3 -5
  14. package/dist-types/ts3.4/commands/UpdateResourceCommand.d.ts +3 -5
  15. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  16. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  17. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  18. package/dist-types/ts3.4/models/enums.d.ts +2 -4
  19. package/dist-types/ts3.4/models/errors.d.ts +21 -69
  20. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  21. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  22. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  23. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  24. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  25. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  26. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  27. package/dist-types/ts3.4/waiters/waitForResourceRequestSuccess.d.ts +3 -7
  28. package/package.json +38 -38
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1086.0";
72
+ var version = "3.1088.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -18,10 +18,7 @@ import {
18
18
  DeleteResourceCommandInput,
19
19
  DeleteResourceCommandOutput,
20
20
  } from "./commands/DeleteResourceCommand";
21
- import {
22
- GetResourceCommandInput,
23
- GetResourceCommandOutput,
24
- } from "./commands/GetResourceCommand";
21
+ import { GetResourceCommandInput, GetResourceCommandOutput } from "./commands/GetResourceCommand";
25
22
  import {
26
23
  GetResourceRequestStatusCommandInput,
27
24
  GetResourceRequestStatusCommandOutput,
@@ -41,122 +38,122 @@ import {
41
38
  export interface CloudControl {
42
39
  cancelResourceRequest(
43
40
  args: CancelResourceRequestCommandInput,
44
- options?: __HttpHandlerOptions
41
+ options?: __HttpHandlerOptions,
45
42
  ): Promise<CancelResourceRequestCommandOutput>;
46
43
  cancelResourceRequest(
47
44
  args: CancelResourceRequestCommandInput,
48
- cb: (err: any, data?: CancelResourceRequestCommandOutput) => void
45
+ cb: (err: any, data?: CancelResourceRequestCommandOutput) => void,
49
46
  ): void;
50
47
  cancelResourceRequest(
51
48
  args: CancelResourceRequestCommandInput,
52
49
  options: __HttpHandlerOptions,
53
- cb: (err: any, data?: CancelResourceRequestCommandOutput) => void
50
+ cb: (err: any, data?: CancelResourceRequestCommandOutput) => void,
54
51
  ): void;
55
52
  createResource(
56
53
  args: CreateResourceCommandInput,
57
- options?: __HttpHandlerOptions
54
+ options?: __HttpHandlerOptions,
58
55
  ): Promise<CreateResourceCommandOutput>;
59
56
  createResource(
60
57
  args: CreateResourceCommandInput,
61
- cb: (err: any, data?: CreateResourceCommandOutput) => void
58
+ cb: (err: any, data?: CreateResourceCommandOutput) => void,
62
59
  ): void;
63
60
  createResource(
64
61
  args: CreateResourceCommandInput,
65
62
  options: __HttpHandlerOptions,
66
- cb: (err: any, data?: CreateResourceCommandOutput) => void
63
+ cb: (err: any, data?: CreateResourceCommandOutput) => void,
67
64
  ): void;
68
65
  deleteResource(
69
66
  args: DeleteResourceCommandInput,
70
- options?: __HttpHandlerOptions
67
+ options?: __HttpHandlerOptions,
71
68
  ): Promise<DeleteResourceCommandOutput>;
72
69
  deleteResource(
73
70
  args: DeleteResourceCommandInput,
74
- cb: (err: any, data?: DeleteResourceCommandOutput) => void
71
+ cb: (err: any, data?: DeleteResourceCommandOutput) => void,
75
72
  ): void;
76
73
  deleteResource(
77
74
  args: DeleteResourceCommandInput,
78
75
  options: __HttpHandlerOptions,
79
- cb: (err: any, data?: DeleteResourceCommandOutput) => void
76
+ cb: (err: any, data?: DeleteResourceCommandOutput) => void,
80
77
  ): void;
81
78
  getResource(
82
79
  args: GetResourceCommandInput,
83
- options?: __HttpHandlerOptions
80
+ options?: __HttpHandlerOptions,
84
81
  ): Promise<GetResourceCommandOutput>;
85
82
  getResource(
86
83
  args: GetResourceCommandInput,
87
- cb: (err: any, data?: GetResourceCommandOutput) => void
84
+ cb: (err: any, data?: GetResourceCommandOutput) => void,
88
85
  ): void;
89
86
  getResource(
90
87
  args: GetResourceCommandInput,
91
88
  options: __HttpHandlerOptions,
92
- cb: (err: any, data?: GetResourceCommandOutput) => void
89
+ cb: (err: any, data?: GetResourceCommandOutput) => void,
93
90
  ): void;
94
91
  getResourceRequestStatus(
95
92
  args: GetResourceRequestStatusCommandInput,
96
- options?: __HttpHandlerOptions
93
+ options?: __HttpHandlerOptions,
97
94
  ): Promise<GetResourceRequestStatusCommandOutput>;
98
95
  getResourceRequestStatus(
99
96
  args: GetResourceRequestStatusCommandInput,
100
- cb: (err: any, data?: GetResourceRequestStatusCommandOutput) => void
97
+ cb: (err: any, data?: GetResourceRequestStatusCommandOutput) => void,
101
98
  ): void;
102
99
  getResourceRequestStatus(
103
100
  args: GetResourceRequestStatusCommandInput,
104
101
  options: __HttpHandlerOptions,
105
- cb: (err: any, data?: GetResourceRequestStatusCommandOutput) => void
102
+ cb: (err: any, data?: GetResourceRequestStatusCommandOutput) => void,
106
103
  ): void;
107
104
  listResourceRequests(): Promise<ListResourceRequestsCommandOutput>;
108
105
  listResourceRequests(
109
106
  args: ListResourceRequestsCommandInput,
110
- options?: __HttpHandlerOptions
107
+ options?: __HttpHandlerOptions,
111
108
  ): Promise<ListResourceRequestsCommandOutput>;
112
109
  listResourceRequests(
113
110
  args: ListResourceRequestsCommandInput,
114
- cb: (err: any, data?: ListResourceRequestsCommandOutput) => void
111
+ cb: (err: any, data?: ListResourceRequestsCommandOutput) => void,
115
112
  ): void;
116
113
  listResourceRequests(
117
114
  args: ListResourceRequestsCommandInput,
118
115
  options: __HttpHandlerOptions,
119
- cb: (err: any, data?: ListResourceRequestsCommandOutput) => void
116
+ cb: (err: any, data?: ListResourceRequestsCommandOutput) => void,
120
117
  ): void;
121
118
  listResources(
122
119
  args: ListResourcesCommandInput,
123
- options?: __HttpHandlerOptions
120
+ options?: __HttpHandlerOptions,
124
121
  ): Promise<ListResourcesCommandOutput>;
125
122
  listResources(
126
123
  args: ListResourcesCommandInput,
127
- cb: (err: any, data?: ListResourcesCommandOutput) => void
124
+ cb: (err: any, data?: ListResourcesCommandOutput) => void,
128
125
  ): void;
129
126
  listResources(
130
127
  args: ListResourcesCommandInput,
131
128
  options: __HttpHandlerOptions,
132
- cb: (err: any, data?: ListResourcesCommandOutput) => void
129
+ cb: (err: any, data?: ListResourcesCommandOutput) => void,
133
130
  ): void;
134
131
  updateResource(
135
132
  args: UpdateResourceCommandInput,
136
- options?: __HttpHandlerOptions
133
+ options?: __HttpHandlerOptions,
137
134
  ): Promise<UpdateResourceCommandOutput>;
138
135
  updateResource(
139
136
  args: UpdateResourceCommandInput,
140
- cb: (err: any, data?: UpdateResourceCommandOutput) => void
137
+ cb: (err: any, data?: UpdateResourceCommandOutput) => void,
141
138
  ): void;
142
139
  updateResource(
143
140
  args: UpdateResourceCommandInput,
144
141
  options: __HttpHandlerOptions,
145
- cb: (err: any, data?: UpdateResourceCommandOutput) => void
142
+ cb: (err: any, data?: UpdateResourceCommandOutput) => void,
146
143
  ): void;
147
144
  paginateListResourceRequests(
148
145
  args?: ListResourceRequestsCommandInput,
149
146
  paginationConfig?: Pick<
150
147
  PaginationConfiguration,
151
148
  Exclude<keyof PaginationConfiguration, "client">
152
- >
149
+ >,
153
150
  ): Paginator<ListResourceRequestsCommandOutput>;
154
151
  paginateListResources(
155
152
  args: ListResourcesCommandInput,
156
153
  paginationConfig?: Pick<
157
154
  PaginationConfiguration,
158
155
  Exclude<keyof PaginationConfiguration, "client">
159
- >
156
+ >,
160
157
  ): Paginator<ListResourcesCommandOutput>;
161
158
  waitUntilResourceRequestSuccess(
162
159
  args: GetResourceRequestStatusCommandInput,
@@ -165,9 +162,7 @@ export interface CloudControl {
165
162
  | Pick<
166
163
  WaiterConfiguration<CloudControl>,
167
164
  Exclude<keyof WaiterConfiguration<CloudControl>, "client">
168
- >
165
+ >,
169
166
  ): Promise<WaiterResult<GetResourceRequestStatusCommandOutput>>;
170
167
  }
171
- export declare class CloudControl
172
- extends CloudControlClient
173
- implements CloudControl {}
168
+ export declare class CloudControl extends CloudControlClient implements CloudControl {}
@@ -11,10 +11,7 @@ import {
11
11
  Client as __Client,
12
12
  } from "@smithy/core/client";
13
13
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
- import {
15
- EndpointInputConfig,
16
- EndpointResolvedConfig,
17
- } from "@smithy/core/endpoints";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
18
15
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
19
16
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
20
17
  import {
@@ -48,10 +45,7 @@ import {
48
45
  DeleteResourceCommandInput,
49
46
  DeleteResourceCommandOutput,
50
47
  } from "./commands/DeleteResourceCommand";
51
- import {
52
- GetResourceCommandInput,
53
- GetResourceCommandOutput,
54
- } from "./commands/GetResourceCommand";
48
+ import { GetResourceCommandInput, GetResourceCommandOutput } from "./commands/GetResourceCommand";
55
49
  import {
56
50
  GetResourceRequestStatusCommandInput,
57
51
  GetResourceRequestStatusCommandOutput,
@@ -93,8 +87,7 @@ export type ServiceOutputTypes =
93
87
  | ListResourceRequestsCommandOutput
94
88
  | ListResourcesCommandOutput
95
89
  | UpdateResourceCommandOutput;
96
- export interface ClientDefaults
97
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
90
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
98
91
  requestHandler?: __HttpHandlerUserInput;
99
92
  sha256?: __ChecksumConstructor | __HashConstructor;
100
93
  urlParser?: __UrlParser;
@@ -119,9 +112,7 @@ export interface ClientDefaults
119
112
  extensions?: RuntimeExtension[];
120
113
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
121
114
  }
122
- export type CloudControlClientConfigType = Partial<
123
- __SmithyConfiguration<__HttpHandlerOptions>
124
- > &
115
+ export type CloudControlClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
125
116
  ClientDefaults &
126
117
  UserAgentInputConfig &
127
118
  RetryInputConfig &
@@ -130,8 +121,7 @@ export type CloudControlClientConfigType = Partial<
130
121
  EndpointInputConfig<EndpointParameters> &
131
122
  HttpAuthSchemeInputConfig &
132
123
  ClientInputEndpointParameters;
133
- export interface CloudControlClientConfig
134
- extends CloudControlClientConfigType {}
124
+ export interface CloudControlClientConfig extends CloudControlClientConfigType {}
135
125
  export type CloudControlClientResolvedConfigType =
136
126
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
137
127
  Required<ClientDefaults> &
@@ -143,8 +133,7 @@ export type CloudControlClientResolvedConfigType =
143
133
  EndpointResolvedConfig<EndpointParameters> &
144
134
  HttpAuthSchemeResolvedConfig &
145
135
  ClientResolvedEndpointParameters;
146
- export interface CloudControlClientResolvedConfig
147
- extends CloudControlClientResolvedConfigType {}
136
+ export interface CloudControlClientResolvedConfig extends CloudControlClientResolvedConfigType {}
148
137
  export declare class CloudControlClient extends __Client<
149
138
  __HttpHandlerOptions,
150
139
  ServiceInputTypes,
@@ -152,8 +141,6 @@ export declare class CloudControlClient extends __Client<
152
141
  CloudControlClientResolvedConfig
153
142
  > {
154
143
  readonly config: CloudControlClientResolvedConfig;
155
- constructor(
156
- ...[configuration]: __CheckOptionalClientConfig<CloudControlClientConfig>
157
- );
144
+ constructor(...[configuration]: __CheckOptionalClientConfig<CloudControlClientConfig>);
158
145
  destroy(): void;
159
146
  }
@@ -7,17 +7,10 @@ import { CloudControlHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: CloudControlHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: CloudControlHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): CloudControlHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { CloudControlClientResolvedConfig } from "../CloudControlClient";
15
- export interface CloudControlHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface CloudControlHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface CloudControlHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- CloudControlClientResolvedConfig,
22
- HandlerExecutionContext,
23
- CloudControlHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface CloudControlHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ CloudControlClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ CloudControlHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultCloudControlHttpAuthSchemeParametersProvider: (
27
25
  config: CloudControlClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<CloudControlHttpAuthSchemeParameters>;
31
- export interface CloudControlHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<CloudControlHttpAuthSchemeParameters> {}
29
+ export interface CloudControlHttpAuthSchemeProvider extends HttpAuthSchemeProvider<CloudControlHttpAuthSchemeParameters> {}
33
30
  export declare const defaultCloudControlHttpAuthSchemeProvider: CloudControlHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: CloudControlHttpAuthSchemeProvider;
38
35
  }
39
- export interface HttpAuthSchemeResolvedConfig
40
- extends AwsSdkSigV4AuthResolvedConfig {
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
41
37
  readonly authSchemePreference: Provider<string[]>;
42
38
  readonly httpAuthSchemes: HttpAuthScheme[];
43
39
  readonly httpAuthSchemeProvider: CloudControlHttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;
@@ -4,22 +4,21 @@ import {
4
4
  ServiceInputTypes,
5
5
  ServiceOutputTypes,
6
6
  } from "./CloudControlClient";
7
- export declare const command: <
8
- I extends ServiceInputTypes,
9
- O extends ServiceOutputTypes
10
- >(
7
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
11
8
  added: EndpointParameterInstructions,
12
9
  plugins: (
13
10
  CommandCtor: any,
14
11
  clientStack: any,
15
12
  config: any,
16
- options: any
13
+ options: any,
17
14
  ) => import("@smithy/types").Pluggable<any, any>[],
18
15
  op: string,
19
16
  $: import("@smithy/types").StaticOperationSchema,
20
- smithyContext?: Record<string, unknown>
17
+ smithyContext?: Record<string, unknown>,
21
18
  ) => {
22
- new (input: I): import("@smithy/core/client").CommandImpl<
19
+ new (
20
+ input: I,
21
+ ): import("@smithy/core/client").CommandImpl<
23
22
  I,
24
23
  O,
25
24
  CloudControlClientResolvedConfig,
@@ -38,9 +37,4 @@ export declare const command: <
38
37
  getEndpointParameterInstructions(): EndpointParameterInstructions;
39
38
  };
40
39
  export declare const _ep0: EndpointParameterInstructions;
41
- export declare const _mw0: (
42
- Command: any,
43
- cs: any,
44
- config: any,
45
- o: any
46
- ) => never[];
40
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CancelResourceRequestInput,
4
- CancelResourceRequestOutput,
5
- } from "../models/models_0";
2
+ import { CancelResourceRequestInput, CancelResourceRequestOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CancelResourceRequestCommandInput
8
- extends CancelResourceRequestInput {}
4
+ export interface CancelResourceRequestCommandInput extends CancelResourceRequestInput {}
9
5
  export interface CancelResourceRequestCommandOutput
10
- extends CancelResourceRequestOutput,
11
- __MetadataBearer {}
6
+ extends CancelResourceRequestOutput, __MetadataBearer {}
12
7
  declare const CancelResourceRequestCommand_base: {
13
8
  new (
14
- input: CancelResourceRequestCommandInput
9
+ input: CancelResourceRequestCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CancelResourceRequestCommandInput,
17
12
  CancelResourceRequestCommandOutput,
@@ -20,7 +15,7 @@ declare const CancelResourceRequestCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CancelResourceRequestCommandInput
18
+ input: CancelResourceRequestCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CancelResourceRequestCommandInput,
26
21
  CancelResourceRequestCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { CreateResourceInput, CreateResourceOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface CreateResourceCommandInput extends CreateResourceInput {}
5
- export interface CreateResourceCommandOutput
6
- extends CreateResourceOutput,
7
- __MetadataBearer {}
5
+ export interface CreateResourceCommandOutput extends CreateResourceOutput, __MetadataBearer {}
8
6
  declare const CreateResourceCommand_base: {
9
7
  new (
10
- input: CreateResourceCommandInput
8
+ input: CreateResourceCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  CreateResourceCommandInput,
13
11
  CreateResourceCommandOutput,
@@ -16,7 +14,7 @@ declare const CreateResourceCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: CreateResourceCommandInput
17
+ input: CreateResourceCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  CreateResourceCommandInput,
22
20
  CreateResourceCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { DeleteResourceInput, DeleteResourceOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface DeleteResourceCommandInput extends DeleteResourceInput {}
5
- export interface DeleteResourceCommandOutput
6
- extends DeleteResourceOutput,
7
- __MetadataBearer {}
5
+ export interface DeleteResourceCommandOutput extends DeleteResourceOutput, __MetadataBearer {}
8
6
  declare const DeleteResourceCommand_base: {
9
7
  new (
10
- input: DeleteResourceCommandInput
8
+ input: DeleteResourceCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  DeleteResourceCommandInput,
13
11
  DeleteResourceCommandOutput,
@@ -16,7 +14,7 @@ declare const DeleteResourceCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: DeleteResourceCommandInput
17
+ input: DeleteResourceCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  DeleteResourceCommandInput,
22
20
  DeleteResourceCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { GetResourceInput, GetResourceOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface GetResourceCommandInput extends GetResourceInput {}
5
- export interface GetResourceCommandOutput
6
- extends GetResourceOutput,
7
- __MetadataBearer {}
5
+ export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataBearer {}
8
6
  declare const GetResourceCommand_base: {
9
7
  new (
10
- input: GetResourceCommandInput
8
+ input: GetResourceCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  GetResourceCommandInput,
13
11
  GetResourceCommandOutput,
@@ -16,7 +14,7 @@ declare const GetResourceCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: GetResourceCommandInput
17
+ input: GetResourceCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  GetResourceCommandInput,
22
20
  GetResourceCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetResourceRequestStatusInput,
4
- GetResourceRequestStatusOutput,
5
- } from "../models/models_0";
2
+ import { GetResourceRequestStatusInput, GetResourceRequestStatusOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface GetResourceRequestStatusCommandInput
8
- extends GetResourceRequestStatusInput {}
4
+ export interface GetResourceRequestStatusCommandInput extends GetResourceRequestStatusInput {}
9
5
  export interface GetResourceRequestStatusCommandOutput
10
- extends GetResourceRequestStatusOutput,
11
- __MetadataBearer {}
6
+ extends GetResourceRequestStatusOutput, __MetadataBearer {}
12
7
  declare const GetResourceRequestStatusCommand_base: {
13
8
  new (
14
- input: GetResourceRequestStatusCommandInput
9
+ input: GetResourceRequestStatusCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  GetResourceRequestStatusCommandInput,
17
12
  GetResourceRequestStatusCommandOutput,
@@ -20,7 +15,7 @@ declare const GetResourceRequestStatusCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: GetResourceRequestStatusCommandInput
18
+ input: GetResourceRequestStatusCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  GetResourceRequestStatusCommandInput,
26
21
  GetResourceRequestStatusCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListResourceRequestsInput,
4
- ListResourceRequestsOutput,
5
- } from "../models/models_0";
2
+ import { ListResourceRequestsInput, ListResourceRequestsOutput } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ListResourceRequestsCommandInput
8
- extends ListResourceRequestsInput {}
4
+ export interface ListResourceRequestsCommandInput extends ListResourceRequestsInput {}
9
5
  export interface ListResourceRequestsCommandOutput
10
- extends ListResourceRequestsOutput,
11
- __MetadataBearer {}
6
+ extends ListResourceRequestsOutput, __MetadataBearer {}
12
7
  declare const ListResourceRequestsCommand_base: {
13
8
  new (
14
- input: ListResourceRequestsCommandInput
9
+ input: ListResourceRequestsCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ListResourceRequestsCommandInput,
17
12
  ListResourceRequestsCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { ListResourcesInput, ListResourcesOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface ListResourcesCommandInput extends ListResourcesInput {}
5
- export interface ListResourcesCommandOutput
6
- extends ListResourcesOutput,
7
- __MetadataBearer {}
5
+ export interface ListResourcesCommandOutput extends ListResourcesOutput, __MetadataBearer {}
8
6
  declare const ListResourcesCommand_base: {
9
7
  new (
10
- input: ListResourcesCommandInput
8
+ input: ListResourcesCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  ListResourcesCommandInput,
13
11
  ListResourcesCommandOutput,
@@ -16,7 +14,7 @@ declare const ListResourcesCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: ListResourcesCommandInput
17
+ input: ListResourcesCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  ListResourcesCommandInput,
22
20
  ListResourcesCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { UpdateResourceInput, UpdateResourceOutput } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface UpdateResourceCommandInput extends UpdateResourceInput {}
5
- export interface UpdateResourceCommandOutput
6
- extends UpdateResourceOutput,
7
- __MetadataBearer {}
5
+ export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __MetadataBearer {}
8
6
  declare const UpdateResourceCommand_base: {
9
7
  new (
10
- input: UpdateResourceCommandInput
8
+ input: UpdateResourceCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  UpdateResourceCommandInput,
13
11
  UpdateResourceCommandOutput,
@@ -16,7 +14,7 @@ declare const UpdateResourceCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: UpdateResourceCommandInput
17
+ input: UpdateResourceCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  UpdateResourceCommandInput,
22
20
  UpdateResourceCommandOutput,
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
23
23
  defaultSigningName: string;
24
24
  };
25
25
  export declare const resolveClientEndpointParameters: <T>(
26
- options: T & ClientInputEndpointParameters
26
+ options: T & ClientInputEndpointParameters,
27
27
  ) => T & ClientResolvedEndpointParameters;
28
28
  export declare const commonParams: {
29
29
  readonly UseFIPS: {
@@ -4,5 +4,5 @@ export declare const defaultEndpointResolver: (
4
4
  endpointParams: EndpointParameters,
5
5
  context?: {
6
6
  logger?: Logger;
7
- }
7
+ },
8
8
  ) => EndpointV2;
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
3
3
  import { DefaultExtensionConfiguration } from "@smithy/types";
4
4
  import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
5
  export interface CloudControlExtensionConfiguration
6
- extends HttpHandlerExtensionConfiguration,
6
+ extends
7
+ HttpHandlerExtensionConfiguration,
7
8
  DefaultExtensionConfiguration,
8
9
  AwsRegionExtensionConfiguration,
9
10
  HttpAuthExtensionConfiguration {}
@@ -16,8 +16,7 @@ export declare const HandlerErrorCode: {
16
16
  readonly THROTTLING: "Throttling";
17
17
  readonly UNAUTHORIZED_TAGGING_OPERATION: "UnauthorizedTaggingOperation";
18
18
  };
19
- export type HandlerErrorCode =
20
- (typeof HandlerErrorCode)[keyof typeof HandlerErrorCode];
19
+ export type HandlerErrorCode = (typeof HandlerErrorCode)[keyof typeof HandlerErrorCode];
21
20
  export declare const Operation: {
22
21
  readonly CREATE: "CREATE";
23
22
  readonly DELETE: "DELETE";
@@ -32,5 +31,4 @@ export declare const OperationStatus: {
32
31
  readonly PENDING: "PENDING";
33
32
  readonly SUCCESS: "SUCCESS";
34
33
  };
35
- export type OperationStatus =
36
- (typeof OperationStatus)[keyof typeof OperationStatus];
34
+ export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationStatus];
@@ -4,173 +4,125 @@ export declare class AlreadyExistsException extends __BaseException {
4
4
  readonly name: "AlreadyExistsException";
5
5
  readonly $fault: "client";
6
6
  Message?: string | undefined;
7
- constructor(
8
- opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
9
- );
7
+ constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
10
8
  }
11
9
  export declare class ConcurrentModificationException extends __BaseException {
12
10
  readonly name: "ConcurrentModificationException";
13
11
  readonly $fault: "server";
14
12
  Message?: string | undefined;
15
- constructor(
16
- opts: __ExceptionOptionType<
17
- ConcurrentModificationException,
18
- __BaseException
19
- >
20
- );
13
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
21
14
  }
22
15
  export declare class RequestTokenNotFoundException extends __BaseException {
23
16
  readonly name: "RequestTokenNotFoundException";
24
17
  readonly $fault: "client";
25
18
  Message?: string | undefined;
26
- constructor(
27
- opts: __ExceptionOptionType<RequestTokenNotFoundException, __BaseException>
28
- );
19
+ constructor(opts: __ExceptionOptionType<RequestTokenNotFoundException, __BaseException>);
29
20
  }
30
21
  export declare class ClientTokenConflictException extends __BaseException {
31
22
  readonly name: "ClientTokenConflictException";
32
23
  readonly $fault: "client";
33
24
  Message?: string | undefined;
34
- constructor(
35
- opts: __ExceptionOptionType<ClientTokenConflictException, __BaseException>
36
- );
25
+ constructor(opts: __ExceptionOptionType<ClientTokenConflictException, __BaseException>);
37
26
  }
38
27
  export declare class ConcurrentOperationException extends __BaseException {
39
28
  readonly name: "ConcurrentOperationException";
40
29
  readonly $fault: "client";
41
30
  Message?: string | undefined;
42
- constructor(
43
- opts: __ExceptionOptionType<ConcurrentOperationException, __BaseException>
44
- );
31
+ constructor(opts: __ExceptionOptionType<ConcurrentOperationException, __BaseException>);
45
32
  }
46
33
  export declare class GeneralServiceException extends __BaseException {
47
34
  readonly name: "GeneralServiceException";
48
35
  readonly $fault: "client";
49
36
  Message?: string | undefined;
50
- constructor(
51
- opts: __ExceptionOptionType<GeneralServiceException, __BaseException>
52
- );
37
+ constructor(opts: __ExceptionOptionType<GeneralServiceException, __BaseException>);
53
38
  }
54
39
  export declare class HandlerFailureException extends __BaseException {
55
40
  readonly name: "HandlerFailureException";
56
41
  readonly $fault: "server";
57
42
  Message?: string | undefined;
58
- constructor(
59
- opts: __ExceptionOptionType<HandlerFailureException, __BaseException>
60
- );
43
+ constructor(opts: __ExceptionOptionType<HandlerFailureException, __BaseException>);
61
44
  }
62
45
  export declare class HandlerInternalFailureException extends __BaseException {
63
46
  readonly name: "HandlerInternalFailureException";
64
47
  readonly $fault: "server";
65
48
  Message?: string | undefined;
66
- constructor(
67
- opts: __ExceptionOptionType<
68
- HandlerInternalFailureException,
69
- __BaseException
70
- >
71
- );
49
+ constructor(opts: __ExceptionOptionType<HandlerInternalFailureException, __BaseException>);
72
50
  }
73
51
  export declare class InvalidCredentialsException extends __BaseException {
74
52
  readonly name: "InvalidCredentialsException";
75
53
  readonly $fault: "client";
76
54
  Message?: string | undefined;
77
- constructor(
78
- opts: __ExceptionOptionType<InvalidCredentialsException, __BaseException>
79
- );
55
+ constructor(opts: __ExceptionOptionType<InvalidCredentialsException, __BaseException>);
80
56
  }
81
57
  export declare class InvalidRequestException extends __BaseException {
82
58
  readonly name: "InvalidRequestException";
83
59
  readonly $fault: "client";
84
60
  Message?: string | undefined;
85
- constructor(
86
- opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
87
- );
61
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
88
62
  }
89
63
  export declare class NetworkFailureException extends __BaseException {
90
64
  readonly name: "NetworkFailureException";
91
65
  readonly $fault: "server";
92
66
  Message?: string | undefined;
93
- constructor(
94
- opts: __ExceptionOptionType<NetworkFailureException, __BaseException>
95
- );
67
+ constructor(opts: __ExceptionOptionType<NetworkFailureException, __BaseException>);
96
68
  }
97
69
  export declare class NotStabilizedException extends __BaseException {
98
70
  readonly name: "NotStabilizedException";
99
71
  readonly $fault: "client";
100
72
  Message?: string | undefined;
101
- constructor(
102
- opts: __ExceptionOptionType<NotStabilizedException, __BaseException>
103
- );
73
+ constructor(opts: __ExceptionOptionType<NotStabilizedException, __BaseException>);
104
74
  }
105
75
  export declare class NotUpdatableException extends __BaseException {
106
76
  readonly name: "NotUpdatableException";
107
77
  readonly $fault: "client";
108
78
  Message?: string | undefined;
109
- constructor(
110
- opts: __ExceptionOptionType<NotUpdatableException, __BaseException>
111
- );
79
+ constructor(opts: __ExceptionOptionType<NotUpdatableException, __BaseException>);
112
80
  }
113
81
  export declare class PrivateTypeException extends __BaseException {
114
82
  readonly name: "PrivateTypeException";
115
83
  readonly $fault: "client";
116
84
  Message?: string | undefined;
117
- constructor(
118
- opts: __ExceptionOptionType<PrivateTypeException, __BaseException>
119
- );
85
+ constructor(opts: __ExceptionOptionType<PrivateTypeException, __BaseException>);
120
86
  }
121
87
  export declare class ResourceConflictException extends __BaseException {
122
88
  readonly name: "ResourceConflictException";
123
89
  readonly $fault: "client";
124
90
  Message?: string | undefined;
125
- constructor(
126
- opts: __ExceptionOptionType<ResourceConflictException, __BaseException>
127
- );
91
+ constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
128
92
  }
129
93
  export declare class ResourceNotFoundException extends __BaseException {
130
94
  readonly name: "ResourceNotFoundException";
131
95
  readonly $fault: "client";
132
96
  Message?: string | undefined;
133
- constructor(
134
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
135
- );
97
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
136
98
  }
137
99
  export declare class ServiceInternalErrorException extends __BaseException {
138
100
  readonly name: "ServiceInternalErrorException";
139
101
  readonly $fault: "server";
140
102
  Message?: string | undefined;
141
- constructor(
142
- opts: __ExceptionOptionType<ServiceInternalErrorException, __BaseException>
143
- );
103
+ constructor(opts: __ExceptionOptionType<ServiceInternalErrorException, __BaseException>);
144
104
  }
145
105
  export declare class ServiceLimitExceededException extends __BaseException {
146
106
  readonly name: "ServiceLimitExceededException";
147
107
  readonly $fault: "client";
148
108
  Message?: string | undefined;
149
- constructor(
150
- opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>
151
- );
109
+ constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
152
110
  }
153
111
  export declare class ThrottlingException extends __BaseException {
154
112
  readonly name: "ThrottlingException";
155
113
  readonly $fault: "client";
156
114
  Message?: string | undefined;
157
- constructor(
158
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
159
- );
115
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
160
116
  }
161
117
  export declare class TypeNotFoundException extends __BaseException {
162
118
  readonly name: "TypeNotFoundException";
163
119
  readonly $fault: "client";
164
120
  Message?: string | undefined;
165
- constructor(
166
- opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>
167
- );
121
+ constructor(opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>);
168
122
  }
169
123
  export declare class UnsupportedActionException extends __BaseException {
170
124
  readonly name: "UnsupportedActionException";
171
125
  readonly $fault: "client";
172
126
  Message?: string | undefined;
173
- constructor(
174
- opts: __ExceptionOptionType<UnsupportedActionException, __BaseException>
175
- );
127
+ constructor(opts: __ExceptionOptionType<UnsupportedActionException, __BaseException>);
176
128
  }
@@ -1,6 +1,5 @@
1
1
  import { PaginationConfiguration } from "@smithy/types";
2
2
  import { CloudControlClient } from "../CloudControlClient";
3
- export interface CloudControlPaginationConfiguration
4
- extends PaginationConfiguration {
3
+ export interface CloudControlPaginationConfiguration extends PaginationConfiguration {
5
4
  client: CloudControlClient;
6
5
  }
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
9
  credentialDefaultProvider:
10
10
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
- | ((
12
- _: unknown
13
- ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
12
  defaultUserAgentProvider: (
15
- config?: import("@aws-sdk/core/client").PreviouslyResolved
13
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
16
14
  ) => Promise<import("@smithy/types").UserAgent>;
17
15
  maxAttempts: number | import("@smithy/types").Provider<number>;
18
16
  region: string | import("@smithy/types").Provider<any>;
19
- requestHandler:
20
- | import("@smithy/core/protocols").HttpHandler<any>
21
- | RequestHandler;
17
+ requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
22
18
  retryMode: string | import("@smithy/types").Provider<string>;
23
19
  streamCollector: (
24
- stream:
25
- | import("stream").Readable
26
- | import("stream/web").ReadableStream
27
- | ReadableStream
28
- | Blob
20
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
29
21
  ) => Promise<Uint8Array>;
30
22
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
31
23
  (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
53
45
  logger: import("@smithy/types").Logger;
54
46
  extensions: import("./runtimeExtensions").RuntimeExtension[];
55
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
56
- userAgentAppId?:
57
- | string
58
- | undefined
59
- | import("@smithy/types").Provider<string | undefined>;
60
- retryStrategy?:
61
- | import("@smithy/types").RetryStrategy
62
- | import("@smithy/types").RetryStrategyV2;
48
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
49
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
63
50
  endpoint?:
64
51
  | ((
65
52
  | string
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
81
68
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
82
69
  context?: {
83
70
  logger?: import("@smithy/types").Logger;
84
- }
71
+ },
85
72
  ) => import("@smithy/types").EndpointV2;
86
73
  tls?: boolean;
87
74
  serviceConfiguredEndpoint?: never;
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
94
81
  signer?:
95
82
  | import("@smithy/types").RequestSigner
96
83
  | ((
97
- authScheme?: import("@smithy/types").AuthScheme
84
+ authScheme?: import("@smithy/types").AuthScheme,
98
85
  ) => Promise<import("@smithy/types").RequestSigner>);
99
86
  signingEscapePath?: boolean;
100
87
  systemClockOffset?: number;
101
88
  signingRegion?: string;
102
89
  signerConstructor?: new (
103
90
  options: import("@smithy/signature-v4").SignatureV4Init &
104
- import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit,
105
92
  ) => import("@smithy/types").RequestSigner;
106
93
  };
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
10
10
  credentialDefaultProvider:
11
11
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
12
  | ((
13
- init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
13
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
14
14
  ) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
15
15
  defaultUserAgentProvider: (
16
- config?: import("@aws-sdk/core/client").PreviouslyResolved
16
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
17
17
  ) => Promise<import("@smithy/types").UserAgent>;
18
18
  maxAttempts: number | import("@smithy/types").Provider<number>;
19
19
  region: string | import("@smithy/types").Provider<string>;
20
- requestHandler:
21
- | RequestHandler
22
- | import("@smithy/core/protocols").HttpHandler<any>;
20
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
23
21
  retryMode: string | import("@smithy/types").Provider<string>;
24
22
  streamCollector: (
25
- stream:
26
- | import("stream").Readable
27
- | import("stream/web").ReadableStream
28
- | ReadableStream
29
- | Blob
23
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
30
24
  ) => Promise<Uint8Array>;
31
25
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
32
26
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
53
47
  logger: import("@smithy/types").Logger;
54
48
  extensions: import("./runtimeExtensions").RuntimeExtension[];
55
49
  customUserAgent?: string | import("@smithy/types").UserAgent;
56
- retryStrategy?:
57
- | import("@smithy/types").RetryStrategy
58
- | import("@smithy/types").RetryStrategyV2;
50
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
59
51
  endpoint?:
60
52
  | ((
61
53
  | string
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
77
69
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
78
70
  context?: {
79
71
  logger?: import("@smithy/types").Logger;
80
- }
72
+ },
81
73
  ) => import("@smithy/types").EndpointV2;
82
74
  tls?: boolean;
83
75
  serviceConfiguredEndpoint?: never;
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
89
81
  signer?:
90
82
  | import("@smithy/types").RequestSigner
91
83
  | ((
92
- authScheme?: import("@smithy/types").AuthScheme
84
+ authScheme?: import("@smithy/types").AuthScheme,
93
85
  ) => Promise<import("@smithy/types").RequestSigner>);
94
86
  signingEscapePath?: boolean;
95
87
  systemClockOffset?: number;
96
88
  signingRegion?: string;
97
89
  signerConstructor?: new (
98
90
  options: import("@smithy/signature-v4").SignatureV4Init &
99
- import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit,
100
92
  ) => import("@smithy/types").RequestSigner;
101
93
  };
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
23
  streamCollector: (
24
- stream:
25
- | import("stream").Readable
26
- | import("stream/web").ReadableStream
27
- | ReadableStream
28
- | Blob
24
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
29
25
  ) => Promise<Uint8Array>;
30
26
  base64Decoder: import("@smithy/types").Decoder;
31
27
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
40
36
  region: string | import("@smithy/types").Provider<any>;
41
37
  profile?: string;
42
38
  defaultUserAgentProvider: (
43
- config?: import("@aws-sdk/core/client").PreviouslyResolved
39
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
44
40
  ) => Promise<import("@smithy/types").UserAgent>;
45
41
  credentialDefaultProvider:
46
42
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
47
- | ((
48
- _: unknown
49
- ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
43
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
50
44
  maxAttempts: number | import("@smithy/types").Provider<number>;
51
45
  retryMode: string | import("@smithy/types").Provider<string>;
52
46
  logger: import("@smithy/types").Logger;
53
47
  extensions: import("./runtimeExtensions").RuntimeExtension[];
54
48
  defaultsMode:
55
49
  | import("@smithy/core/client").DefaultsMode
56
- | import("@smithy/types").Provider<
57
- import("@smithy/core/client").DefaultsMode
58
- >;
50
+ | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
59
51
  customUserAgent?: string | import("@smithy/types").UserAgent;
60
- userAgentAppId?:
61
- | string
62
- | undefined
63
- | import("@smithy/types").Provider<string | undefined>;
64
- retryStrategy?:
65
- | import("@smithy/types").RetryStrategy
66
- | import("@smithy/types").RetryStrategyV2;
52
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
53
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
67
54
  endpoint?:
68
55
  | ((
69
56
  | string
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
85
72
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
86
73
  context?: {
87
74
  logger?: import("@smithy/types").Logger;
88
- }
75
+ },
89
76
  ) => import("@smithy/types").EndpointV2;
90
77
  tls?: boolean;
91
78
  serviceConfiguredEndpoint?: never;
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
98
85
  signer?:
99
86
  | import("@smithy/types").RequestSigner
100
87
  | ((
101
- authScheme?: import("@smithy/types").AuthScheme
88
+ authScheme?: import("@smithy/types").AuthScheme,
102
89
  ) => Promise<import("@smithy/types").RequestSigner>);
103
90
  signingEscapePath?: boolean;
104
91
  systemClockOffset?: number;
105
92
  signingRegion?: string;
106
93
  signerConstructor?: new (
107
94
  options: import("@smithy/signature-v4").SignatureV4Init &
108
- import("@smithy/signature-v4").SignatureV4CryptoInit
95
+ import("@smithy/signature-v4").SignatureV4CryptoInit,
109
96
  ) => import("@smithy/types").RequestSigner;
110
97
  };
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
9
9
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
10
10
  context?: {
11
11
  logger?: import("@smithy/types").Logger;
12
- }
12
+ },
13
13
  ) => import("@smithy/types").EndpointV2;
14
14
  extensions: import("./runtimeExtensions").RuntimeExtension[];
15
15
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CloudControlHttpAuthSchemeProvider;
@@ -7,5 +7,5 @@ export interface RuntimeExtensionsConfig {
7
7
  }
8
8
  export declare const resolveRuntimeExtensions: (
9
9
  runtimeConfig: any,
10
- extensions: RuntimeExtension[]
10
+ extensions: RuntimeExtension[],
11
11
  ) => any;
@@ -1,9 +1,5 @@
1
1
  import { TypeRegistry } from "@smithy/core/schema";
2
- import {
3
- StaticErrorSchema,
4
- StaticOperationSchema,
5
- StaticStructureSchema,
6
- } from "@smithy/types";
2
+ import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
7
3
  export declare var CloudControlServiceException$: StaticErrorSchema;
8
4
  export declare var AlreadyExistsException$: StaticErrorSchema;
9
5
  export declare var ClientTokenConflictException$: StaticErrorSchema;
@@ -7,13 +7,9 @@ import {
7
7
  import { CloudControlServiceException } from "../models/CloudControlServiceException";
8
8
  export declare const waitForResourceRequestSuccess: (
9
9
  params: WaiterConfiguration<CloudControlClient>,
10
- input: GetResourceRequestStatusCommandInput
11
- ) => Promise<
12
- WaiterResult<
13
- GetResourceRequestStatusCommandOutput | CloudControlServiceException
14
- >
15
- >;
10
+ input: GetResourceRequestStatusCommandInput,
11
+ ) => Promise<WaiterResult<GetResourceRequestStatusCommandOutput | CloudControlServiceException>>;
16
12
  export declare const waitUntilResourceRequestSuccess: (
17
13
  params: WaiterConfiguration<CloudControlClient>,
18
- input: GetResourceRequestStatusCommandInput
14
+ input: GetResourceRequestStatusCommandInput,
19
15
  ) => Promise<WaiterResult<GetResourceRequestStatusCommandOutput>>;
package/package.json CHANGED
@@ -1,7 +1,38 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudcontrol",
3
+ "version": "3.1089.0",
3
4
  "description": "AWS SDK for JavaScript Cloudcontrol Client for Node.js, Browser and React Native",
4
- "version": "3.1087.0",
5
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-cloudcontrol",
6
+ "license": "Apache-2.0",
7
+ "author": {
8
+ "name": "AWS SDK for JavaScript Team",
9
+ "url": "https://aws.amazon.com/sdk-for-javascript/"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
14
+ "directory": "clients/client-cloudcontrol"
15
+ },
16
+ "files": [
17
+ "dist-*/**"
18
+ ],
19
+ "sideEffects": false,
20
+ "main": "./dist-cjs/index.js",
21
+ "module": "./dist-es/index.js",
22
+ "browser": {
23
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
24
+ },
25
+ "types": "./dist-types/index.d.ts",
26
+ "typesVersions": {
27
+ "<4.5": {
28
+ "dist-types/*": [
29
+ "dist-types/ts3.4/*"
30
+ ]
31
+ }
32
+ },
33
+ "react-native": {
34
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
35
+ },
5
36
  "scripts": {
6
37
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
38
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -14,17 +45,13 @@
14
45
  "generate:client": "node ../../scripts/generate-clients/single-service",
15
46
  "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
16
47
  },
17
- "main": "./dist-cjs/index.js",
18
- "types": "./dist-types/index.d.ts",
19
- "module": "./dist-es/index.js",
20
- "sideEffects": false,
21
48
  "dependencies": {
22
- "@aws-sdk/core": "^3.975.2",
23
- "@aws-sdk/credential-provider-node": "^3.972.68",
24
- "@aws-sdk/types": "^3.974.1",
25
- "@smithy/core": "^3.29.3",
26
- "@smithy/fetch-http-handler": "^5.6.5",
27
- "@smithy/node-http-handler": "^4.9.5",
49
+ "@aws-sdk/core": "^3.975.3",
50
+ "@aws-sdk/credential-provider-node": "^3.972.70",
51
+ "@aws-sdk/types": "^3.974.2",
52
+ "@smithy/core": "^3.29.4",
53
+ "@smithy/fetch-http-handler": "^5.6.6",
54
+ "@smithy/node-http-handler": "^4.9.6",
28
55
  "@smithy/types": "^4.16.1",
29
56
  "tslib": "^2.6.2"
30
57
  },
@@ -38,32 +65,5 @@
38
65
  },
39
66
  "engines": {
40
67
  "node": ">=20.0.0"
41
- },
42
- "typesVersions": {
43
- "<4.5": {
44
- "dist-types/*": [
45
- "dist-types/ts3.4/*"
46
- ]
47
- }
48
- },
49
- "files": [
50
- "dist-*/**"
51
- ],
52
- "author": {
53
- "name": "AWS SDK for JavaScript Team",
54
- "url": "https://aws.amazon.com/sdk-for-javascript/"
55
- },
56
- "license": "Apache-2.0",
57
- "browser": {
58
- "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
59
- },
60
- "react-native": {
61
- "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
62
- },
63
- "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-cloudcontrol",
64
- "repository": {
65
- "type": "git",
66
- "url": "https://github.com/aws/aws-sdk-js-v3.git",
67
- "directory": "clients/client-cloudcontrol"
68
68
  }
69
69
  }