@aws-sdk/client-cleanroomsml 3.686.0 → 3.691.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 +3512 -256
  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 +1028 -84
  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 +7 -7
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput, ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput } from "../commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand";
3
+ import { CleanRoomsMLPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCollaborationConfiguredModelAlgorithmAssociations: (config: CleanRoomsMLPaginationConfiguration, input: ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput, ...rest: any[]) => Paginator<ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCollaborationMLInputChannelsCommandInput, ListCollaborationMLInputChannelsCommandOutput } from "../commands/ListCollaborationMLInputChannelsCommand";
3
+ import { CleanRoomsMLPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCollaborationMLInputChannels: (config: CleanRoomsMLPaginationConfiguration, input: ListCollaborationMLInputChannelsCommandInput, ...rest: any[]) => Paginator<ListCollaborationMLInputChannelsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCollaborationTrainedModelExportJobsCommandInput, ListCollaborationTrainedModelExportJobsCommandOutput } from "../commands/ListCollaborationTrainedModelExportJobsCommand";
3
+ import { CleanRoomsMLPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCollaborationTrainedModelExportJobs: (config: CleanRoomsMLPaginationConfiguration, input: ListCollaborationTrainedModelExportJobsCommandInput, ...rest: any[]) => Paginator<ListCollaborationTrainedModelExportJobsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCollaborationTrainedModelInferenceJobsCommandInput, ListCollaborationTrainedModelInferenceJobsCommandOutput } from "../commands/ListCollaborationTrainedModelInferenceJobsCommand";
3
+ import { CleanRoomsMLPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCollaborationTrainedModelInferenceJobs: (config: CleanRoomsMLPaginationConfiguration, input: ListCollaborationTrainedModelInferenceJobsCommandInput, ...rest: any[]) => Paginator<ListCollaborationTrainedModelInferenceJobsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCollaborationTrainedModelsCommandInput, ListCollaborationTrainedModelsCommandOutput } from "../commands/ListCollaborationTrainedModelsCommand";
3
+ import { CleanRoomsMLPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCollaborationTrainedModels: (config: CleanRoomsMLPaginationConfiguration, input: ListCollaborationTrainedModelsCommandInput, ...rest: any[]) => Paginator<ListCollaborationTrainedModelsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListConfiguredModelAlgorithmAssociationsCommandInput, ListConfiguredModelAlgorithmAssociationsCommandOutput } from "../commands/ListConfiguredModelAlgorithmAssociationsCommand";
3
+ import { CleanRoomsMLPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListConfiguredModelAlgorithmAssociations: (config: CleanRoomsMLPaginationConfiguration, input: ListConfiguredModelAlgorithmAssociationsCommandInput, ...rest: any[]) => Paginator<ListConfiguredModelAlgorithmAssociationsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListConfiguredModelAlgorithmsCommandInput, ListConfiguredModelAlgorithmsCommandOutput } from "../commands/ListConfiguredModelAlgorithmsCommand";
3
+ import { CleanRoomsMLPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListConfiguredModelAlgorithms: (config: CleanRoomsMLPaginationConfiguration, input: ListConfiguredModelAlgorithmsCommandInput, ...rest: any[]) => Paginator<ListConfiguredModelAlgorithmsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListMLInputChannelsCommandInput, ListMLInputChannelsCommandOutput } from "../commands/ListMLInputChannelsCommand";
3
+ import { CleanRoomsMLPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListMLInputChannels: (config: CleanRoomsMLPaginationConfiguration, input: ListMLInputChannelsCommandInput, ...rest: any[]) => Paginator<ListMLInputChannelsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListTrainedModelInferenceJobsCommandInput, ListTrainedModelInferenceJobsCommandOutput } from "../commands/ListTrainedModelInferenceJobsCommand";
3
+ import { CleanRoomsMLPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListTrainedModelInferenceJobs: (config: CleanRoomsMLPaginationConfiguration, input: ListTrainedModelInferenceJobsCommandInput, ...rest: any[]) => Paginator<ListTrainedModelInferenceJobsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListTrainedModelsCommandInput, ListTrainedModelsCommandOutput } from "../commands/ListTrainedModelsCommand";
3
+ import { CleanRoomsMLPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListTrainedModels: (config: CleanRoomsMLPaginationConfiguration, input: ListTrainedModelsCommandInput, ...rest: any[]) => Paginator<ListTrainedModelsCommandOutput>;
@@ -2,5 +2,15 @@ export * from "./Interfaces";
2
2
  export * from "./ListAudienceExportJobsPaginator";
3
3
  export * from "./ListAudienceGenerationJobsPaginator";
4
4
  export * from "./ListAudienceModelsPaginator";
5
+ export * from "./ListCollaborationConfiguredModelAlgorithmAssociationsPaginator";
6
+ export * from "./ListCollaborationMLInputChannelsPaginator";
7
+ export * from "./ListCollaborationTrainedModelExportJobsPaginator";
8
+ export * from "./ListCollaborationTrainedModelInferenceJobsPaginator";
9
+ export * from "./ListCollaborationTrainedModelsPaginator";
5
10
  export * from "./ListConfiguredAudienceModelsPaginator";
11
+ export * from "./ListConfiguredModelAlgorithmAssociationsPaginator";
12
+ export * from "./ListConfiguredModelAlgorithmsPaginator";
13
+ export * from "./ListMLInputChannelsPaginator";
14
+ export * from "./ListTrainedModelInferenceJobsPaginator";
15
+ export * from "./ListTrainedModelsPaginator";
6
16
  export * from "./ListTrainingDatasetsPaginator";
@@ -1,30 +1,71 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CancelTrainedModelCommandInput, CancelTrainedModelCommandOutput } from "../commands/CancelTrainedModelCommand";
4
+ import { CancelTrainedModelInferenceJobCommandInput, CancelTrainedModelInferenceJobCommandOutput } from "../commands/CancelTrainedModelInferenceJobCommand";
3
5
  import { CreateAudienceModelCommandInput, CreateAudienceModelCommandOutput } from "../commands/CreateAudienceModelCommand";
