@aws-sdk/client-medical-imaging 3.1077.0 → 3.1079.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 (62) hide show
  1. package/dist-cjs/index.js +26 -183
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CopyImageSetCommand.js +2 -14
  4. package/dist-es/commands/CreateDatastoreCommand.js +2 -14
  5. package/dist-es/commands/DeleteDatastoreCommand.js +2 -14
  6. package/dist-es/commands/DeleteImageSetCommand.js +2 -14
  7. package/dist-es/commands/GetDICOMImportJobCommand.js +2 -14
  8. package/dist-es/commands/GetDatastoreCommand.js +2 -14
  9. package/dist-es/commands/GetImageFrameCommand.js +2 -14
  10. package/dist-es/commands/GetImageSetCommand.js +2 -14
  11. package/dist-es/commands/GetImageSetMetadataCommand.js +2 -14
  12. package/dist-es/commands/ListDICOMImportJobsCommand.js +2 -14
  13. package/dist-es/commands/ListDatastoresCommand.js +2 -14
  14. package/dist-es/commands/ListImageSetVersionsCommand.js +2 -14
  15. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  16. package/dist-es/commands/SearchImageSetsCommand.js +2 -14
  17. package/dist-es/commands/StartDICOMImportJobCommand.js +2 -14
  18. package/dist-es/commands/TagResourceCommand.js +2 -14
  19. package/dist-es/commands/UntagResourceCommand.js +2 -14
  20. package/dist-es/commands/UpdateImageSetMetadataCommand.js +2 -14
  21. package/dist-es/index.js +1 -0
  22. package/dist-types/commandBuilder.d.ts +18 -0
  23. package/dist-types/commands/CopyImageSetCommand.d.ts +3 -8
  24. package/dist-types/commands/CreateDatastoreCommand.d.ts +3 -8
  25. package/dist-types/commands/DeleteDatastoreCommand.d.ts +3 -8
  26. package/dist-types/commands/DeleteImageSetCommand.d.ts +3 -8
  27. package/dist-types/commands/GetDICOMImportJobCommand.d.ts +3 -8
  28. package/dist-types/commands/GetDatastoreCommand.d.ts +3 -8
  29. package/dist-types/commands/GetImageFrameCommand.d.ts +3 -8
  30. package/dist-types/commands/GetImageSetCommand.d.ts +3 -8
  31. package/dist-types/commands/GetImageSetMetadataCommand.d.ts +3 -8
  32. package/dist-types/commands/ListDICOMImportJobsCommand.d.ts +3 -8
  33. package/dist-types/commands/ListDatastoresCommand.d.ts +3 -8
  34. package/dist-types/commands/ListImageSetVersionsCommand.d.ts +3 -8
  35. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  36. package/dist-types/commands/SearchImageSetsCommand.d.ts +3 -8
  37. package/dist-types/commands/StartDICOMImportJobCommand.d.ts +3 -8
  38. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  39. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  40. package/dist-types/commands/UpdateImageSetMetadataCommand.d.ts +3 -8
  41. package/dist-types/index.d.ts +1 -0
  42. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  43. package/dist-types/ts3.4/commands/CopyImageSetCommand.d.ts +7 -16
  44. package/dist-types/ts3.4/commands/CreateDatastoreCommand.d.ts +7 -16
  45. package/dist-types/ts3.4/commands/DeleteDatastoreCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/DeleteImageSetCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/GetDICOMImportJobCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/GetDatastoreCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/GetImageFrameCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/GetImageSetCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/GetImageSetMetadataCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/ListDICOMImportJobsCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/ListDatastoresCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/ListImageSetVersionsCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  56. package/dist-types/ts3.4/commands/SearchImageSetsCommand.d.ts +7 -16
  57. package/dist-types/ts3.4/commands/StartDICOMImportJobCommand.d.ts +7 -16
  58. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  59. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  60. package/dist-types/ts3.4/commands/UpdateImageSetMetadataCommand.d.ts +7 -16
  61. package/dist-types/ts3.4/index.d.ts +1 -0
  62. package/package.json +8 -8
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -68,7 +69,7 @@ const commonParams = {
68
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
69
70
  };
70
71
 
71
- var version = "3.1076.0";
72
+ var version = "3.1078.0";
72
73
  var packageInfo = {
73
74
  version: version};
