@aws-sdk/client-braket 3.478.0 → 3.481.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.
- package/dist-cjs/commands/CancelJobCommand.js +18 -41
- package/dist-cjs/commands/CancelQuantumTaskCommand.js +18 -41
- package/dist-cjs/commands/CreateJobCommand.js +18 -41
- package/dist-cjs/commands/CreateQuantumTaskCommand.js +18 -41
- package/dist-cjs/commands/GetDeviceCommand.js +18 -41
- package/dist-cjs/commands/GetJobCommand.js +18 -41
- package/dist-cjs/commands/GetQuantumTaskCommand.js +18 -41
- package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -41
- package/dist-cjs/commands/SearchDevicesCommand.js +18 -41
- package/dist-cjs/commands/SearchJobsCommand.js +18 -41
- package/dist-cjs/commands/SearchQuantumTasksCommand.js +18 -41
- package/dist-cjs/commands/TagResourceCommand.js +18 -41
- package/dist-cjs/commands/UntagResourceCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/CancelJobCommand.js +18 -41
- package/dist-es/commands/CancelQuantumTaskCommand.js +18 -41
- package/dist-es/commands/CreateJobCommand.js +18 -41
- package/dist-es/commands/CreateQuantumTaskCommand.js +18 -41
- package/dist-es/commands/GetDeviceCommand.js +18 -41
- package/dist-es/commands/GetJobCommand.js +18 -41
- package/dist-es/commands/GetQuantumTaskCommand.js +18 -41
- package/dist-es/commands/ListTagsForResourceCommand.js +18 -41
- package/dist-es/commands/SearchDevicesCommand.js +18 -41
- package/dist-es/commands/SearchJobsCommand.js +18 -41
- package/dist-es/commands/SearchQuantumTasksCommand.js +18 -41
- package/dist-es/commands/TagResourceCommand.js +18 -41
- package/dist-es/commands/UntagResourceCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/CancelJobCommand.d.ts +6 -21
- package/dist-types/commands/CancelQuantumTaskCommand.d.ts +6 -21
- package/dist-types/commands/CreateJobCommand.d.ts +6 -21
- package/dist-types/commands/CreateQuantumTaskCommand.d.ts +6 -21
- package/dist-types/commands/GetDeviceCommand.d.ts +6 -21
- package/dist-types/commands/GetJobCommand.d.ts +6 -21
- package/dist-types/commands/GetQuantumTaskCommand.d.ts +6 -21
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
- package/dist-types/commands/SearchDevicesCommand.d.ts +6 -21
- package/dist-types/commands/SearchJobsCommand.d.ts +6 -21
- package/dist-types/commands/SearchQuantumTasksCommand.d.ts +6 -21
- package/dist-types/commands/TagResourceCommand.d.ts +6 -21
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/CancelQuantumTaskCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/CreateQuantumTaskCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +12 -23
- package/dist-types/ts3.4/commands/GetQuantumTaskCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/SearchDevicesCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/SearchJobsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/SearchQuantumTasksCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +9 -9
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
|
|
5
4
|
import { CreateJobRequest, CreateJobResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CreateJobCommandInput extends CreateJobRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CreateJobCommand_base: {
|
|
24
|
+
new (input: CreateJobCommandInput): import("@smithy/smithy-client").CommandImpl<CreateJobCommandInput, CreateJobCommandOutput, BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates an Amazon Braket job.</p>
|
|
@@ -127,23 +130,5 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
127
130
|
* <p>Base exception class for all service exceptions from Braket service.</p>
|
|
128
131
|
*
|
|
129
132
|
*/
|
|
130
|
-
export declare class CreateJobCommand extends
|
|
131
|
-
readonly input: CreateJobCommandInput;
|
|
132
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
133
|
-
/**
|
|
134
|
-
* @public
|
|
135
|
-
*/
|
|
136
|
-
constructor(input: CreateJobCommandInput);
|
|
137
|
-
/**
|
|
138
|
-
* @internal
|
|
139
|
-
*/
|
|
140
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateJobCommandInput, CreateJobCommandOutput>;
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
|
-
private serialize;
|
|
145
|
-
/**
|
|
146
|
-
* @internal
|
|
147
|
-
*/
|
|
148
|
-
private deserialize;
|
|
133
|
+
export declare class CreateJobCommand extends CreateJobCommand_base {
|
|
149
134
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
|
|
5
4
|
import { CreateQuantumTaskRequest, CreateQuantumTaskResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CreateQuantumTaskCommandInput extends CreateQuantumTaskRequest
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CreateQuantumTaskCommandOutput extends CreateQuantumTaskResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CreateQuantumTaskCommand_base: {
|
|
24
|
+
new (input: CreateQuantumTaskCommandInput): import("@smithy/smithy-client").CommandImpl<CreateQuantumTaskCommandInput, CreateQuantumTaskCommandOutput, BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates a quantum task.</p>
|
|
@@ -89,23 +92,5 @@ export interface CreateQuantumTaskCommandOutput extends CreateQuantumTaskRespons
|
|
|
89
92
|
* <p>Base exception class for all service exceptions from Braket service.</p>
|
|
90
93
|
*
|
|
91
94
|
*/
|
|
92
|
-
export declare class CreateQuantumTaskCommand extends
|
|
93
|
-
readonly input: CreateQuantumTaskCommandInput;
|
|
94
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
95
|
-
/**
|
|
96
|
-
* @public
|
|
97
|
-
*/
|
|
98
|
-
constructor(input: CreateQuantumTaskCommandInput);
|
|
99
|
-
/**
|
|
100
|
-
* @internal
|
|
101
|
-
*/
|
|
102
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateQuantumTaskCommandInput, CreateQuantumTaskCommandOutput>;
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
private serialize;
|
|
107
|
-
/**
|
|
108
|
-
* @internal
|
|
109
|
-
*/
|
|
110
|
-
private deserialize;
|
|
95
|
+
export declare class CreateQuantumTaskCommand extends CreateQuantumTaskCommand_base {
|
|
111
96
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
|
|
5
4
|
import { GetDeviceRequest, GetDeviceResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetDeviceCommandInput extends GetDeviceRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetDeviceCommandOutput extends GetDeviceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetDeviceCommand_base: {
|
|
24
|
+
new (input: GetDeviceCommandInput): import("@smithy/smithy-client").CommandImpl<GetDeviceCommandInput, GetDeviceCommandOutput, BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Retrieves the devices available in Amazon Braket.</p>
|
|
@@ -88,23 +91,5 @@ export interface GetDeviceCommandOutput extends GetDeviceResponse, __MetadataBea
|
|
|
88
91
|
* <p>Base exception class for all service exceptions from Braket service.</p>
|
|
89
92
|
*
|
|
90
93
|
*/
|
|
91
|
-
export declare class GetDeviceCommand extends
|
|
92
|
-
readonly input: GetDeviceCommandInput;
|
|
93
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
94
|
-
/**
|
|
95
|
-
* @public
|
|
96
|
-
*/
|
|
97
|
-
constructor(input: GetDeviceCommandInput);
|
|
98
|
-
/**
|
|
99
|
-
* @internal
|
|
100
|
-
*/
|
|
101
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDeviceCommandInput, GetDeviceCommandOutput>;
|
|
102
|
-
/**
|
|
103
|
-
* @internal
|
|
104
|
-
*/
|
|
105
|
-
private serialize;
|
|
106
|
-
/**
|
|
107
|
-
* @internal
|
|
108
|
-
*/
|
|
109
|
-
private deserialize;
|
|
94
|
+
export declare class GetDeviceCommand extends GetDeviceCommand_base {
|
|
110
95
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
|
|
5
4
|
import { GetJobRequest, GetJobResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetJobCommandInput extends GetJobRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetJobCommand_base: {
|
|
24
|
+
new (input: GetJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetJobCommandInput, GetJobCommandOutput, BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Retrieves the specified Amazon Braket job.</p>
|
|
@@ -142,23 +145,5 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
|
|
|
142
145
|
* <p>Base exception class for all service exceptions from Braket service.</p>
|
|
143
146
|
*
|
|
144
147
|
*/
|
|
145
|
-
export declare class GetJobCommand extends
|
|
146
|
-
readonly input: GetJobCommandInput;
|
|
147
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
148
|
-
/**
|
|
149
|
-
* @public
|
|
150
|
-
*/
|
|
151
|
-
constructor(input: GetJobCommandInput);
|
|
152
|
-
/**
|
|
153
|
-
* @internal
|
|
154
|
-
*/
|
|
155
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobCommandInput, GetJobCommandOutput>;
|
|
156
|
-
/**
|
|
157
|
-
* @internal
|
|
158
|
-
*/
|
|
159
|
-
private serialize;
|
|
160
|
-
/**
|
|
161
|
-
* @internal
|
|
162
|
-
*/
|
|
163
|
-
private deserialize;
|
|
148
|
+
export declare class GetJobCommand extends GetJobCommand_base {
|
|
164
149
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
|
|
5
4
|
import { GetQuantumTaskRequest, GetQuantumTaskResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetQuantumTaskCommandInput extends GetQuantumTaskRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetQuantumTaskCommandOutput extends GetQuantumTaskResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetQuantumTaskCommand_base: {
|
|
24
|
+
new (input: GetQuantumTaskCommandInput): import("@smithy/smithy-client").CommandImpl<GetQuantumTaskCommandInput, GetQuantumTaskCommandOutput, BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Retrieves the specified quantum task.</p>
|
|
@@ -95,23 +98,5 @@ export interface GetQuantumTaskCommandOutput extends GetQuantumTaskResponse, __M
|
|
|
95
98
|
* <p>Base exception class for all service exceptions from Braket service.</p>
|
|
96
99
|
*
|
|
97
100
|
*/
|
|
98
|
-
export declare class GetQuantumTaskCommand extends
|
|
99
|
-
readonly input: GetQuantumTaskCommandInput;
|
|
100
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
101
|
-
/**
|
|
102
|
-
* @public
|
|
103
|
-
*/
|
|
104
|
-
constructor(input: GetQuantumTaskCommandInput);
|
|
105
|
-
/**
|
|
106
|
-
* @internal
|
|
107
|
-
*/
|
|
108
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetQuantumTaskCommandInput, GetQuantumTaskCommandOutput>;
|
|
109
|
-
/**
|
|
110
|
-
* @internal
|
|
111
|
-
*/
|
|
112
|
-
private serialize;
|
|
113
|
-
/**
|
|
114
|
-
* @internal
|
|
115
|
-
*/
|
|
116
|
-
private deserialize;
|
|
101
|
+
export declare class GetQuantumTaskCommand extends GetQuantumTaskCommand_base {
|
|
117
102
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
|
|
5
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListTagsForResourceCommand_base: {
|
|
24
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Shows the tags associated with this resource.</p>
|
|
@@ -63,23 +66,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
63
66
|
* <p>Base exception class for all service exceptions from Braket service.</p>
|
|
64
67
|
*
|
|
65
68
|
*/
|
|
66
|
-
export declare class ListTagsForResourceCommand extends
|
|
67
|
-
readonly input: ListTagsForResourceCommandInput;
|
|
68
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
-
/**
|
|
70
|
-
* @public
|
|
71
|
-
*/
|
|
72
|
-
constructor(input: ListTagsForResourceCommandInput);
|
|
73
|
-
/**
|
|
74
|
-
* @internal
|
|
75
|
-
*/
|
|
76
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
77
|
-
/**
|
|
78
|
-
* @internal
|
|
79
|
-
*/
|
|
80
|
-
private serialize;
|
|
81
|
-
/**
|
|
82
|
-
* @internal
|
|
83
|
-
*/
|
|
84
|
-
private deserialize;
|
|
69
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
85
70
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
|
|
5
4
|
import { SearchDevicesRequest, SearchDevicesResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface SearchDevicesCommandInput extends SearchDevicesRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface SearchDevicesCommandOutput extends SearchDevicesResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const SearchDevicesCommand_base: {
|
|
24
|
+
new (input: SearchDevicesCommandInput): import("@smithy/smithy-client").CommandImpl<SearchDevicesCommandInput, SearchDevicesCommandOutput, BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Searches for devices using the specified filters.</p>
|
|
@@ -82,23 +85,5 @@ export interface SearchDevicesCommandOutput extends SearchDevicesResponse, __Met
|
|
|
82
85
|
* <p>Base exception class for all service exceptions from Braket service.</p>
|
|
83
86
|
*
|
|
84
87
|
*/
|
|
85
|
-
export declare class SearchDevicesCommand extends
|
|
86
|
-
readonly input: SearchDevicesCommandInput;
|
|
87
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
88
|
-
/**
|
|
89
|
-
* @public
|
|
90
|
-
*/
|
|
91
|
-
constructor(input: SearchDevicesCommandInput);
|
|
92
|
-
/**
|
|
93
|
-
* @internal
|
|
94
|
-
*/
|
|
95
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchDevicesCommandInput, SearchDevicesCommandOutput>;
|
|
96
|
-
/**
|
|
97
|
-
* @internal
|
|
98
|
-
*/
|
|
99
|
-
private serialize;
|
|
100
|
-
/**
|
|
101
|
-
* @internal
|
|
102
|
-
*/
|
|
103
|
-
private deserialize;
|
|
88
|
+
export declare class SearchDevicesCommand extends SearchDevicesCommand_base {
|
|
104
89
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
|
|
5
4
|
import { SearchJobsRequest, SearchJobsResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface SearchJobsCommandInput extends SearchJobsRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface SearchJobsCommandOutput extends SearchJobsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const SearchJobsCommand_base: {
|
|
24
|
+
new (input: SearchJobsCommandInput): import("@smithy/smithy-client").CommandImpl<SearchJobsCommandInput, SearchJobsCommandOutput, BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Searches for Amazon Braket jobs that match the specified filter values.</p>
|
|
@@ -88,23 +91,5 @@ export interface SearchJobsCommandOutput extends SearchJobsResponse, __MetadataB
|
|
|
88
91
|
* <p>Base exception class for all service exceptions from Braket service.</p>
|
|
89
92
|
*
|
|
90
93
|
*/
|
|
91
|
-
export declare class SearchJobsCommand extends
|
|
92
|
-
readonly input: SearchJobsCommandInput;
|
|
93
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
94
|
-
/**
|
|
95
|
-
* @public
|
|
96
|
-
*/
|
|
97
|
-
constructor(input: SearchJobsCommandInput);
|
|
98
|
-
/**
|
|
99
|
-
* @internal
|
|
100
|
-
*/
|
|
101
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchJobsCommandInput, SearchJobsCommandOutput>;
|
|
102
|
-
/**
|
|
103
|
-
* @internal
|
|
104
|
-
*/
|
|
105
|
-
private serialize;
|
|
106
|
-
/**
|
|
107
|
-
* @internal
|
|
108
|
-
*/
|
|
109
|
-
private deserialize;
|
|
94
|
+
export declare class SearchJobsCommand extends SearchJobsCommand_base {
|
|
110
95
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
|
|
5
4
|
import { SearchQuantumTasksRequest, SearchQuantumTasksResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface SearchQuantumTasksCommandInput extends SearchQuantumTasksReques
|
|
|
21
20
|
*/
|
|
22
21
|
export interface SearchQuantumTasksCommandOutput extends SearchQuantumTasksResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const SearchQuantumTasksCommand_base: {
|
|
24
|
+
new (input: SearchQuantumTasksCommandInput): import("@smithy/smithy-client").CommandImpl<SearchQuantumTasksCommandInput, SearchQuantumTasksCommandOutput, BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Searches for tasks that match the specified filter values.</p>
|
|
@@ -89,23 +92,5 @@ export interface SearchQuantumTasksCommandOutput extends SearchQuantumTasksRespo
|
|
|
89
92
|
* <p>Base exception class for all service exceptions from Braket service.</p>
|
|
90
93
|
*
|
|
91
94
|
*/
|
|
92
|
-
export declare class SearchQuantumTasksCommand extends
|
|
93
|
-
readonly input: SearchQuantumTasksCommandInput;
|
|
94
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
95
|
-
/**
|
|
96
|
-
* @public
|
|
97
|
-
*/
|
|
98
|
-
constructor(input: SearchQuantumTasksCommandInput);
|
|
99
|
-
/**
|
|
100
|
-
* @internal
|
|
101
|
-
*/
|
|
102
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchQuantumTasksCommandInput, SearchQuantumTasksCommandOutput>;
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
private serialize;
|
|
107
|
-
/**
|
|
108
|
-
* @internal
|
|
109
|
-
*/
|
|
110
|
-
private deserialize;
|
|
95
|
+
export declare class SearchQuantumTasksCommand extends SearchQuantumTasksCommand_base {
|
|
111
96
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
|
|
5
4
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const TagResourceCommand_base: {
|
|
24
|
+
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Add a tag to the specified resource.</p>
|
|
@@ -62,23 +65,5 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
62
65
|
* <p>Base exception class for all service exceptions from Braket service.</p>
|
|
63
66
|
*
|
|
64
67
|
*/
|
|
65
|
-
export declare class TagResourceCommand extends
|
|
66
|
-
readonly input: TagResourceCommandInput;
|
|
67
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
-
/**
|
|
69
|
-
* @public
|
|
70
|
-
*/
|
|
71
|
-
constructor(input: TagResourceCommandInput);
|
|
72
|
-
/**
|
|
73
|
-
* @internal
|
|
74
|
-
*/
|
|
75
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
76
|
-
/**
|
|
77
|
-
* @internal
|
|
78
|
-
*/
|
|
79
|
-
private serialize;
|
|
80
|
-
/**
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
private deserialize;
|
|
68
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
84
69
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
|
|
5
4
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UntagResourceCommand_base: {
|
|
24
|
+
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Remove tags from a resource.</p>
|
|
@@ -62,23 +65,5 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
62
65
|
* <p>Base exception class for all service exceptions from Braket service.</p>
|
|
63
66
|
*
|
|
64
67
|
*/
|
|
65
|
-
export declare class UntagResourceCommand extends
|
|
66
|
-
readonly input: UntagResourceCommandInput;
|
|
67
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
-
/**
|
|
69
|
-
* @public
|
|
70
|
-
*/
|
|
71
|
-
constructor(input: UntagResourceCommandInput);
|
|
72
|
-
/**
|
|
73
|
-
* @internal
|
|
74
|
-
*/
|
|
75
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
76
|
-
/**
|
|
77
|
-
* @internal
|
|
78
|
-
*/
|
|
79
|
-
private serialize;
|
|
80
|
-
/**
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
private deserialize;
|
|
68
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
84
69
|
}
|
|
@@ -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
|
BraketClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -17,19 +11,16 @@ export interface CancelJobCommandInput extends CancelJobRequest {}
|
|
|
17
11
|
export interface CancelJobCommandOutput
|
|
18
12
|
extends CancelJobResponse,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const CancelJobCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: CancelJobCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
CancelJobCommandInput,
|
|
19
|
+
CancelJobCommandOutput,
|
|
20
|
+
BraketClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class CancelJobCommand extends CancelJobCommand_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
|
BraketClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,19 +15,16 @@ export interface CancelQuantumTaskCommandInput
|
|
|
21
15
|
export interface CancelQuantumTaskCommandOutput
|
|
22
16
|
extends CancelQuantumTaskResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const CancelQuantumTaskCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CancelQuantumTaskCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CancelQuantumTaskCommandInput,
|
|
23
|
+
CancelQuantumTaskCommandOutput,
|
|
24
|
+
BraketClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class CancelQuantumTaskCommand extends CancelQuantumTaskCommand_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
|
BraketClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -17,19 +11,16 @@ export interface CreateJobCommandInput extends CreateJobRequest {}
|
|
|
17
11
|
export interface CreateJobCommandOutput
|
|
18
12
|
extends CreateJobResponse,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const CreateJobCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: CreateJobCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
CreateJobCommandInput,
|
|
19
|
+
CreateJobCommandOutput,
|
|
20
|
+
BraketClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class CreateJobCommand extends CreateJobCommand_base {}
|