4
6
  import { CreateConfiguredAudienceModelCommandInput, CreateConfiguredAudienceModelCommandOutput } from "../commands/CreateConfiguredAudienceModelCommand";
7
+ import { CreateConfiguredModelAlgorithmAssociationCommandInput, CreateConfiguredModelAlgorithmAssociationCommandOutput } from "../commands/CreateConfiguredModelAlgorithmAssociationCommand";
8
+ import { CreateConfiguredModelAlgorithmCommandInput, CreateConfiguredModelAlgorithmCommandOutput } from "../commands/CreateConfiguredModelAlgorithmCommand";
9
+ import { CreateMLInputChannelCommandInput, CreateMLInputChannelCommandOutput } from "../commands/CreateMLInputChannelCommand";
10
+ import { CreateTrainedModelCommandInput, CreateTrainedModelCommandOutput } from "../commands/CreateTrainedModelCommand";
5
11
  import { CreateTrainingDatasetCommandInput, CreateTrainingDatasetCommandOutput } from "../commands/CreateTrainingDatasetCommand";
6
12
  import { DeleteAudienceGenerationJobCommandInput, DeleteAudienceGenerationJobCommandOutput } from "../commands/DeleteAudienceGenerationJobCommand";
7
13
  import { DeleteAudienceModelCommandInput, DeleteAudienceModelCommandOutput } from "../commands/DeleteAudienceModelCommand";
8
14
  import { DeleteConfiguredAudienceModelCommandInput, DeleteConfiguredAudienceModelCommandOutput } from "../commands/DeleteConfiguredAudienceModelCommand";
9
15
  import { DeleteConfiguredAudienceModelPolicyCommandInput, DeleteConfiguredAudienceModelPolicyCommandOutput } from "../commands/DeleteConfiguredAudienceModelPolicyCommand";
16
+ import { DeleteConfiguredModelAlgorithmAssociationCommandInput, DeleteConfiguredModelAlgorithmAssociationCommandOutput } from "../commands/DeleteConfiguredModelAlgorithmAssociationCommand";
17
+ import { DeleteConfiguredModelAlgorithmCommandInput, DeleteConfiguredModelAlgorithmCommandOutput } from "../commands/DeleteConfiguredModelAlgorithmCommand";
18
+ import { DeleteMLConfigurationCommandInput, DeleteMLConfigurationCommandOutput } from "../commands/DeleteMLConfigurationCommand";
19
+ import { DeleteMLInputChannelDataCommandInput, DeleteMLInputChannelDataCommandOutput } from "../commands/DeleteMLInputChannelDataCommand";
20
+ import { DeleteTrainedModelOutputCommandInput, DeleteTrainedModelOutputCommandOutput } from "../commands/DeleteTrainedModelOutputCommand";
10
21
  import { DeleteTrainingDatasetCommandInput, DeleteTrainingDatasetCommandOutput } from "../commands/DeleteTrainingDatasetCommand";
11
22
  import { GetAudienceGenerationJobCommandInput, GetAudienceGenerationJobCommandOutput } from "../commands/GetAudienceGenerationJobCommand";
12
23
  import { GetAudienceModelCommandInput, GetAudienceModelCommandOutput } from "../commands/GetAudienceModelCommand";
