@aws-sdk/client-medical-imaging 3.933.0 → 3.935.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.
package/dist-cjs/index.js CHANGED
@@ -141,26 +141,6 @@ let ConflictException$1 = class ConflictException extends MedicalImagingServiceE
141
141
  Object.setPrototypeOf(this, ConflictException.prototype);
142
142
  }
143
143
  };
144
- const ImageSetState = {
145
- ACTIVE: "ACTIVE",
146
- DELETED: "DELETED",
147
- LOCKED: "LOCKED",
148
- };
149
- const ImageSetWorkflowStatus = {
150
- COPIED: "COPIED",
151
- COPYING: "COPYING",
152
- COPYING_WITH_READ_ONLY_ACCESS: "COPYING_WITH_READ_ONLY_ACCESS",
153
- COPY_FAILED: "COPY_FAILED",
154
- CREATED: "CREATED",
155
- DELETED: "DELETED",
156
- DELETING: "DELETING",
157
- IMPORTED: "IMPORTED",
158
- IMPORTING: "IMPORTING",
159
- IMPORT_FAILED: "IMPORT_FAILED",
160
- UPDATED: "UPDATED",
161
- UPDATE_FAILED: "UPDATE_FAILED",
162
- UPDATING: "UPDATING",
163
- };
164
144
  let InternalServerException$1 = class InternalServerException extends MedicalImagingServiceException$1 {
165
145
  name = "InternalServerException";
166
146
  $fault = "server";
@@ -221,40 +201,6 @@ let ValidationException$1 = class ValidationException extends MedicalImagingServ
221
201
  Object.setPrototypeOf(this, ValidationException.prototype);
222
202
  }
223
203
  };
224
- const LosslessStorageFormat = {
225
- HTJ2K: "HTJ2K",
226
- JPEG_2000_LOSSLESS: "JPEG_2000_LOSSLESS",
227
- };
228
- const DatastoreStatus = {
229
- ACTIVE: "ACTIVE",
230
- CREATE_FAILED: "CREATE_FAILED",
231
- CREATING: "CREATING",
232
- DELETED: "DELETED",
233
- DELETING: "DELETING",
234
- };
235
- const JobStatus = {
236
- COMPLETED: "COMPLETED",
237
- FAILED: "FAILED",
238
- IN_PROGRESS: "IN_PROGRESS",
239
- SUBMITTED: "SUBMITTED",
240
- };
241
- const StorageTier = {
242
- ARCHIVE_INSTANT_ACCESS: "ARCHIVE_INSTANT_ACCESS",
243
- FREQUENT_ACCESS: "FREQUENT_ACCESS",
244
- };
245
- const Operator = {
246
- BETWEEN: "BETWEEN",
247
- EQUAL: "EQUAL",
248
- };
249
- const SortField = {
250
- DICOMStudyDateAndTime: "DICOMStudyDateAndTime",
251
- createdAt: "createdAt",
252
- updatedAt: "updatedAt",
253
- };
254
- const SortOrder = {
255
- ASC: "ASC",
256
- DESC: "DESC",
257
- };
258
204
 
259
205
  const _ADE = "AccessDeniedException";
260
206
  const _CA = "CopiableAttributes";
