@aws-sdk/client-braket 3.1087.0 → 3.1088.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 (35) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/Braket.d.ts +61 -85
  3. package/dist-types/ts3.4/BraketClient.d.ts +21 -49
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
  7. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +7 -5
  8. package/dist-types/ts3.4/commands/CancelQuantumTaskCommand.d.ts +5 -10
  9. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +7 -5
  10. package/dist-types/ts3.4/commands/CreateQuantumTaskCommand.d.ts +5 -10
  11. package/dist-types/ts3.4/commands/CreateSpendingLimitCommand.d.ts +5 -10
  12. package/dist-types/ts3.4/commands/DeleteSpendingLimitCommand.d.ts +5 -10
  13. package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +7 -5
  14. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +6 -2
  15. package/dist-types/ts3.4/commands/GetQuantumTaskCommand.d.ts +4 -9
  16. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  17. package/dist-types/ts3.4/commands/SearchDevicesCommand.d.ts +4 -9
  18. package/dist-types/ts3.4/commands/SearchJobsCommand.d.ts +3 -5
  19. package/dist-types/ts3.4/commands/SearchQuantumTasksCommand.d.ts +5 -10
  20. package/dist-types/ts3.4/commands/SearchSpendingLimitsCommand.d.ts +4 -9
  21. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  22. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  23. package/dist-types/ts3.4/commands/UpdateSpendingLimitCommand.d.ts +5 -10
  24. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  25. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  26. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  27. package/dist-types/ts3.4/models/enums.d.ts +5 -10
  28. package/dist-types/ts3.4/models/errors.d.ts +8 -24
  29. package/dist-types/ts3.4/pagination/SearchJobsPaginator.d.ts +1 -4
  30. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  31. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  32. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  33. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  34. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  35. package/package.json +38 -38
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CancelQuantumTaskRequest,
4
- CancelQuantumTaskResponse,
5
- } from "../models/models_0";
2
+ import { CancelQuantumTaskRequest, CancelQuantumTaskResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CancelQuantumTaskCommandInput
8
- extends CancelQuantumTaskRequest {}
4
+ export interface CancelQuantumTaskCommandInput extends CancelQuantumTaskRequest {}
9
5
  export interface CancelQuantumTaskCommandOutput
10
- extends CancelQuantumTaskResponse,
11
- __MetadataBearer {}
6
+ extends CancelQuantumTaskResponse, __MetadataBearer {}
12
7
  declare const CancelQuantumTaskCommand_base: {
13
8
  new (
14
- input: CancelQuantumTaskCommandInput
9
+ input: CancelQuantumTaskCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CancelQuantumTaskCommandInput,
17
12
  CancelQuantumTaskCommandOutput,
@@ -20,7 +15,7 @@ declare const CancelQuantumTaskCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CancelQuantumTaskCommandInput
18
+ input: CancelQuantumTaskCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CancelQuantumTaskCommandInput,
26
21
  CancelQuantumTaskCommandOutput,
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { CreateJobRequest, CreateJobResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface CreateJobCommandInput extends CreateJobRequest {}
5
- export interface CreateJobCommandOutput
6
- extends CreateJobResponse,
7
- __MetadataBearer {}
5
+ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBearer {}
8
6
  declare const CreateJobCommand_base: {
9
- new (input: CreateJobCommandInput): import("@smithy/core/client").CommandImpl<
7
+ new (
8
+ input: CreateJobCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
10
  CreateJobCommandInput,
11
11
  CreateJobCommandOutput,
12
12
  import("..").BraketClientResolvedConfig,
13
13
  import("..").ServiceInputTypes,
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
- new (input: CreateJobCommandInput): import("@smithy/core/client").CommandImpl<
16
+ new (
17
+ input: CreateJobCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
17
19
  CreateJobCommandInput,
18
20
  CreateJobCommandOutput,
19
21
  import("..").BraketClientResolvedConfig,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateQuantumTaskRequest,
4
- CreateQuantumTaskResponse,
5
- } from "../models/models_0";
2
+ import { CreateQuantumTaskRequest, CreateQuantumTaskResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CreateQuantumTaskCommandInput
8
- extends CreateQuantumTaskRequest {}
4
+ export interface CreateQuantumTaskCommandInput extends CreateQuantumTaskRequest {}
9
5
  export interface CreateQuantumTaskCommandOutput
10
- extends CreateQuantumTaskResponse,
11
- __MetadataBearer {}
6
+ extends CreateQuantumTaskResponse, __MetadataBearer {}
12
7
  declare const CreateQuantumTaskCommand_base: {
13
8
  new (
14
- input: CreateQuantumTaskCommandInput
9
+ input: CreateQuantumTaskCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CreateQuantumTaskCommandInput,
17
12
  CreateQuantumTaskCommandOutput,
@@ -20,7 +15,7 @@ declare const CreateQuantumTaskCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CreateQuantumTaskCommandInput
18
+ input: CreateQuantumTaskCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CreateQuantumTaskCommandInput,
26
21
  CreateQuantumTaskCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateSpendingLimitRequest,
4
- CreateSpendingLimitResponse,
5
- } from "../models/models_0";
2
+ import { CreateSpendingLimitRequest, CreateSpendingLimitResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CreateSpendingLimitCommandInput
8
- extends CreateSpendingLimitRequest {}
4
+ export interface CreateSpendingLimitCommandInput extends CreateSpendingLimitRequest {}
9
5
  export interface CreateSpendingLimitCommandOutput
10
- extends CreateSpendingLimitResponse,
11
- __MetadataBearer {}
6
+ extends CreateSpendingLimitResponse, __MetadataBearer {}
12
7
  declare const CreateSpendingLimitCommand_base: {
13
8
  new (
14
- input: CreateSpendingLimitCommandInput
9
+ input: CreateSpendingLimitCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CreateSpendingLimitCommandInput,
17
12
  CreateSpendingLimitCommandOutput,
@@ -20,7 +15,7 @@ declare const CreateSpendingLimitCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CreateSpendingLimitCommandInput
18
+ input: CreateSpendingLimitCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CreateSpendingLimitCommandInput,
26
21
  CreateSpendingLimitCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteSpendingLimitRequest,
4
- DeleteSpendingLimitResponse,
5
- } from "../models/models_0";
2
+ import { DeleteSpendingLimitRequest, DeleteSpendingLimitResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DeleteSpendingLimitCommandInput
8
- extends DeleteSpendingLimitRequest {}
4
+ export interface DeleteSpendingLimitCommandInput extends DeleteSpendingLimitRequest {}
9
5
  export interface DeleteSpendingLimitCommandOutput
10
- extends DeleteSpendingLimitResponse,
11
- __MetadataBearer {}
6
+ extends DeleteSpendingLimitResponse, __MetadataBearer {}
12
7
  declare const DeleteSpendingLimitCommand_base: {
13
8
  new (
14
- input: DeleteSpendingLimitCommandInput
9
+ input: DeleteSpendingLimitCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DeleteSpendingLimitCommandInput,
17
12
  DeleteSpendingLimitCommandOutput,
@@ -20,7 +15,7 @@ declare const DeleteSpendingLimitCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DeleteSpendingLimitCommandInput
18
+ input: DeleteSpendingLimitCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DeleteSpendingLimitCommandInput,
26
21
  DeleteSpendingLimitCommandOutput,
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { GetDeviceRequest, GetDeviceResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface GetDeviceCommandInput extends GetDeviceRequest {}
5
- export interface GetDeviceCommandOutput
6
- extends GetDeviceResponse,
7
- __MetadataBearer {}
5
+ export interface GetDeviceCommandOutput extends GetDeviceResponse, __MetadataBearer {}
8
6
  declare const GetDeviceCommand_base: {
9
- new (input: GetDeviceCommandInput): import("@smithy/core/client").CommandImpl<
7
+ new (
8
+ input: GetDeviceCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
10
  GetDeviceCommandInput,
11
11
  GetDeviceCommandOutput,
12
12
  import("..").BraketClientResolvedConfig,
13
13
  import("..").ServiceInputTypes,
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
- new (input: GetDeviceCommandInput): import("@smithy/core/client").CommandImpl<
16
+ new (
17
+ input: GetDeviceCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
17
19
  GetDeviceCommandInput,
18
20
  GetDeviceCommandOutput,
19
21
  import("..").BraketClientResolvedConfig,
@@ -4,14 +4,18 @@ export { __MetadataBearer };
4
4
  export interface GetJobCommandInput extends GetJobRequest {}
5
5
  export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {}
6
6
  declare const GetJobCommand_base: {
7
- new (input: GetJobCommandInput): import("@smithy/core/client").CommandImpl<
7
+ new (
8
+ input: GetJobCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
8
10
  GetJobCommandInput,
9
11
  GetJobCommandOutput,
10
12
  import("..").BraketClientResolvedConfig,
11
13
  import("..").ServiceInputTypes,
12
14
  import("..").ServiceOutputTypes
13
15
  >;
14
- new (input: GetJobCommandInput): import("@smithy/core/client").CommandImpl<
16
+ new (
17
+ input: GetJobCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
15
19
  GetJobCommandInput,
16
20
  GetJobCommandOutput,
17
21
  import("..").BraketClientResolvedConfig,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetQuantumTaskRequest,
4
- GetQuantumTaskResponse,
5
- } from "../models/models_0";
2
+ import { GetQuantumTaskRequest, GetQuantumTaskResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface GetQuantumTaskCommandInput extends GetQuantumTaskRequest {}
8
- export interface GetQuantumTaskCommandOutput
9
- extends GetQuantumTaskResponse,
10
- __MetadataBearer {}
5
+ export interface GetQuantumTaskCommandOutput extends GetQuantumTaskResponse, __MetadataBearer {}
11
6
  declare const GetQuantumTaskCommand_base: {
12
7
  new (
13
- input: GetQuantumTaskCommandInput
8
+ input: GetQuantumTaskCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  GetQuantumTaskCommandInput,
16
11
  GetQuantumTaskCommandOutput,
@@ -19,7 +14,7 @@ declare const GetQuantumTaskCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: GetQuantumTaskCommandInput
17
+ input: GetQuantumTaskCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  GetQuantumTaskCommandInput,
25
20
  GetQuantumTaskCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListTagsForResourceRequest,
4
- ListTagsForResourceResponse,
5
- } from "../models/models_0";
2
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ListTagsForResourceCommandInput
8
- extends ListTagsForResourceRequest {}
4
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
9
5
  export interface ListTagsForResourceCommandOutput
10
- extends ListTagsForResourceResponse,
11
- __MetadataBearer {}
6
+ extends ListTagsForResourceResponse, __MetadataBearer {}
12
7
  declare const ListTagsForResourceCommand_base: {
13
8
  new (
14
- input: ListTagsForResourceCommandInput
9
+ input: ListTagsForResourceCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ListTagsForResourceCommandInput,
17
12
  ListTagsForResourceCommandOutput,
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: ListTagsForResourceCommandInput
18
+ input: ListTagsForResourceCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  ListTagsForResourceCommandInput,
26
21
  ListTagsForResourceCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- SearchDevicesRequest,
4
- SearchDevicesResponse,
5
- } from "../models/models_0";
2
+ import { SearchDevicesRequest, SearchDevicesResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface SearchDevicesCommandInput extends SearchDevicesRequest {}
8
- export interface SearchDevicesCommandOutput
9
- extends SearchDevicesResponse,
10
- __MetadataBearer {}
5
+ export interface SearchDevicesCommandOutput extends SearchDevicesResponse, __MetadataBearer {}
11
6
  declare const SearchDevicesCommand_base: {
12
7
  new (
13
- input: SearchDevicesCommandInput
8
+ input: SearchDevicesCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  SearchDevicesCommandInput,
16
11
  SearchDevicesCommandOutput,
@@ -19,7 +14,7 @@ declare const SearchDevicesCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: SearchDevicesCommandInput
17
+ input: SearchDevicesCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  SearchDevicesCommandInput,
25
20
  SearchDevicesCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { SearchJobsRequest, SearchJobsResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface SearchJobsCommandInput extends SearchJobsRequest {}
5
- export interface SearchJobsCommandOutput
6
- extends SearchJobsResponse,
7
- __MetadataBearer {}
5
+ export interface SearchJobsCommandOutput extends SearchJobsResponse, __MetadataBearer {}
8
6
  declare const SearchJobsCommand_base: {
9
7
  new (
10
- input: SearchJobsCommandInput
8
+ input: SearchJobsCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  SearchJobsCommandInput,
13
11
  SearchJobsCommandOutput,
@@ -16,7 +14,7 @@ declare const SearchJobsCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: SearchJobsCommandInput
17
+ input: SearchJobsCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  SearchJobsCommandInput,
22
20
  SearchJobsCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- SearchQuantumTasksRequest,
4
- SearchQuantumTasksResponse,
5
- } from "../models/models_0";
2
+ import { SearchQuantumTasksRequest, SearchQuantumTasksResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface SearchQuantumTasksCommandInput
8
- extends SearchQuantumTasksRequest {}
4
+ export interface SearchQuantumTasksCommandInput extends SearchQuantumTasksRequest {}
9
5
  export interface SearchQuantumTasksCommandOutput
10
- extends SearchQuantumTasksResponse,
11
- __MetadataBearer {}
6
+ extends SearchQuantumTasksResponse, __MetadataBearer {}
12
7
  declare const SearchQuantumTasksCommand_base: {
13
8
  new (
14
- input: SearchQuantumTasksCommandInput
9
+ input: SearchQuantumTasksCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  SearchQuantumTasksCommandInput,
17
12
  SearchQuantumTasksCommandOutput,
@@ -20,7 +15,7 @@ declare const SearchQuantumTasksCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: SearchQuantumTasksCommandInput
18
+ input: SearchQuantumTasksCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  SearchQuantumTasksCommandInput,
26
21
  SearchQuantumTasksCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- SearchSpendingLimitsRequest,
4
- SearchSpendingLimitsResponse,
5
- } from "../models/models_0";
2
+ import { SearchSpendingLimitsRequest, SearchSpendingLimitsResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface SearchSpendingLimitsCommandInput
8
- extends SearchSpendingLimitsRequest {}
4
+ export interface SearchSpendingLimitsCommandInput extends SearchSpendingLimitsRequest {}
9
5
  export interface SearchSpendingLimitsCommandOutput
10
- extends SearchSpendingLimitsResponse,
11
- __MetadataBearer {}
6
+ extends SearchSpendingLimitsResponse, __MetadataBearer {}
12
7
  declare const SearchSpendingLimitsCommand_base: {
13
8
  new (
14
- input: SearchSpendingLimitsCommandInput
9
+ input: SearchSpendingLimitsCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  SearchSpendingLimitsCommandInput,
17
12
  SearchSpendingLimitsCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface TagResourceCommandInput extends TagResourceRequest {}
5
- export interface TagResourceCommandOutput
6
- extends TagResourceResponse,
7
- __MetadataBearer {}
5
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
8
6
  declare const TagResourceCommand_base: {
9
7
  new (
10
- input: TagResourceCommandInput
8
+ input: TagResourceCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  TagResourceCommandInput,
13
11
  TagResourceCommandOutput,
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: TagResourceCommandInput
17
+ input: TagResourceCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  TagResourceCommandInput,
22
20
  TagResourceCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- UntagResourceRequest,
4
- UntagResourceResponse,
5
- } from "../models/models_0";
2
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface UntagResourceCommandInput extends UntagResourceRequest {}
8
- export interface UntagResourceCommandOutput
9
- extends UntagResourceResponse,
10
- __MetadataBearer {}
5
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
11
6
  declare const UntagResourceCommand_base: {
12
7
  new (
13
- input: UntagResourceCommandInput
8
+ input: UntagResourceCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  UntagResourceCommandInput,
16
11
  UntagResourceCommandOutput,
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: UntagResourceCommandInput
17
+ input: UntagResourceCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  UntagResourceCommandInput,
25
20
  UntagResourceCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- UpdateSpendingLimitRequest,
4
- UpdateSpendingLimitResponse,
5
- } from "../models/models_0";
2
+ import { UpdateSpendingLimitRequest, UpdateSpendingLimitResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface UpdateSpendingLimitCommandInput
8
- extends UpdateSpendingLimitRequest {}
4
+ export interface UpdateSpendingLimitCommandInput extends UpdateSpendingLimitRequest {}
9
5
  export interface UpdateSpendingLimitCommandOutput
10
- extends UpdateSpendingLimitResponse,
11
- __MetadataBearer {}
6
+ extends UpdateSpendingLimitResponse, __MetadataBearer {}
12
7
  declare const UpdateSpendingLimitCommand_base: {
13
8
  new (
14
- input: UpdateSpendingLimitCommandInput
9
+ input: UpdateSpendingLimitCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  UpdateSpendingLimitCommandInput,
17
12
  UpdateSpendingLimitCommandOutput,
@@ -20,7 +15,7 @@ declare const UpdateSpendingLimitCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: UpdateSpendingLimitCommandInput
18
+ input: UpdateSpendingLimitCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  UpdateSpendingLimitCommandInput,
26
21
  UpdateSpendingLimitCommandOutput,
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
23
23
  defaultSigningName: string;
24
24
  };
25
25
  export declare const resolveClientEndpointParameters: <T>(
26
- options: T & ClientInputEndpointParameters
26
+ options: T & ClientInputEndpointParameters,
27
27
  ) => T & ClientResolvedEndpointParameters;
28
28
  export declare const commonParams: {
29
29
  readonly UseFIPS: {
@@ -4,5 +4,5 @@ export declare const defaultEndpointResolver: (
4
4
  endpointParams: EndpointParameters,
5
5
  context?: {
6
6
  logger?: Logger;
7
- }
7
+ },
8
8
  ) => EndpointV2;
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
3
3
  import { DefaultExtensionConfiguration } from "@smithy/types";
4
4
  import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
5
  export interface BraketExtensionConfiguration
6
- extends HttpHandlerExtensionConfiguration,
6
+ extends
7
+ HttpHandlerExtensionConfiguration,
7
8
  DefaultExtensionConfiguration,
8
9
  AwsRegionExtensionConfiguration,
9
10
  HttpAuthExtensionConfiguration {}
@@ -2,13 +2,11 @@ export declare const CompressionType: {
2
2
  readonly GZIP: "GZIP";
3
3
  readonly NONE: "NONE";
4
4
  };
5
- export type CompressionType =
6
- (typeof CompressionType)[keyof typeof CompressionType];
5
+ export type CompressionType = (typeof CompressionType)[keyof typeof CompressionType];
7
6
  export declare const AssociationType: {
8
7
  readonly RESERVATION_TIME_WINDOW_ARN: "RESERVATION_TIME_WINDOW_ARN";
9
8
  };
10
- export type AssociationType =
11
- (typeof AssociationType)[keyof typeof AssociationType];
9
+ export type AssociationType = (typeof AssociationType)[keyof typeof AssociationType];
12
10
  export declare const QueueName: {
13
11
  readonly JOBS_QUEUE: "JOBS_QUEUE";
14
12
  readonly QUANTUM_TASKS_QUEUE: "QUANTUM_TASKS_QUEUE";
@@ -39,8 +37,7 @@ export declare const CancellationStatus: {
39
37
  readonly CANCELLED: "CANCELLED";
40
38
  readonly CANCELLING: "CANCELLING";
41
39
  };
42
- export type CancellationStatus =
43
- (typeof CancellationStatus)[keyof typeof CancellationStatus];
40
+ export type CancellationStatus = (typeof CancellationStatus)[keyof typeof CancellationStatus];
44
41
  export declare const _InstanceType: {
45
42
  readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
46
43
  readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
@@ -129,8 +126,7 @@ export declare const JobPrimaryStatus: {
129
126
  readonly QUEUED: "QUEUED";
130
127
  readonly RUNNING: "RUNNING";
131
128
  };
132
- export type JobPrimaryStatus =
133
- (typeof JobPrimaryStatus)[keyof typeof JobPrimaryStatus];
129
+ export type JobPrimaryStatus = (typeof JobPrimaryStatus)[keyof typeof JobPrimaryStatus];
134
130
  export declare const SearchJobsFilterOperator: {
135
131
  readonly BETWEEN: "BETWEEN";
136
132
  readonly CONTAINS: "CONTAINS";
@@ -162,8 +158,7 @@ export declare const QuantumTaskStatus: {
162
158
  readonly QUEUED: "QUEUED";
163
159
  readonly RUNNING: "RUNNING";
164
160
  };
165
- export type QuantumTaskStatus =
166
- (typeof QuantumTaskStatus)[keyof typeof QuantumTaskStatus];
161
+ export type QuantumTaskStatus = (typeof QuantumTaskStatus)[keyof typeof QuantumTaskStatus];
167
162
  export declare const SearchQuantumTasksFilterOperator: {
168
163
  readonly BETWEEN: "BETWEEN";
169
164
  readonly EQUAL: "EQUAL";
@@ -5,39 +5,29 @@ import { ProgramSetValidationFailure } from "./models_0";
5
5
  export declare class AccessDeniedException extends __BaseException {
6
6
  readonly name: "AccessDeniedException";
7
7
  readonly $fault: "client";
8
- constructor(
9
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
- );
8
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
11
9
  }
12
10
  export declare class InternalServiceException extends __BaseException {
13
11
  readonly name: "InternalServiceException";
14
12
  readonly $fault: "server";
15
- constructor(
16
- opts: __ExceptionOptionType<InternalServiceException, __BaseException>
17
- );
13
+ constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
18
14
  }
19
15
  export declare class ResourceNotFoundException extends __BaseException {
20
16
  readonly name: "ResourceNotFoundException";
21
17
  readonly $fault: "client";
22
- constructor(
23
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
24
- );
18
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
25
19
  }
26
20
  export declare class ThrottlingException extends __BaseException {
27
21
  readonly name: "ThrottlingException";
28
22
  readonly $fault: "client";
29
- constructor(
30
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
31
- );
23
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
32
24
  }
33
25
  export declare class ValidationException extends __BaseException {
34
26
  readonly name: "ValidationException";
35
27
  readonly $fault: "client";
36
28
  reason?: ValidationExceptionReason | undefined;
37
29
  programSetValidationFailures?: ProgramSetValidationFailure[] | undefined;
38
- constructor(
39
- opts: __ExceptionOptionType<ValidationException, __BaseException>
40
- );
30
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
41
31
  }
42
32
  export declare class ConflictException extends __BaseException {
43
33
  readonly name: "ConflictException";
@@ -47,21 +37,15 @@ export declare class ConflictException extends __BaseException {
47
37
  export declare class DeviceOfflineException extends __BaseException {
48
38
  readonly name: "DeviceOfflineException";
49
39
  readonly $fault: "client";
50
- constructor(
51
- opts: __ExceptionOptionType<DeviceOfflineException, __BaseException>
52
- );
40
+ constructor(opts: __ExceptionOptionType<DeviceOfflineException, __BaseException>);
53
41
  }
54
42
  export declare class DeviceRetiredException extends __BaseException {
55
43
  readonly name: "DeviceRetiredException";
56
44
  readonly $fault: "client";
57
- constructor(
58
- opts: __ExceptionOptionType<DeviceRetiredException, __BaseException>
59
- );
45
+ constructor(opts: __ExceptionOptionType<DeviceRetiredException, __BaseException>);
60
46
  }
61
47
  export declare class ServiceQuotaExceededException extends __BaseException {
62
48
  readonly name: "ServiceQuotaExceededException";
63
49
  readonly $fault: "client";
64
- constructor(
65
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
66
- );
50
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
67
51
  }
@@ -1,8 +1,5 @@
1
1
  import { Paginator } from "@smithy/types";
2
- import {
3
- SearchJobsCommandInput,
4
- SearchJobsCommandOutput,
5
- } from "../commands/SearchJobsCommand";
2
+ import { SearchJobsCommandInput, SearchJobsCommandOutput } from "../commands/SearchJobsCommand";
6
3
  import { BraketPaginationConfiguration } from "./Interfaces";
7
4
  export declare const paginateSearchJobs: (
8
5
  config: BraketPaginationConfiguration,