@aws-sdk/client-braket 3.296.0 → 3.298.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 (51) hide show
  1. package/dist-cjs/commands/CancelJobCommand.js +2 -3
  2. package/dist-cjs/commands/CancelQuantumTaskCommand.js +2 -3
  3. package/dist-cjs/commands/CreateJobCommand.js +2 -3
  4. package/dist-cjs/commands/CreateQuantumTaskCommand.js +2 -3
  5. package/dist-cjs/commands/GetDeviceCommand.js +2 -3
  6. package/dist-cjs/commands/GetJobCommand.js +2 -3
  7. package/dist-cjs/commands/GetQuantumTaskCommand.js +2 -3
  8. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  9. package/dist-cjs/commands/SearchDevicesCommand.js +2 -3
  10. package/dist-cjs/commands/SearchJobsCommand.js +2 -3
  11. package/dist-cjs/commands/SearchQuantumTasksCommand.js +2 -3
  12. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  13. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  14. package/dist-cjs/models/models_0.js +1 -178
  15. package/dist-es/commands/CancelJobCommand.js +2 -3
  16. package/dist-es/commands/CancelQuantumTaskCommand.js +2 -3
  17. package/dist-es/commands/CreateJobCommand.js +2 -3
  18. package/dist-es/commands/CreateQuantumTaskCommand.js +2 -3
  19. package/dist-es/commands/GetDeviceCommand.js +2 -3
  20. package/dist-es/commands/GetJobCommand.js +2 -3
  21. package/dist-es/commands/GetQuantumTaskCommand.js +2 -3
  22. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  23. package/dist-es/commands/SearchDevicesCommand.js +2 -3
  24. package/dist-es/commands/SearchJobsCommand.js +2 -3
  25. package/dist-es/commands/SearchQuantumTasksCommand.js +2 -3
  26. package/dist-es/commands/TagResourceCommand.js +2 -3
  27. package/dist-es/commands/UntagResourceCommand.js +2 -3
  28. package/dist-es/models/models_0.js +0 -132
  29. package/dist-types/Braket.d.ts +14 -0
  30. package/dist-types/BraketClient.d.ts +24 -4
  31. package/dist-types/commands/CancelJobCommand.d.ts +16 -0
  32. package/dist-types/commands/CancelQuantumTaskCommand.d.ts +16 -0
  33. package/dist-types/commands/CreateJobCommand.d.ts +16 -0
  34. package/dist-types/commands/CreateQuantumTaskCommand.d.ts +16 -0
  35. package/dist-types/commands/GetDeviceCommand.d.ts +16 -0
  36. package/dist-types/commands/GetJobCommand.d.ts +16 -0
  37. package/dist-types/commands/GetQuantumTaskCommand.d.ts +16 -0
  38. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  39. package/dist-types/commands/SearchDevicesCommand.d.ts +16 -0
  40. package/dist-types/commands/SearchJobsCommand.d.ts +16 -0
  41. package/dist-types/commands/SearchQuantumTasksCommand.d.ts +16 -0
  42. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  43. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  44. package/dist-types/models/BraketServiceException.d.ts +2 -0
  45. package/dist-types/models/models_0.d.ts +135 -176
  46. package/dist-types/pagination/Interfaces.d.ts +3 -0
  47. package/dist-types/pagination/SearchDevicesPaginator.d.ts +3 -0
  48. package/dist-types/pagination/SearchJobsPaginator.d.ts +3 -0
  49. package/dist-types/pagination/SearchQuantumTasksPaginator.d.ts +3 -0
  50. package/dist-types/ts3.4/models/models_0.d.ts +0 -124
  51. package/package.json +4 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
5
5
  import { GetJobRequest, GetJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetJobCommand}.
8
10
  */
9
11
  export interface GetJobCommandInput extends GetJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetJobCommand}.
13
17
  */
14
18
  export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the specified Amazon Braket job.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetJobCommandInput - {@link GetJobCommandInput}
34
+ * @returns {@link GetJobCommandOutput}
28
35
  * @see {@link GetJobCommandInput} for command's `input` shape.
29
36
  * @see {@link GetJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link BraketClientResolvedConfig | config} for BraketClient's `config` shape.
@@ -50,11 +57,20 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
50
57
  export declare class GetJobCommand extends $Command<GetJobCommandInput, GetJobCommandOutput, BraketClientResolvedConfig> {
51
58
  readonly input: GetJobCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: GetJobCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobCommandInput, GetJobCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
5
5
  import { GetQuantumTaskRequest, GetQuantumTaskResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetQuantumTaskCommand}.
8
10
  */
9
11
  export interface GetQuantumTaskCommandInput extends GetQuantumTaskRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetQuantumTaskCommand}.
13
17
  */
14
18
  export interface GetQuantumTaskCommandOutput extends GetQuantumTaskResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the specified quantum task.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetQuantumTaskCommandOutput extends GetQuantumTaskResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetQuantumTaskCommandInput - {@link GetQuantumTaskCommandInput}
34
+ * @returns {@link GetQuantumTaskCommandOutput}
28
35
  * @see {@link GetQuantumTaskCommandInput} for command's `input` shape.
29
36
  * @see {@link GetQuantumTaskCommandOutput} for command's `response` shape.