@@ -1554,6 +1500,61 @@ const paginateListImageSetVersions = core.createPaginator(MedicalImagingClient,
1554
1500
 
1555
1501
  const paginateSearchImageSets = core.createPaginator(MedicalImagingClient, SearchImageSetsCommand, "nextToken", "nextToken", "maxResults");
1556
1502
 
1503
+ const ImageSetState = {
1504
+ ACTIVE: "ACTIVE",
1505
+ DELETED: "DELETED",
1506
+ LOCKED: "LOCKED",
1507
+ };
1508
+ const ImageSetWorkflowStatus = {
1509
+ COPIED: "COPIED",
1510
+ COPYING: "COPYING",
1511
+ COPYING_WITH_READ_ONLY_ACCESS: "COPYING_WITH_READ_ONLY_ACCESS",
1512
+ COPY_FAILED: "COPY_FAILED",
1513
+ CREATED: "CREATED",
1514
+ DELETED: "DELETED",
1515
+ DELETING: "DELETING",
1516
+ IMPORTED: "IMPORTED",
1517
+ IMPORTING: "IMPORTING",
1518
+ IMPORT_FAILED: "IMPORT_FAILED",
1519
+ UPDATED: "UPDATED",
1520
+ UPDATE_FAILED: "UPDATE_FAILED",
1521
+ UPDATING: "UPDATING",
1522
+ };
1523
+ const LosslessStorageFormat = {
1524
+ HTJ2K: "HTJ2K",
1525
+ JPEG_2000_LOSSLESS: "JPEG_2000_LOSSLESS",
1526
+ };
1527
+ const DatastoreStatus = {
1528
+ ACTIVE: "ACTIVE",
1529
+ CREATE_FAILED: "CREATE_FAILED",
1530
+ CREATING: "CREATING",
1531
+ DELETED: "DELETED",
1532
+ DELETING: "DELETING",
1533
+ };
1534
+ const JobStatus = {
1535
+ COMPLETED: "COMPLETED",
1536
+ FAILED: "FAILED",
1537
+ IN_PROGRESS: "IN_PROGRESS",
1538
+ SUBMITTED: "SUBMITTED",
1539
+ };
1540
+ const StorageTier = {
1541
+ ARCHIVE_INSTANT_ACCESS: "ARCHIVE_INSTANT_ACCESS",
1542
+ FREQUENT_ACCESS: "FREQUENT_ACCESS",
1543
+ };
1544
+ const Operator = {
1545
+ BETWEEN: "BETWEEN",
1546
+ EQUAL: "EQUAL",
1547
+ };
1548
+ const SortField = {
1549
+ DICOMStudyDateAndTime: "DICOMStudyDateAndTime",
1550
+ createdAt: "createdAt",
1551
+ updatedAt: "updatedAt",
1552
+ };
1553
+ const SortOrder = {
1554
+ ASC: "ASC",
1555
+ DESC: "DESC",
1556
+ };
1557
+
1557
1558
  Object.defineProperty(exports, "$Command", {
1558
1559
  enumerable: true,
1559
1560
  get: function () { return smithyClient.Command; }
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./MedicalImagingClient";
2
2
  export * from "./MedicalImaging";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
- export * from "./models";
5
+ export * from "./models/enums";
6
+ export * from "./models/errors";
6
7
  export { MedicalImagingServiceException } from "./models/MedicalImagingServiceException";
@@ -0,0 +1,54 @@
1
+ export const ImageSetState = {
2
+ ACTIVE: "ACTIVE",
3
+ DELETED: "DELETED",
4
+ LOCKED: "LOCKED",
5
+ };
6
+ export const ImageSetWorkflowStatus = {
7
+ COPIED: "COPIED",
8
+ COPYING: "COPYING",
9
+ COPYING_WITH_READ_ONLY_ACCESS: "COPYING_WITH_READ_ONLY_ACCESS",
10
+ COPY_FAILED: "COPY_FAILED",
11
+ CREATED: "CREATED",
12
+ DELETED: "DELETED",
13
+ DELETING: "DELETING",
14
+ IMPORTED: "IMPORTED",
15
+ IMPORTING: "IMPORTING",
16
+ IMPORT_FAILED: "IMPORT_FAILED",
17
+ UPDATED: "UPDATED",
18
+ UPDATE_FAILED: "UPDATE_FAILED",
19
+ UPDATING: "UPDATING",
20
+ };
21
+ export const LosslessStorageFormat = {
22
+ HTJ2K: "HTJ2K",
23
+ JPEG_2000_LOSSLESS: "JPEG_2000_LOSSLESS",
24
+ };
25
+ export const DatastoreStatus = {
26
+ ACTIVE: "ACTIVE",
27
+ CREATE_FAILED: "CREATE_FAILED",
28
+ CREATING: "CREATING",
29
+ DELETED: "DELETED",
30
+ DELETING: "DELETING",
31
+ };
32
+ export const JobStatus = {
33
+ COMPLETED: "COMPLETED",
34
+ FAILED: "FAILED",
35
+ IN_PROGRESS: "IN_PROGRESS",
36
+ SUBMITTED: "SUBMITTED",
37
+ };
38
+ export const StorageTier = {
39
+ ARCHIVE_INSTANT_ACCESS: "ARCHIVE_INSTANT_ACCESS",
40
+ FREQUENT_ACCESS: "FREQUENT_ACCESS",
41
+ };
42
+ export const Operator = {
43
+ BETWEEN: "BETWEEN",
44
+ EQUAL: "EQUAL",
45
+ };
46
+ export const SortField = {
47
+ DICOMStudyDateAndTime: "DICOMStudyDateAndTime",
48
+ createdAt: "createdAt",
49
+ updatedAt: "updatedAt",
50
+ };
51
+ export const SortOrder = {
52
+ ASC: "ASC",
53
+ DESC: "DESC",
54
+ };
@@ -0,0 +1,85 @@
1
+ import { MedicalImagingServiceException as __BaseException } from "./MedicalImagingServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ constructor(opts) {
6
+ super({
7
+ name: "AccessDeniedException",
8
+ $fault: "client",
9
+ ...opts,
10
+ });
11
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
+ }
13
+ }
14
+ export class ConflictException extends __BaseException {
15
+ name = "ConflictException";
16
+ $fault = "client";
17
+ constructor(opts) {
18
+ super({
19
+ name: "ConflictException",
20
+ $fault: "client",
21
+ ...opts,
22
+ });
23
+ Object.setPrototypeOf(this, ConflictException.prototype);
24
+ }
25
+ }
26
+ export class InternalServerException extends __BaseException {
27
+ name = "InternalServerException";
28
+ $fault = "server";
29
+ constructor(opts) {
30
+ super({
31
+ name: "InternalServerException",
32
+ $fault: "server",
33
+ ...opts,
34
+ });
35
+ Object.setPrototypeOf(this, InternalServerException.prototype);
36
+ }
37
+ }
38
+ export class ResourceNotFoundException extends __BaseException {
39
+ name = "ResourceNotFoundException";
40
+ $fault = "client";
41
+ constructor(opts) {
42
+ super({
43
+ name: "ResourceNotFoundException",
44
+ $fault: "client",
45
+ ...opts,
46
+ });
47
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
48
+ }
49
+ }
50
+ export class ServiceQuotaExceededException extends __BaseException {
51
+ name = "ServiceQuotaExceededException";
52
+ $fault = "client";
53
+ constructor(opts) {
54
+ super({
55
+ name: "ServiceQuotaExceededException",
56
+ $fault: "client",
57
+ ...opts,
58
+ });
59
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
60
+ }
61
+ }
62
+ export class ThrottlingException extends __BaseException {
63
+ name = "ThrottlingException";
64
+ $fault = "client";
65
+ constructor(opts) {
66
+ super({
67
+ name: "ThrottlingException",
68
+ $fault: "client",
69
+ ...opts,
70
+ });
71
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
72
+ }
73
+ }
74
+ export class ValidationException extends __BaseException {
75
+ name = "ValidationException";
76
+ $fault = "client";
77
+ constructor(opts) {
78
+ super({
79
+ name: "ValidationException",
80
+ $fault: "client",
81
+ ...opts,
82
+ });
83
+ Object.setPrototypeOf(this, ValidationException.prototype);
84
+ }
85
+ }
@@ -1,139 +1 @@
1
- import { MedicalImagingServiceException as __BaseException } from "./MedicalImagingServiceException";
2
- export class AccessDeniedException extends __BaseException {
3
- name = "AccessDeniedException";
4
- $fault = "client";
5
- constructor(opts) {
6
- super({
7
- name: "AccessDeniedException",
8
- $fault: "client",
9
- ...opts,
10
- });
11
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
- }
13
- }
14
- export class ConflictException extends __BaseException {
15
- name = "ConflictException";
16
- $fault = "client";
17
- constructor(opts) {
18
- super({
19
- name: "ConflictException",
20
- $fault: "client",
21
- ...opts,
22
- });
23
- Object.setPrototypeOf(this, ConflictException.prototype);
24
- }
25
- }
26
- export const ImageSetState = {
27
- ACTIVE: "ACTIVE",
28
- DELETED: "DELETED",
29
- LOCKED: "LOCKED",
30
- };
31
- export const ImageSetWorkflowStatus = {
32
- COPIED: "COPIED",
33
- COPYING: "COPYING",
34
- COPYING_WITH_READ_ONLY_ACCESS: "COPYING_WITH_READ_ONLY_ACCESS",
35
- COPY_FAILED: "COPY_FAILED",
36
- CREATED: "CREATED",
37
- DELETED: "DELETED",
38
- DELETING: "DELETING",
39
- IMPORTED: "IMPORTED",
40
- IMPORTING: "IMPORTING",
41
- IMPORT_FAILED: "IMPORT_FAILED",
42
- UPDATED: "UPDATED",
43
- UPDATE_FAILED: "UPDATE_FAILED",
44
- UPDATING: "UPDATING",
45
- };
46
- export class InternalServerException extends __BaseException {
47
- name = "InternalServerException";
48
- $fault = "server";
49
- constructor(opts) {
50
- super({
51
- name: "InternalServerException",
52
- $fault: "server",
53
- ...opts,
54
- });
55
- Object.setPrototypeOf(this, InternalServerException.prototype);
56
- }
57
- }
58
- export class ResourceNotFoundException extends __BaseException {
59
- name = "ResourceNotFoundException";
60
- $fault = "client";
61
- constructor(opts) {
62
- super({
63
- name: "ResourceNotFoundException",
64
- $fault: "client",
65
- ...opts,
66
- });
67
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
68
- }
69
- }
70
- export class ServiceQuotaExceededException extends __BaseException {
71
- name = "ServiceQuotaExceededException";
72
- $fault = "client";
73
- constructor(opts) {
74
- super({
75
- name: "ServiceQuotaExceededException",
76
- $fault: "client",
77
- ...opts,
78
- });
79
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
80
- }
81
- }
82
- export class ThrottlingException extends __BaseException {
83
- name = "ThrottlingException";
84
- $fault = "client";
85
- constructor(opts) {
86
- super({
87
- name: "ThrottlingException",
88
- $fault: "client",
89
- ...opts,
90
- });
91
- Object.setPrototypeOf(this, ThrottlingException.prototype);
92
- }
93
- }
94
- export class ValidationException extends __BaseException {
95
- name = "ValidationException";
96
- $fault = "client";
97
- constructor(opts) {
98
- super({
99
- name: "ValidationException",
100
- $fault: "client",
101
- ...opts,
102
- });
103
- Object.setPrototypeOf(this, ValidationException.prototype);
104
- }
105
- }
106
- export const LosslessStorageFormat = {
107
- HTJ2K: "HTJ2K",
108
- JPEG_2000_LOSSLESS: "JPEG_2000_LOSSLESS",
109
- };
110
- export const DatastoreStatus = {
111
- ACTIVE: "ACTIVE",
112
- CREATE_FAILED: "CREATE_FAILED",
113
- CREATING: "CREATING",
114
- DELETED: "DELETED",
115
- DELETING: "DELETING",
116
- };
117
- export const JobStatus = {
118
- COMPLETED: "COMPLETED",
119
- FAILED: "FAILED",
120
- IN_PROGRESS: "IN_PROGRESS",
121
- SUBMITTED: "SUBMITTED",
122
- };
123
- export const StorageTier = {
124
- ARCHIVE_INSTANT_ACCESS: "ARCHIVE_INSTANT_ACCESS",
125
- FREQUENT_ACCESS: "FREQUENT_ACCESS",
126
- };
127
- export const Operator = {
128
- BETWEEN: "BETWEEN",
129
- EQUAL: "EQUAL",
130
- };
131
- export const SortField = {
132
- DICOMStudyDateAndTime: "DICOMStudyDateAndTime",
133
- createdAt: "createdAt",
134
- updatedAt: "updatedAt",
135
- };
136
- export const SortOrder = {
137
- ASC: "ASC",
138
- DESC: "DESC",
139
- };
1
+ export {};
@@ -194,7 +194,7 @@ const _vI = "versionId";
194
194
  const _va = "values";
195
195
  const n0 = "com.amazonaws.medicalimaging";
196
196
  import { TypeRegistry } from "@smithy/core/schema";
197
- import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/index";
197
+ import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
198
198
  import { MedicalImagingServiceException as __MedicalImagingServiceException } from "../models/MedicalImagingServiceException";
199
199
  export var CopiableAttributes = [0, n0, _CA, 8, 0];
200
200
  export var DICOMAccessionNumber = [0, n0, _DICOMAN, 8, 0];
@@ -10,5 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { MedicalImagingExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
12
  export * from "./pagination";
13
- export * from "./models";
13
+ export * from "./models/enums";
14
+ export * from "./models/errors";
15
+ export type * from "./models/models_0";
14
16
  export { MedicalImagingServiceException } from "./models/MedicalImagingServiceException";
@@ -0,0 +1,132 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ImageSetState: {
6
+ readonly ACTIVE: "ACTIVE";
7
+ readonly DELETED: "DELETED";
8
+ readonly LOCKED: "LOCKED";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type ImageSetState = (typeof ImageSetState)[keyof typeof ImageSetState];
14
+ /**
15
+ * @public
16
+ * @enum
17
+ */
18
+ export declare const ImageSetWorkflowStatus: {
19
+ readonly COPIED: "COPIED";
20
+ readonly COPYING: "COPYING";
21
+ readonly COPYING_WITH_READ_ONLY_ACCESS: "COPYING_WITH_READ_ONLY_ACCESS";
22
+ readonly COPY_FAILED: "COPY_FAILED";
23
+ readonly CREATED: "CREATED";
24
+ readonly DELETED: "DELETED";
25
+ readonly DELETING: "DELETING";
26
+ readonly IMPORTED: "IMPORTED";
27
+ readonly IMPORTING: "IMPORTING";
28
+ readonly IMPORT_FAILED: "IMPORT_FAILED";
29
+ readonly UPDATED: "UPDATED";
30
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
31
+ readonly UPDATING: "UPDATING";
32
+ };
33
+ /**
34
+ * @public
35
+ */
36
+ export type ImageSetWorkflowStatus = (typeof ImageSetWorkflowStatus)[keyof typeof ImageSetWorkflowStatus];
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const LosslessStorageFormat: {
42
+ readonly HTJ2K: "HTJ2K";
43
+ readonly JPEG_2000_LOSSLESS: "JPEG_2000_LOSSLESS";
44
+ };
45
+ /**
46
+ * @public
47
+ */
48
+ export type LosslessStorageFormat = (typeof LosslessStorageFormat)[keyof typeof LosslessStorageFormat];
49
+ /**
50
+ * @public
51
+ * @enum
52
+ */
53
+ export declare const DatastoreStatus: {
54
+ readonly ACTIVE: "ACTIVE";
55
+ readonly CREATE_FAILED: "CREATE_FAILED";
56
+ readonly CREATING: "CREATING";
57
+ readonly DELETED: "DELETED";
58
+ readonly DELETING: "DELETING";
59
+ };
60
+ /**
61
+ * @public
62
+ */
63
+ export type DatastoreStatus = (typeof DatastoreStatus)[keyof typeof DatastoreStatus];
64
+ /**
65
+ * @public
66
+ * @enum
67
+ */
68
+ export declare const JobStatus: {
69
+ readonly COMPLETED: "COMPLETED";
70
+ readonly FAILED: "FAILED";
71
+ readonly IN_PROGRESS: "IN_PROGRESS";
72
+ readonly SUBMITTED: "SUBMITTED";
73
+ };
74
+ /**
75
+ * @public
76
+ */
77
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
78
+ /**
79
+ * @public
80
+ * @enum
81
+ */
82
+ export declare const StorageTier: {
83
+ /**
84
+ * Archive instant access storage tier for image sets that are accessed infrequently
85
+ */
86
+ readonly ARCHIVE_INSTANT_ACCESS: "ARCHIVE_INSTANT_ACCESS";
87
+ /**
88
+ * Frequent access storage tier for image sets that are accessed regularly
89
+ */
90
+ readonly FREQUENT_ACCESS: "FREQUENT_ACCESS";
91
+ };
92
+ /**
93
+ * @public
94
+ */
95
+ export type StorageTier = (typeof StorageTier)[keyof typeof StorageTier];
96
+ /**
97
+ * @public
98
+ * @enum
99
+ */
100
+ export declare const Operator: {
101
+ readonly BETWEEN: "BETWEEN";
102
+ readonly EQUAL: "EQUAL";
103
+ };
104
+ /**
105
+ * @public
106
+ */
107
+ export type Operator = (typeof Operator)[keyof typeof Operator];
108
+ /**
109
+ * @public
110
+ * @enum
111
+ */
112
+ export declare const SortField: {
113
+ readonly DICOMStudyDateAndTime: "DICOMStudyDateAndTime";
114
+ readonly createdAt: "createdAt";
115
+ readonly updatedAt: "updatedAt";
116
+ };
117
+ /**
118
+ * @public
119
+ */
120
+ export type SortField = (typeof SortField)[keyof typeof SortField];
121
+ /**
122
+ * @public
123
+ * @enum
124
+ */
125
+ export declare const SortOrder: {
126
+ readonly ASC: "ASC";
127
+ readonly DESC: "DESC";
128
+ };
129
+ /**
130
+ * @public
131
+ */
132
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
@@ -0,0 +1,86 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { MedicalImagingServiceException as __BaseException } from "./MedicalImagingServiceException";
3
+ /**
4
+ * <p>The user does not have sufficient access to perform this action.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
17
+ * @public
18
+ */
19
+ export declare class ConflictException extends __BaseException {
20
+ readonly name: "ConflictException";
21
+ readonly $fault: "client";
22
+ /**
23
+ * @internal
24
+ */
25
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
26
+ }
27
+ /**
28
+ * <p>An unexpected error occurred during processing of the request.</p>
29
+ * @public
30
+ */
31
+ export declare class InternalServerException extends __BaseException {
32
+ readonly name: "InternalServerException";
33
+ readonly $fault: "server";
34
+ /**
35
+ * @internal
36
+ */
37
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
38
+ }
39
+ /**
40
+ * <p>The request references a resource which does not exist.</p>
41
+ * @public
42
+ */
43
+ export declare class ResourceNotFoundException extends __BaseException {
44
+ readonly name: "ResourceNotFoundException";
45
+ readonly $fault: "client";
46
+ /**
47
+ * @internal
48
+ */
49
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
50
+ }
51
+ /**
52
+ * <p>The request caused a service quota to be exceeded.</p>
53
+ * @public
54
+ */
55
+ export declare class ServiceQuotaExceededException extends __BaseException {
56
+ readonly name: "ServiceQuotaExceededException";
57
+ readonly $fault: "client";
58
+ /**
59
+ * @internal
60
+ */
61
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
62
+ }
63
+ /**
64
+ * <p>The request was denied due to throttling.</p>
65
+ * @public
66
+ */
67
+ export declare class ThrottlingException extends __BaseException {
68
+ readonly name: "ThrottlingException";
69
+ readonly $fault: "client";
70
+ /**
71
+ * @internal
72
+ */
73
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
74
+ }
75
+ /**
76
+ * <p>The input fails to satisfy the constraints set by the service.</p>
77
+ * @public
78
+ */
79
+ export declare class ValidationException extends __BaseException {
80
+ readonly name: "ValidationException";
81
+ readonly $fault: "client";
82
+ /**
83
+ * @internal
84
+ */
85
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
86
+ }
@@ -1,30 +1,5 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
1
  import { StreamingBlobTypes } from "@smithy/types";
3
- import { MedicalImagingServiceException as __BaseException } from "./MedicalImagingServiceException";
4
- /**
5
- * <p>The user does not have sufficient access to perform this action.</p>
6
- * @public
7
- */
8
- export declare class AccessDeniedException extends __BaseException {
9
- readonly name: "AccessDeniedException";
10
- readonly $fault: "client";
11
- /**
12
- * @internal
13
- */
14
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
- }
16
- /**
17
- * <p>Updating or deleting a resource can cause an inconsistent state.</p>
18
- * @public
19
- */
20
- export declare class ConflictException extends __BaseException {
21
- readonly name: "ConflictException";
22
- readonly $fault: "client";
23
- /**
24
- * @internal
25
- */
26
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
27
- }
2
+ import { DatastoreStatus, ImageSetState, ImageSetWorkflowStatus, JobStatus, LosslessStorageFormat, Operator, SortField, SortOrder, StorageTier } from "./enums";
28
3
  /**
29
4
  * <p>Copy the destination image set.</p>
30
5
  * @public
@@ -114,42 +89,6 @@ export interface CopyImageSetRequest {
114
89
  */
115
90
  promoteToPrimary?: boolean | undefined;
116
91
  }
117
- /**
118
- * @public
119
- * @enum
120
- */
121
- export declare const ImageSetState: {
122
- readonly ACTIVE: "ACTIVE";
123
- readonly DELETED: "DELETED";
124
- readonly LOCKED: "LOCKED";
125
- };
126
- /**
127
- * @public
128
- */
129
- export type ImageSetState = (typeof ImageSetState)[keyof typeof ImageSetState];
130
- /**
131
- * @public
132
- * @enum
133
- */
134
- export declare const ImageSetWorkflowStatus: {
135
- readonly COPIED: "COPIED";
136
- readonly COPYING: "COPYING";
137
- readonly COPYING_WITH_READ_ONLY_ACCESS: "COPYING_WITH_READ_ONLY_ACCESS";
138
- readonly COPY_FAILED: "COPY_FAILED";
139
- readonly CREATED: "CREATED";
140
- readonly DELETED: "DELETED";
141
- readonly DELETING: "DELETING";
142
- readonly IMPORTED: "IMPORTED";
143
- readonly IMPORTING: "IMPORTING";
144
- readonly IMPORT_FAILED: "IMPORT_FAILED";
145
- readonly UPDATED: "UPDATED";
146
- readonly UPDATE_FAILED: "UPDATE_FAILED";
147
- readonly UPDATING: "UPDATING";
148
- };
149
- /**
150
- * @public
151
- */
152
- export type ImageSetWorkflowStatus = (typeof ImageSetWorkflowStatus)[keyof typeof ImageSetWorkflowStatus];
153
92
  /**
154
93
  * <p>Copy the image set properties of the destination image set.</p>
155
94
  * @public
@@ -252,78 +191,6 @@ export interface CopyImageSetResponse {
252
191
  */
253
192
  destinationImageSetProperties: CopyDestinationImageSetProperties | undefined;
254
193
  }
255
- /**
256
- * <p>An unexpected error occurred during processing of the request.</p>
257
- * @public
258
- */
259
- export declare class InternalServerException extends __BaseException {
260
- readonly name: "InternalServerException";
261
- readonly $fault: "server";
262
- /**
263
- * @internal
264
- */
265
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
266
- }
267
- /**
268
- * <p>The request references a resource which does not exist.</p>
269
- * @public
270
- */
271
- export declare class ResourceNotFoundException extends __BaseException {
272
- readonly name: "ResourceNotFoundException";
273
- readonly $fault: "client";
274
- /**
275
- * @internal
276
- */
277
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
278
- }
279
- /**
280
- * <p>The request caused a service quota to be exceeded.</p>
281
- * @public
282
- */
283
- export declare class ServiceQuotaExceededException extends __BaseException {
284
- readonly name: "ServiceQuotaExceededException";
285
- readonly $fault: "client";
286
- /**
287
- * @internal
288
- */
289
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
290
- }
291
- /**
292
- * <p>The request was denied due to throttling.</p>
293
- * @public
294
- */
295
- export declare class ThrottlingException extends __BaseException {
296
- readonly name: "ThrottlingException";
297
- readonly $fault: "client";
298
- /**
299
- * @internal
300
- */
301
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
302
- }
303
- /**
304
- * <p>The input fails to satisfy the constraints set by the service.</p>
305
- * @public
306
- */
307
- export declare class ValidationException extends __BaseException {
308
- readonly name: "ValidationException";
309
- readonly $fault: "client";
310
- /**
311
- * @internal
312
- */
313
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
314
- }
315
- /**
316
- * @public
317
- * @enum
318
- */
319
- export declare const LosslessStorageFormat: {
320
- readonly HTJ2K: "HTJ2K";
321
- readonly JPEG_2000_LOSSLESS: "JPEG_2000_LOSSLESS";
322
- };
323
- /**
324
- * @public
325
- */
326
- export type LosslessStorageFormat = (typeof LosslessStorageFormat)[keyof typeof LosslessStorageFormat];
327
194
  /**
328
195
  * @public
329
196
  */
@@ -359,21 +226,6 @@ export interface CreateDatastoreRequest {
359
226
  */
360
227
  losslessStorageFormat?: LosslessStorageFormat | undefined;
361
228
  }
362
- /**
363
- * @public
364
- * @enum
365
- */
366
- export declare const DatastoreStatus: {
367
- readonly ACTIVE: "ACTIVE";
368
- readonly CREATE_FAILED: "CREATE_FAILED";
369
- readonly CREATING: "CREATING";
370
- readonly DELETED: "DELETED";
371
- readonly DELETING: "DELETING";
372
- };
373
- /**
374
- * @public
375
- */
376
- export type DatastoreStatus = (typeof DatastoreStatus)[keyof typeof DatastoreStatus];
377
229
  /**
378
230
  * @public
379
231
  */
@@ -611,20 +463,6 @@ export interface GetDICOMImportJobRequest {
611
463
  */
612
464
  jobId: string | undefined;
613
465
  }
614
- /**
615
- * @public
616
- * @enum
617
- */
618
- export declare const JobStatus: {
619
- readonly COMPLETED: "COMPLETED";
620
- readonly FAILED: "FAILED";
621
- readonly IN_PROGRESS: "IN_PROGRESS";
622
- readonly SUBMITTED: "SUBMITTED";
623
- };
624
- /**
625
- * @public
626
- */
627
- export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
628
466
  /**
629
467
  * <p>Properties of the import job.</p>
630
468
  * @public
@@ -768,24 +606,6 @@ export interface Overrides {
768
606
  */
769
607
  forced?: boolean | undefined;
770
608
  }
