@aws-sdk/client-pcs 3.641.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 (171) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +366 -0
  3. package/dist-cjs/PCS.js +47 -0
  4. package/dist-cjs/PCSClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateClusterCommand.js +28 -0
  8. package/dist-cjs/commands/CreateComputeNodeGroupCommand.js +28 -0
  9. package/dist-cjs/commands/CreateQueueCommand.js +28 -0
  10. package/dist-cjs/commands/DeleteClusterCommand.js +28 -0
  11. package/dist-cjs/commands/DeleteComputeNodeGroupCommand.js +28 -0
  12. package/dist-cjs/commands/DeleteQueueCommand.js +28 -0
  13. package/dist-cjs/commands/GetClusterCommand.js +28 -0
  14. package/dist-cjs/commands/GetComputeNodeGroupCommand.js +28 -0
  15. package/dist-cjs/commands/GetQueueCommand.js +28 -0
  16. package/dist-cjs/commands/ListClustersCommand.js +28 -0
  17. package/dist-cjs/commands/ListComputeNodeGroupsCommand.js +28 -0
  18. package/dist-cjs/commands/ListQueuesCommand.js +28 -0
  19. package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
  20. package/dist-cjs/commands/RegisterComputeNodeGroupInstanceCommand.js +29 -0
  21. package/dist-cjs/commands/TagResourceCommand.js +28 -0
  22. package/dist-cjs/commands/UntagResourceCommand.js +28 -0
  23. package/dist-cjs/commands/UpdateComputeNodeGroupCommand.js +28 -0
  24. package/dist-cjs/commands/UpdateQueueCommand.js +28 -0
  25. package/dist-cjs/commands/index.js +21 -0
  26. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  27. package/dist-cjs/endpoint/endpointResolver.js +14 -0
  28. package/dist-cjs/endpoint/ruleset.js +7 -0
  29. package/dist-cjs/extensionConfiguration.js +2 -0
  30. package/dist-cjs/index.js +11 -0
  31. package/dist-cjs/models/PCSServiceException.js +12 -0
  32. package/dist-cjs/models/index.js +4 -0
  33. package/dist-cjs/models/models_0.js +169 -0
  34. package/dist-cjs/pagination/Interfaces.js +2 -0
  35. package/dist-cjs/pagination/ListClustersPaginator.js +7 -0
  36. package/dist-cjs/pagination/ListComputeNodeGroupsPaginator.js +7 -0
  37. package/dist-cjs/pagination/ListQueuesPaginator.js +7 -0
  38. package/dist-cjs/pagination/index.js +7 -0
  39. package/dist-cjs/protocols/Aws_json1_0.js +757 -0
  40. package/dist-cjs/runtimeConfig.browser.js +39 -0
  41. package/dist-cjs/runtimeConfig.js +49 -0
  42. package/dist-cjs/runtimeConfig.native.js +15 -0
  43. package/dist-cjs/runtimeConfig.shared.js +34 -0
  44. package/dist-cjs/runtimeExtensions.js +25 -0
  45. package/dist-es/PCS.js +43 -0
  46. package/dist-es/PCSClient.js +46 -0
  47. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  48. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  49. package/dist-es/commands/CreateClusterCommand.js +24 -0
  50. package/dist-es/commands/CreateComputeNodeGroupCommand.js +24 -0
  51. package/dist-es/commands/CreateQueueCommand.js +24 -0
  52. package/dist-es/commands/DeleteClusterCommand.js +24 -0
  53. package/dist-es/commands/DeleteComputeNodeGroupCommand.js +24 -0
  54. package/dist-es/commands/DeleteQueueCommand.js +24 -0
  55. package/dist-es/commands/GetClusterCommand.js +24 -0
  56. package/dist-es/commands/GetComputeNodeGroupCommand.js +24 -0
  57. package/dist-es/commands/GetQueueCommand.js +24 -0
  58. package/dist-es/commands/ListClustersCommand.js +24 -0
  59. package/dist-es/commands/ListComputeNodeGroupsCommand.js +24 -0
  60. package/dist-es/commands/ListQueuesCommand.js +24 -0
  61. package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  62. package/dist-es/commands/RegisterComputeNodeGroupInstanceCommand.js +25 -0
  63. package/dist-es/commands/TagResourceCommand.js +24 -0
  64. package/dist-es/commands/UntagResourceCommand.js +24 -0
  65. package/dist-es/commands/UpdateComputeNodeGroupCommand.js +24 -0
  66. package/dist-es/commands/UpdateQueueCommand.js +24 -0
  67. package/dist-es/commands/index.js +18 -0
  68. package/dist-es/endpoint/EndpointParameters.js +14 -0
  69. package/dist-es/endpoint/endpointResolver.js +10 -0
  70. package/dist-es/endpoint/ruleset.js +4 -0
  71. package/dist-es/extensionConfiguration.js +1 -0
  72. package/dist-es/index.js +6 -0
  73. package/dist-es/models/PCSServiceException.js +8 -0
  74. package/dist-es/models/index.js +1 -0
  75. package/dist-es/models/models_0.js +158 -0
  76. package/dist-es/pagination/Interfaces.js +1 -0
  77. package/dist-es/pagination/ListClustersPaginator.js +4 -0
  78. package/dist-es/pagination/ListComputeNodeGroupsPaginator.js +4 -0
  79. package/dist-es/pagination/ListQueuesPaginator.js +4 -0
  80. package/dist-es/pagination/index.js +4 -0
  81. package/dist-es/protocols/Aws_json1_0.js +718 -0
  82. package/dist-es/runtimeConfig.browser.js +34 -0
  83. package/dist-es/runtimeConfig.js +44 -0
  84. package/dist-es/runtimeConfig.native.js +11 -0
  85. package/dist-es/runtimeConfig.shared.js +30 -0
  86. package/dist-es/runtimeExtensions.js +21 -0
  87. package/dist-types/PCS.d.ts +154 -0
  88. package/dist-types/PCSClient.d.ts +204 -0
  89. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  90. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  91. package/dist-types/commands/CreateClusterCommand.d.ts +237 -0
  92. package/dist-types/commands/CreateComputeNodeGroupCommand.d.ts +247 -0
  93. package/dist-types/commands/CreateQueueCommand.d.ts +190 -0
  94. package/dist-types/commands/DeleteClusterCommand.d.ts +137 -0
  95. package/dist-types/commands/DeleteComputeNodeGroupCommand.d.ts +138 -0
  96. package/dist-types/commands/DeleteQueueCommand.d.ts +139 -0
  97. package/dist-types/commands/GetClusterCommand.d.ts +186 -0
  98. package/dist-types/commands/GetComputeNodeGroupCommand.d.ts +184 -0
  99. package/dist-types/commands/GetQueueCommand.d.ts +158 -0
  100. package/dist-types/commands/ListClustersCommand.d.ts +148 -0
  101. package/dist-types/commands/ListComputeNodeGroupsCommand.d.ts +150 -0
  102. package/dist-types/commands/ListQueuesCommand.d.ts +150 -0
  103. package/dist-types/commands/ListTagsForResourceCommand.d.ts +69 -0
  104. package/dist-types/commands/RegisterComputeNodeGroupInstanceCommand.d.ts +97 -0
  105. package/dist-types/commands/TagResourceCommand.d.ts +71 -0
  106. package/dist-types/commands/UntagResourceCommand.d.ts +69 -0
  107. package/dist-types/commands/UpdateComputeNodeGroupCommand.d.ts +233 -0
  108. package/dist-types/commands/UpdateQueueCommand.d.ts +187 -0
  109. package/dist-types/commands/index.d.ts +18 -0
  110. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  111. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  112. package/dist-types/endpoint/ruleset.d.ts +2 -0
  113. package/dist-types/extensionConfiguration.d.ts +9 -0
  114. package/dist-types/index.d.ts +31 -0
  115. package/dist-types/models/PCSServiceException.d.ts +14 -0
  116. package/dist-types/models/index.d.ts +1 -0
  117. package/dist-types/models/models_0.d.ts +1871 -0
  118. package/dist-types/pagination/Interfaces.d.ts +8 -0
  119. package/dist-types/pagination/ListClustersPaginator.d.ts +7 -0
  120. package/dist-types/pagination/ListComputeNodeGroupsPaginator.d.ts +7 -0
  121. package/dist-types/pagination/ListQueuesPaginator.d.ts +7 -0
  122. package/dist-types/pagination/index.d.ts +4 -0
  123. package/dist-types/protocols/Aws_json1_0.d.ts +164 -0
  124. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  125. package/dist-types/runtimeConfig.d.ts +45 -0
  126. package/dist-types/runtimeConfig.native.d.ts +44 -0
  127. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  128. package/dist-types/runtimeExtensions.d.ts +17 -0
  129. package/dist-types/ts3.4/PCS.d.ts +312 -0
  130. package/dist-types/ts3.4/PCSClient.d.ts +223 -0
  131. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  132. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +43 -0
  133. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +39 -0
  134. package/dist-types/ts3.4/commands/CreateComputeNodeGroupCommand.d.ts +40 -0
  135. package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +36 -0
  136. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +39 -0
  137. package/dist-types/ts3.4/commands/DeleteComputeNodeGroupCommand.d.ts +40 -0
  138. package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +36 -0
  139. package/dist-types/ts3.4/commands/GetClusterCommand.d.ts +36 -0
  140. package/dist-types/ts3.4/commands/GetComputeNodeGroupCommand.d.ts +40 -0
  141. package/dist-types/ts3.4/commands/GetQueueCommand.d.ts +36 -0
  142. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +36 -0
  143. package/dist-types/ts3.4/commands/ListComputeNodeGroupsCommand.d.ts +40 -0
  144. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +36 -0
  145. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +40 -0
  146. package/dist-types/ts3.4/commands/RegisterComputeNodeGroupInstanceCommand.d.ts +40 -0
  147. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  148. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
  149. package/dist-types/ts3.4/commands/UpdateComputeNodeGroupCommand.d.ts +40 -0
  150. package/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +36 -0
  151. package/dist-types/ts3.4/commands/index.d.ts +18 -0
  152. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  153. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  154. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  155. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  156. package/dist-types/ts3.4/index.d.ts +9 -0
  157. package/dist-types/ts3.4/models/PCSServiceException.d.ts +9 -0
  158. package/dist-types/ts3.4/models/index.d.ts +1 -0
  159. package/dist-types/ts3.4/models/models_0.d.ts +431 -0
  160. package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  161. package/dist-types/ts3.4/pagination/ListClustersPaginator.d.ts +11 -0
  162. package/dist-types/ts3.4/pagination/ListComputeNodeGroupsPaginator.d.ts +11 -0
  163. package/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -0
  164. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  165. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +221 -0
  166. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +85 -0
  167. package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
  168. package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
  169. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  170. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  171. package/package.json +103 -0
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CreateQueueRequest, CreateQueueResponse } from "../models/models_0";
4
+ import {
5
+ PCSClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PCSClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface CreateQueueCommandInput extends CreateQueueRequest {}
12
+ export interface CreateQueueCommandOutput
13
+ extends CreateQueueResponse,
14
+ __MetadataBearer {}
15
+ declare const CreateQueueCommand_base: {
16
+ new (
17
+ input: CreateQueueCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ CreateQueueCommandInput,
20
+ CreateQueueCommandOutput,
21
+ PCSClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: CreateQueueCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ CreateQueueCommandInput,
29
+ CreateQueueCommandOutput,
30
+ PCSClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class CreateQueueCommand extends CreateQueueCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteClusterRequest,
5
+ DeleteClusterResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PCSClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PCSClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteClusterCommandInput extends DeleteClusterRequest {}
15
+ export interface DeleteClusterCommandOutput
16
+ extends DeleteClusterResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteClusterCommand_base: {
19
+ new (
20
+ input: DeleteClusterCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteClusterCommandInput,
23
+ DeleteClusterCommandOutput,
24
+ PCSClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeleteClusterCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteClusterCommandInput,
32
+ DeleteClusterCommandOutput,
33
+ PCSClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteClusterCommand extends DeleteClusterCommand_base {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteComputeNodeGroupRequest,
5
+ DeleteComputeNodeGroupResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PCSClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PCSClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteComputeNodeGroupCommandInput
15
+ extends DeleteComputeNodeGroupRequest {}
16
+ export interface DeleteComputeNodeGroupCommandOutput
17
+ extends DeleteComputeNodeGroupResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteComputeNodeGroupCommand_base: {
20
+ new (
21
+ input: DeleteComputeNodeGroupCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteComputeNodeGroupCommandInput,
24
+ DeleteComputeNodeGroupCommandOutput,
25
+ PCSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DeleteComputeNodeGroupCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteComputeNodeGroupCommandInput,
33
+ DeleteComputeNodeGroupCommandOutput,
34
+ PCSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteComputeNodeGroupCommand extends DeleteComputeNodeGroupCommand_base {}
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_0";
4
+ import {
5
+ PCSClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PCSClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteQueueCommandInput extends DeleteQueueRequest {}
12
+ export interface DeleteQueueCommandOutput
13
+ extends DeleteQueueResponse,
14
+ __MetadataBearer {}
15
+ declare const DeleteQueueCommand_base: {
16
+ new (
17
+ input: DeleteQueueCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteQueueCommandInput,
20
+ DeleteQueueCommandOutput,
21
+ PCSClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: DeleteQueueCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteQueueCommandInput,
29
+ DeleteQueueCommandOutput,
30
+ PCSClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteQueueCommand extends DeleteQueueCommand_base {}
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetClusterRequest, GetClusterResponse } from "../models/models_0";
4
+ import {
5
+ PCSClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PCSClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetClusterCommandInput extends GetClusterRequest {}
12
+ export interface GetClusterCommandOutput
13
+ extends GetClusterResponse,
14
+ __MetadataBearer {}
15
+ declare const GetClusterCommand_base: {
16
+ new (
17
+ input: GetClusterCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetClusterCommandInput,
20
+ GetClusterCommandOutput,
21
+ PCSClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetClusterCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetClusterCommandInput,
29
+ GetClusterCommandOutput,
30
+ PCSClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetClusterCommand extends GetClusterCommand_base {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetComputeNodeGroupRequest,
5
+ GetComputeNodeGroupResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PCSClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PCSClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetComputeNodeGroupCommandInput
15
+ extends GetComputeNodeGroupRequest {}
16
+ export interface GetComputeNodeGroupCommandOutput
17
+ extends GetComputeNodeGroupResponse,
18
+ __MetadataBearer {}
19
+ declare const GetComputeNodeGroupCommand_base: {
20
+ new (
21
+ input: GetComputeNodeGroupCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetComputeNodeGroupCommandInput,
24
+ GetComputeNodeGroupCommandOutput,
25
+ PCSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetComputeNodeGroupCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetComputeNodeGroupCommandInput,
33
+ GetComputeNodeGroupCommandOutput,
34
+ PCSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetComputeNodeGroupCommand extends GetComputeNodeGroupCommand_base {}
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetQueueRequest, GetQueueResponse } from "../models/models_0";
4
+ import {
5
+ PCSClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PCSClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetQueueCommandInput extends GetQueueRequest {}
12
+ export interface GetQueueCommandOutput
13
+ extends GetQueueResponse,
14
+ __MetadataBearer {}
15
+ declare const GetQueueCommand_base: {
16
+ new (
17
+ input: GetQueueCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetQueueCommandInput,
20
+ GetQueueCommandOutput,
21
+ PCSClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetQueueCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetQueueCommandInput,
29
+ GetQueueCommandOutput,
30
+ PCSClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetQueueCommand extends GetQueueCommand_base {}
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListClustersRequest, ListClustersResponse } from "../models/models_0";
4
+ import {
5
+ PCSClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PCSClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListClustersCommandInput extends ListClustersRequest {}
12
+ export interface ListClustersCommandOutput
13
+ extends ListClustersResponse,
14
+ __MetadataBearer {}
15
+ declare const ListClustersCommand_base: {
16
+ new (
17
+ input: ListClustersCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListClustersCommandInput,
20
+ ListClustersCommandOutput,
21
+ PCSClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ ...[input]: [] | [ListClustersCommandInput]
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListClustersCommandInput,
29
+ ListClustersCommandOutput,
30
+ PCSClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListClustersCommand extends ListClustersCommand_base {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListComputeNodeGroupsRequest,
5
+ ListComputeNodeGroupsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PCSClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PCSClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListComputeNodeGroupsCommandInput
15
+ extends ListComputeNodeGroupsRequest {}
16
+ export interface ListComputeNodeGroupsCommandOutput
17
+ extends ListComputeNodeGroupsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListComputeNodeGroupsCommand_base: {
20
+ new (
21
+ input: ListComputeNodeGroupsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListComputeNodeGroupsCommandInput,
24
+ ListComputeNodeGroupsCommandOutput,
25
+ PCSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListComputeNodeGroupsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListComputeNodeGroupsCommandInput,
33
+ ListComputeNodeGroupsCommandOutput,
34
+ PCSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListComputeNodeGroupsCommand extends ListComputeNodeGroupsCommand_base {}
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListQueuesRequest, ListQueuesResponse } from "../models/models_0";
4
+ import {
5
+ PCSClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PCSClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListQueuesCommandInput extends ListQueuesRequest {}
12
+ export interface ListQueuesCommandOutput
13
+ extends ListQueuesResponse,
14
+ __MetadataBearer {}
15
+ declare const ListQueuesCommand_base: {
16
+ new (
17
+ input: ListQueuesCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListQueuesCommandInput,
20
+ ListQueuesCommandOutput,
21
+ PCSClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: ListQueuesCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListQueuesCommandInput,
29
+ ListQueuesCommandOutput,
30
+ PCSClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListQueuesCommand extends ListQueuesCommand_base {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListTagsForResourceRequest,
5
+ ListTagsForResourceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PCSClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PCSClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTagsForResourceCommandInput
15
+ extends ListTagsForResourceRequest {}
16
+ export interface ListTagsForResourceCommandOutput
17
+ extends ListTagsForResourceResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTagsForResourceCommand_base: {
20
+ new (
21
+ input: ListTagsForResourceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ PCSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListTagsForResourceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListTagsForResourceCommandInput,
33
+ ListTagsForResourceCommandOutput,
34
+ PCSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ RegisterComputeNodeGroupInstanceRequest,
5
+ RegisterComputeNodeGroupInstanceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PCSClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PCSClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface RegisterComputeNodeGroupInstanceCommandInput
15
+ extends RegisterComputeNodeGroupInstanceRequest {}
16
+ export interface RegisterComputeNodeGroupInstanceCommandOutput
17
+ extends RegisterComputeNodeGroupInstanceResponse,
18
+ __MetadataBearer {}
19
+ declare const RegisterComputeNodeGroupInstanceCommand_base: {
20
+ new (
21
+ input: RegisterComputeNodeGroupInstanceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ RegisterComputeNodeGroupInstanceCommandInput,
24
+ RegisterComputeNodeGroupInstanceCommandOutput,
25
+ PCSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: RegisterComputeNodeGroupInstanceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ RegisterComputeNodeGroupInstanceCommandInput,
33
+ RegisterComputeNodeGroupInstanceCommandOutput,
34
+ PCSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class RegisterComputeNodeGroupInstanceCommand extends RegisterComputeNodeGroupInstanceCommand_base {}
@@ -0,0 +1,34 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { TagResourceRequest } from "../models/models_0";
4
+ import {
5
+ PCSClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PCSClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface TagResourceCommandInput extends TagResourceRequest {}
12
+ export interface TagResourceCommandOutput extends __MetadataBearer {}
13
+ declare const TagResourceCommand_base: {
14
+ new (
15
+ input: TagResourceCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ TagResourceCommandInput,
18
+ TagResourceCommandOutput,
19
+ PCSClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ __0_0: TagResourceCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ TagResourceCommandInput,
27
+ TagResourceCommandOutput,
28
+ PCSClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class TagResourceCommand extends TagResourceCommand_base {}
@@ -0,0 +1,34 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UntagResourceRequest } from "../models/models_0";
4
+ import {
5
+ PCSClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PCSClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
12
+ export interface UntagResourceCommandOutput extends __MetadataBearer {}
13
+ declare const UntagResourceCommand_base: {
14
+ new (
15
+ input: UntagResourceCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ UntagResourceCommandInput,
18
+ UntagResourceCommandOutput,
19
+ PCSClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ __0_0: UntagResourceCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ UntagResourceCommandInput,
27
+ UntagResourceCommandOutput,
28
+ PCSClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateComputeNodeGroupRequest,
5
+ UpdateComputeNodeGroupResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PCSClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PCSClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateComputeNodeGroupCommandInput
15
+ extends UpdateComputeNodeGroupRequest {}
16
+ export interface UpdateComputeNodeGroupCommandOutput
17
+ extends UpdateComputeNodeGroupResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateComputeNodeGroupCommand_base: {
20
+ new (
21
+ input: UpdateComputeNodeGroupCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateComputeNodeGroupCommandInput,
24
+ UpdateComputeNodeGroupCommandOutput,
25
+ PCSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: UpdateComputeNodeGroupCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateComputeNodeGroupCommandInput,
33
+ UpdateComputeNodeGroupCommandOutput,
34
+ PCSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateComputeNodeGroupCommand extends UpdateComputeNodeGroupCommand_base {}
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateQueueRequest, UpdateQueueResponse } from "../models/models_0";
4
+ import {
5
+ PCSClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PCSClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateQueueCommandInput extends UpdateQueueRequest {}
12
+ export interface UpdateQueueCommandOutput
13
+ extends UpdateQueueResponse,
14
+ __MetadataBearer {}
15
+ declare const UpdateQueueCommand_base: {
16
+ new (
17
+ input: UpdateQueueCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ UpdateQueueCommandInput,
20
+ UpdateQueueCommandOutput,
21
+ PCSClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: UpdateQueueCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ UpdateQueueCommandInput,
29
+ UpdateQueueCommandOutput,
30
+ PCSClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class UpdateQueueCommand extends UpdateQueueCommand_base {}
@@ -0,0 +1,18 @@
1
+ export * from "./CreateClusterCommand";
2
+ export * from "./CreateComputeNodeGroupCommand";
3
+ export * from "./CreateQueueCommand";
4
+ export * from "./DeleteClusterCommand";
5
+ export * from "./DeleteComputeNodeGroupCommand";
6
+ export * from "./DeleteQueueCommand";
7
+ export * from "./GetClusterCommand";
8
+ export * from "./GetComputeNodeGroupCommand";
9
+ export * from "./GetQueueCommand";
10
+ export * from "./ListClustersCommand";
11
+ export * from "./ListComputeNodeGroupsCommand";
12
+ export * from "./ListQueuesCommand";
13
+ export * from "./ListTagsForResourceCommand";
14
+ export * from "./RegisterComputeNodeGroupInstanceCommand";
15
+ export * from "./TagResourceCommand";
16
+ export * from "./UntagResourceCommand";
17
+ export * from "./UpdateComputeNodeGroupCommand";
18
+ export * from "./UpdateQueueCommand";