@aws-sdk/client-braket 3.40.0 → 3.45.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 (56) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/README.md +7 -7
  3. package/dist-cjs/Braket.js +60 -0
  4. package/dist-cjs/commands/CancelJobCommand.js +36 -0
  5. package/dist-cjs/commands/CreateJobCommand.js +36 -0
  6. package/dist-cjs/commands/GetJobCommand.js +36 -0
  7. package/dist-cjs/commands/SearchJobsCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +4 -0
  9. package/dist-cjs/endpoints.js +9 -0
  10. package/dist-cjs/models/models_0.js +237 -24
  11. package/dist-cjs/pagination/SearchJobsPaginator.js +35 -0
  12. package/dist-cjs/pagination/index.js +1 -0
  13. package/dist-cjs/protocols/Aws_restJson1.js +824 -25
  14. package/dist-es/Braket.js +60 -0
  15. package/dist-es/commands/CancelJobCommand.js +39 -0
  16. package/dist-es/commands/CreateJobCommand.js +39 -0
  17. package/dist-es/commands/GetJobCommand.js +39 -0
  18. package/dist-es/commands/SearchJobsCommand.js +39 -0
  19. package/dist-es/commands/index.js +4 -0
  20. package/dist-es/endpoints.js +9 -0
  21. package/dist-es/models/models_0.js +189 -21
  22. package/dist-es/pagination/SearchJobsPaginator.js +74 -0
  23. package/dist-es/pagination/index.js +1 -0
  24. package/dist-es/protocols/Aws_restJson1.js +887 -66
  25. package/dist-types/Braket.d.ts +28 -0
  26. package/dist-types/BraketClient.d.ts +6 -2
  27. package/dist-types/commands/CancelJobCommand.d.ts +35 -0
  28. package/dist-types/commands/CancelQuantumTaskCommand.d.ts +1 -1
  29. package/dist-types/commands/CreateJobCommand.d.ts +35 -0
  30. package/dist-types/commands/CreateQuantumTaskCommand.d.ts +1 -1
  31. package/dist-types/commands/GetDeviceCommand.d.ts +1 -1
  32. package/dist-types/commands/GetJobCommand.d.ts +35 -0
  33. package/dist-types/commands/GetQuantumTaskCommand.d.ts +1 -1
  34. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  35. package/dist-types/commands/SearchDevicesCommand.d.ts +1 -1
  36. package/dist-types/commands/SearchJobsCommand.d.ts +35 -0
  37. package/dist-types/commands/SearchQuantumTasksCommand.d.ts +1 -1
  38. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  39. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  40. package/dist-types/commands/index.d.ts +4 -0
  41. package/dist-types/models/models_0.d.ts +674 -37
  42. package/dist-types/pagination/SearchJobsPaginator.d.ts +4 -0
  43. package/dist-types/pagination/index.d.ts +1 -0
  44. package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
  45. package/dist-types/ts3.4/Braket.d.ts +20 -0
  46. package/dist-types/ts3.4/BraketClient.d.ts +6 -2
  47. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +17 -0
  48. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +17 -0
  49. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +17 -0
  50. package/dist-types/ts3.4/commands/SearchJobsCommand.d.ts +17 -0
  51. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +413 -30
  53. package/dist-types/ts3.4/pagination/SearchJobsPaginator.d.ts +4 -0
  54. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  55. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  56. package/package.json +6 -6
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { SearchJobsCommandInput, SearchJobsCommandOutput } from "../commands/SearchJobsCommand";
3
+ import { BraketPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateSearchJobs(config: BraketPaginationConfiguration, input: SearchJobsCommandInput, ...additionalArguments: any): Paginator<SearchJobsCommandOutput>;
@@ -1,3 +1,4 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./SearchDevicesPaginator";
3
+ export * from "./SearchJobsPaginator";
3
4
  export * from "./SearchQuantumTasksPaginator";
@@ -1,29 +1,41 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CancelJobCommandInput, CancelJobCommandOutput } from "../commands/CancelJobCommand";
3
4
  import { CancelQuantumTaskCommandInput, CancelQuantumTaskCommandOutput } from "../commands/CancelQuantumTaskCommand";
5
+ import { CreateJobCommandInput, CreateJobCommandOutput } from "../commands/CreateJobCommand";
4
6
  import { CreateQuantumTaskCommandInput, CreateQuantumTaskCommandOutput } from "../commands/CreateQuantumTaskCommand";