771
- /**
772
- * @public
773
- * @enum
774
- */
775
- export declare const StorageTier: {
776
- /**
777
- * Archive instant access storage tier for image sets that are accessed infrequently
778
- */
779
- readonly ARCHIVE_INSTANT_ACCESS: "ARCHIVE_INSTANT_ACCESS";
780
- /**
781
- * Frequent access storage tier for image sets that are accessed regularly
782
- */
783
- readonly FREQUENT_ACCESS: "FREQUENT_ACCESS";
784
- };
785
- /**
786
- * @public
787
- */
788
- export type StorageTier = (typeof StorageTier)[keyof typeof StorageTier];
789
609
  /**
790
610
  * @public
791
611
  */
@@ -1103,18 +923,6 @@ export interface ListTagsForResourceResponse {
1103
923
  */
1104
924
  tags: Record<string, string> | undefined;
1105
925
  }
1106
- /**
1107
- * @public
1108
- * @enum
1109
- */
1110
- export declare const Operator: {
1111
- readonly BETWEEN: "BETWEEN";
1112
- readonly EQUAL: "EQUAL";
1113
- };
1114
- /**
1115
- * @public
1116
- */
1117
- export type Operator = (typeof Operator)[keyof typeof Operator];
1118
926
  /**
1119
927
  * <p>The aggregated structure to store DICOM study date and study time for search capabilities.</p>
1120
928
  * @public
@@ -1332,31 +1140,6 @@ export interface SearchFilter {
1332
1140
  */
