@aws-sdk/client-medical-imaging 3.887.0 → 3.889.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 +5 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/CopyImageSetCommand.d.ts +2 -2
- package/dist-types/commands/CreateDatastoreCommand.d.ts +4 -0
- package/dist-types/commands/DeleteImageSetCommand.d.ts +1 -1
- package/dist-types/commands/GetDatastoreCommand.d.ts +1 -0
- package/dist-types/commands/GetImageSetCommand.d.ts +1 -1
- package/dist-types/commands/ListImageSetVersionsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateImageSetMetadataCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +5 -0
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -300,6 +300,9 @@ var ImageSetWorkflowStatus = {
|
|
|
300
300
|
CREATED: "CREATED",
|
|
301
301
|
DELETED: "DELETED",
|
|
302
302
|
DELETING: "DELETING",
|
|
303
|
+
IMPORTED: "IMPORTED",
|
|
304
|
+
IMPORTING: "IMPORTING",
|
|
305
|
+
IMPORT_FAILED: "IMPORT_FAILED",
|
|
303
306
|
UPDATED: "UPDATED",
|
|
304
307
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
305
308
|
UPDATING: "UPDATING"
|
|
@@ -592,6 +595,7 @@ var se_CreateDatastoreCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
592
595
|
clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
593
596
|
datastoreName: [],
|
|
594
597
|
kmsKeyArn: [],
|
|
598
|
+
lambdaAuthorizerArn: [],
|
|
595
599
|
tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "tags")
|
|
596
600
|
})
|
|
597
601
|
);
|
|
@@ -1365,6 +1369,7 @@ var de_DatastoreProperties = /* @__PURE__ */ __name((output, context) => {
|
|
|
1365
1369
|
datastoreName: import_smithy_client.expectString,
|
|
1366
1370
|
datastoreStatus: import_smithy_client.expectString,
|
|
1367
1371
|
kmsKeyArn: import_smithy_client.expectString,
|
|
1372
|
+
lambdaAuthorizerArn: import_smithy_client.expectString,
|
|
1368
1373
|
updatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "updatedAt")
|
|
1369
1374
|
});
|
|
1370
1375
|
}, "de_DatastoreProperties");
|
|
@@ -37,6 +37,9 @@ export const ImageSetWorkflowStatus = {
|
|
|
37
37
|
CREATED: "CREATED",
|
|
38
38
|
DELETED: "DELETED",
|
|
39
39
|
DELETING: "DELETING",
|
|
40
|
+
IMPORTED: "IMPORTED",
|
|
41
|
+
IMPORTING: "IMPORTING",
|
|
42
|
+
IMPORT_FAILED: "IMPORT_FAILED",
|
|
40
43
|
UPDATED: "UPDATED",
|
|
41
44
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
42
45
|
UPDATING: "UPDATING",
|
|
@@ -47,6 +47,7 @@ export const se_CreateDatastoreCommand = async (input, context) => {
|
|
|
47
47
|
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
48
48
|
datastoreName: [],
|
|
49
49
|
kmsKeyArn: [],
|
|
50
|
+
lambdaAuthorizerArn: [],
|
|
50
51
|
tags: (_) => _json(_),
|
|
51
52
|
}));
|
|
52
53
|
b.m("POST").h(headers).b(body);
|
|
@@ -819,6 +820,7 @@ const de_DatastoreProperties = (output, context) => {
|
|
|
819
820
|
datastoreName: __expectString,
|
|
820
821
|
datastoreStatus: __expectString,
|
|
821
822
|
kmsKeyArn: __expectString,
|
|
823
|
+
lambdaAuthorizerArn: __expectString,
|
|
822
824
|
updatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
823
825
|
});
|
|
824
826
|
};
|
|
@@ -60,7 +60,7 @@ declare const CopyImageSetCommand_base: {
|
|
|
60
60
|
* // imageSetId: "STRING_VALUE", // required
|
|
61
61
|
* // latestVersionId: "STRING_VALUE", // required
|
|
62
62
|
* // imageSetState: "ACTIVE" || "LOCKED" || "DELETED",
|
|
63
|
-
* // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED",
|
|
63
|
+
* // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED" || "IMPORTING" || "IMPORTED" || "IMPORT_FAILED",
|
|
64
64
|
* // createdAt: new Date("TIMESTAMP"),
|
|
65
65
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
66
66
|
* // imageSetArn: "STRING_VALUE",
|
|
@@ -69,7 +69,7 @@ declare const CopyImageSetCommand_base: {
|
|
|
69
69
|
* // imageSetId: "STRING_VALUE", // required
|
|
70
70
|
* // latestVersionId: "STRING_VALUE", // required
|
|
71
71
|
* // imageSetState: "ACTIVE" || "LOCKED" || "DELETED",
|
|
72
|
-
* // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED",
|
|
72
|
+
* // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED" || "IMPORTING" || "IMPORTED" || "IMPORT_FAILED",
|
|
73
73
|
* // createdAt: new Date("TIMESTAMP"),
|
|
74
74
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
75
75
|
* // imageSetArn: "STRING_VALUE",
|
|
@@ -41,6 +41,7 @@ declare const CreateDatastoreCommand_base: {
|
|
|
41
41
|
* "<keys>": "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
43
|
* kmsKeyArn: "STRING_VALUE",
|
|
44
|
+
* lambdaAuthorizerArn: "STRING_VALUE",
|
|
44
45
|
* };
|
|
45
46
|
* const command = new CreateDatastoreCommand(input);
|
|
46
47
|
* const response = await client.send(command);
|
|
@@ -66,6 +67,9 @@ declare const CreateDatastoreCommand_base: {
|
|
|
66
67
|
* @throws {@link InternalServerException} (server fault)
|
|
67
68
|
* <p>An unexpected error occurred during processing of the request.</p>
|
|
68
69
|
*
|
|
70
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
71
|
+
* <p>The request references a resource which does not exist.</p>
|
|
72
|
+
*
|
|
69
73
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
70
74
|
* <p>The request caused a service quota to be exceeded.</p>
|
|
71
75
|
*
|
|
@@ -44,7 +44,7 @@ declare const DeleteImageSetCommand_base: {
|
|
|
44
44
|
* // datastoreId: "STRING_VALUE", // required
|
|
45
45
|
* // imageSetId: "STRING_VALUE", // required
|
|
46
46
|
* // imageSetState: "ACTIVE" || "LOCKED" || "DELETED", // required
|
|
47
|
-
* // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED", // required
|
|
47
|
+
* // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED" || "IMPORTING" || "IMPORTED" || "IMPORT_FAILED", // required
|
|
48
48
|
* // };
|
|
49
49
|
*
|
|
50
50
|
* ```
|
|
@@ -45,6 +45,7 @@ declare const GetDatastoreCommand_base: {
|
|
|
45
45
|
* // datastoreName: "STRING_VALUE", // required
|
|
46
46
|
* // datastoreStatus: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "DELETING" || "DELETED", // required
|
|
47
47
|
* // kmsKeyArn: "STRING_VALUE",
|
|
48
|
+
* // lambdaAuthorizerArn: "STRING_VALUE",
|
|
48
49
|
* // datastoreArn: "STRING_VALUE",
|
|
49
50
|
* // createdAt: new Date("TIMESTAMP"),
|
|
50
51
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
@@ -46,7 +46,7 @@ declare const GetImageSetCommand_base: {
|
|
|
46
46
|
* // imageSetId: "STRING_VALUE", // required
|
|
47
47
|
* // versionId: "STRING_VALUE", // required
|
|
48
48
|
* // imageSetState: "ACTIVE" || "LOCKED" || "DELETED", // required
|
|
49
|
-
* // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED",
|
|
49
|
+
* // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED" || "IMPORTING" || "IMPORTED" || "IMPORT_FAILED",
|
|
50
50
|
* // createdAt: new Date("TIMESTAMP"),
|
|
51
51
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
52
52
|
* // deletedAt: new Date("TIMESTAMP"),
|
|
@@ -48,7 +48,7 @@ declare const ListImageSetVersionsCommand_base: {
|
|
|
48
48
|
* // imageSetId: "STRING_VALUE", // required
|
|
49
49
|
* // versionId: "STRING_VALUE", // required
|
|
50
50
|
* // imageSetState: "ACTIVE" || "LOCKED" || "DELETED", // required
|
|
51
|
-
* // ImageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED",
|
|
51
|
+
* // ImageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED" || "IMPORTING" || "IMPORTED" || "IMPORT_FAILED",
|
|
52
52
|
* // createdAt: new Date("TIMESTAMP"),
|
|
53
53
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
54
54
|
* // deletedAt: new Date("TIMESTAMP"),
|
|
@@ -54,7 +54,7 @@ declare const UpdateImageSetMetadataCommand_base: {
|
|
|
54
54
|
* // imageSetId: "STRING_VALUE", // required
|
|
55
55
|
* // latestVersionId: "STRING_VALUE", // required
|
|
56
56
|
* // imageSetState: "ACTIVE" || "LOCKED" || "DELETED", // required
|
|
57
|
-
* // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED",
|
|
57
|
+
* // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED" || "IMPORTING" || "IMPORTED" || "IMPORT_FAILED",
|
|
58
58
|
* // createdAt: new Date("TIMESTAMP"),
|
|
59
59
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
60
60
|
* // message: "STRING_VALUE",
|
|
@@ -139,6 +139,9 @@ export declare const ImageSetWorkflowStatus: {
|
|
|
139
139
|
readonly CREATED: "CREATED";
|
|
140
140
|
readonly DELETED: "DELETED";
|
|
141
141
|
readonly DELETING: "DELETING";
|
|
142
|
+
readonly IMPORTED: "IMPORTED";
|
|
143
|
+
readonly IMPORTING: "IMPORTING";
|
|
144
|
+
readonly IMPORT_FAILED: "IMPORT_FAILED";
|
|
142
145
|
readonly UPDATED: "UPDATED";
|
|
143
146
|
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
144
147
|
readonly UPDATING: "UPDATING";
|
|
@@ -333,6 +336,11 @@ export interface CreateDatastoreRequest {
|
|
|
333
336
|
* @public
|
|
334
337
|
*/
|
|
335
338
|
kmsKeyArn?: string | undefined;
|
|
339
|
+
/**
|
|
340
|
+
* <p>The ARN of the authorizer's Lambda function.</p>
|
|
341
|
+
* @public
|
|
342
|
+
*/
|
|
343
|
+
lambdaAuthorizerArn?: string | undefined;
|
|
336
344
|
}
|
|
337
345
|
/**
|
|
338
346
|
* @public
|
|
@@ -424,6 +432,11 @@ export interface DatastoreProperties {
|
|
|
424
432
|
* @public
|
|
425
433
|
*/
|
|
426
434
|
kmsKeyArn?: string | undefined;
|
|
435
|
+
/**
|
|
436
|
+
* <p>The ARN of the authorizer's Lambda function.</p>
|
|
437
|
+
* @public
|
|
438
|
+
*/
|
|
439
|
+
lambdaAuthorizerArn?: string | undefined;
|
|
427
440
|
/**
|
|
428
441
|
* <p>The Amazon Resource Name (ARN) for the data store.</p>
|
|
429
442
|
* @public
|
|
@@ -49,6 +49,9 @@ export declare const ImageSetWorkflowStatus: {
|
|
|
49
49
|
readonly CREATED: "CREATED";
|
|
50
50
|
readonly DELETED: "DELETED";
|
|
51
51
|
readonly DELETING: "DELETING";
|
|
52
|
+
readonly IMPORTED: "IMPORTED";
|
|
53
|
+
readonly IMPORTING: "IMPORTING";
|
|
54
|
+
readonly IMPORT_FAILED: "IMPORT_FAILED";
|
|
52
55
|
readonly UPDATED: "UPDATED";
|
|
53
56
|
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
54
57
|
readonly UPDATING: "UPDATING";
|
|
@@ -118,6 +121,7 @@ export interface CreateDatastoreRequest {
|
|
|
118
121
|
clientToken?: string | undefined;
|
|
119
122
|
tags?: Record<string, string> | undefined;
|
|
120
123
|
kmsKeyArn?: string | undefined;
|
|
124
|
+
lambdaAuthorizerArn?: string | undefined;
|
|
121
125
|
}
|
|
122
126
|
export declare const DatastoreStatus: {
|
|
123
127
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -147,6 +151,7 @@ export interface DatastoreProperties {
|
|
|
147
151
|
datastoreName: string | undefined;
|
|
148
152
|
datastoreStatus: DatastoreStatus | undefined;
|
|
149
153
|
kmsKeyArn?: string | undefined;
|
|
154
|
+
lambdaAuthorizerArn?: string | undefined;
|
|
150
155
|
datastoreArn?: string | undefined;
|
|
151
156
|
createdAt?: Date | undefined;
|
|
152
157
|
updatedAt?: Date | 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.
|
|
4
|
+
"version": "3.889.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,17 +20,17 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.888.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.888.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.887.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.887.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.887.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.888.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.887.0",
|
|
30
30
|
"@aws-sdk/types": "3.887.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.887.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.887.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.888.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.2.1",
|
|
35
35
|
"@smithy/core": "^3.11.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|