24
+ import { GetCollaborationConfiguredModelAlgorithmAssociationCommandInput, GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput } from "../commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand";
25
+ import { GetCollaborationMLInputChannelCommandInput, GetCollaborationMLInputChannelCommandOutput } from "../commands/GetCollaborationMLInputChannelCommand";
26
+ import { GetCollaborationTrainedModelCommandInput, GetCollaborationTrainedModelCommandOutput } from "../commands/GetCollaborationTrainedModelCommand";
13
27
  import { GetConfiguredAudienceModelCommandInput, GetConfiguredAudienceModelCommandOutput } from "../commands/GetConfiguredAudienceModelCommand";
14
28
  import { GetConfiguredAudienceModelPolicyCommandInput, GetConfiguredAudienceModelPolicyCommandOutput } from "../commands/GetConfiguredAudienceModelPolicyCommand";
29
+ import { GetConfiguredModelAlgorithmAssociationCommandInput, GetConfiguredModelAlgorithmAssociationCommandOutput } from "../commands/GetConfiguredModelAlgorithmAssociationCommand";
30
+ import { GetConfiguredModelAlgorithmCommandInput, GetConfiguredModelAlgorithmCommandOutput } from "../commands/GetConfiguredModelAlgorithmCommand";
31
+ import { GetMLConfigurationCommandInput, GetMLConfigurationCommandOutput } from "../commands/GetMLConfigurationCommand";
32
+ import { GetMLInputChannelCommandInput, GetMLInputChannelCommandOutput } from "../commands/GetMLInputChannelCommand";
33
+ import { GetTrainedModelCommandInput, GetTrainedModelCommandOutput } from "../commands/GetTrainedModelCommand";
34
+ import { GetTrainedModelInferenceJobCommandInput, GetTrainedModelInferenceJobCommandOutput } from "../commands/GetTrainedModelInferenceJobCommand";
15
35
  import { GetTrainingDatasetCommandInput, GetTrainingDatasetCommandOutput } from "../commands/GetTrainingDatasetCommand";
16
36
  import { ListAudienceExportJobsCommandInput, ListAudienceExportJobsCommandOutput } from "../commands/ListAudienceExportJobsCommand";
17
37
  import { ListAudienceGenerationJobsCommandInput, ListAudienceGenerationJobsCommandOutput } from "../commands/ListAudienceGenerationJobsCommand";
18
38
  import { ListAudienceModelsCommandInput, ListAudienceModelsCommandOutput } from "../commands/ListAudienceModelsCommand";
39
+ import { ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput, ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput } from "../commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand";
40
+ import { ListCollaborationMLInputChannelsCommandInput, ListCollaborationMLInputChannelsCommandOutput } from "../commands/ListCollaborationMLInputChannelsCommand";
41
+ import { ListCollaborationTrainedModelExportJobsCommandInput, ListCollaborationTrainedModelExportJobsCommandOutput } from "../commands/ListCollaborationTrainedModelExportJobsCommand";
42
+ import { ListCollaborationTrainedModelInferenceJobsCommandInput, ListCollaborationTrainedModelInferenceJobsCommandOutput } from "../commands/ListCollaborationTrainedModelInferenceJobsCommand";
43
+ import { ListCollaborationTrainedModelsCommandInput, ListCollaborationTrainedModelsCommandOutput } from "../commands/ListCollaborationTrainedModelsCommand";
19
44
  import { ListConfiguredAudienceModelsCommandInput, ListConfiguredAudienceModelsCommandOutput } from "../commands/ListConfiguredAudienceModelsCommand";
45
+ import { ListConfiguredModelAlgorithmAssociationsCommandInput, ListConfiguredModelAlgorithmAssociationsCommandOutput } from "../commands/ListConfiguredModelAlgorithmAssociationsCommand";
46
+ import { ListConfiguredModelAlgorithmsCommandInput, ListConfiguredModelAlgorithmsCommandOutput } from "../commands/ListConfiguredModelAlgorithmsCommand";
47
+ import { ListMLInputChannelsCommandInput, ListMLInputChannelsCommandOutput } from "../commands/ListMLInputChannelsCommand";
20
48
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
49
+ import { ListTrainedModelInferenceJobsCommandInput, ListTrainedModelInferenceJobsCommandOutput } from "../commands/ListTrainedModelInferenceJobsCommand";
50
+ import { ListTrainedModelsCommandInput, ListTrainedModelsCommandOutput } from "../commands/ListTrainedModelsCommand";
21
51
  import { ListTrainingDatasetsCommandInput, ListTrainingDatasetsCommandOutput } from "../commands/ListTrainingDatasetsCommand";
22
52
  import { PutConfiguredAudienceModelPolicyCommandInput, PutConfiguredAudienceModelPolicyCommandOutput } from "../commands/PutConfiguredAudienceModelPolicyCommand";