1333
1141
  operator: Operator | undefined;
1334
1142
  }
1335
- /**
1336
- * @public
1337
- * @enum
1338
- */
1339
- export declare const SortField: {
1340
- readonly DICOMStudyDateAndTime: "DICOMStudyDateAndTime";
1341
- readonly createdAt: "createdAt";
1342
- readonly updatedAt: "updatedAt";
1343
- };
1344
- /**
1345
- * @public
1346
- */
1347
- export type SortField = (typeof SortField)[keyof typeof SortField];
1348
- /**
1349
- * @public
1350
- * @enum
1351
- */
1352
- export declare const SortOrder: {
1353
- readonly ASC: "ASC";
1354
- readonly DESC: "DESC";
1355
- };
1356
- /**
1357
- * @public
1358
- */
1359
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
1360
1143
  /**
1361
1144
  * <p>Sort search results.</p>
1362
1145
  * @public
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { MedicalImagingExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { MedicalImagingServiceException } from "./models/MedicalImagingServiceException";
@@ -0,0 +1,66 @@
1
+ export declare const ImageSetState: {
2
+ readonly ACTIVE: "ACTIVE";
3
+ readonly DELETED: "DELETED";
4
+ readonly LOCKED: "LOCKED";
5
+ };
6
+ export type ImageSetState = (typeof ImageSetState)[keyof typeof ImageSetState];
7
+ export declare const ImageSetWorkflowStatus: {
8
+ readonly COPIED: "COPIED";
9
+ readonly COPYING: "COPYING";
10
+ readonly COPYING_WITH_READ_ONLY_ACCESS: "COPYING_WITH_READ_ONLY_ACCESS";
11
+ readonly COPY_FAILED: "COPY_FAILED";
12
+ readonly CREATED: "CREATED";
13
+ readonly DELETED: "DELETED";
14
+ readonly DELETING: "DELETING";
15
+ readonly IMPORTED: "IMPORTED";
16
+ readonly IMPORTING: "IMPORTING";
17
+ readonly IMPORT_FAILED: "IMPORT_FAILED";
18
+ readonly UPDATED: "UPDATED";
19
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
20
+ readonly UPDATING: "UPDATING";
21
+ };
22
+ export type ImageSetWorkflowStatus =
23
+ (typeof ImageSetWorkflowStatus)[keyof typeof ImageSetWorkflowStatus];
24
+ export declare const LosslessStorageFormat: {
25
+ readonly HTJ2K: "HTJ2K";
26
+ readonly JPEG_2000_LOSSLESS: "JPEG_2000_LOSSLESS";
27
+ };
28
+ export type LosslessStorageFormat =
29
+ (typeof LosslessStorageFormat)[keyof typeof LosslessStorageFormat];
30
+ export declare const DatastoreStatus: {
31
+ readonly ACTIVE: "ACTIVE";
32
+ readonly CREATE_FAILED: "CREATE_FAILED";
33
+ readonly CREATING: "CREATING";
34
+ readonly DELETED: "DELETED";
35
+ readonly DELETING: "DELETING";
36
+ };
37
+ export type DatastoreStatus =
38
+ (typeof DatastoreStatus)[keyof typeof DatastoreStatus];
39
+ export declare const JobStatus: {
40
+ readonly COMPLETED: "COMPLETED";
41
+ readonly FAILED: "FAILED";
42
+ readonly IN_PROGRESS: "IN_PROGRESS";
43
+ readonly SUBMITTED: "SUBMITTED";
44
+ };
45
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
46
+ export declare const StorageTier: {
47
+ readonly ARCHIVE_INSTANT_ACCESS: "ARCHIVE_INSTANT_ACCESS";
48
+ readonly FREQUENT_ACCESS: "FREQUENT_ACCESS";
49
+ };
50
+ export type StorageTier = (typeof StorageTier)[keyof typeof StorageTier];
51
+ export declare const Operator: {
52
+ readonly BETWEEN: "BETWEEN";
53
+ readonly EQUAL: "EQUAL";
54
+ };
55
+ export type Operator = (typeof Operator)[keyof typeof Operator];
56
+ export declare const SortField: {
57
+ readonly DICOMStudyDateAndTime: "DICOMStudyDateAndTime";
58
+ readonly createdAt: "createdAt";
59
+ readonly updatedAt: "updatedAt";
60
+ };
61
+ export type SortField = (typeof SortField)[keyof typeof SortField];
62
+ export declare const SortOrder: {
63
+ readonly ASC: "ASC";
64
+ readonly DESC: "DESC";
65
+ };
66
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
@@ -0,0 +1,49 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { MedicalImagingServiceException as __BaseException } from "./MedicalImagingServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare class ConflictException extends __BaseException {
11
+ readonly name: "ConflictException";
12
+ readonly $fault: "client";
13
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
14
+ }
15
+ export declare class InternalServerException extends __BaseException {
16
+ readonly name: "InternalServerException";
17
+ readonly $fault: "server";
18
+ constructor(
19
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
20
+ );
21
+ }
22
+ export declare class ResourceNotFoundException extends __BaseException {
23
+ readonly name: "ResourceNotFoundException";
24
+ readonly $fault: "client";
25
+ constructor(
26
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
27
+ );
28
+ }
29
+ export declare class ServiceQuotaExceededException extends __BaseException {
30
+ readonly name: "ServiceQuotaExceededException";
31
+ readonly $fault: "client";
32
+ constructor(
33
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
34
+ );
35
+ }
36
+ export declare class ThrottlingException extends __BaseException {
37
+ readonly name: "ThrottlingException";
38
+ readonly $fault: "client";
39
+ constructor(
40
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
41
+ );
42
+ }
43
+ export declare class ValidationException extends __BaseException {
44
+ readonly name: "ValidationException";
45
+ readonly $fault: "client";
46
+ constructor(
47
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
48
+ );
49
+ }
@@ -1,18 +1,15 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
1
  import { StreamingBlobTypes } from "@smithy/types";
3
- import { MedicalImagingServiceException as __BaseException } from "./MedicalImagingServiceException";
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- constructor(
8
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
- );
10
- }
11
- export declare class ConflictException extends __BaseException {
12
- readonly name: "ConflictException";
13
- readonly $fault: "client";
14
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
15
- }
2
+ import {
3
+ DatastoreStatus,
4
+ ImageSetState,
5
+ ImageSetWorkflowStatus,
6
+ JobStatus,
7
+ LosslessStorageFormat,
8
+ Operator,
9
+ SortField,
10
+ SortOrder,
11
+ StorageTier,
12
+ } from "./enums";
16
13
  export interface CopyDestinationImageSet {
17
14
  imageSetId: string | undefined;
18
15
  latestVersionId: string | undefined;
@@ -35,29 +32,6 @@ export interface CopyImageSetRequest {
35
32
  force?: boolean | undefined;
36
33
  promoteToPrimary?: boolean | undefined;
37
34
  }
38
- export declare const ImageSetState: {
39
- readonly ACTIVE: "ACTIVE";
40
- readonly DELETED: "DELETED";
41
- readonly LOCKED: "LOCKED";
42
- };
43
- export type ImageSetState = (typeof ImageSetState)[keyof typeof ImageSetState];
44
- export declare const ImageSetWorkflowStatus: {
45
- readonly COPIED: "COPIED";
46
- readonly COPYING: "COPYING";
47
- readonly COPYING_WITH_READ_ONLY_ACCESS: "COPYING_WITH_READ_ONLY_ACCESS";
48
- readonly COPY_FAILED: "COPY_FAILED";
49
- readonly CREATED: "CREATED";
50
- readonly DELETED: "DELETED";
51
- readonly DELETING: "DELETING";
52
- readonly IMPORTED: "IMPORTED";
53
- readonly IMPORTING: "IMPORTING";
54
- readonly IMPORT_FAILED: "IMPORT_FAILED";
55
- readonly UPDATED: "UPDATED";
56
- readonly UPDATE_FAILED: "UPDATE_FAILED";
57
- readonly UPDATING: "UPDATING";
58
- };
59
- export type ImageSetWorkflowStatus =
60
- (typeof ImageSetWorkflowStatus)[keyof typeof ImageSetWorkflowStatus];
61
35
  export interface CopyDestinationImageSetProperties {
62
36
  imageSetId: string | undefined;
63
37
  latestVersionId: string | undefined;
@@ -81,47 +55,6 @@ export interface CopyImageSetResponse {
81
55
  sourceImageSetProperties: CopySourceImageSetProperties | undefined;
82
56
  destinationImageSetProperties: CopyDestinationImageSetProperties | undefined;
83
57
  }
84
- export declare class InternalServerException extends __BaseException {
85
- readonly name: "InternalServerException";
86
- readonly $fault: "server";
87
- constructor(
88
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
89
- );
90
- }
91
- export declare class ResourceNotFoundException extends __BaseException {
92
- readonly name: "ResourceNotFoundException";
93
- readonly $fault: "client";
94
- constructor(
95
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
96
- );
97
- }
98
- export declare class ServiceQuotaExceededException extends __BaseException {
99
- readonly name: "ServiceQuotaExceededException";
100
- readonly $fault: "client";
101
- constructor(
102
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
103
- );
104
- }
105
- export declare class ThrottlingException extends __BaseException {
106
- readonly name: "ThrottlingException";
107
- readonly $fault: "client";
108
- constructor(
109
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
110
- );
111
- }
112
- export declare class ValidationException extends __BaseException {
113
- readonly name: "ValidationException";
114
- readonly $fault: "client";
115
- constructor(
116
- opts: __ExceptionOptionType<ValidationException, __BaseException>
117
- );
118
- }
119
- export declare const LosslessStorageFormat: {
120
- readonly HTJ2K: "HTJ2K";
121
- readonly JPEG_2000_LOSSLESS: "JPEG_2000_LOSSLESS";
122
- };
123
- export type LosslessStorageFormat =
124
- (typeof LosslessStorageFormat)[keyof typeof LosslessStorageFormat];
125
58
  export interface CreateDatastoreRequest {
126
59
  datastoreName?: string | undefined;
127
60
  clientToken?: string | undefined;
@@ -130,15 +63,6 @@ export interface CreateDatastoreRequest {
130
63
  lambdaAuthorizerArn?: string | undefined;
131
64
  losslessStorageFormat?: LosslessStorageFormat | undefined;
132
65
  }
133
- export declare const DatastoreStatus: {
134
- readonly ACTIVE: "ACTIVE";
135
- readonly CREATE_FAILED: "CREATE_FAILED";
136
- readonly CREATING: "CREATING";
137
- readonly DELETED: "DELETED";
138
- readonly DELETING: "DELETING";
139
- };
140
- export type DatastoreStatus =
141
- (typeof DatastoreStatus)[keyof typeof DatastoreStatus];
142
66
  export interface CreateDatastoreResponse {
143
67
  datastoreId: string | undefined;
144
68
  datastoreStatus: DatastoreStatus | undefined;
@@ -198,13 +122,6 @@ export interface GetDICOMImportJobRequest {
198
122
  datastoreId: string | undefined;
199
123
  jobId: string | undefined;
200
124
  }
201
- export declare const JobStatus: {
202
- readonly COMPLETED: "COMPLETED";
203
- readonly FAILED: "FAILED";
204
- readonly IN_PROGRESS: "IN_PROGRESS";
205
- readonly SUBMITTED: "SUBMITTED";
206
- };
207
- export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
208
125
  export interface DICOMImportJobProperties {
209
126
  jobId: string | undefined;
210
127
  jobName: string | undefined;
@@ -240,11 +157,6 @@ export interface GetImageSetRequest {
240
157
  export interface Overrides {
241
158
  forced?: boolean | undefined;
242
159
  }
243
- export declare const StorageTier: {
244
- readonly ARCHIVE_INSTANT_ACCESS: "ARCHIVE_INSTANT_ACCESS";
245
- readonly FREQUENT_ACCESS: "FREQUENT_ACCESS";
246
- };
247
- export type StorageTier = (typeof StorageTier)[keyof typeof StorageTier];
248
160
  export interface GetImageSetResponse {
249
161
  datastoreId: string | undefined;
250
162
  imageSetId: string | undefined;
@@ -319,11 +231,6 @@ export interface ListTagsForResourceRequest {
319
231
  export interface ListTagsForResourceResponse {
320
232
  tags: Record<string, string> | undefined;
321
233
  }
322
- export declare const Operator: {
323
- readonly BETWEEN: "BETWEEN";
324
- readonly EQUAL: "EQUAL";
325
- };
326
- export type Operator = (typeof Operator)[keyof typeof Operator];
327
234
  export interface DICOMStudyDateAndTime {
328
235
  DICOMStudyDate: string | undefined;
329
236
  DICOMStudyTime?: string | undefined;
@@ -477,17 +384,6 @@ export interface SearchFilter {
477
384
  values: SearchByAttributeValue[] | undefined;
478
385
  operator: Operator | undefined;
479
386
  }
480
- export declare const SortField: {
481
- readonly DICOMStudyDateAndTime: "DICOMStudyDateAndTime";
482
- readonly createdAt: "createdAt";
483
- readonly updatedAt: "updatedAt";
484
- };
485
- export type SortField = (typeof SortField)[keyof typeof SortField];
486
- export declare const SortOrder: {
487
- readonly ASC: "ASC";
488
- readonly DESC: "DESC";
489
- };
490
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
491
387
  export interface Sort {
492
388
  sortOrder: SortOrder | undefined;
493
389
  sortField: SortField | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-medical-imaging",
3
3
  "description": "AWS SDK for JavaScript Medical Imaging Client for Node.js, Browser and React Native",
4
- "version": "3.933.0",
4
+ "version": "3.935.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-medical-imaging",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.932.0",
24
- "@aws-sdk/credential-provider-node": "3.933.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.932.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.932.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";