@aws-sdk/client-datazone 3.1099.0 → 3.1101.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.
@@ -1,5 +1,77 @@
1
- import type { ConfigurationStatus, ConnectionScope, ConnectionType, DataAssetActivityStatus, DataProductStatus, DataSourceRunStatus, DataSourceRunType, DataSourceStatus, DataZoneEntityType, DomainStatus, DomainVersion, EdgeDirection, EnableSetting, EnvironmentStatus, FileFormat, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, JobRunMode, JobRunStatus, JobType, LineageEventProcessingStatus, LineageImportStatus, ListingStatus, ManagedPolicyType, MetadataGenerationRunStatus, MetadataGenerationRunType, MetadataGenerationTargetType, NotebookExportStatus, NotebookStatus, NotificationResourceType, NotificationRole, NotificationType, OpenLineageRunState, ProjectStatus, ResolutionStrategy, RuleAction, RuleScopeSelectionMode, RuleTargetType, RuleType, SelfGrantStatus, SortFieldAccountPool, SortFieldConnection, SortFieldProject, SortKey, SortOrder, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TaskStatus, TimeSeriesEntityType, UserDesignation, UserProfileStatus, UserProfileType, UserType } from "./enums";
2
- import type { AcceptedAssetScope, AccountInfo, AccountPoolSummary, AccountSource, ActionParameters, AssetFilterSummary, AssetListing, AssetPermission, AssetRevision, AssetScope, AssetTargetNameMap, AssetTypesForRule, CellInformation, ConfigurableEnvironmentAction, Configuration, ConnectionCredentials, ConnectionPropertiesOutput, ConnectionSummary, CustomParameter, DataProductItem, DataSourceConfigurationInput, DataSourceConfigurationOutput, DataSourceErrorMessage, Deployment, DeploymentProperties, DetailedGlossaryTerm, DomainUnitOwnerProperties, EnvironmentConfig, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, FormInput, FormOutput, GitMetadata, MatchRationaleItem, Member, Model, NotebookError, Permissions, PhysicalEndpoint, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProvisioningProperties, RecommendationConfiguration, Resource, ResourceTag, ResourceTagParameter, RuleDetail, ScheduleConfiguration, SingleSignOn, SubscribedListing, SubscribedPrincipal, TermRelations, TimeSeriesDataPointSummaryFormOutput, UserProfileDetails } from "./models_0";
1
+ import type { ConfigurationStatus, ConnectionScope, ConnectionType, DataAssetActivityStatus, DataProductStatus, DataSourceRunStatus, DataSourceRunType, DataSourceStatus, DataZoneEntityType, DomainStatus, DomainVersion, EdgeDirection, EnableSetting, EnvironmentStatus, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, JobRunMode, JobRunStatus, JobType, LineageEventProcessingStatus, LineageImportStatus, ListingStatus, ManagedPolicyType, MetadataGenerationRunStatus, MetadataGenerationRunType, MetadataGenerationTargetType, NotebookStatus, NotificationResourceType, NotificationRole, NotificationType, OpenLineageRunState, ProjectStatus, ResolutionStrategy, RuleAction, RuleScopeSelectionMode, RuleTargetType, RuleType, SelfGrantStatus, SortFieldAccountPool, SortFieldConnection, SortFieldProject, SortKey, SortOrder, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TaskStatus, TimeSeriesEntityType, UserDesignation, UserProfileStatus, UserProfileType, UserType } from "./enums";
2
+ import type { AcceptedAssetScope, AccountInfo, AccountPoolSummary, AccountSource, ActionParameters, AssetFilterSummary, AssetListing, AssetPermission, AssetRevision, AssetScope, AssetTargetNameMap, AssetTypesForRule, CellInformation, ConfigurableEnvironmentAction, Configuration, ConnectionCredentials, ConnectionPropertiesOutput, ConnectionSummary, CustomParameter, DataProductItem, DataSourceConfigurationInput, DataSourceConfigurationOutput, DataSourceErrorMessage, Deployment, DeploymentProperties, DetailedGlossaryTerm, DomainUnitOwnerProperties, EnvironmentConfig, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, FormInput, FormOutput, GitMetadata, GlossaryTermEnforcementDetail, MatchRationaleItem, Member, Model, NotebookError, Permissions, PhysicalEndpoint, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProvisioningProperties, RecommendationConfiguration, Resource, ResourceTag, ResourceTagParameter, ScheduleConfiguration, SingleSignOn, SubscribedListing, SubscribedPrincipal, TermRelations, TimeSeriesDataPointSummaryFormOutput, UserProfileDetails } from "./models_0";
3
+ /**
4
+ * <p>The reference of a metadata form.</p>
5
+ * @public
6
+ */
7
+ export interface MetadataFormReference {
8
+ /**
9
+ * <p>The type ID of the metadata form reference.</p>
10
+ * @public
11
+ */
12
+ typeIdentifier: string | undefined;
13
+ /**
14
+ * <p>The type revision of the metadata form reference.</p>
15
+ * @public
16
+ */
17
+ typeRevision: string | undefined;
18
+ }
19
+ /**
20
+ * <p>The enforcement details of a metadata form.</p>
21
+ * @public
22
+ */
23
+ export interface MetadataFormEnforcementDetail {
24
+ /**
25
+ * <p>The required metadata forms.</p>
26
+ * @public
27
+ */
28
+ requiredMetadataForms?: MetadataFormReference[] | undefined;
29
+ }
30
+ /**
31
+ * <p>The details of a rule.</p>
32
+ * @public
33
+ */
34
+ export type RuleDetail = RuleDetail.GlossaryTermEnforcementDetailMember | RuleDetail.MetadataFormEnforcementDetailMember | RuleDetail.$UnknownMember;
35
+ /**
36
+ * @public
37
+ */
38
+ export declare namespace RuleDetail {
39
+ /**
40
+ * <p>The enforcement detail of the metadata form.</p>
41
+ * @public
42
+ */
43
+ interface MetadataFormEnforcementDetailMember {
44
+ metadataFormEnforcementDetail: MetadataFormEnforcementDetail;
45
+ glossaryTermEnforcementDetail?: never;
46
+ $unknown?: never;
47
+ }
48
+ /**
49
+ * <p>The enforcement details of a glossary term that's part of the metadata rule.</p>
50
+ * @public
51
+ */
52
+ interface GlossaryTermEnforcementDetailMember {
53
+ metadataFormEnforcementDetail?: never;
54
+ glossaryTermEnforcementDetail: GlossaryTermEnforcementDetail;
55
+ $unknown?: never;
56
+ }
57
+ /**
58
+ * @public
59
+ */
60
+ interface $UnknownMember {
61
+ metadataFormEnforcementDetail?: never;
62
+ glossaryTermEnforcementDetail?: never;
63
+ $unknown: [string, any];
64
+ }
65
+ /**
66
+ * @deprecated unused in schema-serde mode.
67
+ *
68
+ */
69
+ interface Visitor<T> {
70
+ metadataFormEnforcementDetail: (value: MetadataFormEnforcementDetail) => T;
71
+ glossaryTermEnforcementDetail: (value: GlossaryTermEnforcementDetail) => T;
72
+ _: (name: string, value: any) => T;
73
+ }
74
+ }
3
75
  /**
4
76
  * <p>Specifies projects in which the rule is created.</p>
5
77
  * @public
@@ -9579,138 +9651,3 @@ export declare namespace OutputLocation {
9579
9651
  _: (name: string, value: any) => T;
9580
9652
  }
9581
9653
  }
9582
- /**
9583
- * @public
9584
- */
9585
- export interface GetNotebookExportOutput {
9586
- /**
9587
- * <p>The identifier of the notebook export.</p>
9588
- * @public
9589
- */
9590
- id: string | undefined;
9591
- /**
9592
- * <p>The identifier of the Amazon SageMaker Unified Studio domain.</p>
9593
- * @public
9594
- */
9595
- domainId: string | undefined;
9596
- /**
9597
- * <p>The identifier of the project that owns the notebook.</p>
9598
- * @public
9599
- */
9600
- owningProjectId: string | undefined;
9601
- /**
9602
- * <p>The identifier of the notebook.</p>
9603
- * @public
9604
- */
9605
- notebookId: string | undefined;
9606
- /**
9607
- * <p>The file format of the notebook export.</p>
9608
- * @public
9609
- */
9610
- fileFormat: FileFormat | undefined;
9611
- /**
9612
- * <p>The status of the notebook export.</p>
9613
- * @public
9614
- */
9615
- status: NotebookExportStatus | undefined;
9616
- /**
9617
- * <p>The output location of the exported notebook in Amazon Simple Storage Service.</p>
9618
- * @public
9619
- */
9620
- outputLocation?: OutputLocation | undefined;
9621
- /**
9622
- * <p>The error details if the notebook export failed.</p>
9623
- * @public
9624
- */
9625
- error?: NotebookExportError | undefined;
9626
- /**
9627
- * <p>The timestamp of when the notebook export completed.</p>
9628
- * @public
9629
- */
9630
- completedAt?: Date | undefined;
9631
- /**
9632
- * <p>The timestamp of when the notebook export was started.</p>
9633
- * @public
9634
- */
9635
- createdAt?: Date | undefined;
9636
- /**
9637
- * <p>The identifier of the user who started the notebook export.</p>
9638
- * @public
9639
- */
9640
- createdBy?: string | undefined;
9641
- }
9642
- /**
9643
- * @public
9644
- */
9645
- export interface StartNotebookExportInput {
9646
- /**
9647
- * <p>The identifier of the Amazon SageMaker Unified Studio domain in which to export the notebook.</p>
9648
- * @public
9649
- */
9650
- domainIdentifier: string | undefined;
9651
- /**
9652
- * <p>The identifier of the notebook to export.</p>
9653
- * @public
9654
- */
9655
- notebookIdentifier: string | undefined;
9656
- /**
9657
- * <p>The identifier of the project that owns the notebook.</p>
9658
- * @public
9659
- */
9660
- owningProjectIdentifier: string | undefined;
9661
- /**
9662
- * <p>The file format for the notebook export. Valid values are <code>PDF</code> and <code>IPYNB</code>.</p>
9663
- * @public
9664
- */
9665
- fileFormat: FileFormat | undefined;
9666
- /**
9667
- * <p>A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.</p>
9668
- * @public
9669
- */
9670
- clientToken?: string | undefined;
9671
- }
9672
- /**
9673
- * @public
9674
- */
9675
- export interface StartNotebookExportOutput {
9676
- /**
9677
- * <p>The identifier of the notebook export.</p>
9678
- * @public
9679
- */
9680
- id: string | undefined;
9681
- /**
9682
- * <p>The identifier of the Amazon SageMaker Unified Studio domain.</p>
9683
- * @public
9684
- */
9685
- domainId: string | undefined;
9686
- /**
9687
- * <p>The identifier of the project that owns the notebook.</p>
9688
- * @public
9689
- */
9690
- owningProjectId: string | undefined;
9691
- /**
9692
- * <p>The identifier of the notebook.</p>
9693
- * @public
9694
- */
9695
- notebookId: string | undefined;
9696
- /**
9697
- * <p>The file format of the notebook export.</p>
9698
- * @public
9699
- */
9700
- fileFormat: FileFormat | undefined;
9701
- /**
9702
- * <p>The status of the notebook export.</p>
9703
- * @public
9704
- */
9705
- status: NotebookExportStatus | undefined;
9706
- /**
9707
- * <p>The timestamp of when the notebook export was started.</p>
9708
- * @public
9709
- */
9710
- createdAt?: Date | undefined;
9711
- /**
9712
- * <p>The identifier of the user who started the notebook export.</p>
9713
- * @public
9714
- */
9715
- createdBy?: string | undefined;
9716
- }
@@ -1,6 +1,141 @@
1
- import type { ConnectionScope, ConnectionType, DataZoneEntityType, EnvironmentStatus, FilterOperator, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GraphEntityType, GroupProfileStatus, GroupSearchType, InventorySearchScope, ManagedPolicyType, NetworkAccessType, NotebookRunStatus, NotebookStatus, ProjectStatus, RejectRuleBehavior, RelationDirection, RelationType, ResolutionStrategy, RuleAction, RuleTargetType, RuleType, SearchOutputAdditionalAttribute, SortOrder, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TimeSeriesEntityType, TriggerSourceType, TypesSearchScope, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
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, GitMetadata, MatchRationaleItem, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantPrincipal, ProjectDeletionError, ProvisioningProperties, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, RuleDetail, SubscribedListing, SubscribedPrincipal, TermRelations, UserProfileDetails } from "./models_0";
3
- import type { DataProductListingItem, DataProductResultItem, EncryptionConfiguration, FailureCause, GrantedEntity, Import, RuleScope, RuleTarget, SubscribedAsset, SubscriptionTargetForm, TimeSeriesDataPointFormOutput } from "./models_1";
1
+ import type { ConnectionScope, ConnectionType, DataZoneEntityType, EnvironmentStatus, FileFormat, FilterOperator, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GraphEntityType, GroupProfileStatus, GroupSearchType, InventorySearchScope, ManagedPolicyType, NetworkAccessType, NotebookExportStatus, NotebookRunStatus, NotebookStatus, ProjectStatus, RejectRuleBehavior, RelationDirection, RelationType, ResolutionStrategy, RuleAction, RuleTargetType, RuleType, SearchOutputAdditionalAttribute, SortOrder, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TimeSeriesEntityType, TriggerSourceType, TypesSearchScope, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
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, GitMetadata, MatchRationaleItem, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantPrincipal, ProjectDeletionError, ProvisioningProperties, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, SubscribedListing, SubscribedPrincipal, TermRelations, UserProfileDetails } from "./models_0";
3
+ import type { DataProductListingItem, DataProductResultItem, EncryptionConfiguration, FailureCause, GrantedEntity, Import, NotebookExportError, OutputLocation, RuleDetail, RuleScope, RuleTarget, SubscribedAsset, SubscriptionTargetForm, TimeSeriesDataPointFormOutput } from "./models_1";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface GetNotebookExportOutput {
8
+ /**
9
+ * <p>The identifier of the notebook export.</p>
10
+ * @public
11
+ */
12
+ id: string | undefined;
13
+ /**
14
+ * <p>The identifier of the Amazon SageMaker Unified Studio domain.</p>
15
+ * @public
16
+ */
17
+ domainId: string | undefined;
18
+ /**
19
+ * <p>The identifier of the project that owns the notebook.</p>
20
+ * @public
21
+ */
22
+ owningProjectId: string | undefined;
23
+ /**
24
+ * <p>The identifier of the notebook.</p>
25
+ * @public
26
+ */
27
+ notebookId: string | undefined;
28
+ /**
29
+ * <p>The file format of the notebook export.</p>
30
+ * @public
31
+ */
32
+ fileFormat: FileFormat | undefined;
33
+ /**
34
+ * <p>The status of the notebook export.</p>
35
+ * @public
36
+ */
37
+ status: NotebookExportStatus | undefined;
38
+ /**
39
+ * <p>The output location of the exported notebook in Amazon Simple Storage Service.</p>
40
+ * @public
41
+ */
42
+ outputLocation?: OutputLocation | undefined;
43
+ /**
44
+ * <p>The error details if the notebook export failed.</p>
45
+ * @public
46
+ */
47
+ error?: NotebookExportError | undefined;
48
+ /**
49
+ * <p>The timestamp of when the notebook export completed.</p>
50
+ * @public
51
+ */
52
+ completedAt?: Date | undefined;
53
+ /**
54
+ * <p>The timestamp of when the notebook export was started.</p>
55
+ * @public
56
+ */
57
+ createdAt?: Date | undefined;
58
+ /**
59
+ * <p>The identifier of the user who started the notebook export.</p>
60
+ * @public
61
+ */
62
+ createdBy?: string | undefined;
63
+ }
64
+ /**
65
+ * @public
66
+ */
67
+ export interface StartNotebookExportInput {
68
+ /**
69
+ * <p>The identifier of the Amazon SageMaker Unified Studio domain in which to export the notebook.</p>
70
+ * @public
71
+ */
72
+ domainIdentifier: string | undefined;
73
+ /**
74
+ * <p>The identifier of the notebook to export.</p>
75
+ * @public
76
+ */
77
+ notebookIdentifier: string | undefined;
78
+ /**
79
+ * <p>The identifier of the project that owns the notebook.</p>
80
+ * @public
81
+ */
82
+ owningProjectIdentifier: string | undefined;
83
+ /**
84
+ * <p>The file format for the notebook export. Valid values are <code>PDF</code> and <code>IPYNB</code>.</p>
85
+ * @public
86
+ */
87
+ fileFormat: FileFormat | undefined;
88
+ /**
89
+ * <p>A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.</p>
90
+ * @public
91
+ */
92
+ clientToken?: string | undefined;
93
+ }
94
+ /**
95
+ * @public
96
+ */
97
+ export interface StartNotebookExportOutput {
98
+ /**
99
+ * <p>The identifier of the notebook export.</p>
100
+ * @public
101
+ */
102
+ id: string | undefined;
103
+ /**
104
+ * <p>The identifier of the Amazon SageMaker Unified Studio domain.</p>
105
+ * @public
106
+ */
107
+ domainId: string | undefined;
108
+ /**
109
+ * <p>The identifier of the project that owns the notebook.</p>
110
+ * @public
111
+ */
112
+ owningProjectId: string | undefined;
113
+ /**
114
+ * <p>The identifier of the notebook.</p>
115
+ * @public
116
+ */
117
+ notebookId: string | undefined;
118
+ /**
119
+ * <p>The file format of the notebook export.</p>
120
+ * @public
121
+ */
122
+ fileFormat: FileFormat | undefined;
123
+ /**
124
+ * <p>The status of the notebook export.</p>
125
+ * @public
126
+ */
127
+ status: NotebookExportStatus | undefined;
128
+ /**
129
+ * <p>The timestamp of when the notebook export was started.</p>
130
+ * @public
131
+ */
132
+ createdAt?: Date | undefined;
133
+ /**
134
+ * <p>The identifier of the user who started the notebook export.</p>
135
+ * @public
136
+ */
137
+ createdBy?: string | undefined;
138
+ }
4
139
  /**
5
140
  * @public
6
141
  */
