@aws-sdk/client-cleanroomsml 3.686.0 → 3.687.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 (149) hide show
  1. package/README.md +264 -0
  2. package/dist-cjs/index.js +2347 -97
  3. package/dist-es/CleanRoomsML.js +66 -0
  4. package/dist-es/commands/CancelTrainedModelCommand.js +22 -0
  5. package/dist-es/commands/CancelTrainedModelInferenceJobCommand.js +22 -0
  6. package/dist-es/commands/CreateConfiguredModelAlgorithmAssociationCommand.js +22 -0
  7. package/dist-es/commands/CreateConfiguredModelAlgorithmCommand.js +22 -0
  8. package/dist-es/commands/CreateMLInputChannelCommand.js +23 -0
  9. package/dist-es/commands/CreateTrainedModelCommand.js +22 -0
  10. package/dist-es/commands/DeleteConfiguredModelAlgorithmAssociationCommand.js +22 -0
  11. package/dist-es/commands/DeleteConfiguredModelAlgorithmCommand.js +22 -0
  12. package/dist-es/commands/DeleteMLConfigurationCommand.js +22 -0
  13. package/dist-es/commands/DeleteMLInputChannelDataCommand.js +22 -0
  14. package/dist-es/commands/DeleteTrainedModelOutputCommand.js +22 -0
  15. package/dist-es/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.js +22 -0
  16. package/dist-es/commands/GetCollaborationMLInputChannelCommand.js +22 -0
  17. package/dist-es/commands/GetCollaborationTrainedModelCommand.js +22 -0
  18. package/dist-es/commands/GetConfiguredModelAlgorithmAssociationCommand.js +22 -0
  19. package/dist-es/commands/GetConfiguredModelAlgorithmCommand.js +22 -0
  20. package/dist-es/commands/GetMLConfigurationCommand.js +22 -0
  21. package/dist-es/commands/GetMLInputChannelCommand.js +23 -0
  22. package/dist-es/commands/GetTrainedModelCommand.js +22 -0
  23. package/dist-es/commands/GetTrainedModelInferenceJobCommand.js +22 -0
  24. package/dist-es/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.js +22 -0
  25. package/dist-es/commands/ListCollaborationMLInputChannelsCommand.js +22 -0
  26. package/dist-es/commands/ListCollaborationTrainedModelExportJobsCommand.js +22 -0
  27. package/dist-es/commands/ListCollaborationTrainedModelInferenceJobsCommand.js +22 -0
  28. package/dist-es/commands/ListCollaborationTrainedModelsCommand.js +22 -0
  29. package/dist-es/commands/ListConfiguredModelAlgorithmAssociationsCommand.js +22 -0
  30. package/dist-es/commands/ListConfiguredModelAlgorithmsCommand.js +22 -0
  31. package/dist-es/commands/ListMLInputChannelsCommand.js +22 -0
  32. package/dist-es/commands/ListTrainedModelInferenceJobsCommand.js +22 -0
  33. package/dist-es/commands/ListTrainedModelsCommand.js +22 -0
  34. package/dist-es/commands/PutMLConfigurationCommand.js +22 -0
  35. package/dist-es/commands/StartTrainedModelExportJobCommand.js +22 -0
  36. package/dist-es/commands/StartTrainedModelInferenceJobCommand.js +22 -0
  37. package/dist-es/commands/index.js +33 -0
  38. package/dist-es/models/models_0.js +295 -0
  39. package/dist-es/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.js +4 -0
  40. package/dist-es/pagination/ListCollaborationMLInputChannelsPaginator.js +4 -0
  41. package/dist-es/pagination/ListCollaborationTrainedModelExportJobsPaginator.js +4 -0
  42. package/dist-es/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.js +4 -0
  43. package/dist-es/pagination/ListCollaborationTrainedModelsPaginator.js +4 -0
  44. package/dist-es/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.js +4 -0
  45. package/dist-es/pagination/ListConfiguredModelAlgorithmsPaginator.js +4 -0
  46. package/dist-es/pagination/ListMLInputChannelsPaginator.js +4 -0
  47. package/dist-es/pagination/ListTrainedModelInferenceJobsPaginator.js +4 -0
  48. package/dist-es/pagination/ListTrainedModelsPaginator.js +4 -0
  49. package/dist-es/pagination/index.js +10 -0
  50. package/dist-es/protocols/Aws_restJson1.js +1320 -47
  51. package/dist-types/CleanRoomsML.d.ts +232 -0
  52. package/dist-types/CleanRoomsMLClient.d.ts +35 -2
  53. package/dist-types/commands/CancelTrainedModelCommand.d.ts +82 -0
  54. package/dist-types/commands/CancelTrainedModelInferenceJobCommand.d.ts +82 -0
  55. package/dist-types/commands/CreateConfiguredModelAlgorithmAssociationCommand.d.ts +132 -0
  56. package/dist-types/commands/CreateConfiguredModelAlgorithmCommand.d.ts +107 -0
  57. package/dist-types/commands/CreateMLInputChannelCommand.d.ts +116 -0
  58. package/dist-types/commands/CreateTrainedModelCommand.d.ts +113 -0
  59. package/dist-types/commands/DeleteConfiguredModelAlgorithmAssociationCommand.d.ts +82 -0
  60. package/dist-types/commands/DeleteConfiguredModelAlgorithmCommand.d.ts +81 -0
  61. package/dist-types/commands/DeleteMLConfigurationCommand.d.ts +78 -0
  62. package/dist-types/commands/DeleteMLInputChannelDataCommand.d.ts +82 -0
  63. package/dist-types/commands/DeleteTrainedModelOutputCommand.d.ts +82 -0
  64. package/dist-types/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.d.ts +129 -0
  65. package/dist-types/commands/GetCollaborationMLInputChannelCommand.d.ts +98 -0
  66. package/dist-types/commands/GetCollaborationTrainedModelCommand.d.ts +107 -0
  67. package/dist-types/commands/GetConfiguredModelAlgorithmAssociationCommand.d.ts +131 -0
  68. package/dist-types/commands/GetConfiguredModelAlgorithmCommand.d.ts +107 -0
  69. package/dist-types/commands/GetMLConfigurationCommand.d.ts +90 -0
  70. package/dist-types/commands/GetMLInputChannelCommand.d.ts +124 -0
  71. package/dist-types/commands/GetTrainedModelCommand.d.ts +122 -0
  72. package/dist-types/commands/GetTrainedModelInferenceJobCommand.d.ts +123 -0
  73. package/dist-types/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.d.ts +92 -0
  74. package/dist-types/commands/ListCollaborationMLInputChannelsCommand.d.ts +95 -0
  75. package/dist-types/commands/ListCollaborationTrainedModelExportJobsCommand.d.ts +104 -0
  76. package/dist-types/commands/ListCollaborationTrainedModelInferenceJobsCommand.d.ts +107 -0
  77. package/dist-types/commands/ListCollaborationTrainedModelsCommand.d.ts +93 -0
  78. package/dist-types/commands/ListConfiguredModelAlgorithmAssociationsCommand.d.ts +91 -0
  79. package/dist-types/commands/ListConfiguredModelAlgorithmsCommand.d.ts +87 -0
  80. package/dist-types/commands/ListMLInputChannelsCommand.d.ts +95 -0
  81. package/dist-types/commands/ListTrainedModelInferenceJobsCommand.d.ts +106 -0
  82. package/dist-types/commands/ListTrainedModelsCommand.d.ts +92 -0
  83. package/dist-types/commands/PutMLConfigurationCommand.d.ts +83 -0
  84. package/dist-types/commands/StartTrainedModelExportJobCommand.d.ts +91 -0
  85. package/dist-types/commands/StartTrainedModelInferenceJobCommand.d.ts +115 -0
  86. package/dist-types/commands/index.d.ts +33 -0
  87. package/dist-types/models/models_0.d.ts +3461 -205
  88. package/dist-types/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.d.ts +7 -0
  89. package/dist-types/pagination/ListCollaborationMLInputChannelsPaginator.d.ts +7 -0
  90. package/dist-types/pagination/ListCollaborationTrainedModelExportJobsPaginator.d.ts +7 -0
  91. package/dist-types/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.d.ts +7 -0
  92. package/dist-types/pagination/ListCollaborationTrainedModelsPaginator.d.ts +7 -0
  93. package/dist-types/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.d.ts +7 -0
  94. package/dist-types/pagination/ListConfiguredModelAlgorithmsPaginator.d.ts +7 -0
  95. package/dist-types/pagination/ListMLInputChannelsPaginator.d.ts +7 -0
  96. package/dist-types/pagination/ListTrainedModelInferenceJobsPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListTrainedModelsPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +10 -0
  99. package/dist-types/protocols/Aws_restJson1.d.ts +297 -0
  100. package/dist-types/ts3.4/CleanRoomsML.d.ts +610 -0
  101. package/dist-types/ts3.4/CleanRoomsMLClient.d.ts +198 -0
  102. package/dist-types/ts3.4/commands/CancelTrainedModelCommand.d.ts +46 -0
  103. package/dist-types/ts3.4/commands/CancelTrainedModelInferenceJobCommand.d.ts +47 -0
  104. package/dist-types/ts3.4/commands/CreateConfiguredModelAlgorithmAssociationCommand.d.ts +51 -0
  105. package/dist-types/ts3.4/commands/CreateConfiguredModelAlgorithmCommand.d.ts +51 -0
  106. package/dist-types/ts3.4/commands/CreateMLInputChannelCommand.d.ts +51 -0
  107. package/dist-types/ts3.4/commands/CreateTrainedModelCommand.d.ts +51 -0
  108. package/dist-types/ts3.4/commands/DeleteConfiguredModelAlgorithmAssociationCommand.d.ts +47 -0
  109. package/dist-types/ts3.4/commands/DeleteConfiguredModelAlgorithmCommand.d.ts +47 -0
  110. package/dist-types/ts3.4/commands/DeleteMLConfigurationCommand.d.ts +46 -0
  111. package/dist-types/ts3.4/commands/DeleteMLInputChannelDataCommand.d.ts +47 -0
  112. package/dist-types/ts3.4/commands/DeleteTrainedModelOutputCommand.d.ts +47 -0
  113. package/dist-types/ts3.4/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.d.ts +51 -0
  114. package/dist-types/ts3.4/commands/GetCollaborationMLInputChannelCommand.d.ts +51 -0
  115. package/dist-types/ts3.4/commands/GetCollaborationTrainedModelCommand.d.ts +51 -0
  116. package/dist-types/ts3.4/commands/GetConfiguredModelAlgorithmAssociationCommand.d.ts +51 -0
  117. package/dist-types/ts3.4/commands/GetConfiguredModelAlgorithmCommand.d.ts +51 -0
  118. package/dist-types/ts3.4/commands/GetMLConfigurationCommand.d.ts +51 -0
  119. package/dist-types/ts3.4/commands/GetMLInputChannelCommand.d.ts +51 -0
  120. package/dist-types/ts3.4/commands/GetTrainedModelCommand.d.ts +50 -0
  121. package/dist-types/ts3.4/commands/GetTrainedModelInferenceJobCommand.d.ts +51 -0
  122. package/dist-types/ts3.4/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.d.ts +51 -0
  123. package/dist-types/ts3.4/commands/ListCollaborationMLInputChannelsCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/ListCollaborationTrainedModelExportJobsCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/ListCollaborationTrainedModelInferenceJobsCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/ListCollaborationTrainedModelsCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/ListConfiguredModelAlgorithmAssociationsCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/ListConfiguredModelAlgorithmsCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/ListMLInputChannelsCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/ListTrainedModelInferenceJobsCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/ListTrainedModelsCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/PutMLConfigurationCommand.d.ts +46 -0
  133. package/dist-types/ts3.4/commands/StartTrainedModelExportJobCommand.d.ts +47 -0
  134. package/dist-types/ts3.4/commands/StartTrainedModelInferenceJobCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/index.d.ts +33 -0
  136. package/dist-types/ts3.4/models/models_0.d.ts +938 -0
  137. package/dist-types/ts3.4/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.d.ts +11 -0
  138. package/dist-types/ts3.4/pagination/ListCollaborationMLInputChannelsPaginator.d.ts +11 -0
  139. package/dist-types/ts3.4/pagination/ListCollaborationTrainedModelExportJobsPaginator.d.ts +11 -0
  140. package/dist-types/ts3.4/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.d.ts +11 -0
  141. package/dist-types/ts3.4/pagination/ListCollaborationTrainedModelsPaginator.d.ts +11 -0
  142. package/dist-types/ts3.4/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.d.ts +11 -0
  143. package/dist-types/ts3.4/pagination/ListConfiguredModelAlgorithmsPaginator.d.ts +11 -0
  144. package/dist-types/ts3.4/pagination/ListMLInputChannelsPaginator.d.ts +11 -0
  145. package/dist-types/ts3.4/pagination/ListTrainedModelInferenceJobsPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListTrainedModelsPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/index.d.ts +10 -0
  148. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +396 -0
  149. package/package.json +6 -6
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import { DeleteConfiguredModelAlgorithmRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteConfiguredModelAlgorithmCommandInput
12
+ extends DeleteConfiguredModelAlgorithmRequest {}
13
+ export interface DeleteConfiguredModelAlgorithmCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DeleteConfiguredModelAlgorithmCommand_base: {
16
+ new (
17
+ input: DeleteConfiguredModelAlgorithmCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteConfiguredModelAlgorithmCommandInput,
20
+ DeleteConfiguredModelAlgorithmCommandOutput,
21
+ CleanRoomsMLClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: DeleteConfiguredModelAlgorithmCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteConfiguredModelAlgorithmCommandInput,
29
+ DeleteConfiguredModelAlgorithmCommandOutput,
30
+ CleanRoomsMLClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteConfiguredModelAlgorithmCommand extends DeleteConfiguredModelAlgorithmCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteConfiguredModelAlgorithmRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DeleteConfiguredModelAlgorithmCommandInput;
44
+ output: DeleteConfiguredModelAlgorithmCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,46 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import { DeleteMLConfigurationRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteMLConfigurationCommandInput
12
+ extends DeleteMLConfigurationRequest {}
13
+ export interface DeleteMLConfigurationCommandOutput extends __MetadataBearer {}
14
+ declare const DeleteMLConfigurationCommand_base: {
15
+ new (
16
+ input: DeleteMLConfigurationCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteMLConfigurationCommandInput,
19
+ DeleteMLConfigurationCommandOutput,
20
+ CleanRoomsMLClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: DeleteMLConfigurationCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeleteMLConfigurationCommandInput,
28
+ DeleteMLConfigurationCommandOutput,
29
+ CleanRoomsMLClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class DeleteMLConfigurationCommand extends DeleteMLConfigurationCommand_base {
36
+ protected static __types: {
37
+ api: {
38
+ input: DeleteMLConfigurationRequest;
39
+ output: {};
40
+ };
41
+ sdk: {
42
+ input: DeleteMLConfigurationCommandInput;
43
+ output: DeleteMLConfigurationCommandOutput;
44
+ };
45
+ };
46
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import { DeleteMLInputChannelDataRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteMLInputChannelDataCommandInput
12
+ extends DeleteMLInputChannelDataRequest {}
13
+ export interface DeleteMLInputChannelDataCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DeleteMLInputChannelDataCommand_base: {
16
+ new (
17
+ input: DeleteMLInputChannelDataCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteMLInputChannelDataCommandInput,
20
+ DeleteMLInputChannelDataCommandOutput,
21
+ CleanRoomsMLClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: DeleteMLInputChannelDataCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteMLInputChannelDataCommandInput,
29
+ DeleteMLInputChannelDataCommandOutput,
30
+ CleanRoomsMLClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteMLInputChannelDataCommand extends DeleteMLInputChannelDataCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteMLInputChannelDataRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DeleteMLInputChannelDataCommandInput;
44
+ output: DeleteMLInputChannelDataCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import { DeleteTrainedModelOutputRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteTrainedModelOutputCommandInput
12
+ extends DeleteTrainedModelOutputRequest {}
13
+ export interface DeleteTrainedModelOutputCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DeleteTrainedModelOutputCommand_base: {
16
+ new (
17
+ input: DeleteTrainedModelOutputCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteTrainedModelOutputCommandInput,
20
+ DeleteTrainedModelOutputCommandOutput,
21
+ CleanRoomsMLClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: DeleteTrainedModelOutputCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteTrainedModelOutputCommandInput,
29
+ DeleteTrainedModelOutputCommandOutput,
30
+ CleanRoomsMLClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteTrainedModelOutputCommand extends DeleteTrainedModelOutputCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteTrainedModelOutputRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DeleteTrainedModelOutputCommandInput;
44
+ output: DeleteTrainedModelOutputCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import {
9
+ GetCollaborationConfiguredModelAlgorithmAssociationRequest,
10
+ GetCollaborationConfiguredModelAlgorithmAssociationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetCollaborationConfiguredModelAlgorithmAssociationCommandInput
15
+ extends GetCollaborationConfiguredModelAlgorithmAssociationRequest {}
16
+ export interface GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput
17
+ extends GetCollaborationConfiguredModelAlgorithmAssociationResponse,
18
+ __MetadataBearer {}
19
+ declare const GetCollaborationConfiguredModelAlgorithmAssociationCommand_base: {
20
+ new (
21
+ input: GetCollaborationConfiguredModelAlgorithmAssociationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetCollaborationConfiguredModelAlgorithmAssociationCommandInput,
24
+ GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput,
25
+ CleanRoomsMLClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetCollaborationConfiguredModelAlgorithmAssociationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetCollaborationConfiguredModelAlgorithmAssociationCommandInput,
33
+ GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput,
34
+ CleanRoomsMLClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetCollaborationConfiguredModelAlgorithmAssociationCommand extends GetCollaborationConfiguredModelAlgorithmAssociationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetCollaborationConfiguredModelAlgorithmAssociationRequest;
44
+ output: GetCollaborationConfiguredModelAlgorithmAssociationResponse;
45
+ };
46
+ sdk: {
47
+ input: GetCollaborationConfiguredModelAlgorithmAssociationCommandInput;
48
+ output: GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import {
9
+ GetCollaborationMLInputChannelRequest,
10
+ GetCollaborationMLInputChannelResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetCollaborationMLInputChannelCommandInput
15
+ extends GetCollaborationMLInputChannelRequest {}
16
+ export interface GetCollaborationMLInputChannelCommandOutput
17
+ extends GetCollaborationMLInputChannelResponse,
18
+ __MetadataBearer {}
19
+ declare const GetCollaborationMLInputChannelCommand_base: {
20
+ new (
21
+ input: GetCollaborationMLInputChannelCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetCollaborationMLInputChannelCommandInput,
24
+ GetCollaborationMLInputChannelCommandOutput,
25
+ CleanRoomsMLClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetCollaborationMLInputChannelCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetCollaborationMLInputChannelCommandInput,
33
+ GetCollaborationMLInputChannelCommandOutput,
34
+ CleanRoomsMLClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetCollaborationMLInputChannelCommand extends GetCollaborationMLInputChannelCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetCollaborationMLInputChannelRequest;
44
+ output: GetCollaborationMLInputChannelResponse;
45
+ };
46
+ sdk: {
47
+ input: GetCollaborationMLInputChannelCommandInput;
48
+ output: GetCollaborationMLInputChannelCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import {
9
+ GetCollaborationTrainedModelRequest,
10
+ GetCollaborationTrainedModelResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetCollaborationTrainedModelCommandInput
15
+ extends GetCollaborationTrainedModelRequest {}
16
+ export interface GetCollaborationTrainedModelCommandOutput
17
+ extends GetCollaborationTrainedModelResponse,
18
+ __MetadataBearer {}
19
+ declare const GetCollaborationTrainedModelCommand_base: {
20
+ new (
21
+ input: GetCollaborationTrainedModelCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetCollaborationTrainedModelCommandInput,
24
+ GetCollaborationTrainedModelCommandOutput,
25
+ CleanRoomsMLClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetCollaborationTrainedModelCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetCollaborationTrainedModelCommandInput,
33
+ GetCollaborationTrainedModelCommandOutput,
34
+ CleanRoomsMLClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetCollaborationTrainedModelCommand extends GetCollaborationTrainedModelCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetCollaborationTrainedModelRequest;
44
+ output: GetCollaborationTrainedModelResponse;
45
+ };
46
+ sdk: {
47
+ input: GetCollaborationTrainedModelCommandInput;
48
+ output: GetCollaborationTrainedModelCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import {
9
+ GetConfiguredModelAlgorithmAssociationRequest,
10
+ GetConfiguredModelAlgorithmAssociationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetConfiguredModelAlgorithmAssociationCommandInput
15
+ extends GetConfiguredModelAlgorithmAssociationRequest {}
16
+ export interface GetConfiguredModelAlgorithmAssociationCommandOutput
17
+ extends GetConfiguredModelAlgorithmAssociationResponse,
18
+ __MetadataBearer {}
19
+ declare const GetConfiguredModelAlgorithmAssociationCommand_base: {
20
+ new (
21
+ input: GetConfiguredModelAlgorithmAssociationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetConfiguredModelAlgorithmAssociationCommandInput,
24
+ GetConfiguredModelAlgorithmAssociationCommandOutput,
25
+ CleanRoomsMLClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetConfiguredModelAlgorithmAssociationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetConfiguredModelAlgorithmAssociationCommandInput,
33
+ GetConfiguredModelAlgorithmAssociationCommandOutput,
34
+ CleanRoomsMLClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetConfiguredModelAlgorithmAssociationCommand extends GetConfiguredModelAlgorithmAssociationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetConfiguredModelAlgorithmAssociationRequest;
44
+ output: GetConfiguredModelAlgorithmAssociationResponse;
45
+ };
46
+ sdk: {
47
+ input: GetConfiguredModelAlgorithmAssociationCommandInput;
48
+ output: GetConfiguredModelAlgorithmAssociationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import {
9
+ GetConfiguredModelAlgorithmRequest,
10
+ GetConfiguredModelAlgorithmResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetConfiguredModelAlgorithmCommandInput
15
+ extends GetConfiguredModelAlgorithmRequest {}
16
+ export interface GetConfiguredModelAlgorithmCommandOutput
17
+ extends GetConfiguredModelAlgorithmResponse,
18
+ __MetadataBearer {}
19
+ declare const GetConfiguredModelAlgorithmCommand_base: {
20
+ new (
21
+ input: GetConfiguredModelAlgorithmCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetConfiguredModelAlgorithmCommandInput,
24
+ GetConfiguredModelAlgorithmCommandOutput,
25
+ CleanRoomsMLClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetConfiguredModelAlgorithmCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetConfiguredModelAlgorithmCommandInput,
33
+ GetConfiguredModelAlgorithmCommandOutput,
34
+ CleanRoomsMLClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetConfiguredModelAlgorithmCommand extends GetConfiguredModelAlgorithmCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetConfiguredModelAlgorithmRequest;
44
+ output: GetConfiguredModelAlgorithmResponse;
45
+ };
46
+ sdk: {
47
+ input: GetConfiguredModelAlgorithmCommandInput;
48
+ output: GetConfiguredModelAlgorithmCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import {
9
+ GetMLConfigurationRequest,
10
+ GetMLConfigurationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetMLConfigurationCommandInput
15
+ extends GetMLConfigurationRequest {}
16
+ export interface GetMLConfigurationCommandOutput
17
+ extends GetMLConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const GetMLConfigurationCommand_base: {
20
+ new (
21
+ input: GetMLConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetMLConfigurationCommandInput,
24
+ GetMLConfigurationCommandOutput,
25
+ CleanRoomsMLClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetMLConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetMLConfigurationCommandInput,
33
+ GetMLConfigurationCommandOutput,
34
+ CleanRoomsMLClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetMLConfigurationCommand extends GetMLConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetMLConfigurationRequest;
44
+ output: GetMLConfigurationResponse;
45
+ };
46
+ sdk: {
47
+ input: GetMLConfigurationCommandInput;
48
+ output: GetMLConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import {
9
+ GetMLInputChannelRequest,
10
+ GetMLInputChannelResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetMLInputChannelCommandInput
15
+ extends GetMLInputChannelRequest {}
16
+ export interface GetMLInputChannelCommandOutput
17
+ extends GetMLInputChannelResponse,
18
+ __MetadataBearer {}
19
+ declare const GetMLInputChannelCommand_base: {
20
+ new (
21
+ input: GetMLInputChannelCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetMLInputChannelCommandInput,
24
+ GetMLInputChannelCommandOutput,
25
+ CleanRoomsMLClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetMLInputChannelCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetMLInputChannelCommandInput,
33
+ GetMLInputChannelCommandOutput,
34
+ CleanRoomsMLClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetMLInputChannelCommand extends GetMLInputChannelCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetMLInputChannelRequest;
44
+ output: GetMLInputChannelResponse;
45
+ };
46
+ sdk: {
47
+ input: GetMLInputChannelCommandInput;
48
+ output: GetMLInputChannelCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import {
9
+ GetTrainedModelRequest,
10
+ GetTrainedModelResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTrainedModelCommandInput extends GetTrainedModelRequest {}
15
+ export interface GetTrainedModelCommandOutput
16
+ extends GetTrainedModelResponse,
17
+ __MetadataBearer {}
18
+ declare const GetTrainedModelCommand_base: {
19
+ new (
20
+ input: GetTrainedModelCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetTrainedModelCommandInput,
23
+ GetTrainedModelCommandOutput,
24
+ CleanRoomsMLClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: GetTrainedModelCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetTrainedModelCommandInput,
32
+ GetTrainedModelCommandOutput,
33
+ CleanRoomsMLClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetTrainedModelCommand extends GetTrainedModelCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetTrainedModelRequest;
43
+ output: GetTrainedModelResponse;
44
+ };
45
+ sdk: {
46
+ input: GetTrainedModelCommandInput;
47
+ output: GetTrainedModelCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsMLClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsMLClient";
8
+ import {
9
+ GetTrainedModelInferenceJobRequest,
10
+ GetTrainedModelInferenceJobResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTrainedModelInferenceJobCommandInput
15
+ extends GetTrainedModelInferenceJobRequest {}
16
+ export interface GetTrainedModelInferenceJobCommandOutput
17
+ extends GetTrainedModelInferenceJobResponse,
18
+ __MetadataBearer {}
19
+ declare const GetTrainedModelInferenceJobCommand_base: {
20
+ new (
21
+ input: GetTrainedModelInferenceJobCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetTrainedModelInferenceJobCommandInput,
24
+ GetTrainedModelInferenceJobCommandOutput,
25
+ CleanRoomsMLClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetTrainedModelInferenceJobCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetTrainedModelInferenceJobCommandInput,
33
+ GetTrainedModelInferenceJobCommandOutput,
34
+ CleanRoomsMLClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetTrainedModelInferenceJobCommand extends GetTrainedModelInferenceJobCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetTrainedModelInferenceJobRequest;
44
+ output: GetTrainedModelInferenceJobResponse;
45
+ };
46
+ sdk: {
47
+ input: GetTrainedModelInferenceJobCommandInput;
48
+ output: GetTrainedModelInferenceJobCommandOutput;
49
+ };
50
+ };
51
+ }