53
+ import { PutMLConfigurationCommandInput, PutMLConfigurationCommandOutput } from "../commands/PutMLConfigurationCommand";
23
54
  import { StartAudienceExportJobCommandInput, StartAudienceExportJobCommandOutput } from "../commands/StartAudienceExportJobCommand";
24
55
  import { StartAudienceGenerationJobCommandInput, StartAudienceGenerationJobCommandOutput } from "../commands/StartAudienceGenerationJobCommand";
56
+ import { StartTrainedModelExportJobCommandInput, StartTrainedModelExportJobCommandOutput } from "../commands/StartTrainedModelExportJobCommand";
57
+ import { StartTrainedModelInferenceJobCommandInput, StartTrainedModelInferenceJobCommandOutput } from "../commands/StartTrainedModelInferenceJobCommand";
25
58
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
26
59
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
27
60
  import { UpdateConfiguredAudienceModelCommandInput, UpdateConfiguredAudienceModelCommandOutput } from "../commands/UpdateConfiguredAudienceModelCommand";
61
+ /**
62
+ * serializeAws_restJson1CancelTrainedModelCommand
63
+ */
64
+ export declare const se_CancelTrainedModelCommand: (input: CancelTrainedModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
+ /**
66
+ * serializeAws_restJson1CancelTrainedModelInferenceJobCommand
67
+ */
68
+ export declare const se_CancelTrainedModelInferenceJobCommand: (input: CancelTrainedModelInferenceJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
69
  /**
29
70
  * serializeAws_restJson1CreateAudienceModelCommand
30
71
  */
@@ -33,6 +74,22 @@ export declare const se_CreateAudienceModelCommand: (input: CreateAudienceModelC
33
74
  * serializeAws_restJson1CreateConfiguredAudienceModelCommand
34
75
  */
35
76
  export declare const se_CreateConfiguredAudienceModelCommand: (input: CreateConfiguredAudienceModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
+ /**
78
+ * serializeAws_restJson1CreateConfiguredModelAlgorithmCommand
79
+ */
80
+ export declare const se_CreateConfiguredModelAlgorithmCommand: (input: CreateConfiguredModelAlgorithmCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
+ /**
82
+ * serializeAws_restJson1CreateConfiguredModelAlgorithmAssociationCommand
83
+ */
84
+ export declare const se_CreateConfiguredModelAlgorithmAssociationCommand: (input: CreateConfiguredModelAlgorithmAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
+ /**
86
+ * serializeAws_restJson1CreateMLInputChannelCommand
87
+ */
88
+ export declare const se_CreateMLInputChannelCommand: (input: CreateMLInputChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
+ /**
90
+ * serializeAws_restJson1CreateTrainedModelCommand
91
+ */
92
+ export declare const se_CreateTrainedModelCommand: (input: CreateTrainedModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
93
  /**
37
94
  * serializeAws_restJson1CreateTrainingDatasetCommand
38
95
  */
@@ -53,6 +110,26 @@ export declare const se_DeleteConfiguredAudienceModelCommand: (input: DeleteConf
53
110
  * serializeAws_restJson1DeleteConfiguredAudienceModelPolicyCommand
54
111
  */
55
112
  export declare const se_DeleteConfiguredAudienceModelPolicyCommand: (input: DeleteConfiguredAudienceModelPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
+ /**
114
+ * serializeAws_restJson1DeleteConfiguredModelAlgorithmCommand
115
+ */
116
+ export declare const se_DeleteConfiguredModelAlgorithmCommand: (input: DeleteConfiguredModelAlgorithmCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
117
+ /**
118
+ * serializeAws_restJson1DeleteConfiguredModelAlgorithmAssociationCommand
119
+ */
120
+ export declare const se_DeleteConfiguredModelAlgorithmAssociationCommand: (input: DeleteConfiguredModelAlgorithmAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
121
+ /**
122
+ * serializeAws_restJson1DeleteMLConfigurationCommand
123
+ */
124
+ export declare const se_DeleteMLConfigurationCommand: (input: DeleteMLConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
125
+ /**
126
+ * serializeAws_restJson1DeleteMLInputChannelDataCommand
127
+ */
128
+ export declare const se_DeleteMLInputChannelDataCommand: (input: DeleteMLInputChannelDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
129
+ /**
130
+ * serializeAws_restJson1DeleteTrainedModelOutputCommand
131
+ */
132
+ export declare const se_DeleteTrainedModelOutputCommand: (input: DeleteTrainedModelOutputCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
133
  /**
57
134
  * serializeAws_restJson1DeleteTrainingDatasetCommand
58
135
  */
@@ -65,6 +142,18 @@ export declare const se_GetAudienceGenerationJobCommand: (input: GetAudienceGene
65
142
  * serializeAws_restJson1GetAudienceModelCommand
66
143
  */
67
144
  export declare const se_GetAudienceModelCommand: (input: GetAudienceModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
145
+ /**
146
+ * serializeAws_restJson1GetCollaborationConfiguredModelAlgorithmAssociationCommand
147
+ */
148
+ export declare const se_GetCollaborationConfiguredModelAlgorithmAssociationCommand: (input: GetCollaborationConfiguredModelAlgorithmAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
149
+ /**
150
+ * serializeAws_restJson1GetCollaborationMLInputChannelCommand
151
+ */
152
+ export declare const se_GetCollaborationMLInputChannelCommand: (input: GetCollaborationMLInputChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
153
+ /**
154
+ * serializeAws_restJson1GetCollaborationTrainedModelCommand
155
+ */
156
+ export declare const se_GetCollaborationTrainedModelCommand: (input: GetCollaborationTrainedModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
157
  /**
69
158
  * serializeAws_restJson1GetConfiguredAudienceModelCommand
70
159
  */
@@ -73,6 +162,30 @@ export declare const se_GetConfiguredAudienceModelCommand: (input: GetConfigured
73
162
  * serializeAws_restJson1GetConfiguredAudienceModelPolicyCommand
74
163
  */
75
164
  export declare const se_GetConfiguredAudienceModelPolicyCommand: (input: GetConfiguredAudienceModelPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
165
+ /**
166
+ * serializeAws_restJson1GetConfiguredModelAlgorithmCommand
167
+ */
168
+ export declare const se_GetConfiguredModelAlgorithmCommand: (input: GetConfiguredModelAlgorithmCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
169
+ /**
170
+ * serializeAws_restJson1GetConfiguredModelAlgorithmAssociationCommand
171
+ */
172
+ export declare const se_GetConfiguredModelAlgorithmAssociationCommand: (input: GetConfiguredModelAlgorithmAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
173
+ /**
174
+ * serializeAws_restJson1GetMLConfigurationCommand
175
+ */
176
+ export declare const se_GetMLConfigurationCommand: (input: GetMLConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
177
+ /**
178
+ * serializeAws_restJson1GetMLInputChannelCommand
179
+ */
180
+ export declare const se_GetMLInputChannelCommand: (input: GetMLInputChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
181
+ /**
182
+ * serializeAws_restJson1GetTrainedModelCommand
183
+ */
184
+ export declare const se_GetTrainedModelCommand: (input: GetTrainedModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
185
+ /**
186
+ * serializeAws_restJson1GetTrainedModelInferenceJobCommand
187
+ */
188
+ export declare const se_GetTrainedModelInferenceJobCommand: (input: GetTrainedModelInferenceJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
189
  /**
77
190
  * serializeAws_restJson1GetTrainingDatasetCommand
78
191
  */
@@ -89,14 +202,54 @@ export declare const se_ListAudienceGenerationJobsCommand: (input: ListAudienceG
89
202
  * serializeAws_restJson1ListAudienceModelsCommand
90
203
  */
91
204
  export declare const se_ListAudienceModelsCommand: (input: ListAudienceModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
205
+ /**
206
+ * serializeAws_restJson1ListCollaborationConfiguredModelAlgorithmAssociationsCommand
207
+ */
208
+ export declare const se_ListCollaborationConfiguredModelAlgorithmAssociationsCommand: (input: ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
209
+ /**
210
+ * serializeAws_restJson1ListCollaborationMLInputChannelsCommand
211
+ */
212
+ export declare const se_ListCollaborationMLInputChannelsCommand: (input: ListCollaborationMLInputChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
213
+ /**
214
+ * serializeAws_restJson1ListCollaborationTrainedModelExportJobsCommand
215
+ */
216
+ export declare const se_ListCollaborationTrainedModelExportJobsCommand: (input: ListCollaborationTrainedModelExportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
217
+ /**
218
+ * serializeAws_restJson1ListCollaborationTrainedModelInferenceJobsCommand
219
+ */
220
+ export declare const se_ListCollaborationTrainedModelInferenceJobsCommand: (input: ListCollaborationTrainedModelInferenceJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
221
+ /**
222
+ * serializeAws_restJson1ListCollaborationTrainedModelsCommand
223
+ */
224
+ export declare const se_ListCollaborationTrainedModelsCommand: (input: ListCollaborationTrainedModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
92
225
  /**
93
226
  * serializeAws_restJson1ListConfiguredAudienceModelsCommand
94
227
  */
95
228
  export declare const se_ListConfiguredAudienceModelsCommand: (input: ListConfiguredAudienceModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
229
+ /**
230
+ * serializeAws_restJson1ListConfiguredModelAlgorithmAssociationsCommand
231
+ */
232
+ export declare const se_ListConfiguredModelAlgorithmAssociationsCommand: (input: ListConfiguredModelAlgorithmAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
233
+ /**
234
+ * serializeAws_restJson1ListConfiguredModelAlgorithmsCommand
235
+ */
236
+ export declare const se_ListConfiguredModelAlgorithmsCommand: (input: ListConfiguredModelAlgorithmsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
237
+ /**
238
+ * serializeAws_restJson1ListMLInputChannelsCommand
239
+ */
240
+ export declare const se_ListMLInputChannelsCommand: (input: ListMLInputChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
96
241
  /**
97
242
  * serializeAws_restJson1ListTagsForResourceCommand
98
243
  */
99
244
  export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
245
+ /**
246
+ * serializeAws_restJson1ListTrainedModelInferenceJobsCommand
247
+ */
248
+ export declare const se_ListTrainedModelInferenceJobsCommand: (input: ListTrainedModelInferenceJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
249
+ /**
250
+ * serializeAws_restJson1ListTrainedModelsCommand
251
+ */
252
+ export declare const se_ListTrainedModelsCommand: (input: ListTrainedModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
100
253
  /**
101
254
  * serializeAws_restJson1ListTrainingDatasetsCommand
102
255
  */
@@ -105,6 +258,10 @@ export declare const se_ListTrainingDatasetsCommand: (input: ListTrainingDataset
105
258
  * serializeAws_restJson1PutConfiguredAudienceModelPolicyCommand
106
259
  */
107
260
  export declare const se_PutConfiguredAudienceModelPolicyCommand: (input: PutConfiguredAudienceModelPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
261
+ /**
262
+ * serializeAws_restJson1PutMLConfigurationCommand
263
+ */
264
+ export declare const se_PutMLConfigurationCommand: (input: PutMLConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
265
  /**
109
266
  * serializeAws_restJson1StartAudienceExportJobCommand
110
267
  */
@@ -113,6 +270,14 @@ export declare const se_StartAudienceExportJobCommand: (input: StartAudienceExpo
113
270
  * serializeAws_restJson1StartAudienceGenerationJobCommand
114
271
  */
115
272
  export declare const se_StartAudienceGenerationJobCommand: (input: StartAudienceGenerationJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
273
+ /**
274
+ * serializeAws_restJson1StartTrainedModelExportJobCommand
275
+ */
276
+ export declare const se_StartTrainedModelExportJobCommand: (input: StartTrainedModelExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
277
+ /**
278
+ * serializeAws_restJson1StartTrainedModelInferenceJobCommand
279
+ */
280
+ export declare const se_StartTrainedModelInferenceJobCommand: (input: StartTrainedModelInferenceJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
116
281
  /**
117
282
  * serializeAws_restJson1TagResourceCommand
118
283
  */
@@ -125,6 +290,14 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
125
290
  * serializeAws_restJson1UpdateConfiguredAudienceModelCommand
126
291
  */
127
292
  export declare const se_UpdateConfiguredAudienceModelCommand: (input: UpdateConfiguredAudienceModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
293
+ /**
294
+ * deserializeAws_restJson1CancelTrainedModelCommand
295
+ */
296
+ export declare const de_CancelTrainedModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelTrainedModelCommandOutput>;
297
+ /**
298
+ * deserializeAws_restJson1CancelTrainedModelInferenceJobCommand
299
+ */
300
+ export declare const de_CancelTrainedModelInferenceJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelTrainedModelInferenceJobCommandOutput>;
128
301
  /**
129
302
  * deserializeAws_restJson1CreateAudienceModelCommand
130
303
  */
@@ -133,6 +306,22 @@ export declare const de_CreateAudienceModelCommand: (output: __HttpResponse, con
133
306
  * deserializeAws_restJson1CreateConfiguredAudienceModelCommand
134
307
  */
135
308
  export declare const de_CreateConfiguredAudienceModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfiguredAudienceModelCommandOutput>;
309
+ /**
310
+ * deserializeAws_restJson1CreateConfiguredModelAlgorithmCommand
311
+ */
312
+ export declare const de_CreateConfiguredModelAlgorithmCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfiguredModelAlgorithmCommandOutput>;
313
+ /**
314
+ * deserializeAws_restJson1CreateConfiguredModelAlgorithmAssociationCommand
315
+ */
316
+ export declare const de_CreateConfiguredModelAlgorithmAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfiguredModelAlgorithmAssociationCommandOutput>;
317
+ /**
318
+ * deserializeAws_restJson1CreateMLInputChannelCommand
319
+ */
320
+ export declare const de_CreateMLInputChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMLInputChannelCommandOutput>;
321
+ /**
322
+ * deserializeAws_restJson1CreateTrainedModelCommand
323
+ */
324
+ export declare const de_CreateTrainedModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTrainedModelCommandOutput>;
136
325
  /**
137
326
  * deserializeAws_restJson1CreateTrainingDatasetCommand
138
327
  */
@@ -153,6 +342,26 @@ export declare const de_DeleteConfiguredAudienceModelCommand: (output: __HttpRes
153
342
  * deserializeAws_restJson1DeleteConfiguredAudienceModelPolicyCommand
154
343
  */
155
344
  export declare const de_DeleteConfiguredAudienceModelPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfiguredAudienceModelPolicyCommandOutput>;
345
+ /**
346
+ * deserializeAws_restJson1DeleteConfiguredModelAlgorithmCommand
347
+ */
348
+ export declare const de_DeleteConfiguredModelAlgorithmCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfiguredModelAlgorithmCommandOutput>;
349
+ /**
350
+ * deserializeAws_restJson1DeleteConfiguredModelAlgorithmAssociationCommand
351
+ */
352
+ export declare const de_DeleteConfiguredModelAlgorithmAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfiguredModelAlgorithmAssociationCommandOutput>;
353
+ /**
354
+ * deserializeAws_restJson1DeleteMLConfigurationCommand
355
+ */
356
+ export declare const de_DeleteMLConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMLConfigurationCommandOutput>;
357
+ /**
358
+ * deserializeAws_restJson1DeleteMLInputChannelDataCommand
359
+ */
360
+ export declare const de_DeleteMLInputChannelDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMLInputChannelDataCommandOutput>;
361
+ /**
362
+ * deserializeAws_restJson1DeleteTrainedModelOutputCommand
363
+ */
364
+ export declare const de_DeleteTrainedModelOutputCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTrainedModelOutputCommandOutput>;
156
365
  /**
157
366
  * deserializeAws_restJson1DeleteTrainingDatasetCommand
158
367
  */
@@ -165,6 +374,18 @@ export declare const de_GetAudienceGenerationJobCommand: (output: __HttpResponse
165
374
  * deserializeAws_restJson1GetAudienceModelCommand
166
375
  */
167
376
  export declare const de_GetAudienceModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAudienceModelCommandOutput>;
377
+ /**
378
+ * deserializeAws_restJson1GetCollaborationConfiguredModelAlgorithmAssociationCommand
379
+ */
380
+ export declare const de_GetCollaborationConfiguredModelAlgorithmAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput>;
381
+ /**
382
+ * deserializeAws_restJson1GetCollaborationMLInputChannelCommand
383
+ */
384
+ export declare const de_GetCollaborationMLInputChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCollaborationMLInputChannelCommandOutput>;
385
+ /**
386
+ * deserializeAws_restJson1GetCollaborationTrainedModelCommand
387
+ */
388
+ export declare const de_GetCollaborationTrainedModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCollaborationTrainedModelCommandOutput>;
168
389
  /**
169
390
  * deserializeAws_restJson1GetConfiguredAudienceModelCommand
170
391
  */
@@ -173,6 +394,30 @@ export declare const de_GetConfiguredAudienceModelCommand: (output: __HttpRespon
173
394
  * deserializeAws_restJson1GetConfiguredAudienceModelPolicyCommand
174
395
  */
175
396
  export declare const de_GetConfiguredAudienceModelPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfiguredAudienceModelPolicyCommandOutput>;
397
+ /**
398
+ * deserializeAws_restJson1GetConfiguredModelAlgorithmCommand
399
+ */
400
+ export declare const de_GetConfiguredModelAlgorithmCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfiguredModelAlgorithmCommandOutput>;
401
+ /**
402
+ * deserializeAws_restJson1GetConfiguredModelAlgorithmAssociationCommand
403
+ */
404
+ export declare const de_GetConfiguredModelAlgorithmAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfiguredModelAlgorithmAssociationCommandOutput>;
405
+ /**
406
+ * deserializeAws_restJson1GetMLConfigurationCommand
407
+ */
408
+ export declare const de_GetMLConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMLConfigurationCommandOutput>;
409
+ /**
410
+ * deserializeAws_restJson1GetMLInputChannelCommand
411
+ */
412
+ export declare const de_GetMLInputChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMLInputChannelCommandOutput>;
413
+ /**
414
+ * deserializeAws_restJson1GetTrainedModelCommand
415
+ */
416
+ export declare const de_GetTrainedModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTrainedModelCommandOutput>;
417
+ /**
418
+ * deserializeAws_restJson1GetTrainedModelInferenceJobCommand
419
+ */
420
+ export declare const de_GetTrainedModelInferenceJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTrainedModelInferenceJobCommandOutput>;
176
421
  /**
177
422
  * deserializeAws_restJson1GetTrainingDatasetCommand
178
423
  */
@@ -189,14 +434,54 @@ export declare const de_ListAudienceGenerationJobsCommand: (output: __HttpRespon
189
434
  * deserializeAws_restJson1ListAudienceModelsCommand
190
435
  */
191
436
  export declare const de_ListAudienceModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAudienceModelsCommandOutput>;
437
+ /**
438
+ * deserializeAws_restJson1ListCollaborationConfiguredModelAlgorithmAssociationsCommand
439
+ */
440
+ export declare const de_ListCollaborationConfiguredModelAlgorithmAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput>;
441
+ /**
442
+ * deserializeAws_restJson1ListCollaborationMLInputChannelsCommand
443
+ */
444
+ export declare const de_ListCollaborationMLInputChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCollaborationMLInputChannelsCommandOutput>;
445
+ /**
446
+ * deserializeAws_restJson1ListCollaborationTrainedModelExportJobsCommand
447
+ */
448
+ export declare const de_ListCollaborationTrainedModelExportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCollaborationTrainedModelExportJobsCommandOutput>;
449
+ /**
450
+ * deserializeAws_restJson1ListCollaborationTrainedModelInferenceJobsCommand
451
+ */
452
+ export declare const de_ListCollaborationTrainedModelInferenceJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCollaborationTrainedModelInferenceJobsCommandOutput>;
453
+ /**
454
+ * deserializeAws_restJson1ListCollaborationTrainedModelsCommand
455
+ */
456
+ export declare const de_ListCollaborationTrainedModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCollaborationTrainedModelsCommandOutput>;
192
457
  /**
193
458
  * deserializeAws_restJson1ListConfiguredAudienceModelsCommand
194
459
  */
195
460
  export declare const de_ListConfiguredAudienceModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfiguredAudienceModelsCommandOutput>;
461
+ /**
462
+ * deserializeAws_restJson1ListConfiguredModelAlgorithmAssociationsCommand
463
+ */
464
+ export declare const de_ListConfiguredModelAlgorithmAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfiguredModelAlgorithmAssociationsCommandOutput>;
465
+ /**
466
+ * deserializeAws_restJson1ListConfiguredModelAlgorithmsCommand
467
+ */
468
+ export declare const de_ListConfiguredModelAlgorithmsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfiguredModelAlgorithmsCommandOutput>;
469
+ /**
470
+ * deserializeAws_restJson1ListMLInputChannelsCommand
471
+ */
472
+ export declare const de_ListMLInputChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMLInputChannelsCommandOutput>;
196
473
  /**
197
474
  * deserializeAws_restJson1ListTagsForResourceCommand
198
475
  */
199
476
  export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
477
+ /**
478
+ * deserializeAws_restJson1ListTrainedModelInferenceJobsCommand
479
+ */
480
+ export declare const de_ListTrainedModelInferenceJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTrainedModelInferenceJobsCommandOutput>;
481
+ /**
482
+ * deserializeAws_restJson1ListTrainedModelsCommand
483
+ */
484
+ export declare const de_ListTrainedModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTrainedModelsCommandOutput>;
200
485
  /**
201
486
  * deserializeAws_restJson1ListTrainingDatasetsCommand
202
487
  */
@@ -205,6 +490,10 @@ export declare const de_ListTrainingDatasetsCommand: (output: __HttpResponse, co
205
490
  * deserializeAws_restJson1PutConfiguredAudienceModelPolicyCommand
206
491
  */
207
492
  export declare const de_PutConfiguredAudienceModelPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutConfiguredAudienceModelPolicyCommandOutput>;
493
+ /**
494
+ * deserializeAws_restJson1PutMLConfigurationCommand
495
+ */
496
+ export declare const de_PutMLConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutMLConfigurationCommandOutput>;
208
497
  /**
209
498
  * deserializeAws_restJson1StartAudienceExportJobCommand
210
499
  */
@@ -213,6 +502,14 @@ export declare const de_StartAudienceExportJobCommand: (output: __HttpResponse,
213
502
  * deserializeAws_restJson1StartAudienceGenerationJobCommand
214
503
  */
215
504
  export declare const de_StartAudienceGenerationJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartAudienceGenerationJobCommandOutput>;
505
+ /**
506
+ * deserializeAws_restJson1StartTrainedModelExportJobCommand
507
+ */
508
+ export declare const de_StartTrainedModelExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartTrainedModelExportJobCommandOutput>;
509
+ /**
510
+ * deserializeAws_restJson1StartTrainedModelInferenceJobCommand
511
+ */
512
+ export declare const de_StartTrainedModelInferenceJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartTrainedModelInferenceJobCommandOutput>;
216
513
  /**
217
514
  * deserializeAws_restJson1TagResourceCommand
218
515
  */