30
37
  * @see {@link BraketClientResolvedConfig | config} for BraketClient's `config` shape.
@@ -50,11 +57,20 @@ export interface GetQuantumTaskCommandOutput extends GetQuantumTaskResponse, __M
50
57
  export declare class GetQuantumTaskCommand extends $Command<GetQuantumTaskCommandInput, GetQuantumTaskCommandOutput, BraketClientResolvedConfig> {
51
58
  readonly input: GetQuantumTaskCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: GetQuantumTaskCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetQuantumTaskCommandInput, GetQuantumTaskCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Shows the tags associated with this resource.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link BraketClientResolvedConfig | config} for BraketClient's `config` shape.
@@ -44,11 +51,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
44
51
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BraketClientResolvedConfig> {
45
52
  readonly input: ListTagsForResourceCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: ListTagsForResourceCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
5
5
  import { SearchDevicesRequest, SearchDevicesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchDevicesCommand}.
8
10
  */
9
11
  export interface SearchDevicesCommandInput extends SearchDevicesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchDevicesCommand}.
13
17
  */
14
18
  export interface SearchDevicesCommandOutput extends SearchDevicesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Searches for devices using the specified filters.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface SearchDevicesCommandOutput extends SearchDevicesResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param SearchDevicesCommandInput - {@link SearchDevicesCommandInput}
34
+ * @returns {@link SearchDevicesCommandOutput}
28
35
  * @see {@link SearchDevicesCommandInput} for command's `input` shape.
29
36
  * @see {@link SearchDevicesCommandOutput} for command's `response` shape.
30
37
  * @see {@link BraketClientResolvedConfig | config} for BraketClient's `config` shape.
@@ -47,11 +54,20 @@ export interface SearchDevicesCommandOutput extends SearchDevicesResponse, __Met
47
54
  export declare class SearchDevicesCommand extends $Command<SearchDevicesCommandInput, SearchDevicesCommandOutput, BraketClientResolvedConfig> {
48
55
  readonly input: SearchDevicesCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: SearchDevicesCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchDevicesCommandInput, SearchDevicesCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
5
5
  import { SearchJobsRequest, SearchJobsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchJobsCommand}.
8
10
  */
9
11
  export interface SearchJobsCommandInput extends SearchJobsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchJobsCommand}.
13
17
  */
14
18
  export interface SearchJobsCommandOutput extends SearchJobsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Searches for Amazon Braket jobs that match the specified filter values.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface SearchJobsCommandOutput extends SearchJobsResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param SearchJobsCommandInput - {@link SearchJobsCommandInput}
34
+ * @returns {@link SearchJobsCommandOutput}
28
35
  * @see {@link SearchJobsCommandInput} for command's `input` shape.
29
36
  * @see {@link SearchJobsCommandOutput} for command's `response` shape.
30
37
  * @see {@link BraketClientResolvedConfig | config} for BraketClient's `config` shape.
@@ -47,11 +54,20 @@ export interface SearchJobsCommandOutput extends SearchJobsResponse, __MetadataB
47
54
  export declare class SearchJobsCommand extends $Command<SearchJobsCommandInput, SearchJobsCommandOutput, BraketClientResolvedConfig> {
48
55
  readonly input: SearchJobsCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: SearchJobsCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchJobsCommandInput, SearchJobsCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
5
5
  import { SearchQuantumTasksRequest, SearchQuantumTasksResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchQuantumTasksCommand}.
8
10
  */
9
11
  export interface SearchQuantumTasksCommandInput extends SearchQuantumTasksRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchQuantumTasksCommand}.
13
17
  */
14
18
  export interface SearchQuantumTasksCommandOutput extends SearchQuantumTasksResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Searches for tasks that match the specified filter values.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface SearchQuantumTasksCommandOutput extends SearchQuantumTasksRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param SearchQuantumTasksCommandInput - {@link SearchQuantumTasksCommandInput}
34
+ * @returns {@link SearchQuantumTasksCommandOutput}
28
35
  * @see {@link SearchQuantumTasksCommandInput} for command's `input` shape.
29
36
  * @see {@link SearchQuantumTasksCommandOutput} for command's `response` shape.
30
37
  * @see {@link BraketClientResolvedConfig | config} for BraketClient's `config` shape.
@@ -47,11 +54,20 @@ export interface SearchQuantumTasksCommandOutput extends SearchQuantumTasksRespo
47
54
  export declare class SearchQuantumTasksCommand extends $Command<SearchQuantumTasksCommandInput, SearchQuantumTasksCommandOutput, BraketClientResolvedConfig> {
48
55
  readonly input: SearchQuantumTasksCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: SearchQuantumTasksCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchQuantumTasksCommandInput, SearchQuantumTasksCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Add a tag to the specified resource.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link BraketClientResolvedConfig | config} for BraketClient's `config` shape.
@@ -44,11 +51,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
44
51
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, BraketClientResolvedConfig> {
45
52
  readonly input: TagResourceCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: TagResourceCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Remove tags from a resource.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link BraketClientResolvedConfig | config} for BraketClient's `config` shape.
@@ -44,11 +51,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
44
51
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, BraketClientResolvedConfig> {
45
52
  readonly input: UntagResourceCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: UntagResourceCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BraketClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from Braket service.
4
6
  */
5
7
  export declare class BraketServiceException extends __ServiceException {