5
7
  import { GetDeviceCommandInput, GetDeviceCommandOutput } from "../commands/GetDeviceCommand";
8
+ import { GetJobCommandInput, GetJobCommandOutput } from "../commands/GetJobCommand";
6
9
  import { GetQuantumTaskCommandInput, GetQuantumTaskCommandOutput } from "../commands/GetQuantumTaskCommand";
7
10
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
8
11
  import { SearchDevicesCommandInput, SearchDevicesCommandOutput } from "../commands/SearchDevicesCommand";
12
+ import { SearchJobsCommandInput, SearchJobsCommandOutput } from "../commands/SearchJobsCommand";
9
13
  import { SearchQuantumTasksCommandInput, SearchQuantumTasksCommandOutput } from "../commands/SearchQuantumTasksCommand";
10
14
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
11
15
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
16
+ export declare const serializeAws_restJson1CancelJobCommand: (input: CancelJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
12
17
  export declare const serializeAws_restJson1CancelQuantumTaskCommand: (input: CancelQuantumTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_restJson1CreateJobCommand: (input: CreateJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
13
19
  export declare const serializeAws_restJson1CreateQuantumTaskCommand: (input: CreateQuantumTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
14
20
  export declare const serializeAws_restJson1GetDeviceCommand: (input: GetDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_restJson1GetJobCommand: (input: GetJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
22
  export declare const serializeAws_restJson1GetQuantumTaskCommand: (input: GetQuantumTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
23
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
24
  export declare const serializeAws_restJson1SearchDevicesCommand: (input: SearchDevicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ export declare const serializeAws_restJson1SearchJobsCommand: (input: SearchJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
26
  export declare const serializeAws_restJson1SearchQuantumTasksCommand: (input: SearchQuantumTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
27
  export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
28
  export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const deserializeAws_restJson1CancelJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelJobCommandOutput>;
21
30
  export declare const deserializeAws_restJson1CancelQuantumTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelQuantumTaskCommandOutput>;
31
+ export declare const deserializeAws_restJson1CreateJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateJobCommandOutput>;
22
32
  export declare const deserializeAws_restJson1CreateQuantumTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQuantumTaskCommandOutput>;
23
33
  export declare const deserializeAws_restJson1GetDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDeviceCommandOutput>;
34
+ export declare const deserializeAws_restJson1GetJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetJobCommandOutput>;
24
35
  export declare const deserializeAws_restJson1GetQuantumTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQuantumTaskCommandOutput>;
25
36
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
26
37
  export declare const deserializeAws_restJson1SearchDevicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchDevicesCommandOutput>;
38
+ export declare const deserializeAws_restJson1SearchJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchJobsCommandOutput>;
27
39
  export declare const deserializeAws_restJson1SearchQuantumTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchQuantumTasksCommandOutput>;
28
40
  export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
29
41
  export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -1,21 +1,33 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
2
  import { BraketClient } from "./BraketClient";
3
+ import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
3
4
  import { CancelQuantumTaskCommandInput, CancelQuantumTaskCommandOutput } from "./commands/CancelQuantumTaskCommand";
5
+ import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
4
6
  import { CreateQuantumTaskCommandInput, CreateQuantumTaskCommandOutput } from "./commands/CreateQuantumTaskCommand";
5
7
  import { GetDeviceCommandInput, GetDeviceCommandOutput } from "./commands/GetDeviceCommand";
8
+ import { GetJobCommandInput, GetJobCommandOutput } from "./commands/GetJobCommand";
6
9
  import { GetQuantumTaskCommandInput, GetQuantumTaskCommandOutput } from "./commands/GetQuantumTaskCommand";
7
10
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
8
11
  import { SearchDevicesCommandInput, SearchDevicesCommandOutput } from "./commands/SearchDevicesCommand";
12
+ import { SearchJobsCommandInput, SearchJobsCommandOutput } from "./commands/SearchJobsCommand";
9
13
  import { SearchQuantumTasksCommandInput, SearchQuantumTasksCommandOutput } from "./commands/SearchQuantumTasksCommand";
10
14
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
11
15
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
12
16
 
13
17
  export declare class Braket extends BraketClient {
14
18
 
19
+ cancelJob(args: CancelJobCommandInput, options?: __HttpHandlerOptions): Promise<CancelJobCommandOutput>;
20
+ cancelJob(args: CancelJobCommandInput, cb: (err: any, data?: CancelJobCommandOutput) => void): void;
21
+ cancelJob(args: CancelJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelJobCommandOutput) => void): void;
22
+
15
23
  cancelQuantumTask(args: CancelQuantumTaskCommandInput, options?: __HttpHandlerOptions): Promise<CancelQuantumTaskCommandOutput>;
16
24
  cancelQuantumTask(args: CancelQuantumTaskCommandInput, cb: (err: any, data?: CancelQuantumTaskCommandOutput) => void): void;
17
25
  cancelQuantumTask(args: CancelQuantumTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelQuantumTaskCommandOutput) => void): void;
18
26
 
27
+ createJob(args: CreateJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateJobCommandOutput>;
28
+ createJob(args: CreateJobCommandInput, cb: (err: any, data?: CreateJobCommandOutput) => void): void;
29
+ createJob(args: CreateJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateJobCommandOutput) => void): void;
30
+
19
31
  createQuantumTask(args: CreateQuantumTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateQuantumTaskCommandOutput>;
20
32
  createQuantumTask(args: CreateQuantumTaskCommandInput, cb: (err: any, data?: CreateQuantumTaskCommandOutput) => void): void;
21
33
  createQuantumTask(args: CreateQuantumTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQuantumTaskCommandOutput) => void): void;
@@ -24,6 +36,10 @@ export declare class Braket extends BraketClient {
24
36
  getDevice(args: GetDeviceCommandInput, cb: (err: any, data?: GetDeviceCommandOutput) => void): void;
25
37
  getDevice(args: GetDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeviceCommandOutput) => void): void;
26
38
 
39
+ getJob(args: GetJobCommandInput, options?: __HttpHandlerOptions): Promise<GetJobCommandOutput>;
40
+ getJob(args: GetJobCommandInput, cb: (err: any, data?: GetJobCommandOutput) => void): void;
41
+ getJob(args: GetJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobCommandOutput) => void): void;
42
+
27
43
  getQuantumTask(args: GetQuantumTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetQuantumTaskCommandOutput>;
28
44
  getQuantumTask(args: GetQuantumTaskCommandInput, cb: (err: any, data?: GetQuantumTaskCommandOutput) => void): void;
29
45
  getQuantumTask(args: GetQuantumTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQuantumTaskCommandOutput) => void): void;
@@ -36,6 +52,10 @@ export declare class Braket extends BraketClient {
36
52
  searchDevices(args: SearchDevicesCommandInput, cb: (err: any, data?: SearchDevicesCommandOutput) => void): void;
37
53
  searchDevices(args: SearchDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchDevicesCommandOutput) => void): void;
38
54
 
55
+ searchJobs(args: SearchJobsCommandInput, options?: __HttpHandlerOptions): Promise<SearchJobsCommandOutput>;
56
+ searchJobs(args: SearchJobsCommandInput, cb: (err: any, data?: SearchJobsCommandOutput) => void): void;
57
+ searchJobs(args: SearchJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchJobsCommandOutput) => void): void;
58
+
39
59
  searchQuantumTasks(args: SearchQuantumTasksCommandInput, options?: __HttpHandlerOptions): Promise<SearchQuantumTasksCommandOutput>;
40
60
  searchQuantumTasks(args: SearchQuantumTasksCommandInput, cb: (err: any, data?: SearchQuantumTasksCommandOutput) => void): void;
41
61
  searchQuantumTasks(args: SearchQuantumTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchQuantumTasksCommandOutput) => void): void;
@@ -6,17 +6,21 @@ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middlewa
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
8
  import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
9
10
  import { CancelQuantumTaskCommandInput, CancelQuantumTaskCommandOutput } from "./commands/CancelQuantumTaskCommand";
11
+ import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
10
12
  import { CreateQuantumTaskCommandInput, CreateQuantumTaskCommandOutput } from "./commands/CreateQuantumTaskCommand";
11
13
  import { GetDeviceCommandInput, GetDeviceCommandOutput } from "./commands/GetDeviceCommand";
14
+ import { GetJobCommandInput, GetJobCommandOutput } from "./commands/GetJobCommand";
12
15
  import { GetQuantumTaskCommandInput, GetQuantumTaskCommandOutput } from "./commands/GetQuantumTaskCommand";
13
16
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
14
17
  import { SearchDevicesCommandInput, SearchDevicesCommandOutput } from "./commands/SearchDevicesCommand";
18
+ import { SearchJobsCommandInput, SearchJobsCommandOutput } from "./commands/SearchJobsCommand";
15
19
  import { SearchQuantumTasksCommandInput, SearchQuantumTasksCommandOutput } from "./commands/SearchQuantumTasksCommand";
16
20
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
17
21
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
18
- export declare type ServiceInputTypes = CancelQuantumTaskCommandInput | CreateQuantumTaskCommandInput | GetDeviceCommandInput | GetQuantumTaskCommandInput | ListTagsForResourceCommandInput | SearchDevicesCommandInput | SearchQuantumTasksCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
19
- export declare type ServiceOutputTypes = CancelQuantumTaskCommandOutput | CreateQuantumTaskCommandOutput | GetDeviceCommandOutput | GetQuantumTaskCommandOutput | ListTagsForResourceCommandOutput | SearchDevicesCommandOutput | SearchQuantumTasksCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
22
+ export declare type ServiceInputTypes = CancelJobCommandInput | CancelQuantumTaskCommandInput | CreateJobCommandInput | CreateQuantumTaskCommandInput | GetDeviceCommandInput | GetJobCommandInput | GetQuantumTaskCommandInput | ListTagsForResourceCommandInput | SearchDevicesCommandInput | SearchJobsCommandInput | SearchQuantumTasksCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
23
+ export declare type ServiceOutputTypes = CancelJobCommandOutput | CancelQuantumTaskCommandOutput | CreateJobCommandOutput | CreateQuantumTaskCommandOutput | GetDeviceCommandOutput | GetJobCommandOutput | GetQuantumTaskCommandOutput | ListTagsForResourceCommandOutput | SearchDevicesCommandOutput | SearchJobsCommandOutput | SearchQuantumTasksCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
20
24
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
21
25
 
22
26
  requestHandler?: __HttpHandler;
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
4
+ import { CancelJobRequest, CancelJobResponse } from "../models/models_0";
5
+ export interface CancelJobCommandInput extends CancelJobRequest {
6
+ }
7
+ export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CancelJobCommand extends $Command<CancelJobCommandInput, CancelJobCommandOutput, BraketClientResolvedConfig> {
11
+ readonly input: CancelJobCommandInput;
12
+ constructor(input: CancelJobCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelJobCommandInput, CancelJobCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
4
+ import { CreateJobRequest, CreateJobResponse } from "../models/models_0";
5
+ export interface CreateJobCommandInput extends CreateJobRequest {
6
+ }
7
+ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateJobCommand extends $Command<CreateJobCommandInput, CreateJobCommandOutput, BraketClientResolvedConfig> {
11
+ readonly input: CreateJobCommandInput;
12
+ constructor(input: CreateJobCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateJobCommandInput, CreateJobCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
4
+ import { GetJobRequest, GetJobResponse } from "../models/models_0";
5
+ export interface GetJobCommandInput extends GetJobRequest {
6
+ }
7
+ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetJobCommand extends $Command<GetJobCommandInput, GetJobCommandOutput, BraketClientResolvedConfig> {
11
+ readonly input: GetJobCommandInput;
12
+ constructor(input: GetJobCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobCommandInput, GetJobCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
4
+ import { SearchJobsRequest, SearchJobsResponse } from "../models/models_0";
5
+ export interface SearchJobsCommandInput extends SearchJobsRequest {
6
+ }
7
+ export interface SearchJobsCommandOutput extends SearchJobsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class SearchJobsCommand extends $Command<SearchJobsCommandInput, SearchJobsCommandOutput, BraketClientResolvedConfig> {
11
+ readonly input: SearchJobsCommandInput;
12
+ constructor(input: SearchJobsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchJobsCommandInput, SearchJobsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -1,9 +1,13 @@
1
+ export * from "./CancelJobCommand";
1
2
  export * from "./CancelQuantumTaskCommand";
3
+ export * from "./CreateJobCommand";
2
4
  export * from "./CreateQuantumTaskCommand";
3
5
  export * from "./GetDeviceCommand";
6
+ export * from "./GetJobCommand";
4
7
  export * from "./GetQuantumTaskCommand";
5
8
  export * from "./ListTagsForResourceCommand";
6
9
  export * from "./SearchDevicesCommand";
10
+ export * from "./SearchJobsCommand";
7
11
  export * from "./SearchQuantumTasksCommand";
8
12
  export * from "./TagResourceCommand";
9
13
  export * from "./UntagResourceCommand";