@aws-sdk/client-datazone 3.1067.0 → 3.1069.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/README.md +7 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +658 -664
- package/dist-cjs/models/DataZoneServiceException.js +4 -8
- package/dist-cjs/models/errors.js +17 -28
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +1965 -1253
- package/dist-es/DataZone.js +2 -0
- package/dist-es/commands/DeleteLineageEventCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +16 -0
- package/dist-types/DataZone.d.ts +7 -0
- package/dist-types/DataZoneClient.d.ts +3 -2
- package/dist-types/commands/DeleteLineageEventCommand.d.ts +97 -0
- package/dist-types/commands/ListNotebookRunsCommand.d.ts +2 -1
- package/dist-types/commands/StartNotebookRunCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +35 -75
- package/dist-types/models/models_2.d.ts +76 -1
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/DataZone.d.ts +17 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DeleteLineageEventCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListNotebookRunsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartNotebookRunCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +9 -17
- package/dist-types/ts3.4/models/models_2.d.ts +18 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +8 -8
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
ListNotebookRunsOutput,
|
|
11
|
-
} from "../models/models_1";
|
|
8
|
+
import { ListNotebookRunsInput } from "../models/models_1";
|
|
9
|
+
import { ListNotebookRunsOutput } from "../models/models_2";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface ListNotebookRunsCommandInput extends ListNotebookRunsInput {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
StartNotebookRunInput,
|
|
10
|
+
StartNotebookRunOutput,
|
|
11
|
+
} from "../models/models_2";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface StartNotebookRunCommandInput extends StartNotebookRunInput {}
|
|
@@ -55,6 +55,7 @@ export * from "./DeleteEnvironmentProfileCommand";
|
|
|
55
55
|
export * from "./DeleteFormTypeCommand";
|
|
56
56
|
export * from "./DeleteGlossaryCommand";
|
|
57
57
|
export * from "./DeleteGlossaryTermCommand";
|
|
58
|
+
export * from "./DeleteLineageEventCommand";
|
|
58
59
|
export * from "./DeleteListingCommand";
|
|
59
60
|
export * from "./DeleteNotebookCommand";
|
|
60
61
|
export * from "./DeleteProjectCommand";
|
|
@@ -692,6 +692,15 @@ export interface DeleteEnvironmentProfileInput {
|
|
|
692
692
|
domainIdentifier: string | undefined;
|
|
693
693
|
identifier: string | undefined;
|
|
694
694
|
}
|
|
695
|
+
export interface DeleteLineageEventInput {
|
|
696
|
+
domainIdentifier: string | undefined;
|
|
697
|
+
identifier: string | undefined;
|
|
698
|
+
}
|
|
699
|
+
export interface DeleteLineageEventOutput {
|
|
700
|
+
id?: string | undefined;
|
|
701
|
+
domainId?: string | undefined;
|
|
702
|
+
processingStatus?: LineageEventProcessingStatus | undefined;
|
|
703
|
+
}
|
|
695
704
|
export interface DeleteProjectInput {
|
|
696
705
|
domainIdentifier: string | undefined;
|
|
697
706
|
identifier: string | undefined;
|
|
@@ -2468,20 +2477,3 @@ export interface NotebookRunSummary {
|
|
|
2468
2477
|
startedAt?: Date | undefined;
|
|
2469
2478
|
completedAt?: Date | undefined;
|
|
2470
2479
|
}
|
|
2471
|
-
export interface ListNotebookRunsOutput {
|
|
2472
|
-
items?: NotebookRunSummary[] | undefined;
|
|
2473
|
-
nextToken?: string | undefined;
|
|
2474
|
-
}
|
|
2475
|
-
export interface StartNotebookRunInput {
|
|
2476
|
-
domainIdentifier: string | undefined;
|
|
2477
|
-
owningProjectIdentifier: string | undefined;
|
|
2478
|
-
notebookIdentifier: string | undefined;
|
|
2479
|
-
scheduleIdentifier?: string | undefined;
|
|
2480
|
-
computeConfiguration?: ComputeConfig | undefined;
|
|
2481
|
-
networkConfiguration?: NetworkConfig | undefined;
|
|
2482
|
-
timeoutConfiguration?: TimeoutConfig | undefined;
|
|
2483
|
-
triggerSource?: TriggerSource | undefined;
|
|
2484
|
-
metadata?: Record<string, string> | undefined;
|
|
2485
|
-
parameters?: Record<string, string> | undefined;
|
|
2486
|
-
clientToken?: string | undefined;
|
|
2487
|
-
}
|
|
@@ -94,6 +94,7 @@ import {
|
|
|
94
94
|
Import,
|
|
95
95
|
NetworkConfig,
|
|
96
96
|
NotebookRunError,
|
|
97
|
+
NotebookRunSummary,
|
|
97
98
|
StorageConfig,
|
|
98
99
|
SubscribedAsset,
|
|
99
100
|
SubscriptionTargetForm,
|
|
@@ -101,6 +102,23 @@ import {
|
|
|
101
102
|
TimeSeriesDataPointFormOutput,
|
|
102
103
|
TriggerSource,
|
|
103
104
|
} from "./models_1";
|
|
105
|
+
export interface ListNotebookRunsOutput {
|
|
106
|
+
items?: NotebookRunSummary[] | undefined;
|
|
107
|
+
nextToken?: string | undefined;
|
|
108
|
+
}
|
|
109
|
+
export interface StartNotebookRunInput {
|
|
110
|
+
domainIdentifier: string | undefined;
|
|
111
|
+
owningProjectIdentifier: string | undefined;
|
|
112
|
+
notebookIdentifier: string | undefined;
|
|
113
|
+
scheduleIdentifier?: string | undefined;
|
|
114
|
+
computeConfiguration?: ComputeConfig | undefined;
|
|
115
|
+
networkConfiguration?: NetworkConfig | undefined;
|
|
116
|
+
timeoutConfiguration?: TimeoutConfig | undefined;
|
|
117
|
+
triggerSource?: TriggerSource | undefined;
|
|
118
|
+
metadata?: Record<string, string> | undefined;
|
|
119
|
+
parameters?: Record<string, string> | undefined;
|
|
120
|
+
clientToken?: string | undefined;
|
|
121
|
+
}
|
|
104
122
|
export interface StartNotebookRunOutput {
|
|
105
123
|
id: string | undefined;
|
|
106
124
|
domainId: string | undefined;
|
|
@@ -198,6 +198,8 @@ export declare var DeleteGlossaryInput$: StaticStructureSchema;
|
|
|
198
198
|
export declare var DeleteGlossaryOutput$: StaticStructureSchema;
|
|
199
199
|
export declare var DeleteGlossaryTermInput$: StaticStructureSchema;
|
|
200
200
|
export declare var DeleteGlossaryTermOutput$: StaticStructureSchema;
|
|
201
|
+
export declare var DeleteLineageEventInput$: StaticStructureSchema;
|
|
202
|
+
export declare var DeleteLineageEventOutput$: StaticStructureSchema;
|
|
201
203
|
export declare var DeleteListingInput$: StaticStructureSchema;
|
|
202
204
|
export declare var DeleteListingOutput$: StaticStructureSchema;
|
|
203
205
|
export declare var DeleteNotebookInput$: StaticStructureSchema;
|
|
@@ -778,6 +780,7 @@ export declare var DeleteEnvironmentProfile$: StaticOperationSchema;
|
|
|
778
780
|
export declare var DeleteFormType$: StaticOperationSchema;
|
|
779
781
|
export declare var DeleteGlossary$: StaticOperationSchema;
|
|
780
782
|
export declare var DeleteGlossaryTerm$: StaticOperationSchema;
|
|
783
|
+
export declare var DeleteLineageEvent$: StaticOperationSchema;
|
|
781
784
|
export declare var DeleteListing$: StaticOperationSchema;
|
|
782
785
|
export declare var DeleteNotebook$: StaticOperationSchema;
|
|
783
786
|
export declare var DeleteProject$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-datazone",
|
|
3
3
|
"description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1069.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
8
|
-
"build:es": "tsc -p tsconfig.es.json",
|
|
8
|
+
"build:es": "premove dist-es && tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
10
|
+
"build:types": "premove dist-types && tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "premove dist-cjs dist-es dist-types
|
|
12
|
+
"clean": "premove dist-cjs dist-es dist-types",
|
|
13
13
|
"extract:docs": "api-extractor run --local",
|
|
14
|
-
"generate:client": "node ../../scripts/generate-clients/single-service
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
15
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
16
|
},
|
|
17
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.974.21",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.56",
|
|
26
|
+
"@aws-sdk/types": "^3.973.13",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
29
29
|
"@smithy/node-http-handler": "^4.7.6",
|