@@ -338,6 +338,9 @@ export declare var GetTimeSeriesDataPointOutput$: StaticStructureSchema;
338
338
  export declare var GetUserProfileInput$: StaticStructureSchema;
339
339
  export declare var GetUserProfileOutput$: StaticStructureSchema;
340
340
  export declare var GitMetadata$: StaticStructureSchema;
341
+ export declare var GitPropertiesInput$: StaticStructureSchema;
342
+ export declare var GitPropertiesOutput$: StaticStructureSchema;
343
+ export declare var GitPropertiesPatch$: StaticStructureSchema;
341
344
  export declare var GlossaryItem$: StaticStructureSchema;
342
345
  export declare var GlossaryItemAdditionalAttributes$: StaticStructureSchema;
343
346
  export declare var GlossaryTermEnforcementDetail$: StaticStructureSchema;
@@ -1,5 +1,6 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { GetNotebookExportInput, GetNotebookExportOutput } from "../models/models_1";
2
+ import { GetNotebookExportInput } from "../models/models_1";
3
+ import { GetNotebookExportOutput } from "../models/models_2";
3
4
  export { __MetadataBearer };
4
5
  export interface GetNotebookExportCommandInput extends GetNotebookExportInput {}
5
6
  export interface GetNotebookExportCommandOutput extends GetNotebookExportOutput, __MetadataBearer {}
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { StartNotebookExportInput, StartNotebookExportOutput } from "../models/models_1";
2
+ import { StartNotebookExportInput, StartNotebookExportOutput } from "../models/models_2";
3
3
  export { __MetadataBearer };
4
4
  export interface StartNotebookExportCommandInput extends StartNotebookExportInput {}
5
5
  export interface StartNotebookExportCommandOutput
@@ -245,6 +245,7 @@ export declare const ConnectionType: {
245
245
  readonly DATABRICKS: "DATABRICKS";
246
246
  readonly DOCUMENTDB: "DOCUMENTDB";
247
247
  readonly DYNAMODB: "DYNAMODB";
248
+ readonly GIT: "GIT";
248
249
  readonly HYPERPOD: "HYPERPOD";
249
250
  readonly IAM: "IAM";
250
251
  readonly MLFLOW: "MLFLOW";