@aws-sdk/client-datazone 3.1068.0 → 3.1070.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
package/dist-es/DataZone.js
CHANGED
|
@@ -56,6 +56,7 @@ import { DeleteEnvironmentProfileCommand, } from "./commands/DeleteEnvironmentPr
|
|
|
56
56
|
import { DeleteFormTypeCommand, } from "./commands/DeleteFormTypeCommand";
|
|
57
57
|
import { DeleteGlossaryCommand, } from "./commands/DeleteGlossaryCommand";
|
|
58
58
|
import { DeleteGlossaryTermCommand, } from "./commands/DeleteGlossaryTermCommand";
|
|
59
|
+
import { DeleteLineageEventCommand, } from "./commands/DeleteLineageEventCommand";
|
|
59
60
|
import { DeleteListingCommand, } from "./commands/DeleteListingCommand";
|
|
60
61
|
import { DeleteNotebookCommand, } from "./commands/DeleteNotebookCommand";
|
|
61
62
|
import { DeleteProjectCommand, } from "./commands/DeleteProjectCommand";
|
|
@@ -286,6 +287,7 @@ const commands = {
|
|
|
286
287
|
DeleteFormTypeCommand,
|
|
287
288
|
DeleteGlossaryCommand,
|
|
288
289
|
DeleteGlossaryTermCommand,
|
|
290
|
+
DeleteLineageEventCommand,
|
|
289
291
|
DeleteListingCommand,
|
|
290
292
|
DeleteNotebookCommand,
|
|
291
293
|
DeleteProjectCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteLineageEvent$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteLineageEventCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("DataZone", "DeleteLineageEvent", {})
|
|
13
|
+
.n("DataZoneClient", "DeleteLineageEventCommand")
|
|
14
|
+
.sc(DeleteLineageEvent$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -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";
|
|
@@ -277,6 +277,9 @@ const _DGTel = "DeleteGlossaryTerm";
|
|
|
277
277
|
const _DGTi = "DisassociateGovernedTerms";
|
|
278
278
|
const _DI = "Domain-Id";
|
|
279
279
|
const _DL = "DeleteListing";
|
|
280
|
+
const _DLE = "DeleteLineageEvent";
|
|
281
|
+
const _DLEI = "DeleteLineageEventInput";
|
|
282
|
+
const _DLEO = "DeleteLineageEventOutput";
|
|
280
283
|
const _DLI = "DeleteListingInput";
|
|
281
284
|
const _DLO = "DeleteListingOutput";
|
|
282
285
|
const _DN = "DomainName";
|
|
@@ -2766,6 +2769,16 @@ export var DeleteGlossaryTermOutput$ = [3, n0, _DGTO,
|
|
|
2766
2769
|
[],
|
|
2767
2770
|
[]
|
|
2768
2771
|
];
|
|
2772
|
+
export var DeleteLineageEventInput$ = [3, n0, _DLEI,
|
|
2773
|
+
0,
|
|
2774
|
+
[_dI, _i],
|
|
2775
|
+
[[0, 1], [0, 1]], 2
|
|
2776
|
+
];
|
|
2777
|
+
export var DeleteLineageEventOutput$ = [3, n0, _DLEO,
|
|
2778
|
+
0,
|
|
2779
|
+
[_id, _dIo, _pSr],
|
|
2780
|
+
[0, 0, 0]
|
|
2781
|
+
];
|
|
2769
2782
|
export var DeleteListingInput$ = [3, n0, _DLI,
|
|
2770
2783
|
0,
|
|
2771
2784
|
[_dI, _i],
|
|
@@ -5988,6 +6001,9 @@ export var DeleteGlossary$ = [9, n0, _DG,
|
|
|
5988
6001
|
export var DeleteGlossaryTerm$ = [9, n0, _DGTel,
|
|
5989
6002
|
{ [_ht]: ["DELETE", "/v2/domains/{domainIdentifier}/glossary-terms/{identifier}", 204] }, () => DeleteGlossaryTermInput$, () => DeleteGlossaryTermOutput$
|
|
5990
6003
|
];
|
|
6004
|
+
export var DeleteLineageEvent$ = [9, n0, _DLE,
|
|
6005
|
+
{ [_ht]: ["DELETE", "/v2/domains/{domainIdentifier}/lineage/events/{identifier}", 200] }, () => DeleteLineageEventInput$, () => DeleteLineageEventOutput$
|
|
6006
|
+
];
|
|
5991
6007
|
export var DeleteListing$ = [9, n0, _DL,
|
|
5992
6008
|
{ [_ht]: ["DELETE", "/v2/domains/{domainIdentifier}/listings/{identifier}", 204] }, () => DeleteListingInput$, () => DeleteListingOutput$
|
|
5993
6009
|
];
|
package/dist-types/DataZone.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ import { type DeleteEnvironmentProfileCommandInput, type DeleteEnvironmentProfil
|
|
|
56
56
|
import { type DeleteFormTypeCommandInput, type DeleteFormTypeCommandOutput } from "./commands/DeleteFormTypeCommand";
|
|
57
57
|
import { type DeleteGlossaryCommandInput, type DeleteGlossaryCommandOutput } from "./commands/DeleteGlossaryCommand";
|
|
58
58
|
import { type DeleteGlossaryTermCommandInput, type DeleteGlossaryTermCommandOutput } from "./commands/DeleteGlossaryTermCommand";
|
|
59
|
+
import { type DeleteLineageEventCommandInput, type DeleteLineageEventCommandOutput } from "./commands/DeleteLineageEventCommand";
|
|
59
60
|
import { type DeleteListingCommandInput, type DeleteListingCommandOutput } from "./commands/DeleteListingCommand";
|
|
60
61
|
import { type DeleteNotebookCommandInput, type DeleteNotebookCommandOutput } from "./commands/DeleteNotebookCommand";
|
|
61
62
|
import { type DeleteProjectCommandInput, type DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
@@ -531,6 +532,12 @@ export interface DataZone {
|
|
|
531
532
|
deleteGlossaryTerm(args: DeleteGlossaryTermCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGlossaryTermCommandOutput>;
|
|
532
533
|
deleteGlossaryTerm(args: DeleteGlossaryTermCommandInput, cb: (err: any, data?: DeleteGlossaryTermCommandOutput) => void): void;
|
|
533
534
|
deleteGlossaryTerm(args: DeleteGlossaryTermCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGlossaryTermCommandOutput) => void): void;
|
|
535
|
+
/**
|
|
536
|
+
* @see {@link DeleteLineageEventCommand}
|
|
537
|
+
*/
|
|
538
|
+
deleteLineageEvent(args: DeleteLineageEventCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLineageEventCommandOutput>;
|
|
539
|
+
deleteLineageEvent(args: DeleteLineageEventCommandInput, cb: (err: any, data?: DeleteLineageEventCommandOutput) => void): void;
|
|
540
|
+
deleteLineageEvent(args: DeleteLineageEventCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLineageEventCommandOutput) => void): void;
|
|
534
541
|
/**
|
|
535
542
|
* @see {@link DeleteListingCommand}
|
|
536
543
|
*/
|
|
@@ -63,6 +63,7 @@ import type { DeleteEnvironmentProfileCommandInput, DeleteEnvironmentProfileComm
|
|
|
63
63
|
import type { DeleteFormTypeCommandInput, DeleteFormTypeCommandOutput } from "./commands/DeleteFormTypeCommand";
|
|
64
64
|
import type { DeleteGlossaryCommandInput, DeleteGlossaryCommandOutput } from "./commands/DeleteGlossaryCommand";
|
|
65
65
|
import type { DeleteGlossaryTermCommandInput, DeleteGlossaryTermCommandOutput } from "./commands/DeleteGlossaryTermCommand";
|
|
66
|
+
import type { DeleteLineageEventCommandInput, DeleteLineageEventCommandOutput } from "./commands/DeleteLineageEventCommand";
|
|
66
67
|
import type { DeleteListingCommandInput, DeleteListingCommandOutput } from "./commands/DeleteListingCommand";
|
|
67
68
|
import type { DeleteNotebookCommandInput, DeleteNotebookCommandOutput } from "./commands/DeleteNotebookCommand";
|
|
68
69
|
import type { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "./commands/DeleteProjectCommand";
|
|
@@ -200,11 +201,11 @@ export { __Client };
|
|
|
200
201
|
/**
|
|
201
202
|
* @public
|
|
202
203
|
*/
|
|
203
|
-
export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | AddEntityOwnerCommandInput | AddPolicyGrantCommandInput | AssociateEnvironmentRoleCommandInput | AssociateGovernedTermsCommandInput | BatchGetAttributesMetadataCommandInput | BatchPutAttributesMetadataCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAccountPoolCommandInput | CreateAssetCommandInput | CreateAssetFilterCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateConnectionCommandInput | CreateDataProductCommandInput | CreateDataProductRevisionCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateDomainUnitCommandInput | CreateEnvironmentActionCommandInput | CreateEnvironmentBlueprintCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateNotebookCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateProjectProfileCommandInput | CreateRuleCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAccountPoolCommandInput | DeleteAssetCommandInput | DeleteAssetFilterCommandInput | DeleteAssetTypeCommandInput | DeleteConnectionCommandInput | DeleteDataExportConfigurationCommandInput | DeleteDataProductCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteDomainUnitCommandInput | DeleteEnvironmentActionCommandInput | DeleteEnvironmentBlueprintCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteListingCommandInput | DeleteNotebookCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteProjectProfileCommandInput | DeleteRuleCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | DeleteTimeSeriesDataPointsCommandInput | DisassociateEnvironmentRoleCommandInput | DisassociateGovernedTermsCommandInput | GetAccountPoolCommandInput | GetAssetCommandInput | GetAssetFilterCommandInput | GetAssetTypeCommandInput | GetConnectionCommandInput | GetDataExportConfigurationCommandInput | GetDataProductCommandInput | GetDataSourceCommandInput | GetDataSourceRunCommandInput | GetDomainCommandInput | GetDomainUnitCommandInput | GetEnvironmentActionCommandInput | GetEnvironmentBlueprintCommandInput | GetEnvironmentBlueprintConfigurationCommandInput | GetEnvironmentCommandInput | GetEnvironmentCredentialsCommandInput | GetEnvironmentProfileCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGroupProfileCommandInput | GetIamPortalLoginUrlCommandInput | GetJobRunCommandInput | GetLineageEventCommandInput | GetLineageNodeCommandInput | GetListingCommandInput | GetMetadataGenerationRunCommandInput | GetNotebookCommandInput | GetNotebookExportCommandInput | GetNotebookRunCommandInput | GetProjectCommandInput | GetProjectProfileCommandInput | GetRuleCommandInput | GetSubscriptionCommandInput | GetSubscriptionGrantCommandInput | GetSubscriptionRequestDetailsCommandInput | GetSubscriptionTargetCommandInput | GetTimeSeriesDataPointCommandInput | GetUserProfileCommandInput | ListAccountPoolsCommandInput | ListAccountsInAccountPoolCommandInput | ListAssetFiltersCommandInput | ListAssetRevisionsCommandInput | ListConnectionsCommandInput | ListDataProductRevisionsCommandInput | ListDataSourceRunActivitiesCommandInput | ListDataSourceRunsCommandInput | ListDataSourcesCommandInput | ListDomainUnitsForParentCommandInput | ListDomainsCommandInput | ListEntityOwnersCommandInput | ListEnvironmentActionsCommandInput | ListEnvironmentBlueprintConfigurationsCommandInput | ListEnvironmentBlueprintsCommandInput | ListEnvironmentProfilesCommandInput | ListEnvironmentsCommandInput | ListJobRunsCommandInput | ListLineageEventsCommandInput | ListLineageNodeHistoryCommandInput | ListMetadataGenerationRunsCommandInput | ListNotebookRunsCommandInput | ListNotebooksCommandInput | ListNotificationsCommandInput | ListPolicyGrantsCommandInput | ListProjectMembershipsCommandInput | ListProjectProfilesCommandInput | ListProjectsCommandInput | ListRulesCommandInput | ListSubscriptionGrantsCommandInput | ListSubscriptionRequestsCommandInput | ListSubscriptionTargetsCommandInput | ListSubscriptionsCommandInput | ListTagsForResourceCommandInput | ListTimeSeriesDataPointsCommandInput | PostLineageEventCommandInput | PostTimeSeriesDataPointsCommandInput | PutDataExportConfigurationCommandInput | PutEnvironmentBlueprintConfigurationCommandInput | QueryGraphCommandInput | RejectPredictionsCommandInput | RejectSubscriptionRequestCommandInput | RemoveEntityOwnerCommandInput | RemovePolicyGrantCommandInput | RevokeSubscriptionCommandInput | SearchCommandInput | SearchGroupProfilesCommandInput | SearchListingsCommandInput | SearchTypesCommandInput | SearchUserProfilesCommandInput | StartDataSourceRunCommandInput | StartMetadataGenerationRunCommandInput | StartNotebookExportCommandInput | StartNotebookImportCommandInput | StartNotebookRunCommandInput | StopNotebookRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountPoolCommandInput | UpdateAssetFilterCommandInput | UpdateConnectionCommandInput | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateDomainUnitCommandInput | UpdateEnvironmentActionCommandInput | UpdateEnvironmentBlueprintCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateNotebookCommandInput | UpdateProjectCommandInput | UpdateProjectProfileCommandInput | UpdateRootDomainUnitOwnerCommandInput | UpdateRuleCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
|
|
204
|
+
export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | AddEntityOwnerCommandInput | AddPolicyGrantCommandInput | AssociateEnvironmentRoleCommandInput | AssociateGovernedTermsCommandInput | BatchGetAttributesMetadataCommandInput | BatchPutAttributesMetadataCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAccountPoolCommandInput | CreateAssetCommandInput | CreateAssetFilterCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateConnectionCommandInput | CreateDataProductCommandInput | CreateDataProductRevisionCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateDomainUnitCommandInput | CreateEnvironmentActionCommandInput | CreateEnvironmentBlueprintCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateNotebookCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateProjectProfileCommandInput | CreateRuleCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAccountPoolCommandInput | DeleteAssetCommandInput | DeleteAssetFilterCommandInput | DeleteAssetTypeCommandInput | DeleteConnectionCommandInput | DeleteDataExportConfigurationCommandInput | DeleteDataProductCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteDomainUnitCommandInput | DeleteEnvironmentActionCommandInput | DeleteEnvironmentBlueprintCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteLineageEventCommandInput | DeleteListingCommandInput | DeleteNotebookCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteProjectProfileCommandInput | DeleteRuleCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | DeleteTimeSeriesDataPointsCommandInput | DisassociateEnvironmentRoleCommandInput | DisassociateGovernedTermsCommandInput | GetAccountPoolCommandInput | GetAssetCommandInput | GetAssetFilterCommandInput | GetAssetTypeCommandInput | GetConnectionCommandInput | GetDataExportConfigurationCommandInput | GetDataProductCommandInput | GetDataSourceCommandInput | GetDataSourceRunCommandInput | GetDomainCommandInput | GetDomainUnitCommandInput | GetEnvironmentActionCommandInput | GetEnvironmentBlueprintCommandInput | GetEnvironmentBlueprintConfigurationCommandInput | GetEnvironmentCommandInput | GetEnvironmentCredentialsCommandInput | GetEnvironmentProfileCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGroupProfileCommandInput | GetIamPortalLoginUrlCommandInput | GetJobRunCommandInput | GetLineageEventCommandInput | GetLineageNodeCommandInput | GetListingCommandInput | GetMetadataGenerationRunCommandInput | GetNotebookCommandInput | GetNotebookExportCommandInput | GetNotebookRunCommandInput | GetProjectCommandInput | GetProjectProfileCommandInput | GetRuleCommandInput | GetSubscriptionCommandInput | GetSubscriptionGrantCommandInput | GetSubscriptionRequestDetailsCommandInput | GetSubscriptionTargetCommandInput | GetTimeSeriesDataPointCommandInput | GetUserProfileCommandInput | ListAccountPoolsCommandInput | ListAccountsInAccountPoolCommandInput | ListAssetFiltersCommandInput | ListAssetRevisionsCommandInput | ListConnectionsCommandInput | ListDataProductRevisionsCommandInput | ListDataSourceRunActivitiesCommandInput | ListDataSourceRunsCommandInput | ListDataSourcesCommandInput | ListDomainUnitsForParentCommandInput | ListDomainsCommandInput | ListEntityOwnersCommandInput | ListEnvironmentActionsCommandInput | ListEnvironmentBlueprintConfigurationsCommandInput | ListEnvironmentBlueprintsCommandInput | ListEnvironmentProfilesCommandInput | ListEnvironmentsCommandInput | ListJobRunsCommandInput | ListLineageEventsCommandInput | ListLineageNodeHistoryCommandInput | ListMetadataGenerationRunsCommandInput | ListNotebookRunsCommandInput | ListNotebooksCommandInput | ListNotificationsCommandInput | ListPolicyGrantsCommandInput | ListProjectMembershipsCommandInput | ListProjectProfilesCommandInput | ListProjectsCommandInput | ListRulesCommandInput | ListSubscriptionGrantsCommandInput | ListSubscriptionRequestsCommandInput | ListSubscriptionTargetsCommandInput | ListSubscriptionsCommandInput | ListTagsForResourceCommandInput | ListTimeSeriesDataPointsCommandInput | PostLineageEventCommandInput | PostTimeSeriesDataPointsCommandInput | PutDataExportConfigurationCommandInput | PutEnvironmentBlueprintConfigurationCommandInput | QueryGraphCommandInput | RejectPredictionsCommandInput | RejectSubscriptionRequestCommandInput | RemoveEntityOwnerCommandInput | RemovePolicyGrantCommandInput | RevokeSubscriptionCommandInput | SearchCommandInput | SearchGroupProfilesCommandInput | SearchListingsCommandInput | SearchTypesCommandInput | SearchUserProfilesCommandInput | StartDataSourceRunCommandInput | StartMetadataGenerationRunCommandInput | StartNotebookExportCommandInput | StartNotebookImportCommandInput | StartNotebookRunCommandInput | StopNotebookRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountPoolCommandInput | UpdateAssetFilterCommandInput | UpdateConnectionCommandInput | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateDomainUnitCommandInput | UpdateEnvironmentActionCommandInput | UpdateEnvironmentBlueprintCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateNotebookCommandInput | UpdateProjectCommandInput | UpdateProjectProfileCommandInput | UpdateRootDomainUnitOwnerCommandInput | UpdateRuleCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
|
|
204
205
|
/**
|
|
205
206
|
* @public
|
|
206
207
|
*/
|
|
207
|
-
export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | AddEntityOwnerCommandOutput | AddPolicyGrantCommandOutput | AssociateEnvironmentRoleCommandOutput | AssociateGovernedTermsCommandOutput | BatchGetAttributesMetadataCommandOutput | BatchPutAttributesMetadataCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAccountPoolCommandOutput | CreateAssetCommandOutput | CreateAssetFilterCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateConnectionCommandOutput | CreateDataProductCommandOutput | CreateDataProductRevisionCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateDomainUnitCommandOutput | CreateEnvironmentActionCommandOutput | CreateEnvironmentBlueprintCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateNotebookCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateProjectProfileCommandOutput | CreateRuleCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAccountPoolCommandOutput | DeleteAssetCommandOutput | DeleteAssetFilterCommandOutput | DeleteAssetTypeCommandOutput | DeleteConnectionCommandOutput | DeleteDataExportConfigurationCommandOutput | DeleteDataProductCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteDomainUnitCommandOutput | DeleteEnvironmentActionCommandOutput | DeleteEnvironmentBlueprintCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteListingCommandOutput | DeleteNotebookCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteProjectProfileCommandOutput | DeleteRuleCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | DeleteTimeSeriesDataPointsCommandOutput | DisassociateEnvironmentRoleCommandOutput | DisassociateGovernedTermsCommandOutput | GetAccountPoolCommandOutput | GetAssetCommandOutput | GetAssetFilterCommandOutput | GetAssetTypeCommandOutput | GetConnectionCommandOutput | GetDataExportConfigurationCommandOutput | GetDataProductCommandOutput | GetDataSourceCommandOutput | GetDataSourceRunCommandOutput | GetDomainCommandOutput | GetDomainUnitCommandOutput | GetEnvironmentActionCommandOutput | GetEnvironmentBlueprintCommandOutput | GetEnvironmentBlueprintConfigurationCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentCredentialsCommandOutput | GetEnvironmentProfileCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGroupProfileCommandOutput | GetIamPortalLoginUrlCommandOutput | GetJobRunCommandOutput | GetLineageEventCommandOutput | GetLineageNodeCommandOutput | GetListingCommandOutput | GetMetadataGenerationRunCommandOutput | GetNotebookCommandOutput | GetNotebookExportCommandOutput | GetNotebookRunCommandOutput | GetProjectCommandOutput | GetProjectProfileCommandOutput | GetRuleCommandOutput | GetSubscriptionCommandOutput | GetSubscriptionGrantCommandOutput | GetSubscriptionRequestDetailsCommandOutput | GetSubscriptionTargetCommandOutput | GetTimeSeriesDataPointCommandOutput | GetUserProfileCommandOutput | ListAccountPoolsCommandOutput | ListAccountsInAccountPoolCommandOutput | ListAssetFiltersCommandOutput | ListAssetRevisionsCommandOutput | ListConnectionsCommandOutput | ListDataProductRevisionsCommandOutput | ListDataSourceRunActivitiesCommandOutput | ListDataSourceRunsCommandOutput | ListDataSourcesCommandOutput | ListDomainUnitsForParentCommandOutput | ListDomainsCommandOutput | ListEntityOwnersCommandOutput | ListEnvironmentActionsCommandOutput | ListEnvironmentBlueprintConfigurationsCommandOutput | ListEnvironmentBlueprintsCommandOutput | ListEnvironmentProfilesCommandOutput | ListEnvironmentsCommandOutput | ListJobRunsCommandOutput | ListLineageEventsCommandOutput | ListLineageNodeHistoryCommandOutput | ListMetadataGenerationRunsCommandOutput | ListNotebookRunsCommandOutput | ListNotebooksCommandOutput | ListNotificationsCommandOutput | ListPolicyGrantsCommandOutput | ListProjectMembershipsCommandOutput | ListProjectProfilesCommandOutput | ListProjectsCommandOutput | ListRulesCommandOutput | ListSubscriptionGrantsCommandOutput | ListSubscriptionRequestsCommandOutput | ListSubscriptionTargetsCommandOutput | ListSubscriptionsCommandOutput | ListTagsForResourceCommandOutput | ListTimeSeriesDataPointsCommandOutput | PostLineageEventCommandOutput | PostTimeSeriesDataPointsCommandOutput | PutDataExportConfigurationCommandOutput | PutEnvironmentBlueprintConfigurationCommandOutput | QueryGraphCommandOutput | RejectPredictionsCommandOutput | RejectSubscriptionRequestCommandOutput | RemoveEntityOwnerCommandOutput | RemovePolicyGrantCommandOutput | RevokeSubscriptionCommandOutput | SearchCommandOutput | SearchGroupProfilesCommandOutput | SearchListingsCommandOutput | SearchTypesCommandOutput | SearchUserProfilesCommandOutput | StartDataSourceRunCommandOutput | StartMetadataGenerationRunCommandOutput | StartNotebookExportCommandOutput | StartNotebookImportCommandOutput | StartNotebookRunCommandOutput | StopNotebookRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountPoolCommandOutput | UpdateAssetFilterCommandOutput | UpdateConnectionCommandOutput | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateDomainUnitCommandOutput | UpdateEnvironmentActionCommandOutput | UpdateEnvironmentBlueprintCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateNotebookCommandOutput | UpdateProjectCommandOutput | UpdateProjectProfileCommandOutput | UpdateRootDomainUnitOwnerCommandOutput | UpdateRuleCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
|
|
208
|
+
export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | AddEntityOwnerCommandOutput | AddPolicyGrantCommandOutput | AssociateEnvironmentRoleCommandOutput | AssociateGovernedTermsCommandOutput | BatchGetAttributesMetadataCommandOutput | BatchPutAttributesMetadataCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAccountPoolCommandOutput | CreateAssetCommandOutput | CreateAssetFilterCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateConnectionCommandOutput | CreateDataProductCommandOutput | CreateDataProductRevisionCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateDomainUnitCommandOutput | CreateEnvironmentActionCommandOutput | CreateEnvironmentBlueprintCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateNotebookCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateProjectProfileCommandOutput | CreateRuleCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAccountPoolCommandOutput | DeleteAssetCommandOutput | DeleteAssetFilterCommandOutput | DeleteAssetTypeCommandOutput | DeleteConnectionCommandOutput | DeleteDataExportConfigurationCommandOutput | DeleteDataProductCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteDomainUnitCommandOutput | DeleteEnvironmentActionCommandOutput | DeleteEnvironmentBlueprintCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteLineageEventCommandOutput | DeleteListingCommandOutput | DeleteNotebookCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteProjectProfileCommandOutput | DeleteRuleCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | DeleteTimeSeriesDataPointsCommandOutput | DisassociateEnvironmentRoleCommandOutput | DisassociateGovernedTermsCommandOutput | GetAccountPoolCommandOutput | GetAssetCommandOutput | GetAssetFilterCommandOutput | GetAssetTypeCommandOutput | GetConnectionCommandOutput | GetDataExportConfigurationCommandOutput | GetDataProductCommandOutput | GetDataSourceCommandOutput | GetDataSourceRunCommandOutput | GetDomainCommandOutput | GetDomainUnitCommandOutput | GetEnvironmentActionCommandOutput | GetEnvironmentBlueprintCommandOutput | GetEnvironmentBlueprintConfigurationCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentCredentialsCommandOutput | GetEnvironmentProfileCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGroupProfileCommandOutput | GetIamPortalLoginUrlCommandOutput | GetJobRunCommandOutput | GetLineageEventCommandOutput | GetLineageNodeCommandOutput | GetListingCommandOutput | GetMetadataGenerationRunCommandOutput | GetNotebookCommandOutput | GetNotebookExportCommandOutput | GetNotebookRunCommandOutput | GetProjectCommandOutput | GetProjectProfileCommandOutput | GetRuleCommandOutput | GetSubscriptionCommandOutput | GetSubscriptionGrantCommandOutput | GetSubscriptionRequestDetailsCommandOutput | GetSubscriptionTargetCommandOutput | GetTimeSeriesDataPointCommandOutput | GetUserProfileCommandOutput | ListAccountPoolsCommandOutput | ListAccountsInAccountPoolCommandOutput | ListAssetFiltersCommandOutput | ListAssetRevisionsCommandOutput | ListConnectionsCommandOutput | ListDataProductRevisionsCommandOutput | ListDataSourceRunActivitiesCommandOutput | ListDataSourceRunsCommandOutput | ListDataSourcesCommandOutput | ListDomainUnitsForParentCommandOutput | ListDomainsCommandOutput | ListEntityOwnersCommandOutput | ListEnvironmentActionsCommandOutput | ListEnvironmentBlueprintConfigurationsCommandOutput | ListEnvironmentBlueprintsCommandOutput | ListEnvironmentProfilesCommandOutput | ListEnvironmentsCommandOutput | ListJobRunsCommandOutput | ListLineageEventsCommandOutput | ListLineageNodeHistoryCommandOutput | ListMetadataGenerationRunsCommandOutput | ListNotebookRunsCommandOutput | ListNotebooksCommandOutput | ListNotificationsCommandOutput | ListPolicyGrantsCommandOutput | ListProjectMembershipsCommandOutput | ListProjectProfilesCommandOutput | ListProjectsCommandOutput | ListRulesCommandOutput | ListSubscriptionGrantsCommandOutput | ListSubscriptionRequestsCommandOutput | ListSubscriptionTargetsCommandOutput | ListSubscriptionsCommandOutput | ListTagsForResourceCommandOutput | ListTimeSeriesDataPointsCommandOutput | PostLineageEventCommandOutput | PostTimeSeriesDataPointsCommandOutput | PutDataExportConfigurationCommandOutput | PutEnvironmentBlueprintConfigurationCommandOutput | QueryGraphCommandOutput | RejectPredictionsCommandOutput | RejectSubscriptionRequestCommandOutput | RemoveEntityOwnerCommandOutput | RemovePolicyGrantCommandOutput | RevokeSubscriptionCommandOutput | SearchCommandOutput | SearchGroupProfilesCommandOutput | SearchListingsCommandOutput | SearchTypesCommandOutput | SearchUserProfilesCommandOutput | StartDataSourceRunCommandOutput | StartMetadataGenerationRunCommandOutput | StartNotebookExportCommandOutput | StartNotebookImportCommandOutput | StartNotebookRunCommandOutput | StopNotebookRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountPoolCommandOutput | UpdateAssetFilterCommandOutput | UpdateConnectionCommandOutput | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateDomainUnitCommandOutput | UpdateEnvironmentActionCommandOutput | UpdateEnvironmentBlueprintCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateNotebookCommandOutput | UpdateProjectCommandOutput | UpdateProjectProfileCommandOutput | UpdateRootDomainUnitOwnerCommandOutput | UpdateRuleCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
|
|
208
209
|
/**
|
|
209
210
|
* @public
|
|
210
211
|
*/
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import type { DeleteLineageEventInput, DeleteLineageEventOutput } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteLineageEventCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteLineageEventCommandInput extends DeleteLineageEventInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteLineageEventCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteLineageEventCommandOutput extends DeleteLineageEventOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteLineageEventCommand_base: {
|
|
25
|
+
new (input: DeleteLineageEventCommandInput): import("@smithy/core/client").CommandImpl<DeleteLineageEventCommandInput, DeleteLineageEventCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DeleteLineageEventCommandInput): import("@smithy/core/client").CommandImpl<DeleteLineageEventCommandInput, DeleteLineageEventCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Deletes the specified lineage event.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { DataZoneClient, DeleteLineageEventCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
37
|
+
* // const { DataZoneClient, DeleteLineageEventCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
38
|
+
* // import type { DataZoneClientConfig } from "@aws-sdk/client-datazone";
|
|
39
|
+
* const config = {}; // type is DataZoneClientConfig
|
|
40
|
+
* const client = new DataZoneClient(config);
|
|
41
|
+
* const input = { // DeleteLineageEventInput
|
|
42
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
43
|
+
* identifier: "STRING_VALUE", // required
|
|
44
|
+
* };
|
|
45
|
+
* const command = new DeleteLineageEventCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // { // DeleteLineageEventOutput
|
|
48
|
+
* // id: "STRING_VALUE",
|
|
49
|
+
* // domainId: "STRING_VALUE",
|
|
50
|
+
* // processingStatus: "REQUESTED" || "PROCESSING" || "SUCCESS" || "FAILED",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* @param DeleteLineageEventCommandInput - {@link DeleteLineageEventCommandInput}
|
|
56
|
+
* @returns {@link DeleteLineageEventCommandOutput}
|
|
57
|
+
* @see {@link DeleteLineageEventCommandInput} for command's `input` shape.
|
|
58
|
+
* @see {@link DeleteLineageEventCommandOutput} for command's `response` shape.
|
|
59
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
62
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InternalServerException} (server fault)
|
|
65
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
68
|
+
* <p>The specified resource cannot be found.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
71
|
+
* <p>The request was denied due to request throttling.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ValidationException} (client fault)
|
|
74
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
77
|
+
* <p>You do not have permission to perform this action.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link DataZoneServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
81
|
+
*
|
|
82
|
+
*
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export declare class DeleteLineageEventCommand extends DeleteLineageEventCommand_base {
|
|
86
|
+
/** @internal type navigation helper, not in runtime. */
|
|
87
|
+
protected static __types: {
|
|
88
|
+
api: {
|
|
89
|
+
input: DeleteLineageEventInput;
|
|
90
|
+
output: DeleteLineageEventOutput;
|
|
91
|
+
};
|
|
92
|
+
sdk: {
|
|
93
|
+
input: DeleteLineageEventCommandInput;
|
|
94
|
+
output: DeleteLineageEventCommandOutput;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import type { ListNotebookRunsInput
|
|
4
|
+
import type { ListNotebookRunsInput } from "../models/models_1";
|
|
5
|
+
import type { ListNotebookRunsOutput } from "../models/models_2";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import type { StartNotebookRunInput } from "../models/
|
|
5
|
-
import type { StartNotebookRunOutput } from "../models/models_2";
|
|
4
|
+
import type { StartNotebookRunInput, StartNotebookRunOutput } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -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";
|
|
@@ -2298,6 +2298,41 @@ export interface DeleteEnvironmentProfileInput {
|
|
|
2298
2298
|
*/
|
|
2299
2299
|
identifier: string | undefined;
|
|
2300
2300
|
}
|
|
2301
|
+
/**
|
|
2302
|
+
* @public
|
|
2303
|
+
*/
|
|
2304
|
+
export interface DeleteLineageEventInput {
|
|
2305
|
+
/**
|
|
2306
|
+
* <p>The ID of the domain.</p>
|
|
2307
|
+
* @public
|
|
2308
|
+
*/
|
|
2309
|
+
domainIdentifier: string | undefined;
|
|
2310
|
+
/**
|
|
2311
|
+
* <p>The ID of the lineage event.</p>
|
|
2312
|
+
* @public
|
|
2313
|
+
*/
|
|
2314
|
+
identifier: string | undefined;
|
|
2315
|
+
}
|
|
2316
|
+
/**
|
|
2317
|
+
* @public
|
|
2318
|
+
*/
|
|
2319
|
+
export interface DeleteLineageEventOutput {
|
|
2320
|
+
/**
|
|
2321
|
+
* <p>The ID of the lineage event.</p>
|
|
2322
|
+
* @public
|
|
2323
|
+
*/
|
|
2324
|
+
id?: string | undefined;
|
|
2325
|
+
/**
|
|
2326
|
+
* <p>The ID of the domain.</p>
|
|
2327
|
+
* @public
|
|
2328
|
+
*/
|
|
2329
|
+
domainId?: string | undefined;
|
|
2330
|
+
/**
|
|
2331
|
+
* <p>The progressing status of the lineage event.</p>
|
|
2332
|
+
* @public
|
|
2333
|
+
*/
|
|
2334
|
+
processingStatus?: LineageEventProcessingStatus | undefined;
|
|
2335
|
+
}
|
|
2301
2336
|
/**
|
|
2302
2337
|
* @public
|
|
2303
2338
|
*/
|
|
@@ -9720,78 +9755,3 @@ export interface NotebookRunSummary {
|
|
|
9720
9755
|
*/
|
|
9721
9756
|
completedAt?: Date | undefined;
|
|
9722
9757
|
}
|
|
9723
|
-
/**
|
|
9724
|
-
* @public
|
|
9725
|
-
*/
|
|
9726
|
-
export interface ListNotebookRunsOutput {
|
|
9727
|
-
/**
|
|
9728
|
-
* <p>The results of the <code>ListNotebookRuns</code> action.</p>
|
|
9729
|
-
* @public
|
|
9730
|
-
*/
|
|
9731
|
-
items?: NotebookRunSummary[] | undefined;
|
|
9732
|
-
/**
|
|
9733
|
-
* <p>When the number of notebook runs is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of notebook runs, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListNotebookRuns</code> to list the next set of notebook runs.</p>
|
|
9734
|
-
* @public
|
|
9735
|
-
*/
|
|
9736
|
-
nextToken?: string | undefined;
|
|
9737
|
-
}
|
|
9738
|
-
/**
|
|
9739
|
-
* @public
|
|
9740
|
-
*/
|
|
9741
|
-
export interface StartNotebookRunInput {
|
|
9742
|
-
/**
|
|
9743
|
-
* <p>The identifier of the Amazon SageMaker Unified Studio domain in which the notebook run is started.</p>
|
|
9744
|
-
* @public
|
|
9745
|
-
*/
|
|
9746
|
-
domainIdentifier: string | undefined;
|
|
9747
|
-
/**
|
|
9748
|
-
* <p>The identifier of the project that owns the notebook run.</p>
|
|
9749
|
-
* @public
|
|
9750
|
-
*/
|
|
9751
|
-
owningProjectIdentifier: string | undefined;
|
|
9752
|
-
/**
|
|
9753
|
-
* <p>The identifier of the notebook to run.</p>
|
|
9754
|
-
* @public
|
|
9755
|
-
*/
|
|
9756
|
-
notebookIdentifier: string | undefined;
|
|
9757
|
-
/**
|
|
9758
|
-
* <p>The identifier of the schedule associated with the notebook run.</p>
|
|
9759
|
-
* @public
|
|
9760
|
-
*/
|
|
9761
|
-
scheduleIdentifier?: string | undefined;
|
|
9762
|
-
/**
|
|
9763
|
-
* <p>The compute configuration for the notebook run, including instance type and environment version.</p>
|
|
9764
|
-
* @public
|
|
9765
|
-
*/
|
|
9766
|
-
computeConfiguration?: ComputeConfig | undefined;
|
|
9767
|
-
/**
|
|
9768
|
-
* <p>The network configuration for the notebook run, including network access type and optional VPC settings.</p>
|
|
9769
|
-
* @public
|
|
9770
|
-
*/
|
|
9771
|
-
networkConfiguration?: NetworkConfig | undefined;
|
|
9772
|
-
/**
|
|
9773
|
-
* <p>The timeout configuration for the notebook run. The default timeout is 720 minutes (12 hours) and the maximum is 1440 minutes (24 hours).</p>
|
|
9774
|
-
* @public
|
|
9775
|
-
*/
|
|
9776
|
-
timeoutConfiguration?: TimeoutConfig | undefined;
|
|
9777
|
-
/**
|
|
9778
|
-
* <p>The source that triggered the notebook run.</p>
|
|
9779
|
-
* @public
|
|
9780
|
-
*/
|
|
9781
|
-
triggerSource?: TriggerSource | undefined;
|
|
9782
|
-
/**
|
|
9783
|
-
* <p>The metadata for the notebook run, specified as key-value pairs. You can specify up to 50 entries, with keys up to 128 characters and values up to 1024 characters.</p>
|
|
9784
|
-
* @public
|
|
9785
|
-
*/
|
|
9786
|
-
metadata?: Record<string, string> | undefined;
|
|
9787
|
-
/**
|
|
9788
|
-
* <p>The sensitive parameters for the notebook run, specified as key-value pairs. You can specify up to 50 entries, with keys up to 128 characters and values up to 1024 characters.</p>
|
|
9789
|
-
* @public
|
|
9790
|
-
*/
|
|
9791
|
-
parameters?: Record<string, string> | undefined;
|
|
9792
|
-
/**
|
|
9793
|
-
* <p>A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.</p>
|
|
9794
|
-
* @public
|
|
9795
|
-
*/
|
|
9796
|
-
clientToken?: string | undefined;
|
|
9797
|
-
}
|
|
@@ -1,6 +1,81 @@
|
|
|
1
1
|
import type { ConnectionScope, ConnectionType, DataZoneEntityType, EnvironmentStatus, FilterOperator, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GraphEntityType, GroupProfileStatus, GroupSearchType, InventorySearchScope, ManagedPolicyType, NotebookRunStatus, NotebookStatus, ProjectStatus, RejectRuleBehavior, RelationDirection, RelationType, ResolutionStrategy, RuleAction, RuleTargetType, RuleType, SearchOutputAdditionalAttribute, SortOrder, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TimeSeriesEntityType, TypesSearchScope, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
|
|
2
2
|
import type { AccountSource, ActionParameters, AdditionalAttributes, AggregationListItem, AggregationOutput, AssetItem, AssetListingItem, AssetTypeItem, AwsLocation, CellInformation, ColumnFilterConfiguration, ComputeConfig, ConfigurableEnvironmentAction, Configuration, ConnectionPropertiesOutput, ConnectionPropertiesPatch, CustomParameter, Deployment, DeploymentProperties, EnvironmentConfig, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, FormEntryOutput, FormOutput, MatchRationaleItem, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantPrincipal, ProjectDeletionError, ProvisioningProperties, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, RuleDetail, RuleScope, RuleTarget, SubscribedListing, SubscribedPrincipal, TermRelations, UserProfileDetails } from "./models_0";
|
|
3
|
-
import type { DataProductListingItem, DataProductResultItem, EncryptionConfiguration, FailureCause, GrantedEntity, Import, NetworkConfig, NotebookRunError, StorageConfig, SubscribedAsset, SubscriptionTargetForm, TimeoutConfig, TimeSeriesDataPointFormOutput, TriggerSource } from "./models_1";
|
|
3
|
+
import type { DataProductListingItem, DataProductResultItem, EncryptionConfiguration, FailureCause, GrantedEntity, Import, NetworkConfig, NotebookRunError, NotebookRunSummary, StorageConfig, SubscribedAsset, SubscriptionTargetForm, TimeoutConfig, TimeSeriesDataPointFormOutput, TriggerSource } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface ListNotebookRunsOutput {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The results of the <code>ListNotebookRuns</code> action.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
items?: NotebookRunSummary[] | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>When the number of notebook runs is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of notebook runs, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListNotebookRuns</code> to list the next set of notebook runs.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
nextToken?: string | undefined;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export interface StartNotebookRunInput {
|
|
23
|
+
/**
|
|
24
|
+
* <p>The identifier of the Amazon SageMaker Unified Studio domain in which the notebook run is started.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
domainIdentifier: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The identifier of the project that owns the notebook run.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
owningProjectIdentifier: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The identifier of the notebook to run.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
notebookIdentifier: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The identifier of the schedule associated with the notebook run.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
scheduleIdentifier?: string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The compute configuration for the notebook run, including instance type and environment version.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
computeConfiguration?: ComputeConfig | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <p>The network configuration for the notebook run, including network access type and optional VPC settings.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
networkConfiguration?: NetworkConfig | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* <p>The timeout configuration for the notebook run. The default timeout is 720 minutes (12 hours) and the maximum is 1440 minutes (24 hours).</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
timeoutConfiguration?: TimeoutConfig | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* <p>The source that triggered the notebook run.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
triggerSource?: TriggerSource | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* <p>The metadata for the notebook run, specified as key-value pairs. You can specify up to 50 entries, with keys up to 128 characters and values up to 1024 characters.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
metadata?: Record<string, string> | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* <p>The sensitive parameters for the notebook run, specified as key-value pairs. You can specify up to 50 entries, with keys up to 128 characters and values up to 1024 characters.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
parameters?: Record<string, string> | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* <p>A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
clientToken?: string | undefined;
|
|
78
|
+
}
|
|
4
79
|
/**
|
|
5
80
|
* @public
|
|
6
81
|
*/
|
|
@@ -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;
|
|
@@ -231,6 +231,10 @@ import {
|
|
|
231
231
|
DeleteGlossaryTermCommandInput,
|
|
232
232
|
DeleteGlossaryTermCommandOutput,
|
|
233
233
|
} from "./commands/DeleteGlossaryTermCommand";
|
|
234
|
+
import {
|
|
235
|
+
DeleteLineageEventCommandInput,
|
|
236
|
+
DeleteLineageEventCommandOutput,
|
|
237
|
+
} from "./commands/DeleteLineageEventCommand";
|
|
234
238
|
import {
|
|
235
239
|
DeleteListingCommandInput,
|
|
236
240
|
DeleteListingCommandOutput,
|
|
@@ -1504,6 +1508,19 @@ export interface DataZone {
|
|
|
1504
1508
|
options: __HttpHandlerOptions,
|
|
1505
1509
|
cb: (err: any, data?: DeleteGlossaryTermCommandOutput) => void
|
|
1506
1510
|
): void;
|
|
1511
|
+
deleteLineageEvent(
|
|
1512
|
+
args: DeleteLineageEventCommandInput,
|
|
1513
|
+
options?: __HttpHandlerOptions
|
|
1514
|
+
): Promise<DeleteLineageEventCommandOutput>;
|
|
1515
|
+
deleteLineageEvent(
|
|
1516
|
+
args: DeleteLineageEventCommandInput,
|
|
1517
|
+
cb: (err: any, data?: DeleteLineageEventCommandOutput) => void
|
|
1518
|
+
): void;
|
|
1519
|
+
deleteLineageEvent(
|
|
1520
|
+
args: DeleteLineageEventCommandInput,
|
|
1521
|
+
options: __HttpHandlerOptions,
|
|
1522
|
+
cb: (err: any, data?: DeleteLineageEventCommandOutput) => void
|
|
1523
|
+
): void;
|
|
1507
1524
|
deleteListing(
|
|
1508
1525
|
args: DeleteListingCommandInput,
|
|
1509
1526
|
options?: __HttpHandlerOptions
|
|
@@ -264,6 +264,10 @@ import {
|
|
|
264
264
|
DeleteGlossaryTermCommandInput,
|
|
265
265
|
DeleteGlossaryTermCommandOutput,
|
|
266
266
|
} from "./commands/DeleteGlossaryTermCommand";
|
|
267
|
+
import {
|
|
268
|
+
DeleteLineageEventCommandInput,
|
|
269
|
+
DeleteLineageEventCommandOutput,
|
|
270
|
+
} from "./commands/DeleteLineageEventCommand";
|
|
267
271
|
import {
|
|
268
272
|
DeleteListingCommandInput,
|
|
269
273
|
DeleteListingCommandOutput,
|
|
@@ -853,6 +857,7 @@ export type ServiceInputTypes =
|
|
|
853
857
|
| DeleteFormTypeCommandInput
|
|
854
858
|
| DeleteGlossaryCommandInput
|
|
855
859
|
| DeleteGlossaryTermCommandInput
|
|
860
|
+
| DeleteLineageEventCommandInput
|
|
856
861
|
| DeleteListingCommandInput
|
|
857
862
|
| DeleteNotebookCommandInput
|
|
858
863
|
| DeleteProjectCommandInput
|
|
@@ -1042,6 +1047,7 @@ export type ServiceOutputTypes =
|
|
|
1042
1047
|
| DeleteFormTypeCommandOutput
|
|
1043
1048
|
| DeleteGlossaryCommandOutput
|
|
1044
1049
|
| DeleteGlossaryTermCommandOutput
|
|
1050
|
+
| DeleteLineageEventCommandOutput
|
|
1045
1051
|
| DeleteListingCommandOutput
|
|
1046
1052
|
| DeleteNotebookCommandOutput
|
|
1047
1053
|
| DeleteProjectCommandOutput
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteLineageEventInput,
|
|
10
|
+
DeleteLineageEventOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteLineageEventCommandInput
|
|
15
|
+
extends DeleteLineageEventInput {}
|
|
16
|
+
export interface DeleteLineageEventCommandOutput
|
|
17
|
+
extends DeleteLineageEventOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteLineageEventCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteLineageEventCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DeleteLineageEventCommandInput,
|
|
24
|
+
DeleteLineageEventCommandOutput,
|
|
25
|
+
DataZoneClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteLineageEventCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
DeleteLineageEventCommandInput,
|
|
33
|
+
DeleteLineageEventCommandOutput,
|
|
34
|
+
DataZoneClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class DeleteLineageEventCommand extends DeleteLineageEventCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: DeleteLineageEventInput;
|
|
46
|
+
output: DeleteLineageEventOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: DeleteLineageEventCommandInput;
|
|
50
|
+
output: DeleteLineageEventCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|