@aws-sdk/client-braket 3.1077.0 → 3.1078.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 (59) hide show
  1. package/dist-cjs/index.js +25 -173
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CancelJobCommand.js +2 -14
  4. package/dist-es/commands/CancelQuantumTaskCommand.js +2 -14
  5. package/dist-es/commands/CreateJobCommand.js +2 -14
  6. package/dist-es/commands/CreateQuantumTaskCommand.js +2 -14
  7. package/dist-es/commands/CreateSpendingLimitCommand.js +2 -14
  8. package/dist-es/commands/DeleteSpendingLimitCommand.js +2 -14
  9. package/dist-es/commands/GetDeviceCommand.js +2 -14
  10. package/dist-es/commands/GetJobCommand.js +2 -14
  11. package/dist-es/commands/GetQuantumTaskCommand.js +2 -14
  12. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  13. package/dist-es/commands/SearchDevicesCommand.js +2 -14
  14. package/dist-es/commands/SearchJobsCommand.js +2 -14
  15. package/dist-es/commands/SearchQuantumTasksCommand.js +2 -14
  16. package/dist-es/commands/SearchSpendingLimitsCommand.js +2 -14
  17. package/dist-es/commands/TagResourceCommand.js +2 -14
  18. package/dist-es/commands/UntagResourceCommand.js +2 -14
  19. package/dist-es/commands/UpdateSpendingLimitCommand.js +2 -14
  20. package/dist-es/index.js +1 -0
  21. package/dist-types/commandBuilder.d.ts +18 -0
  22. package/dist-types/commands/CancelJobCommand.d.ts +3 -8
  23. package/dist-types/commands/CancelQuantumTaskCommand.d.ts +3 -8
  24. package/dist-types/commands/CreateJobCommand.d.ts +3 -8
  25. package/dist-types/commands/CreateQuantumTaskCommand.d.ts +3 -8
  26. package/dist-types/commands/CreateSpendingLimitCommand.d.ts +3 -8
  27. package/dist-types/commands/DeleteSpendingLimitCommand.d.ts +3 -8
  28. package/dist-types/commands/GetDeviceCommand.d.ts +3 -8
  29. package/dist-types/commands/GetJobCommand.d.ts +3 -8
  30. package/dist-types/commands/GetQuantumTaskCommand.d.ts +3 -8
  31. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  32. package/dist-types/commands/SearchDevicesCommand.d.ts +3 -8
  33. package/dist-types/commands/SearchJobsCommand.d.ts +3 -8
  34. package/dist-types/commands/SearchQuantumTasksCommand.d.ts +3 -8
  35. package/dist-types/commands/SearchSpendingLimitsCommand.d.ts +3 -8
  36. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  37. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  38. package/dist-types/commands/UpdateSpendingLimitCommand.d.ts +3 -8
  39. package/dist-types/index.d.ts +1 -0
  40. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  41. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +7 -16
  42. package/dist-types/ts3.4/commands/CancelQuantumTaskCommand.d.ts +7 -16
  43. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +7 -16
  44. package/dist-types/ts3.4/commands/CreateQuantumTaskCommand.d.ts +7 -16
  45. package/dist-types/ts3.4/commands/CreateSpendingLimitCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/DeleteSpendingLimitCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/GetQuantumTaskCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/SearchDevicesCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/SearchJobsCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/SearchQuantumTasksCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/SearchSpendingLimitsCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  56. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  57. package/dist-types/ts3.4/commands/UpdateSpendingLimitCommand.d.ts +7 -16
  58. package/dist-types/ts3.4/index.d.ts +1 -0
  59. package/package.json +8 -8
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import {
9
3
  CancelQuantumTaskRequest,
10
4
  CancelQuantumTaskResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CancelQuantumTaskCommandInput
15
8
  extends CancelQuantumTaskRequest {}
16
9
  export interface CancelQuantumTaskCommandOutput
@@ -22,22 +15,20 @@ declare const CancelQuantumTaskCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CancelQuantumTaskCommandInput,
24
17
  CancelQuantumTaskCommandOutput,
25
- BraketClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BraketClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CancelQuantumTaskCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CancelQuantumTaskCommandInput,
33
26
  CancelQuantumTaskCommandOutput,
34
- BraketClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BraketClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class CancelQuantumTaskCommand extends CancelQuantumTaskCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import { CreateJobRequest, CreateJobResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface CreateJobCommandInput extends CreateJobRequest {}
12
5
  export interface CreateJobCommandOutput
13
6
  extends CreateJobResponse,
@@ -16,20 +9,18 @@ declare const CreateJobCommand_base: {
16
9
  new (input: CreateJobCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  CreateJobCommandInput,
18
11
  CreateJobCommandOutput,
19
- BraketClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").BraketClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: CreateJobCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  CreateJobCommandInput,
25
18
  CreateJobCommandOutput,
26
- BraketClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").BraketClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class CreateJobCommand extends CreateJobCommand_base {
35
26
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import {
9
3
  CreateQuantumTaskRequest,
10
4
  CreateQuantumTaskResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CreateQuantumTaskCommandInput
15
8
  extends CreateQuantumTaskRequest {}
16
9
  export interface CreateQuantumTaskCommandOutput
@@ -22,22 +15,20 @@ declare const CreateQuantumTaskCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CreateQuantumTaskCommandInput,
24
17
  CreateQuantumTaskCommandOutput,
25
- BraketClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BraketClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CreateQuantumTaskCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CreateQuantumTaskCommandInput,
33
26
  CreateQuantumTaskCommandOutput,
34
- BraketClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BraketClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class CreateQuantumTaskCommand extends CreateQuantumTaskCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import {
9
3
  CreateSpendingLimitRequest,
10
4
  CreateSpendingLimitResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CreateSpendingLimitCommandInput
15
8
  extends CreateSpendingLimitRequest {}
16
9
  export interface CreateSpendingLimitCommandOutput
@@ -22,22 +15,20 @@ declare const CreateSpendingLimitCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CreateSpendingLimitCommandInput,
24
17
  CreateSpendingLimitCommandOutput,
25
- BraketClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BraketClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CreateSpendingLimitCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CreateSpendingLimitCommandInput,
33
26
  CreateSpendingLimitCommandOutput,
34
- BraketClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BraketClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class CreateSpendingLimitCommand extends CreateSpendingLimitCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import {
9
3
  DeleteSpendingLimitRequest,
10
4
  DeleteSpendingLimitResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DeleteSpendingLimitCommandInput
15
8
  extends DeleteSpendingLimitRequest {}
16
9
  export interface DeleteSpendingLimitCommandOutput
@@ -22,22 +15,20 @@ declare const DeleteSpendingLimitCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DeleteSpendingLimitCommandInput,
24
17
  DeleteSpendingLimitCommandOutput,
25
- BraketClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BraketClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DeleteSpendingLimitCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DeleteSpendingLimitCommandInput,
33
26
  DeleteSpendingLimitCommandOutput,
34
- BraketClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BraketClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DeleteSpendingLimitCommand extends DeleteSpendingLimitCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import { GetDeviceRequest, GetDeviceResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetDeviceCommandInput extends GetDeviceRequest {}
12
5
  export interface GetDeviceCommandOutput
13
6
  extends GetDeviceResponse,
@@ -16,20 +9,18 @@ declare const GetDeviceCommand_base: {
16
9
  new (input: GetDeviceCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  GetDeviceCommandInput,
18
11
  GetDeviceCommandOutput,
19
- BraketClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").BraketClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: GetDeviceCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  GetDeviceCommandInput,
25
18
  GetDeviceCommandOutput,
26
- BraketClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").BraketClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class GetDeviceCommand extends GetDeviceCommand_base {
35
26
  protected static __types: {
@@ -1,33 +1,24 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import { GetJobRequest, GetJobResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetJobCommandInput extends GetJobRequest {}
12
5
  export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {}
13
6
  declare const GetJobCommand_base: {
14
7
  new (input: GetJobCommandInput): import("@smithy/core/client").CommandImpl<
15
8
  GetJobCommandInput,
16
9
  GetJobCommandOutput,
17
- BraketClientResolvedConfig,
18
- ServiceInputTypes,
19
- ServiceOutputTypes
10
+ import("..").BraketClientResolvedConfig,
11
+ import("..").ServiceInputTypes,
12
+ import("..").ServiceOutputTypes
20
13
  >;
21
14
  new (input: GetJobCommandInput): import("@smithy/core/client").CommandImpl<
22
15
  GetJobCommandInput,
23
16
  GetJobCommandOutput,
24
- BraketClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").BraketClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
- getEndpointParameterInstructions(): {
29
- [x: string]: unknown;
30
- };
21
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
22
  };
32
23
  export declare class GetJobCommand extends GetJobCommand_base {
33
24
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import {
9
3
  GetQuantumTaskRequest,
10
4
  GetQuantumTaskResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetQuantumTaskCommandInput extends GetQuantumTaskRequest {}
15
8
  export interface GetQuantumTaskCommandOutput
16
9
  extends GetQuantumTaskResponse,
@@ -21,22 +14,20 @@ declare const GetQuantumTaskCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  GetQuantumTaskCommandInput,
23
16
  GetQuantumTaskCommandOutput,
24
- BraketClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").BraketClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: GetQuantumTaskCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  GetQuantumTaskCommandInput,
32
25
  GetQuantumTaskCommandOutput,
33
- BraketClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").BraketClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class GetQuantumTaskCommand extends GetQuantumTaskCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import {
9
3
  ListTagsForResourceRequest,
10
4
  ListTagsForResourceResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListTagsForResourceCommandInput
15
8
  extends ListTagsForResourceRequest {}
16
9
  export interface ListTagsForResourceCommandOutput
@@ -22,22 +15,20 @@ declare const ListTagsForResourceCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListTagsForResourceCommandInput,
24
17
  ListTagsForResourceCommandOutput,
25
- BraketClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BraketClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListTagsForResourceCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListTagsForResourceCommandInput,
33
26
  ListTagsForResourceCommandOutput,
34
- BraketClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BraketClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import {
9
3
  SearchDevicesRequest,
10
4
  SearchDevicesResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface SearchDevicesCommandInput extends SearchDevicesRequest {}
15
8
  export interface SearchDevicesCommandOutput
16
9
  extends SearchDevicesResponse,
@@ -21,22 +14,20 @@ declare const SearchDevicesCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  SearchDevicesCommandInput,
23
16
  SearchDevicesCommandOutput,
24
- BraketClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").BraketClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: SearchDevicesCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  SearchDevicesCommandInput,
32
25
  SearchDevicesCommandOutput,
33
- BraketClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").BraketClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class SearchDevicesCommand extends SearchDevicesCommand_base {
42
33
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import { SearchJobsRequest, SearchJobsResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface SearchJobsCommandInput extends SearchJobsRequest {}
12
5
  export interface SearchJobsCommandOutput
13
6
  extends SearchJobsResponse,
@@ -18,22 +11,20 @@ declare const SearchJobsCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  SearchJobsCommandInput,
20
13
  SearchJobsCommandOutput,
21
- BraketClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").BraketClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: SearchJobsCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  SearchJobsCommandInput,
29
22
  SearchJobsCommandOutput,
30
- BraketClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").BraketClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class SearchJobsCommand extends SearchJobsCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import {
9
3
  SearchQuantumTasksRequest,
10
4
  SearchQuantumTasksResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface SearchQuantumTasksCommandInput
15
8
  extends SearchQuantumTasksRequest {}
16
9
  export interface SearchQuantumTasksCommandOutput
@@ -22,22 +15,20 @@ declare const SearchQuantumTasksCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  SearchQuantumTasksCommandInput,
24
17
  SearchQuantumTasksCommandOutput,
25
- BraketClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BraketClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: SearchQuantumTasksCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  SearchQuantumTasksCommandInput,
33
26
  SearchQuantumTasksCommandOutput,
34
- BraketClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BraketClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class SearchQuantumTasksCommand extends SearchQuantumTasksCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import {
9
3
  SearchSpendingLimitsRequest,
10
4
  SearchSpendingLimitsResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface SearchSpendingLimitsCommandInput
15
8
  extends SearchSpendingLimitsRequest {}
16
9
  export interface SearchSpendingLimitsCommandOutput
@@ -22,22 +15,20 @@ declare const SearchSpendingLimitsCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  SearchSpendingLimitsCommandInput,
24
17
  SearchSpendingLimitsCommandOutput,
25
- BraketClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BraketClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [SearchSpendingLimitsCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  SearchSpendingLimitsCommandInput,
33
26
  SearchSpendingLimitsCommandOutput,
34
- BraketClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BraketClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class SearchSpendingLimitsCommand extends SearchSpendingLimitsCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BraketClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BraketClient";
8
2
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface TagResourceCommandInput extends TagResourceRequest {}
12
5
  export interface TagResourceCommandOutput
13
6
  extends TagResourceResponse,
@@ -18,22 +11,20 @@ declare const TagResourceCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  TagResourceCommandInput,
20
13
  TagResourceCommandOutput,
21
- BraketClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").BraketClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: TagResourceCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  TagResourceCommandInput,
29
22
  TagResourceCommandOutput,
30
- BraketClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").BraketClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class TagResourceCommand extends TagResourceCommand_base {
39
30
  protected static __types: {