@aws-sdk/client-cloudcontrol 3.478.0 → 3.484.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 (37) hide show
  1. package/dist-cjs/commands/CancelResourceRequestCommand.js +18 -41
  2. package/dist-cjs/commands/CreateResourceCommand.js +18 -41
  3. package/dist-cjs/commands/DeleteResourceCommand.js +18 -41
  4. package/dist-cjs/commands/GetResourceCommand.js +18 -41
  5. package/dist-cjs/commands/GetResourceRequestStatusCommand.js +18 -41
  6. package/dist-cjs/commands/ListResourceRequestsCommand.js +18 -41
  7. package/dist-cjs/commands/ListResourcesCommand.js +18 -41
  8. package/dist-cjs/commands/UpdateResourceCommand.js +18 -41
  9. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  10. package/dist-es/commands/CancelResourceRequestCommand.js +18 -41
  11. package/dist-es/commands/CreateResourceCommand.js +18 -41
  12. package/dist-es/commands/DeleteResourceCommand.js +18 -41
  13. package/dist-es/commands/GetResourceCommand.js +18 -41
  14. package/dist-es/commands/GetResourceRequestStatusCommand.js +18 -41
  15. package/dist-es/commands/ListResourceRequestsCommand.js +18 -41
  16. package/dist-es/commands/ListResourcesCommand.js +18 -41
  17. package/dist-es/commands/UpdateResourceCommand.js +18 -41
  18. package/dist-es/endpoint/EndpointParameters.js +6 -0
  19. package/dist-types/commands/CancelResourceRequestCommand.d.ts +6 -21
  20. package/dist-types/commands/CreateResourceCommand.d.ts +6 -21
  21. package/dist-types/commands/DeleteResourceCommand.d.ts +6 -21
  22. package/dist-types/commands/GetResourceCommand.d.ts +6 -21
  23. package/dist-types/commands/GetResourceRequestStatusCommand.d.ts +6 -21
  24. package/dist-types/commands/ListResourceRequestsCommand.d.ts +6 -21
  25. package/dist-types/commands/ListResourcesCommand.d.ts +6 -21
  26. package/dist-types/commands/UpdateResourceCommand.d.ts +6 -21
  27. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  28. package/dist-types/ts3.4/commands/CancelResourceRequestCommand.d.ts +12 -24
  29. package/dist-types/ts3.4/commands/CreateResourceCommand.d.ts +14 -23
  30. package/dist-types/ts3.4/commands/DeleteResourceCommand.d.ts +14 -23
  31. package/dist-types/ts3.4/commands/GetResourceCommand.d.ts +14 -23
  32. package/dist-types/ts3.4/commands/GetResourceRequestStatusCommand.d.ts +12 -24
  33. package/dist-types/ts3.4/commands/ListResourceRequestsCommand.d.ts +12 -24
  34. package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +14 -23
  35. package/dist-types/ts3.4/commands/UpdateResourceCommand.d.ts +14 -23
  36. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  37. package/package.json +11 -11
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
5
4
  import { GetResourceInput, GetResourceOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetResourceCommandInput extends GetResourceInput {
21
20
  */
22
21
  export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataBearer {
23
22
  }
23
+ declare const GetResourceCommand_base: {
24
+ new (input: GetResourceCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourceCommandInput, GetResourceCommandOutput, CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns information about the current state of the specified resource. For details, see
@@ -126,23 +129,5 @@ export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataB
126
129
  * <p>Base exception class for all service exceptions from CloudControl service.</p>
127
130
  *
128
131
  */
129
- export declare class GetResourceCommand extends $Command<GetResourceCommandInput, GetResourceCommandOutput, CloudControlClientResolvedConfig> {
130
- readonly input: GetResourceCommandInput;
131
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
132
- /**
133
- * @public
134
- */
135
- constructor(input: GetResourceCommandInput);
136
- /**
137
- * @internal
138
- */
139
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceCommandInput, GetResourceCommandOutput>;
140
- /**
141
- * @internal
142
- */
143
- private serialize;
144
- /**
145
- * @internal
146
- */
147
- private deserialize;
132
+ export declare class GetResourceCommand extends GetResourceCommand_base {
148
133
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
5
4
  import { GetResourceRequestStatusInput, GetResourceRequestStatusOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetResourceRequestStatusCommandInput extends GetResourceRequest
21
20
  */
22
21
  export interface GetResourceRequestStatusCommandOutput extends GetResourceRequestStatusOutput, __MetadataBearer {
23
22
  }
23
+ declare const GetResourceRequestStatusCommand_base: {
24
+ new (input: GetResourceRequestStatusCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput, CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns the current status of a resource operation request. For more information, see
@@ -67,23 +70,5 @@ export interface GetResourceRequestStatusCommandOutput extends GetResourceReques
67
70
  * <p>Base exception class for all service exceptions from CloudControl service.</p>
68
71
  *
69
72
  */
70
- export declare class GetResourceRequestStatusCommand extends $Command<GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput, CloudControlClientResolvedConfig> {
71
- readonly input: GetResourceRequestStatusCommandInput;
72
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
- /**
74
- * @public
75
- */
76
- constructor(input: GetResourceRequestStatusCommandInput);
77
- /**
78
- * @internal
79
- */
80
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput>;
81
- /**
82
- * @internal
83
- */
84
- private serialize;
85
- /**
86
- * @internal
87
- */
88
- private deserialize;
73
+ export declare class GetResourceRequestStatusCommand extends GetResourceRequestStatusCommand_base {
89
74
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
5
4
  import { ListResourceRequestsInput, ListResourceRequestsOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListResourceRequestsCommandInput extends ListResourceRequestsIn
21
20
  */
22
21
  export interface ListResourceRequestsCommandOutput extends ListResourceRequestsOutput, __MetadataBearer {
23
22
  }
23
+ declare const ListResourceRequestsCommand_base: {
24
+ new (input: ListResourceRequestsCommandInput): import("@smithy/smithy-client").CommandImpl<ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput, CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns existing resource operation requests. This includes requests of all status types.
@@ -79,23 +82,5 @@ export interface ListResourceRequestsCommandOutput extends ListResourceRequestsO
79
82
  * <p>Base exception class for all service exceptions from CloudControl service.</p>
80
83
  *
81
84
  */
82
- export declare class ListResourceRequestsCommand extends $Command<ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput, CloudControlClientResolvedConfig> {
83
- readonly input: ListResourceRequestsCommandInput;
84
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
85
- /**
86
- * @public
87
- */
88
- constructor(input: ListResourceRequestsCommandInput);
89
- /**
90
- * @internal
91
- */
92
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput>;
93
- /**
94
- * @internal
95
- */
96
- private serialize;
97
- /**
98
- * @internal
99
- */
100
- private deserialize;
85
+ export declare class ListResourceRequestsCommand extends ListResourceRequestsCommand_base {
101
86
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
5
4
  import { ListResourcesInput, ListResourcesOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListResourcesCommandInput extends ListResourcesInput {
21
20
  */
22
21
  export interface ListResourcesCommandOutput extends ListResourcesOutput, __MetadataBearer {
23
22
  }
23
+ declare const ListResourcesCommand_base: {
24
+ new (input: ListResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<ListResourcesCommandInput, ListResourcesCommandOutput, CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns information about the specified resources. For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-list.html">Discovering resources</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
@@ -130,23 +133,5 @@ export interface ListResourcesCommandOutput extends ListResourcesOutput, __Metad
130
133
  * <p>Base exception class for all service exceptions from CloudControl service.</p>
131
134
  *
132
135
  */
133
- export declare class ListResourcesCommand extends $Command<ListResourcesCommandInput, ListResourcesCommandOutput, CloudControlClientResolvedConfig> {
134
- readonly input: ListResourcesCommandInput;
135
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
136
- /**
137
- * @public
138
- */
139
- constructor(input: ListResourcesCommandInput);
140
- /**
141
- * @internal
142
- */
143
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListResourcesCommandInput, ListResourcesCommandOutput>;
144
- /**
145
- * @internal
146
- */
147
- private serialize;
148
- /**
149
- * @internal
150
- */
151
- private deserialize;
136
+ export declare class ListResourcesCommand extends ListResourcesCommand_base {
152
137
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient";
5
4
  import { UpdateResourceInput, UpdateResourceOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UpdateResourceCommandInput extends UpdateResourceInput {
21
20
  */
22
21
  export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __MetadataBearer {
23
22
  }
23
+ declare const UpdateResourceCommand_base: {
24
+ new (input: UpdateResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateResourceCommandInput, UpdateResourceCommandOutput, CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Updates the specified property values in the resource.</p>
@@ -151,23 +154,5 @@ export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __Met
151
154
  * <p>Base exception class for all service exceptions from CloudControl service.</p>
152
155
  *
153
156
  */
154
- export declare class UpdateResourceCommand extends $Command<UpdateResourceCommandInput, UpdateResourceCommandOutput, CloudControlClientResolvedConfig> {
155
- readonly input: UpdateResourceCommandInput;
156
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
157
- /**
158
- * @public
159
- */
160
- constructor(input: UpdateResourceCommandInput);
161
- /**
162
- * @internal
163
- */
164
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudControlClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateResourceCommandInput, UpdateResourceCommandOutput>;
165
- /**
166
- * @internal
167
- */
168
- private serialize;
169
- /**
170
- * @internal
171
- */
172
- private deserialize;
157
+ export declare class UpdateResourceCommand extends UpdateResourceCommand_base {
173
158
  }
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
14
14
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
15
  defaultSigningName: string;
16
16
  };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
17
35
  export interface EndpointParameters extends __EndpointParameters {
18
36
  Region?: string;
19
37
  UseDualStack?: boolean;
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  CloudControlClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface CancelResourceRequestCommandInput
21
15
  export interface CancelResourceRequestCommandOutput
22
16
  extends CancelResourceRequestOutput,
23
17
  __MetadataBearer {}
24
- export declare class CancelResourceRequestCommand extends $Command<
25
- CancelResourceRequestCommandInput,
26
- CancelResourceRequestCommandOutput,
27
- CloudControlClientResolvedConfig
28
- > {
29
- readonly input: CancelResourceRequestCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: CancelResourceRequestCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: CloudControlClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const CancelResourceRequestCommand_base: {
19
+ new (
20
+ input: CancelResourceRequestCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  CancelResourceRequestCommandInput,
38
- CancelResourceRequestCommandOutput
23
+ CancelResourceRequestCommandOutput,
24
+ CloudControlClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class CancelResourceRequestCommand extends CancelResourceRequestCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  CloudControlClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface CreateResourceCommandInput extends CreateResourceInput {}
17
11
  export interface CreateResourceCommandOutput
18
12
  extends CreateResourceOutput,
19
13
  __MetadataBearer {}
20
- export declare class CreateResourceCommand extends $Command<
21
- CreateResourceCommandInput,
22
- CreateResourceCommandOutput,
23
- CloudControlClientResolvedConfig
24
- > {
25
- readonly input: CreateResourceCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: CreateResourceCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: CloudControlClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<CreateResourceCommandInput, CreateResourceCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const CreateResourceCommand_base: {
15
+ new (
16
+ input: CreateResourceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ CreateResourceCommandInput,
19
+ CreateResourceCommandOutput,
20
+ CloudControlClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class CreateResourceCommand extends CreateResourceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  CloudControlClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface DeleteResourceCommandInput extends DeleteResourceInput {}
17
11
  export interface DeleteResourceCommandOutput
18
12
  extends DeleteResourceOutput,
19
13
  __MetadataBearer {}
20
- export declare class DeleteResourceCommand extends $Command<
21
- DeleteResourceCommandInput,
22
- DeleteResourceCommandOutput,
23
- CloudControlClientResolvedConfig
24
- > {
25
- readonly input: DeleteResourceCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: DeleteResourceCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: CloudControlClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<DeleteResourceCommandInput, DeleteResourceCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const DeleteResourceCommand_base: {
15
+ new (
16
+ input: DeleteResourceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteResourceCommandInput,
19
+ DeleteResourceCommandOutput,
20
+ CloudControlClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class DeleteResourceCommand extends DeleteResourceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  CloudControlClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface GetResourceCommandInput extends GetResourceInput {}
17
11
  export interface GetResourceCommandOutput
18
12
  extends GetResourceOutput,
19
13
  __MetadataBearer {}
20
- export declare class GetResourceCommand extends $Command<
21
- GetResourceCommandInput,
22
- GetResourceCommandOutput,
23
- CloudControlClientResolvedConfig
24
- > {
25
- readonly input: GetResourceCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: GetResourceCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: CloudControlClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<GetResourceCommandInput, GetResourceCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const GetResourceCommand_base: {
15
+ new (
16
+ input: GetResourceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetResourceCommandInput,
19
+ GetResourceCommandOutput,
20
+ CloudControlClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetResourceCommand extends GetResourceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  CloudControlClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface GetResourceRequestStatusCommandInput
21
15
  export interface GetResourceRequestStatusCommandOutput
22
16
  extends GetResourceRequestStatusOutput,
23
17
  __MetadataBearer {}
24
- export declare class GetResourceRequestStatusCommand extends $Command<
25
- GetResourceRequestStatusCommandInput,
26
- GetResourceRequestStatusCommandOutput,
27
- CloudControlClientResolvedConfig
28
- > {
29
- readonly input: GetResourceRequestStatusCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: GetResourceRequestStatusCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: CloudControlClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const GetResourceRequestStatusCommand_base: {
19
+ new (
20
+ input: GetResourceRequestStatusCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  GetResourceRequestStatusCommandInput,
38
- GetResourceRequestStatusCommandOutput
23
+ GetResourceRequestStatusCommandOutput,
24
+ CloudControlClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class GetResourceRequestStatusCommand extends GetResourceRequestStatusCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  CloudControlClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface ListResourceRequestsCommandInput
21
15
  export interface ListResourceRequestsCommandOutput
22
16
  extends ListResourceRequestsOutput,
23
17
  __MetadataBearer {}
24
- export declare class ListResourceRequestsCommand extends $Command<
25
- ListResourceRequestsCommandInput,
26
- ListResourceRequestsCommandOutput,
27
- CloudControlClientResolvedConfig
28
- > {
29
- readonly input: ListResourceRequestsCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListResourceRequestsCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: CloudControlClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const ListResourceRequestsCommand_base: {
19
+ new (
20
+ input: ListResourceRequestsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  ListResourceRequestsCommandInput,
38
- ListResourceRequestsCommandOutput
23
+ ListResourceRequestsCommandOutput,
24
+ CloudControlClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListResourceRequestsCommand extends ListResourceRequestsCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  CloudControlClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface ListResourcesCommandInput extends ListResourcesInput {}
17
11
  export interface ListResourcesCommandOutput
18
12
  extends ListResourcesOutput,
19
13
  __MetadataBearer {}
20
- export declare class ListResourcesCommand extends $Command<
21
- ListResourcesCommandInput,
22
- ListResourcesCommandOutput,
23
- CloudControlClientResolvedConfig
24
- > {
25
- readonly input: ListResourcesCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: ListResourcesCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: CloudControlClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<ListResourcesCommandInput, ListResourcesCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const ListResourcesCommand_base: {
15
+ new (
16
+ input: ListResourcesCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ ListResourcesCommandInput,
19
+ ListResourcesCommandOutput,
20
+ CloudControlClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class ListResourcesCommand extends ListResourcesCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  CloudControlClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface UpdateResourceCommandInput extends UpdateResourceInput {}
17
11
  export interface UpdateResourceCommandOutput
18
12
  extends UpdateResourceOutput,
19
13
  __MetadataBearer {}
20
- export declare class UpdateResourceCommand extends $Command<
21
- UpdateResourceCommandInput,
22
- UpdateResourceCommandOutput,
23
- CloudControlClientResolvedConfig
24
- > {
25
- readonly input: UpdateResourceCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: UpdateResourceCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: CloudControlClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<UpdateResourceCommandInput, UpdateResourceCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const UpdateResourceCommand_base: {
15
+ new (
16
+ input: UpdateResourceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ UpdateResourceCommandInput,
19
+ UpdateResourceCommandOutput,
20
+ CloudControlClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class UpdateResourceCommand extends UpdateResourceCommand_base {}
@@ -25,6 +25,24 @@ export declare const resolveClientEndpointParameters: <T>(
25
25
  ClientInputEndpointParameters & {
26
26
  defaultSigningName: string;
27
27
  };
28
+ export declare const commonParams: {
29
+ readonly UseFIPS: {
30
+ readonly type: "builtInParams";
31
+ readonly name: "useFipsEndpoint";
32
+ };
33
+ readonly Endpoint: {
34
+ readonly type: "builtInParams";
35
+ readonly name: "endpoint";
36
+ };
37
+ readonly Region: {
38
+ readonly type: "builtInParams";
39
+ readonly name: "region";
40
+ };
41
+ readonly UseDualStack: {
42
+ readonly type: "builtInParams";
43
+ readonly name: "useDualstackEndpoint";
44
+ };
45
+ };
28
46
  export interface EndpointParameters extends __EndpointParameters {
29
47
  Region?: string;
30
48
  UseDualStack?: boolean;