74
75
 
@@ -1066,220 +1067,62 @@ class MedicalImagingClient extends Client {
1066
1067
  }
1067
1068
  }
1068
1069
 
1069
- class CopyImageSetCommand extends Command
1070
- .classBuilder()
1071
- .ep(commonParams)
1072
- .m(function (Command, cs, config, o) {
1073
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1074
- })
1075
- .s("AHIGatewayService", "CopyImageSet", {})
1076
- .n("MedicalImagingClient", "CopyImageSetCommand")
1077
- .sc(CopyImageSet$)
1078
- .build() {
1070
+ const command = makeBuilder(commonParams, "AHIGatewayService", "MedicalImagingClient", getEndpointPlugin);
1071
+ const _ep0 = {};
1072
+ const _mw0 = (Command, cs, config, o) => [];
1073
+
1074
+ class CopyImageSetCommand extends command(_ep0, _mw0, "CopyImageSet", CopyImageSet$) {
1079
1075
  }
1080
1076
 
1081
- class CreateDatastoreCommand extends Command
1082
- .classBuilder()
1083
- .ep(commonParams)
1084
- .m(function (Command, cs, config, o) {
1085
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1086
- })
1087
- .s("AHIGatewayService", "CreateDatastore", {})
1088
- .n("MedicalImagingClient", "CreateDatastoreCommand")
1089
- .sc(CreateDatastore$)
1090
- .build() {
1077
+ class CreateDatastoreCommand extends command(_ep0, _mw0, "CreateDatastore", CreateDatastore$) {
1091
1078
  }
1092
1079
 
1093
- class DeleteDatastoreCommand extends Command
1094
- .classBuilder()
1095
- .ep(commonParams)
1096
- .m(function (Command, cs, config, o) {
1097
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1098
- })
1099
- .s("AHIGatewayService", "DeleteDatastore", {})
1100
- .n("MedicalImagingClient", "DeleteDatastoreCommand")
1101
- .sc(DeleteDatastore$)
1102
- .build() {
1080
+ class DeleteDatastoreCommand extends command(_ep0, _mw0, "DeleteDatastore", DeleteDatastore$) {
1103
1081
  }
1104
1082
 
1105
- class DeleteImageSetCommand extends Command
1106
- .classBuilder()
1107
- .ep(commonParams)
1108
- .m(function (Command, cs, config, o) {
1109
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1110
- })
1111
- .s("AHIGatewayService", "DeleteImageSet", {})
1112
- .n("MedicalImagingClient", "DeleteImageSetCommand")
1113
- .sc(DeleteImageSet$)
1114
- .build() {
1083
+ class DeleteImageSetCommand extends command(_ep0, _mw0, "DeleteImageSet", DeleteImageSet$) {
1115
1084
  }
1116
1085
 
1117
- class GetDatastoreCommand extends Command
1118
- .classBuilder()
1119
- .ep(commonParams)
1120
- .m(function (Command, cs, config, o) {
1121
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1122
- })
1123
- .s("AHIGatewayService", "GetDatastore", {})
1124
- .n("MedicalImagingClient", "GetDatastoreCommand")
1125
- .sc(GetDatastore$)
1126
- .build() {
1086
+ class GetDatastoreCommand extends command(_ep0, _mw0, "GetDatastore", GetDatastore$) {
1127
1087
  }
1128
1088
 
1129
- class GetDICOMImportJobCommand extends Command
1130
- .classBuilder()
1131
- .ep(commonParams)
1132
- .m(function (Command, cs, config, o) {
1133
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1134
- })
1135
- .s("AHIGatewayService", "GetDICOMImportJob", {})
1136
- .n("MedicalImagingClient", "GetDICOMImportJobCommand")
1137
- .sc(GetDICOMImportJob$)
1138
- .build() {
1089
+ class GetDICOMImportJobCommand extends command(_ep0, _mw0, "GetDICOMImportJob", GetDICOMImportJob$) {
1139
1090
  }
1140
1091
 
1141
- class GetImageFrameCommand extends Command
1142
- .classBuilder()
1143
- .ep(commonParams)
1144
- .m(function (Command, cs, config, o) {
1145
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1146
- })
1147
- .s("AHIGatewayService", "GetImageFrame", {})
1148
- .n("MedicalImagingClient", "GetImageFrameCommand")
1149
- .sc(GetImageFrame$)
1150
- .build() {
1092
+ class GetImageFrameCommand extends command(_ep0, _mw0, "GetImageFrame", GetImageFrame$) {
1151
1093
  }
1152
1094
 
1153
- class GetImageSetCommand extends Command
1154
- .classBuilder()
1155
- .ep(commonParams)
1156
- .m(function (Command, cs, config, o) {
1157
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1158
- })
1159
- .s("AHIGatewayService", "GetImageSet", {})
1160
- .n("MedicalImagingClient", "GetImageSetCommand")
1161
- .sc(GetImageSet$)
1162
- .build() {
1095
+ class GetImageSetCommand extends command(_ep0, _mw0, "GetImageSet", GetImageSet$) {
1163
1096
  }
1164
1097
 
1165
- class GetImageSetMetadataCommand extends Command
1166
- .classBuilder()
1167
- .ep(commonParams)
1168
- .m(function (Command, cs, config, o) {
1169
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1170
- })
1171
- .s("AHIGatewayService", "GetImageSetMetadata", {})
1172
- .n("MedicalImagingClient", "GetImageSetMetadataCommand")
1173
- .sc(GetImageSetMetadata$)
1174
- .build() {
1098
+ class GetImageSetMetadataCommand extends command(_ep0, _mw0, "GetImageSetMetadata", GetImageSetMetadata$) {
1175
1099
  }
1176
1100
 
1177
- class ListDatastoresCommand extends Command
1178
- .classBuilder()
1179
- .ep(commonParams)
1180
- .m(function (Command, cs, config, o) {
1181
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1182
- })
1183
- .s("AHIGatewayService", "ListDatastores", {})
1184
- .n("MedicalImagingClient", "ListDatastoresCommand")
1185
- .sc(ListDatastores$)
1186
- .build() {
1101
+ class ListDatastoresCommand extends command(_ep0, _mw0, "ListDatastores", ListDatastores$) {
1187
1102
  }
1188
1103
 
1189
- class ListDICOMImportJobsCommand extends Command
1190
- .classBuilder()
1191
- .ep(commonParams)
1192
- .m(function (Command, cs, config, o) {
1193
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1194
- })
1195
- .s("AHIGatewayService", "ListDICOMImportJobs", {})
1196
- .n("MedicalImagingClient", "ListDICOMImportJobsCommand")
1197
- .sc(ListDICOMImportJobs$)
1198
- .build() {
1104
+ class ListDICOMImportJobsCommand extends command(_ep0, _mw0, "ListDICOMImportJobs", ListDICOMImportJobs$) {
1199
1105
  }
1200
1106
 
1201
- class ListImageSetVersionsCommand extends Command
1202
- .classBuilder()
1203
- .ep(commonParams)
1204
- .m(function (Command, cs, config, o) {
1205
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1206
- })
1207
- .s("AHIGatewayService", "ListImageSetVersions", {})
1208
- .n("MedicalImagingClient", "ListImageSetVersionsCommand")
1209
- .sc(ListImageSetVersions$)
1210
- .build() {
1107
+ class ListImageSetVersionsCommand extends command(_ep0, _mw0, "ListImageSetVersions", ListImageSetVersions$) {
1211
1108
  }
1212
1109
 
1213
- class ListTagsForResourceCommand extends Command
1214
- .classBuilder()
1215
- .ep(commonParams)
1216
- .m(function (Command, cs, config, o) {
1217
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1218
- })
1219
- .s("AHIGatewayService", "ListTagsForResource", {})
1220
- .n("MedicalImagingClient", "ListTagsForResourceCommand")
1221
- .sc(ListTagsForResource$)
1222
- .build() {
1110
+ class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
1223
1111
  }
1224
1112
 
1225
- class SearchImageSetsCommand extends Command
1226
- .classBuilder()
1227
- .ep(commonParams)
1228
- .m(function (Command, cs, config, o) {
1229
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1230
- })
1231
- .s("AHIGatewayService", "SearchImageSets", {})
1232
- .n("MedicalImagingClient", "SearchImageSetsCommand")
1233
- .sc(SearchImageSets$)
1234
- .build() {
1113
+ class SearchImageSetsCommand extends command(_ep0, _mw0, "SearchImageSets", SearchImageSets$) {
1235
1114
  }
1236
1115
 
1237
- class StartDICOMImportJobCommand extends Command
1238
- .classBuilder()
1239
- .ep(commonParams)
1240
- .m(function (Command, cs, config, o) {
1241
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1242
- })
1243
- .s("AHIGatewayService", "StartDICOMImportJob", {})
1244
- .n("MedicalImagingClient", "StartDICOMImportJobCommand")
1245
- .sc(StartDICOMImportJob$)
1246
- .build() {
1116
+ class StartDICOMImportJobCommand extends command(_ep0, _mw0, "StartDICOMImportJob", StartDICOMImportJob$) {
1247
1117
  }
1248
1118
 
1249
- class TagResourceCommand extends Command
1250
- .classBuilder()
1251
- .ep(commonParams)
1252
- .m(function (Command, cs, config, o) {
1253
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1254
- })
1255
- .s("AHIGatewayService", "TagResource", {})
1256
- .n("MedicalImagingClient", "TagResourceCommand")
1257
- .sc(TagResource$)
1258
- .build() {
1119
+ class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
1259
1120
  }
1260
1121
 
1261
- class UntagResourceCommand extends Command
1262
- .classBuilder()
1263
- .ep(commonParams)
1264
- .m(function (Command, cs, config, o) {
1265
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1266
- })
1267
- .s("AHIGatewayService", "UntagResource", {})
1268
- .n("MedicalImagingClient", "UntagResourceCommand")
1269
- .sc(UntagResource$)
1270
- .build() {
1122
+ class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
1271
1123
  }
1272
1124
 
1273
- class UpdateImageSetMetadataCommand extends Command
1274
- .classBuilder()
1275
- .ep(commonParams)
1276
- .m(function (Command, cs, config, o) {
1277
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1278
- })
1279
- .s("AHIGatewayService", "UpdateImageSetMetadata", {})
1280
- .n("MedicalImagingClient", "UpdateImageSetMetadataCommand")
1281
- .sc(UpdateImageSetMetadata$)
1282
- .build() {
1125
+ class UpdateImageSetMetadataCommand extends command(_ep0, _mw0, "UpdateImageSetMetadata", UpdateImageSetMetadata$) {
1283
1126
  }
1284
1127
 
1285
1128
  const paginateListDatastores = createPaginator(MedicalImagingClient, ListDatastoresCommand, "nextToken", "nextToken", "maxResults");
@@ -0,0 +1,6 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "AHIGatewayService", "MedicalImagingClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { CopyImageSet$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class CopyImageSetCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "CopyImageSet", {})
13
- .n("MedicalImagingClient", "CopyImageSetCommand")
14
- .sc(CopyImageSet$)
15
- .build() {
3
+ export class CopyImageSetCommand extends command(_ep0, _mw0, "CopyImageSet", CopyImageSet$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { CreateDatastore$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class CreateDatastoreCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "CreateDatastore", {})
13
- .n("MedicalImagingClient", "CreateDatastoreCommand")
14
- .sc(CreateDatastore$)
15
- .build() {
3
+ export class CreateDatastoreCommand extends command(_ep0, _mw0, "CreateDatastore", CreateDatastore$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DeleteDatastore$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteDatastoreCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "DeleteDatastore", {})
13
- .n("MedicalImagingClient", "DeleteDatastoreCommand")
14
- .sc(DeleteDatastore$)
15
- .build() {
3
+ export class DeleteDatastoreCommand extends command(_ep0, _mw0, "DeleteDatastore", DeleteDatastore$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DeleteImageSet$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteImageSetCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "DeleteImageSet", {})
13
- .n("MedicalImagingClient", "DeleteImageSetCommand")
14
- .sc(DeleteImageSet$)
15
- .build() {
3
+ export class DeleteImageSetCommand extends command(_ep0, _mw0, "DeleteImageSet", DeleteImageSet$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetDICOMImportJob$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetDICOMImportJobCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "GetDICOMImportJob", {})
13
- .n("MedicalImagingClient", "GetDICOMImportJobCommand")
14
- .sc(GetDICOMImportJob$)
15
- .build() {
3
+ export class GetDICOMImportJobCommand extends command(_ep0, _mw0, "GetDICOMImportJob", GetDICOMImportJob$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetDatastore$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetDatastoreCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "GetDatastore", {})
13
- .n("MedicalImagingClient", "GetDatastoreCommand")
14
- .sc(GetDatastore$)
15
- .build() {
3
+ export class GetDatastoreCommand extends command(_ep0, _mw0, "GetDatastore", GetDatastore$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetImageFrame$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetImageFrameCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "GetImageFrame", {})
13
- .n("MedicalImagingClient", "GetImageFrameCommand")
14
- .sc(GetImageFrame$)
15
- .build() {
3
+ export class GetImageFrameCommand extends command(_ep0, _mw0, "GetImageFrame", GetImageFrame$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetImageSet$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetImageSetCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "GetImageSet", {})
13
- .n("MedicalImagingClient", "GetImageSetCommand")
14
- .sc(GetImageSet$)
15
- .build() {
3
+ export class GetImageSetCommand extends command(_ep0, _mw0, "GetImageSet", GetImageSet$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetImageSetMetadata$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetImageSetMetadataCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "GetImageSetMetadata", {})
13
- .n("MedicalImagingClient", "GetImageSetMetadataCommand")
14
- .sc(GetImageSetMetadata$)
15
- .build() {
3
+ export class GetImageSetMetadataCommand extends command(_ep0, _mw0, "GetImageSetMetadata", GetImageSetMetadata$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListDICOMImportJobs$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListDICOMImportJobsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "ListDICOMImportJobs", {})
13
- .n("MedicalImagingClient", "ListDICOMImportJobsCommand")
14
- .sc(ListDICOMImportJobs$)
15
- .build() {
3
+ export class ListDICOMImportJobsCommand extends command(_ep0, _mw0, "ListDICOMImportJobs", ListDICOMImportJobs$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListDatastores$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListDatastoresCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "ListDatastores", {})
13
- .n("MedicalImagingClient", "ListDatastoresCommand")
14
- .sc(ListDatastores$)
15
- .build() {
3
+ export class ListDatastoresCommand extends command(_ep0, _mw0, "ListDatastores", ListDatastores$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListImageSetVersions$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListImageSetVersionsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "ListImageSetVersions", {})
13
- .n("MedicalImagingClient", "ListImageSetVersionsCommand")
14
- .sc(ListImageSetVersions$)
15
- .build() {
3
+ export class ListImageSetVersionsCommand extends command(_ep0, _mw0, "ListImageSetVersions", ListImageSetVersions$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListTagsForResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListTagsForResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "ListTagsForResource", {})
13
- .n("MedicalImagingClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource$)
15
- .build() {
3
+ export class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { SearchImageSets$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class SearchImageSetsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "SearchImageSets", {})
13
- .n("MedicalImagingClient", "SearchImageSetsCommand")
14
- .sc(SearchImageSets$)
15
- .build() {
3
+ export class SearchImageSetsCommand extends command(_ep0, _mw0, "SearchImageSets", SearchImageSets$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { StartDICOMImportJob$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class StartDICOMImportJobCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "StartDICOMImportJob", {})
13
- .n("MedicalImagingClient", "StartDICOMImportJobCommand")
14
- .sc(StartDICOMImportJob$)
15
- .build() {
3
+ export class StartDICOMImportJobCommand extends command(_ep0, _mw0, "StartDICOMImportJob", StartDICOMImportJob$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { TagResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class TagResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "TagResource", {})
13
- .n("MedicalImagingClient", "TagResourceCommand")
14
- .sc(TagResource$)
15
- .build() {
3
+ export class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { UntagResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UntagResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "UntagResource", {})
13
- .n("MedicalImagingClient", "UntagResourceCommand")
14
- .sc(UntagResource$)
15
- .build() {
3
+ export class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { UpdateImageSetMetadata$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UpdateImageSetMetadataCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AHIGatewayService", "UpdateImageSetMetadata", {})
13
- .n("MedicalImagingClient", "UpdateImageSetMetadataCommand")
14
- .sc(UpdateImageSetMetadata$)
15
- .build() {
3
+ export class UpdateImageSetMetadataCommand extends command(_ep0, _mw0, "UpdateImageSetMetadata", UpdateImageSetMetadata$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./MedicalImagingClient";
2
2
  export * from "./MedicalImaging";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./pagination";
6
7
  export * from "./models/enums";