@aws-sdk/client-datazone 3.899.0 → 3.900.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 +25 -16
- package/dist-es/commands/CreateProjectProfileCommand.js +2 -1
- package/dist-es/models/models_0.js +4 -8
- package/dist-es/models/models_1.js +8 -3
- package/dist-es/models/models_2.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/commands/CreateAssetCommand.d.ts +1 -1
- package/dist-types/commands/CreateAssetRevisionCommand.d.ts +1 -1
- package/dist-types/commands/CreateAssetTypeCommand.d.ts +1 -1
- package/dist-types/commands/CreateConnectionCommand.d.ts +7 -0
- package/dist-types/commands/CreateDataProductCommand.d.ts +1 -1
- package/dist-types/commands/CreateFormTypeCommand.d.ts +1 -1
- package/dist-types/commands/CreateGlossaryTermCommand.d.ts +1 -1
- package/dist-types/commands/CreateProjectProfileCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDataProductCommand.d.ts +1 -1
- package/dist-types/commands/DeleteGlossaryCommand.d.ts +1 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +6 -0
- package/dist-types/commands/GetFormTypeCommand.d.ts +1 -1
- package/dist-types/commands/ListConnectionsCommand.d.ts +6 -0
- package/dist-types/commands/SearchListingsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectionCommand.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +45 -59
- package/dist-types/models/models_1.d.ts +57 -9
- package/dist-types/models/models_2.d.ts +12 -1
- package/dist-types/ts3.4/commands/CreateProjectProfileCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +12 -15
- package/dist-types/ts3.4/models/models_1.d.ts +15 -5
- package/dist-types/ts3.4/models/models_2.d.ts +5 -1
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -368,6 +368,7 @@ __export(index_exports, {
|
|
|
368
368
|
ListingStatus: () => ListingStatus,
|
|
369
369
|
ListingSummaryFilterSensitiveLog: () => ListingSummaryFilterSensitiveLog,
|
|
370
370
|
ListingSummaryItemFilterSensitiveLog: () => ListingSummaryItemFilterSensitiveLog,
|
|
371
|
+
ManagedEndpointCredentialsFilterSensitiveLog: () => ManagedEndpointCredentialsFilterSensitiveLog,
|
|
371
372
|
ManagedPolicyType: () => ManagedPolicyType,
|
|
372
373
|
MatchRationaleItem: () => MatchRationaleItem,
|
|
373
374
|
Member: () => Member,
|
|
@@ -1805,9 +1806,13 @@ var RedshiftPropertiesOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
|
|
|
1805
1806
|
...obj.storage && { storage: obj.storage },
|
|
1806
1807
|
...obj.credentials && { credentials: import_smithy_client.SENSITIVE_STRING }
|
|
1807
1808
|
}), "RedshiftPropertiesOutputFilterSensitiveLog");
|
|
1809
|
+
var ManagedEndpointCredentialsFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1810
|
+
...obj
|
|
1811
|
+
}), "ManagedEndpointCredentialsFilterSensitiveLog");
|
|
1808
1812
|
var SparkEmrPropertiesOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1809
1813
|
...obj,
|
|
1810
|
-
...obj.credentials && { credentials: import_smithy_client.SENSITIVE_STRING }
|
|
1814
|
+
...obj.credentials && { credentials: import_smithy_client.SENSITIVE_STRING },
|
|
1815
|
+
...obj.managedEndpointCredentials && { managedEndpointCredentials: import_smithy_client.SENSITIVE_STRING }
|
|
1811
1816
|
}), "SparkEmrPropertiesOutputFilterSensitiveLog");
|
|
1812
1817
|
var ConnectionPropertiesOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => {
|
|
1813
1818
|
if (obj.athenaProperties !== void 0) return { athenaProperties: obj.athenaProperties };
|
|
@@ -2070,16 +2075,6 @@ var CreateProjectProfileInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) =
|
|
|
2070
2075
|
)
|
|
2071
2076
|
}
|
|
2072
2077
|
}), "CreateProjectProfileInputFilterSensitiveLog");
|
|
2073
|
-
var CreateProjectProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2074
|
-
...obj,
|
|
2075
|
-
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
2076
|
-
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
2077
|
-
...obj.environmentConfigurations && {
|
|
2078
|
-
environmentConfigurations: obj.environmentConfigurations.map(
|
|
2079
|
-
(item) => EnvironmentConfigurationFilterSensitiveLog(item)
|
|
2080
|
-
)
|
|
2081
|
-
}
|
|
2082
|
-
}), "CreateProjectProfileOutputFilterSensitiveLog");
|
|
2083
2078
|
|
|
2084
2079
|
// src/protocols/Aws_restJson1.ts
|
|
2085
2080
|
var import_core2 = require("@aws-sdk/core");
|
|
@@ -2346,9 +2341,16 @@ var MetadataGenerationRunStatus = {
|
|
|
2346
2341
|
SUBMITTED: "SUBMITTED",
|
|
2347
2342
|
SUCCEEDED: "SUCCEEDED"
|
|
2348
2343
|
};
|
|
2349
|
-
var
|
|
2350
|
-
|
|
2351
|
-
}
|
|
2344
|
+
var CreateProjectProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2345
|
+
...obj,
|
|
2346
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
2347
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
2348
|
+
...obj.environmentConfigurations && {
|
|
2349
|
+
environmentConfigurations: obj.environmentConfigurations.map(
|
|
2350
|
+
(item) => EnvironmentConfigurationFilterSensitiveLog(item)
|
|
2351
|
+
)
|
|
2352
|
+
}
|
|
2353
|
+
}), "CreateProjectProfileOutputFilterSensitiveLog");
|
|
2352
2354
|
var CreateRuleInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2353
2355
|
...obj,
|
|
2354
2356
|
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -2823,6 +2825,9 @@ var ListSubscriptionTargetsOutputFilterSensitiveLog = /* @__PURE__ */ __name((ob
|
|
|
2823
2825
|
}), "ListSubscriptionTargetsOutputFilterSensitiveLog");
|
|
2824
2826
|
|
|
2825
2827
|
// src/models/models_2.ts
|
|
2828
|
+
var MetadataGenerationTargetType = {
|
|
2829
|
+
ASSET: "ASSET"
|
|
2830
|
+
};
|
|
2826
2831
|
var MetadataGenerationRunType = {
|
|
2827
2832
|
BUSINESS_DESCRIPTIONS: "BUSINESS_DESCRIPTIONS"
|
|
2828
2833
|
};
|
|
@@ -10217,6 +10222,7 @@ var de_SearchTypesResultItems = /* @__PURE__ */ __name((output, context) => {
|
|
|
10217
10222
|
}, "de_SearchTypesResultItems");
|
|
10218
10223
|
var de_SparkEmrPropertiesOutput = /* @__PURE__ */ __name((output, context) => {
|
|
10219
10224
|
return (0, import_smithy_client.take)(output, {
|
|
10225
|
+
certificateData: import_smithy_client.expectString,
|
|
10220
10226
|
computeArn: import_smithy_client.expectString,
|
|
10221
10227
|
credentials: import_smithy_client._json,
|
|
10222
10228
|
credentialsExpiration: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)), "credentialsExpiration"),
|
|
@@ -10225,6 +10231,8 @@ var de_SparkEmrPropertiesOutput = /* @__PURE__ */ __name((output, context) => {
|
|
|
10225
10231
|
javaVirtualEnv: import_smithy_client.expectString,
|
|
10226
10232
|
livyEndpoint: import_smithy_client.expectString,
|
|
10227
10233
|
logUri: import_smithy_client.expectString,
|
|
10234
|
+
managedEndpointArn: import_smithy_client.expectString,
|
|
10235
|
+
managedEndpointCredentials: import_smithy_client._json,
|
|
10228
10236
|
pythonVirtualEnv: import_smithy_client.expectString,
|
|
10229
10237
|
runtimeRole: import_smithy_client.expectString,
|
|
10230
10238
|
trustedCertificatesS3Uri: import_smithy_client.expectString
|
|
@@ -13650,6 +13658,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
13650
13658
|
RedshiftPropertiesInputFilterSensitiveLog,
|
|
13651
13659
|
ConnectionPropertiesInputFilterSensitiveLog,
|
|
13652
13660
|
RedshiftPropertiesOutputFilterSensitiveLog,
|
|
13661
|
+
ManagedEndpointCredentialsFilterSensitiveLog,
|
|
13653
13662
|
SparkEmrPropertiesOutputFilterSensitiveLog,
|
|
13654
13663
|
ConnectionPropertiesOutputFilterSensitiveLog,
|
|
13655
13664
|
GlueConnectionPatchFilterSensitiveLog,
|
|
@@ -13691,7 +13700,6 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
13691
13700
|
CreateProjectOutputFilterSensitiveLog,
|
|
13692
13701
|
EnvironmentConfigurationFilterSensitiveLog,
|
|
13693
13702
|
CreateProjectProfileInputFilterSensitiveLog,
|
|
13694
|
-
CreateProjectProfileOutputFilterSensitiveLog,
|
|
13695
13703
|
RuleAction,
|
|
13696
13704
|
RuleDetail,
|
|
13697
13705
|
RuleTarget,
|
|
@@ -13734,7 +13742,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
13734
13742
|
MemberDetails,
|
|
13735
13743
|
SortKey,
|
|
13736
13744
|
MetadataGenerationRunStatus,
|
|
13737
|
-
|
|
13745
|
+
CreateProjectProfileOutputFilterSensitiveLog,
|
|
13738
13746
|
CreateRuleInputFilterSensitiveLog,
|
|
13739
13747
|
CreateRuleOutputFilterSensitiveLog,
|
|
13740
13748
|
CreateSubscriptionRequestInputFilterSensitiveLog,
|
|
@@ -13816,6 +13824,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
13816
13824
|
ListSubscriptionsOutputFilterSensitiveLog,
|
|
13817
13825
|
SubscriptionTargetSummaryFilterSensitiveLog,
|
|
13818
13826
|
ListSubscriptionTargetsOutputFilterSensitiveLog,
|
|
13827
|
+
MetadataGenerationTargetType,
|
|
13819
13828
|
MetadataGenerationRunType,
|
|
13820
13829
|
RejectRuleBehavior,
|
|
13821
13830
|
SearchOutputAdditionalAttribute,
|
|
@@ -2,7 +2,8 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { CreateProjectProfileInputFilterSensitiveLog
|
|
5
|
+
import { CreateProjectProfileInputFilterSensitiveLog } from "../models/models_0";
|
|
6
|
+
import { CreateProjectProfileOutputFilterSensitiveLog } from "../models/models_1";
|
|
6
7
|
import { de_CreateProjectProfileCommand, se_CreateProjectProfileCommand } from "../protocols/Aws_restJson1";
|
|
7
8
|
export { $Command };
|
|
8
9
|
export class CreateProjectProfileCommand extends $Command
|
|
@@ -1081,9 +1081,13 @@ export const RedshiftPropertiesOutputFilterSensitiveLog = (obj) => ({
|
|
|
1081
1081
|
...(obj.storage && { storage: obj.storage }),
|
|
1082
1082
|
...(obj.credentials && { credentials: SENSITIVE_STRING }),
|
|
1083
1083
|
});
|
|
1084
|
+
export const ManagedEndpointCredentialsFilterSensitiveLog = (obj) => ({
|
|
1085
|
+
...obj,
|
|
1086
|
+
});
|
|
1084
1087
|
export const SparkEmrPropertiesOutputFilterSensitiveLog = (obj) => ({
|
|
1085
1088
|
...obj,
|
|
1086
1089
|
...(obj.credentials && { credentials: SENSITIVE_STRING }),
|
|
1090
|
+
...(obj.managedEndpointCredentials && { managedEndpointCredentials: SENSITIVE_STRING }),
|
|
1087
1091
|
});
|
|
1088
1092
|
export const ConnectionPropertiesOutputFilterSensitiveLog = (obj) => {
|
|
1089
1093
|
if (obj.athenaProperties !== undefined)
|
|
@@ -1358,11 +1362,3 @@ export const CreateProjectProfileInputFilterSensitiveLog = (obj) => ({
|
|
|
1358
1362
|
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
1359
1363
|
}),
|
|
1360
1364
|
});
|
|
1361
|
-
export const CreateProjectProfileOutputFilterSensitiveLog = (obj) => ({
|
|
1362
|
-
...obj,
|
|
1363
|
-
...(obj.name && { name: SENSITIVE_STRING }),
|
|
1364
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1365
|
-
...(obj.environmentConfigurations && {
|
|
1366
|
-
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
1367
|
-
}),
|
|
1368
|
-
});
|
|
@@ -268,9 +268,14 @@ export const MetadataGenerationRunStatus = {
|
|
|
268
268
|
SUBMITTED: "SUBMITTED",
|
|
269
269
|
SUCCEEDED: "SUCCEEDED",
|
|
270
270
|
};
|
|
271
|
-
export const
|
|
272
|
-
|
|
273
|
-
}
|
|
271
|
+
export const CreateProjectProfileOutputFilterSensitiveLog = (obj) => ({
|
|
272
|
+
...obj,
|
|
273
|
+
...(obj.name && { name: SENSITIVE_STRING }),
|
|
274
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
275
|
+
...(obj.environmentConfigurations && {
|
|
276
|
+
environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
|
|
277
|
+
}),
|
|
278
|
+
});
|
|
274
279
|
export const CreateRuleInputFilterSensitiveLog = (obj) => ({
|
|
275
280
|
...obj,
|
|
276
281
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { AccountSourceFilterSensitiveLog, AssetItemFilterSensitiveLog, AssetListingItemFilterSensitiveLog, AssetTypeItemFilterSensitiveLog, ConnectionPropertiesOutputFilterSensitiveLog, ConnectionPropertiesPatchFilterSensitiveLog, CustomParameterFilterSensitiveLog, EnvironmentConfigurationFilterSensitiveLog, EnvironmentConfigurationUserParameterFilterSensitiveLog, FormEntryOutputFilterSensitiveLog, FormOutputFilterSensitiveLog, PhysicalEndpointFilterSensitiveLog, SubscribedListingFilterSensitiveLog, SubscribedPrincipalFilterSensitiveLog, } from "./models_0";
|
|
3
3
|
import { DataProductListingItemFilterSensitiveLog, DataProductResultItemFilterSensitiveLog, ImportFilterSensitiveLog, UserProfileDetailsFilterSensitiveLog, } from "./models_1";
|
|
4
|
+
export const MetadataGenerationTargetType = {
|
|
5
|
+
ASSET: "ASSET",
|
|
6
|
+
};
|
|
4
7
|
export const MetadataGenerationRunType = {
|
|
5
8
|
BUSINESS_DESCRIPTIONS: "BUSINESS_DESCRIPTIONS",
|
|
6
9
|
};
|
|
@@ -6914,6 +6914,7 @@ const de_SearchTypesResultItems = (output, context) => {
|
|
|
6914
6914
|
};
|
|
6915
6915
|
const de_SparkEmrPropertiesOutput = (output, context) => {
|
|
6916
6916
|
return take(output, {
|
|
6917
|
+
certificateData: __expectString,
|
|
6917
6918
|
computeArn: __expectString,
|
|
6918
6919
|
credentials: _json,
|
|
6919
6920
|
credentialsExpiration: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
@@ -6922,6 +6923,8 @@ const de_SparkEmrPropertiesOutput = (output, context) => {
|
|
|
6922
6923
|
javaVirtualEnv: __expectString,
|
|
6923
6924
|
livyEndpoint: __expectString,
|
|
6924
6925
|
logUri: __expectString,
|
|
6926
|
+
managedEndpointArn: __expectString,
|
|
6927
|
+
managedEndpointCredentials: _json,
|
|
6925
6928
|
pythonVirtualEnv: __expectString,
|
|
6926
6929
|
runtimeRole: __expectString,
|
|
6927
6930
|
trustedCertificatesS3Uri: __expectString,
|
|
@@ -27,7 +27,7 @@ declare const CreateAssetCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates an asset in Amazon DataZone catalog.</p> <p>Before creating assets, make sure that the following requirements are met:</p> <ul> <li> <p> <code>--domain-identifier</code> must refer to an existing domain.</p> </li> <li> <p> <code>--owning-project-identifier</code> must be a valid project within the domain.</p> </li> <li> <p>Asset type must be created beforehand using <code>create-asset-type</code>, or be a supported system-defined type. For more information, see <a href="https://docs.aws.amazon.com/cli/latest/reference/datazone/create-asset-type.html">create-asset-type</a>.</p> </li> <li> <p> <code>--type-revision</code> (if used) must match a valid revision of the asset type.</p> </li> <li> <p>
|
|
30
|
+
* <p>Creates an asset in Amazon DataZone catalog.</p> <p>Before creating assets, make sure that the following requirements are met:</p> <ul> <li> <p> <code>--domain-identifier</code> must refer to an existing domain.</p> </li> <li> <p> <code>--owning-project-identifier</code> must be a valid project within the domain.</p> </li> <li> <p>Asset type must be created beforehand using <code>create-asset-type</code>, or be a supported system-defined type. For more information, see <a href="https://docs.aws.amazon.com/cli/latest/reference/datazone/create-asset-type.html">create-asset-type</a>.</p> </li> <li> <p> <code>--type-revision</code> (if used) must match a valid revision of the asset type.</p> </li> <li> <p> <code>formsInput</code> is required when it is associated as required in the <code>asset-type</code>. For more information, see <a href="https://docs.aws.amazon.com/cli/latest/reference/datazone/create-form-type.html">create-form-type</a>.</p> </li> <li> <p>Form content must include all required fields as per the form schema (e.g., <code>bucketArn</code>).</p> </li> </ul> <p>You must invoke the following pre-requisite commands before invoking this API:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/datazone/latest/APIReference/API_CreateFormType.html">CreateFormType</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/datazone/latest/APIReference/API_CreateAssetType.html">CreateAssetType</a> </p> </li> </ul>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const CreateAssetRevisionCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a revision of the asset.</p> <p>Asset revisions represent new versions of existing assets, capturing changes to either the underlying data or its metadata. They maintain a historical record of how assets evolve over time, who made changes, and when those changes occurred. This versioning capability is crucial for governance and compliance, allowing organizations to track changes, understand their impact, and roll back if necessary.</p> <p>Prerequisites:</p> <ul> <li> <p>Asset must already exist in the domain with identifier. </p> </li> <li> <p>
|
|
30
|
+
* <p>Creates a revision of the asset.</p> <p>Asset revisions represent new versions of existing assets, capturing changes to either the underlying data or its metadata. They maintain a historical record of how assets evolve over time, who made changes, and when those changes occurred. This versioning capability is crucial for governance and compliance, allowing organizations to track changes, understand their impact, and roll back if necessary.</p> <p>Prerequisites:</p> <ul> <li> <p>Asset must already exist in the domain with identifier. </p> </li> <li> <p> <code>formsInput</code> is required when asset has the form type. <code>typeRevision</code> should be the latest version of form type. </p> </li> <li> <p>The form content must include all required fields (e.g., <code>bucketArn</code> for <code>S3ObjectCollectionForm</code>).</p> </li> <li> <p>The owning project of the original asset must still exist and be active.</p> </li> <li> <p>User must have write access to the project and domain.</p> </li> </ul>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const CreateAssetTypeCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a custom asset type.</p> <p>Prerequisites:</p> <ul> <li> <p>The
|
|
30
|
+
* <p>Creates a custom asset type.</p> <p>Prerequisites:</p> <ul> <li> <p>The <code>formsInput</code> field is required, however, can be passed as empty (e.g. <code>-forms-input \{\})</code>. </p> </li> <li> <p>You must have <code>CreateAssetType</code> permissions.</p> </li> <li> <p>The domain-identifier and owning-project-identifier must be valid and active.</p> </li> <li> <p>The name of the asset type must be unique within the domain — duplicate names will cause failure.</p> </li> <li> <p>JSON input must be valid — incorrect formatting causes Invalid JSON errors.</p> </li> </ul>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -155,6 +155,7 @@ declare const CreateConnectionCommand_base: {
|
|
|
155
155
|
* pythonVirtualEnv: "STRING_VALUE",
|
|
156
156
|
* runtimeRole: "STRING_VALUE",
|
|
157
157
|
* trustedCertificatesS3Uri: "STRING_VALUE",
|
|
158
|
+
* managedEndpointArn: "STRING_VALUE",
|
|
158
159
|
* },
|
|
159
160
|
* sparkGlueProperties: { // SparkGluePropertiesInput
|
|
160
161
|
* additionalArgs: { // SparkGlueArgs
|
|
@@ -322,6 +323,12 @@ declare const CreateConnectionCommand_base: {
|
|
|
322
323
|
* // pythonVirtualEnv: "STRING_VALUE",
|
|
323
324
|
* // runtimeRole: "STRING_VALUE",
|
|
324
325
|
* // trustedCertificatesS3Uri: "STRING_VALUE",
|
|
326
|
+
* // certificateData: "STRING_VALUE",
|
|
327
|
+
* // managedEndpointArn: "STRING_VALUE",
|
|
328
|
+
* // managedEndpointCredentials: { // ManagedEndpointCredentials
|
|
329
|
+
* // id: "STRING_VALUE",
|
|
330
|
+
* // token: "STRING_VALUE",
|
|
331
|
+
* // },
|
|
325
332
|
* // },
|
|
326
333
|
* // sparkGlueProperties: { // SparkGluePropertiesOutput
|
|
327
334
|
* // additionalArgs: { // SparkGlueArgs
|
|
@@ -27,7 +27,7 @@ declare const CreateDataProductCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a data product.</p> <p>A data product is a comprehensive package that combines data assets with their associated metadata, documentation, and access controls. It's designed to serve specific business needs or use cases, making it easier for users to find and consume data appropriately. Data products include important information about data quality, freshness, and usage guidelines, effectively bridging the gap between data producers and consumers while ensuring proper governance.</p> <p>Prerequisites:</p> <ul> <li> <p>The domain must exist and be accessible. </p> </li> <li> <p>The owning project must be valid and active.</p> </li> <li> <p>The name must be unique within the domain (no existing data product with the same name).</p> </li> <li> <p>User must have create permissions for data products in the project.</p> </li>
|
|
30
|
+
* <p>Creates a data product.</p> <p>A data product is a comprehensive package that combines data assets with their associated metadata, documentation, and access controls. It's designed to serve specific business needs or use cases, making it easier for users to find and consume data appropriately. Data products include important information about data quality, freshness, and usage guidelines, effectively bridging the gap between data producers and consumers while ensuring proper governance.</p> <p>Prerequisites:</p> <ul> <li> <p>The domain must exist and be accessible. </p> </li> <li> <p>The owning project must be valid and active.</p> </li> <li> <p>The name must be unique within the domain (no existing data product with the same name).</p> </li> <li> <p>User must have create permissions for data products in the project.</p> </li> </ul>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const CreateFormTypeCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a metadata form type.</p> <p>Prerequisites:</p> <ul> <li> <p>The domain must exist and be in an <code>ENABLED</code> state. </p> </li> <li> <p>The owning project must exist and be accessible.</p> </li> <li> <p>The name must be unique within the domain.</p> </li> </ul>
|
|
30
|
+
* <p>Creates a metadata form type.</p> <p>Prerequisites:</p> <ul> <li> <p>The domain must exist and be in an <code>ENABLED</code> state. </p> </li> <li> <p>The owning project must exist and be accessible.</p> </li> <li> <p>The name must be unique within the domain.</p> </li> </ul> <p>For custom form types, to indicate that a field should be searchable, annotate it with <code>@amazon.datazone#searchable</code>. By default, searchable fields are indexed for semantic search, where related query terms will match the attribute value even if they are not stemmed or keyword matches. To indicate that a field should be indexed for lexical search (which disables semantic search but supports stemmed and partial matches), annotate it with <code>@amazon.datazone#searchable(modes:["LEXICAL"])</code>. To indicate that a field should be indexed for technical identifier search (for more information on technical identifier search, see: <a href="https://aws.amazon.com/blogs/big-data/streamline-data-discovery-with-precise-technical-identifier-search-in-amazon-sagemaker-unified-studio/">https://aws.amazon.com/blogs/big-data/streamline-data-discovery-with-precise-technical-identifier-search-in-amazon-sagemaker-unified-studio/</a>), annotate it with <code>@amazon.datazone#searchable(modes:["TECHNICAL"])</code>.</p> <p>To denote that a field will store glossary term ids (which are filterable via the Search/SearchListings APIs), annotate it with <code>@amazon.datazone#glossaryterm("$\{GLOSSARY_ID\}")</code>, where <code>$\{GLOSSARY_ID\}</code> is the id of the glossary that the glossary terms stored in the field belong to. </p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const CreateGlossaryTermCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a business glossary term.</p> <p>A glossary term represents an individual entry within the Amazon DataZone glossary, serving as a standardized definition for a specific business concept or data element. Each term can include rich metadata such as detailed definitions, synonyms, related terms, and usage examples. Glossary terms can be linked directly to data assets, providing business context to technical data elements. This linking capability helps users understand the business meaning of data fields and ensures consistent interpretation across different systems and teams. Terms can also have relationships with other terms, creating a semantic network that reflects the complexity of business concepts.</p> <p>Prerequisites:</p> <ul> <li> <p>Domain must exist. </p> </li> <li> <p>Glossary must exist
|
|
30
|
+
* <p>Creates a business glossary term.</p> <p>A glossary term represents an individual entry within the Amazon DataZone glossary, serving as a standardized definition for a specific business concept or data element. Each term can include rich metadata such as detailed definitions, synonyms, related terms, and usage examples. Glossary terms can be linked directly to data assets, providing business context to technical data elements. This linking capability helps users understand the business meaning of data fields and ensures consistent interpretation across different systems and teams. Terms can also have relationships with other terms, creating a semantic network that reflects the complexity of business concepts.</p> <p>Prerequisites:</p> <ul> <li> <p>Domain must exist. </p> </li> <li> <p>Glossary must exist.</p> </li> <li> <p>The term name must be unique within the glossary.</p> </li> <li> <p>Ensure term does not conflict with existing terms in hierarchy.</p> </li> </ul>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import { CreateProjectProfileInput
|
|
4
|
+
import { CreateProjectProfileInput } from "../models/models_0";
|
|
5
|
+
import { CreateProjectProfileOutput } from "../models/models_1";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -27,7 +27,7 @@ declare const DeleteDataProductCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Deletes a data product in Amazon DataZone.</p> <p>Prerequisites:</p> <ul> <li> <p>The data product must exist and not be deleted or archived. </p> </li> <li> <p>The user must have delete permissions for the data product.</p> </li> <li> <p>
|
|
30
|
+
* <p>Deletes a data product in Amazon DataZone.</p> <p>Prerequisites:</p> <ul> <li> <p>The data product must exist and not be deleted or archived. </p> </li> <li> <p>The user must have delete permissions for the data product.</p> </li> <li> <p>Domain and project must be active.</p> </li> </ul>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const DeleteGlossaryCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Deletes a business glossary in Amazon DataZone.</p> <p>Prerequisites:</p> <ul> <li> <p>The glossary must be in DISABLED state. </p> </li> <li> <p>The glossary must not have any glossary terms associated with it.</p> </li> <li> <p>The glossary must exist in the specified domain.</p> </li> <li> <p>The caller must have the <code>datazone:DeleteGlossary</code> permission in the domain and glossary.</p> </li> <li> <p>
|
|
30
|
+
* <p>Deletes a business glossary in Amazon DataZone.</p> <p>Prerequisites:</p> <ul> <li> <p>The glossary must be in DISABLED state. </p> </li> <li> <p>The glossary must not have any glossary terms associated with it.</p> </li> <li> <p>The glossary must exist in the specified domain.</p> </li> <li> <p>The caller must have the <code>datazone:DeleteGlossary</code> permission in the domain and glossary.</p> </li> <li> <p>Glossary should not be linked to any active metadata forms.</p> </li> </ul>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -196,6 +196,12 @@ declare const GetConnectionCommand_base: {
|
|
|
196
196
|
* // pythonVirtualEnv: "STRING_VALUE",
|
|
197
197
|
* // runtimeRole: "STRING_VALUE",
|
|
198
198
|
* // trustedCertificatesS3Uri: "STRING_VALUE",
|
|
199
|
+
* // certificateData: "STRING_VALUE",
|
|
200
|
+
* // managedEndpointArn: "STRING_VALUE",
|
|
201
|
+
* // managedEndpointCredentials: { // ManagedEndpointCredentials
|
|
202
|
+
* // id: "STRING_VALUE",
|
|
203
|
+
* // token: "STRING_VALUE",
|
|
204
|
+
* // },
|
|
199
205
|
* // },
|
|
200
206
|
* // sparkGlueProperties: { // SparkGluePropertiesOutput
|
|
201
207
|
* // additionalArgs: { // SparkGlueArgs
|
|
@@ -27,7 +27,7 @@ declare const GetFormTypeCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Gets a metadata form type in Amazon DataZone.</p> <p>Form types define the structure and validation rules for collecting metadata about assets in Amazon DataZone. They act as templates that ensure consistent metadata capture across similar types of assets, while allowing for customization to meet specific organizational needs. Form types can include required fields, validation rules, and dependencies, helping maintain high-quality metadata that makes data assets more discoverable and usable.</p> <ul> <li> <p>The form type with the specified identifier must exist in the given domain. </p> </li> <li> <p>The domain must be valid and active.</p> </li> <li> <p>User must have permission on the form type.</p> </li> <li> <p>The form type should not be deleted or in an invalid state.</p> </li> </ul>
|
|
30
|
+
* <p>Gets a metadata form type in Amazon DataZone.</p> <p>Form types define the structure and validation rules for collecting metadata about assets in Amazon DataZone. They act as templates that ensure consistent metadata capture across similar types of assets, while allowing for customization to meet specific organizational needs. Form types can include required fields, validation rules, and dependencies, helping maintain high-quality metadata that makes data assets more discoverable and usable.</p> <ul> <li> <p>The form type with the specified identifier must exist in the given domain. </p> </li> <li> <p>The domain must be valid and active.</p> </li> <li> <p>User must have permission on the form type.</p> </li> <li> <p>The form type should not be deleted or in an invalid state.</p> </li> </ul> <p>One use case for this API is to determine whether a form field is indexed for search. </p> <p>A searchable field will be annotated with <code>@amazon.datazone#searchable</code>. By default, searchable fields are indexed for semantic search, where related query terms will match the attribute value even if they are not stemmed or keyword matches. If a field is indexed technical identifier search, it will be annotated with <code>@amazon.datazone#searchable(modes:["TECHNICAL"])</code>. If a field is indexed for lexical search (supports stemmed and prefix matches but not semantic matches), it will be annotated with <code>@amazon.datazone#searchable(modes:["LEXICAL"])</code>.</p> <p>A field storing glossary term IDs (which is filterable) will be annotated with <code>@amazon.datazone#glossaryterm("$\{glossaryId\}")</code>. </p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -196,6 +196,12 @@ declare const ListConnectionsCommand_base: {
|
|
|
196
196
|
* // pythonVirtualEnv: "STRING_VALUE",
|
|
197
197
|
* // runtimeRole: "STRING_VALUE",
|
|
198
198
|
* // trustedCertificatesS3Uri: "STRING_VALUE",
|
|
199
|
+
* // certificateData: "STRING_VALUE",
|
|
200
|
+
* // managedEndpointArn: "STRING_VALUE",
|
|
201
|
+
* // managedEndpointCredentials: { // ManagedEndpointCredentials
|
|
202
|
+
* // id: "STRING_VALUE",
|
|
203
|
+
* // token: "STRING_VALUE",
|
|
204
|
+
* // },
|
|
199
205
|
* // },
|
|
200
206
|
* // sparkGlueProperties: { // SparkGluePropertiesOutput
|
|
201
207
|
* // additionalArgs: { // SparkGlueArgs
|
|
@@ -27,7 +27,7 @@ declare const SearchListingsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Searches listings
|
|
30
|
+
* <p>Searches listings in Amazon DataZone.</p> <p>SearchListings is a powerful capability that enables users to discover and explore published assets and data products across their organization. It provides both basic and advanced search functionality, allowing users to find resources based on names, descriptions, metadata, and other attributes. SearchListings also supports filtering using various criteria such as creation date, owner, or status. This API is essential for making the wealth of data resources in an organization discoverable and usable, helping users find the right data for their needs quickly and efficiently.</p> <p>SearchListings returns results in a paginated format. When the result set is large, the response will include a nextToken, which can be used to retrieve the next page of results.</p> <p>The SearchListings API gives users flexibility in specifying what kind of search is run.</p> <p>To run a free-text search, the <code>searchText</code> parameter must be supplied. By default, all searchable fields are indexed for semantic search and will return semantic matches for SearchListings queries. To prevent semantic search indexing for a custom form attribute, see the <a href="https://docs.aws.amazon.com/datazone/latest/APIReference/API_CreateFormType.html">CreateFormType API documentation</a>. To run a lexical search query, enclose the query with double quotes (""). This will disable semantic search even for fields that have semantic search enabled and will only return results that contain the keywords wrapped by double quotes (order of tokens in the query is not enforced). Free-text search is supported for all attributes annotated with @amazon.datazone#searchable.</p> <p>To run a filtered search, provide filter clause using the filters parameter. To filter on glossary terms, use the special attribute <code>__DataZoneGlossaryTerms</code>.</p> <p> To find out whether an attribute has been annotated and indexed for a given search type, use the GetFormType API to retrieve the form containing the attribute.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -98,6 +98,7 @@ declare const UpdateConnectionCommand_base: {
|
|
|
98
98
|
* pythonVirtualEnv: "STRING_VALUE",
|
|
99
99
|
* runtimeRole: "STRING_VALUE",
|
|
100
100
|
* trustedCertificatesS3Uri: "STRING_VALUE",
|
|
101
|
+
* managedEndpointArn: "STRING_VALUE",
|
|
101
102
|
* },
|
|
102
103
|
* s3Properties: { // S3PropertiesPatch
|
|
103
104
|
* s3Uri: "STRING_VALUE", // required
|
|
@@ -253,6 +254,12 @@ declare const UpdateConnectionCommand_base: {
|
|
|
253
254
|
* // pythonVirtualEnv: "STRING_VALUE",
|
|
254
255
|
* // runtimeRole: "STRING_VALUE",
|
|
255
256
|
* // trustedCertificatesS3Uri: "STRING_VALUE",
|
|
257
|
+
* // certificateData: "STRING_VALUE",
|
|
258
|
+
* // managedEndpointArn: "STRING_VALUE",
|
|
259
|
+
* // managedEndpointCredentials: { // ManagedEndpointCredentials
|
|
260
|
+
* // id: "STRING_VALUE",
|
|
261
|
+
* // token: "STRING_VALUE",
|
|
262
|
+
* // },
|
|
256
263
|
* // },
|
|
257
264
|
* // sparkGlueProperties: { // SparkGluePropertiesOutput
|
|
258
265
|
* // additionalArgs: { // SparkGlueArgs
|
|
@@ -4606,6 +4606,11 @@ export interface SparkEmrPropertiesInput {
|
|
|
4606
4606
|
* @public
|
|
4607
4607
|
*/
|
|
4608
4608
|
trustedCertificatesS3Uri?: string | undefined;
|
|
4609
|
+
/**
|
|
4610
|
+
* <p>The managed endpoint ARN of the EMR on EKS cluster.</p>
|
|
4611
|
+
* @public
|
|
4612
|
+
*/
|
|
4613
|
+
managedEndpointArn?: string | undefined;
|
|
4609
4614
|
}
|
|
4610
4615
|
/**
|
|
4611
4616
|
* <p>The Spark Amazon Web Services Glue args.</p>
|
|
@@ -5013,6 +5018,22 @@ export declare const GovernanceType: {
|
|
|
5013
5018
|
* @public
|
|
5014
5019
|
*/
|
|
5015
5020
|
export type GovernanceType = (typeof GovernanceType)[keyof typeof GovernanceType];
|
|
5021
|
+
/**
|
|
5022
|
+
* <p>The managed endpoint credentials of the EMR on EKS cluster.</p>
|
|
5023
|
+
* @public
|
|
5024
|
+
*/
|
|
5025
|
+
export interface ManagedEndpointCredentials {
|
|
5026
|
+
/**
|
|
5027
|
+
* <p>The identifier of the managed endpoint credentials.</p>
|
|
5028
|
+
* @public
|
|
5029
|
+
*/
|
|
5030
|
+
id?: string | undefined;
|
|
5031
|
+
/**
|
|
5032
|
+
* <p>The ARN of the managed endpoint credentials.</p>
|
|
5033
|
+
* @public
|
|
5034
|
+
*/
|
|
5035
|
+
token?: string | undefined;
|
|
5036
|
+
}
|
|
5016
5037
|
/**
|
|
5017
5038
|
* <p>The Spark EMR properties.</p>
|
|
5018
5039
|
* @public
|
|
@@ -5073,6 +5094,21 @@ export interface SparkEmrPropertiesOutput {
|
|
|
5073
5094
|
* @public
|
|
5074
5095
|
*/
|
|
5075
5096
|
trustedCertificatesS3Uri?: string | undefined;
|
|
5097
|
+
/**
|
|
5098
|
+
* <p>The certificate data of the EMR on EKS cluster.</p>
|
|
5099
|
+
* @public
|
|
5100
|
+
*/
|
|
5101
|
+
certificateData?: string | undefined;
|
|
5102
|
+
/**
|
|
5103
|
+
* <p>The managed endpoint ARN of the EMR on EKS cluster.</p>
|
|
5104
|
+
* @public
|
|
5105
|
+
*/
|
|
5106
|
+
managedEndpointArn?: string | undefined;
|
|
5107
|
+
/**
|
|
5108
|
+
* <p>The managed endpoint credentials of the EMR on EKS cluster.</p>
|
|
5109
|
+
* @public
|
|
5110
|
+
*/
|
|
5111
|
+
managedEndpointCredentials?: ManagedEndpointCredentials | undefined;
|
|
5076
5112
|
}
|
|
5077
5113
|
/**
|
|
5078
5114
|
* <p>The Spark Amazon Web Services Glue properties. </p>
|
|
@@ -5411,6 +5447,11 @@ export interface SparkEmrPropertiesPatch {
|
|
|
5411
5447
|
* @public
|
|
5412
5448
|
*/
|
|
5413
5449
|
trustedCertificatesS3Uri?: string | undefined;
|
|
5450
|
+
/**
|
|
5451
|
+
* <p>The managed endpoint ARN of the EMR on EKS cluster.</p>
|
|
5452
|
+
* @public
|
|
5453
|
+
*/
|
|
5454
|
+
managedEndpointArn?: string | undefined;
|
|
5414
5455
|
}
|
|
5415
5456
|
/**
|
|
5416
5457
|
* <p>The connection properties patch.</p>
|
|
@@ -8962,61 +9003,6 @@ export interface CreateProjectProfileInput {
|
|
|
8962
9003
|
*/
|
|
8963
9004
|
domainUnitIdentifier?: string | undefined;
|
|
8964
9005
|
}
|
|
8965
|
-
/**
|
|
8966
|
-
* @public
|
|
8967
|
-
*/
|
|
8968
|
-
export interface CreateProjectProfileOutput {
|
|
8969
|
-
/**
|
|
8970
|
-
* <p>The ID of the domain where a project profile is created.</p>
|
|
8971
|
-
* @public
|
|
8972
|
-
*/
|
|
8973
|
-
domainId: string | undefined;
|
|
8974
|
-
/**
|
|
8975
|
-
* <p>Project profile ID.</p>
|
|
8976
|
-
* @public
|
|
8977
|
-
*/
|
|
8978
|
-
id: string | undefined;
|
|
8979
|
-
/**
|
|
8980
|
-
* <p>Project profile name.</p>
|
|
8981
|
-
* @public
|
|
8982
|
-
*/
|
|
8983
|
-
name: string | undefined;
|
|
8984
|
-
/**
|
|
8985
|
-
* <p>A project profile description.</p>
|
|
8986
|
-
* @public
|
|
8987
|
-
*/
|
|
8988
|
-
description?: string | undefined;
|
|
8989
|
-
/**
|
|
8990
|
-
* <p>Project profile status.</p>
|
|
8991
|
-
* @public
|
|
8992
|
-
*/
|
|
8993
|
-
status?: Status | undefined;
|
|
8994
|
-
/**
|
|
8995
|
-
* <p>Environment configurations of a project profile.</p>
|
|
8996
|
-
* @public
|
|
8997
|
-
*/
|
|
8998
|
-
environmentConfigurations?: EnvironmentConfiguration[] | undefined;
|
|
8999
|
-
/**
|
|
9000
|
-
* <p>A user who created a project profile.</p>
|
|
9001
|
-
* @public
|
|
9002
|
-
*/
|
|
9003
|
-
createdBy: string | undefined;
|
|
9004
|
-
/**
|
|
9005
|
-
* <p>A timestamp at which a project profile is created.</p>
|
|
9006
|
-
* @public
|
|
9007
|
-
*/
|
|
9008
|
-
createdAt?: Date | undefined;
|
|
9009
|
-
/**
|
|
9010
|
-
* <p>A timestamp when a project profile was last updated.</p>
|
|
9011
|
-
* @public
|
|
9012
|
-
*/
|
|
9013
|
-
lastUpdatedAt?: Date | undefined;
|
|
9014
|
-
/**
|
|
9015
|
-
* <p>The ID of the domain unit where a project profile is created.</p>
|
|
9016
|
-
* @public
|
|
9017
|
-
*/
|
|
9018
|
-
domainUnitId?: string | undefined;
|
|
9019
|
-
}
|
|
9020
9006
|
/**
|
|
9021
9007
|
* @internal
|
|
9022
9008
|
*/
|
|
@@ -9201,6 +9187,10 @@ export declare const ConnectionPropertiesInputFilterSensitiveLog: (obj: Connecti
|
|
|
9201
9187
|
* @internal
|
|
9202
9188
|
*/
|
|
9203
9189
|
export declare const RedshiftPropertiesOutputFilterSensitiveLog: (obj: RedshiftPropertiesOutput) => any;
|
|
9190
|
+
/**
|
|
9191
|
+
* @internal
|
|
9192
|
+
*/
|
|
9193
|
+
export declare const ManagedEndpointCredentialsFilterSensitiveLog: (obj: ManagedEndpointCredentials) => any;
|
|
9204
9194
|
/**
|
|
9205
9195
|
* @internal
|
|
9206
9196
|
*/
|
|
@@ -9365,7 +9355,3 @@ export declare const EnvironmentConfigurationFilterSensitiveLog: (obj: Environme
|
|
|
9365
9355
|
* @internal
|
|
9366
9356
|
*/
|
|
9367
9357
|
export declare const CreateProjectProfileInputFilterSensitiveLog: (obj: CreateProjectProfileInput) => any;
|
|
9368
|
-
/**
|
|
9369
|
-
* @internal
|
|
9370
|
-
*/
|
|
9371
|
-
export declare const CreateProjectProfileOutputFilterSensitiveLog: (obj: CreateProjectProfileOutput) => any;
|
|
@@ -1,4 +1,59 @@
|
|
|
1
1
|
import { AccountInfo, AccountPoolSummary, AccountSource, ActionParameters, AssetFilterSummary, AssetListing, AssetRevision, AssetScope, AssetTargetNameMap, AssetTypesForRule, ConfigurableEnvironmentAction, ConnectionCredentials, ConnectionPropertiesOutput, ConnectionSummary, ConnectionType, CustomParameter, DataProductItem, DataProductStatus, DataSourceConfigurationInput, DataSourceConfigurationOutput, DataSourceErrorMessage, DataSourceRunStatus, DataSourceStatus, DataZoneEntityType, Deployment, DeploymentProperties, DetailedGlossaryTerm, DomainStatus, DomainUnitOwnerProperties, DomainVersion, EnableSetting, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentStatus, FilterStatus, FormInput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, ListingStatus, ManagedPolicyType, MatchRationaleItem, Member, Model, PhysicalEndpoint, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProjectStatus, ProvisioningProperties, RecommendationConfiguration, ResolutionStrategy, Resource, RuleScopeSelectionMode, ScheduleConfiguration, SingleSignOn, Status, SubscribedListing, SubscribedPrincipal, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TermRelations, TimeSeriesDataPointSummaryFormOutput, UserDesignation } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface CreateProjectProfileOutput {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The ID of the domain where a project profile is created.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
domainId: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* <p>Project profile ID.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
id: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>Project profile name.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
name: string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>A project profile description.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
description?: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>Project profile status.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
status?: Status | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>Environment configurations of a project profile.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
environmentConfigurations?: EnvironmentConfiguration[] | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>A user who created a project profile.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
createdBy: string | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* <p>A timestamp at which a project profile is created.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
createdAt?: Date | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* <p>A timestamp when a project profile was last updated.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
lastUpdatedAt?: Date | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>The ID of the domain unit where a project profile is created.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
domainUnitId?: string | undefined;
|
|
56
|
+
}
|
|
2
57
|
/**
|
|
3
58
|
* @public
|
|
4
59
|
* @enum
|
|
@@ -8827,16 +8882,9 @@ export declare const MetadataGenerationRunStatus: {
|
|
|
8827
8882
|
*/
|
|
8828
8883
|
export type MetadataGenerationRunStatus = (typeof MetadataGenerationRunStatus)[keyof typeof MetadataGenerationRunStatus];
|
|
8829
8884
|
/**
|
|
8830
|
-
* @
|
|
8831
|
-
* @enum
|
|
8832
|
-
*/
|
|
8833
|
-
export declare const MetadataGenerationTargetType: {
|
|
8834
|
-
readonly ASSET: "ASSET";
|
|
8835
|
-
};
|
|
8836
|
-
/**
|
|
8837
|
-
* @public
|
|
8885
|
+
* @internal
|
|
8838
8886
|
*/
|
|
8839
|
-
export
|
|
8887
|
+
export declare const CreateProjectProfileOutputFilterSensitiveLog: (obj: CreateProjectProfileOutput) => any;
|
|
8840
8888
|
/**
|
|
8841
8889
|
* @internal
|
|
8842
8890
|
*/
|
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
import { AccountSource, ActionParameters, AggregationListItem, AggregationOutput, AssetItem, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, ConnectionPropertiesOutput, ConnectionPropertiesPatch, ConnectionType, CustomParameter, DataZoneEntityType, Deployment, DeploymentProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, EnvironmentStatus, FilterStatus, FormEntryOutput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GroupProfileStatus, ManagedPolicyType, MatchRationaleItem, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantPrincipal, ProjectDeletionError, ProjectStatus, ProvisioningProperties, ResolutionStrategy, Resource, RowFilterExpression, Status, SubscribedListing, SubscribedPrincipal, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TermRelations } from "./models_0";
|
|
2
|
-
import { DataProductListingItem, DataProductResultItem, FailureCause, GrantedEntity, Import, MetadataGenerationRunStatus,
|
|
2
|
+
import { DataProductListingItem, DataProductResultItem, FailureCause, GrantedEntity, Import, MetadataGenerationRunStatus, RuleAction, RuleDetail, RuleScope, RuleTarget, RuleTargetType, RuleType, SortOrder, SubscribedAsset, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionTargetForm, TimeSeriesDataPointFormOutput, TimeSeriesEntityType, UserProfileDetails, UserProfileStatus, UserProfileType } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* @enum
|
|
6
|
+
*/
|
|
7
|
+
export declare const MetadataGenerationTargetType: {
|
|
8
|
+
readonly ASSET: "ASSET";
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
export type MetadataGenerationTargetType = (typeof MetadataGenerationTargetType)[keyof typeof MetadataGenerationTargetType];
|
|
3
14
|
/**
|
|
4
15
|
* <p>The asset for which metadata was generated.</p>
|
|
5
16
|
* @public
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
CreateProjectProfileOutput,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { CreateProjectProfileInput } from "../models/models_0";
|
|
9
|
+
import { CreateProjectProfileOutput } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface CreateProjectProfileCommandInput
|
|
@@ -1799,6 +1799,7 @@ export interface SparkEmrPropertiesInput {
|
|
|
1799
1799
|
pythonVirtualEnv?: string | undefined;
|
|
1800
1800
|
runtimeRole?: string | undefined;
|
|
1801
1801
|
trustedCertificatesS3Uri?: string | undefined;
|
|
1802
|
+
managedEndpointArn?: string | undefined;
|
|
1802
1803
|
}
|
|
1803
1804
|
export interface SparkGlueArgs {
|
|
1804
1805
|
connection?: string | undefined;
|
|
@@ -1995,6 +1996,10 @@ export declare const GovernanceType: {
|
|
|
1995
1996
|
};
|
|
1996
1997
|
export type GovernanceType =
|
|
1997
1998
|
(typeof GovernanceType)[keyof typeof GovernanceType];
|
|
1999
|
+
export interface ManagedEndpointCredentials {
|
|
2000
|
+
id?: string | undefined;
|
|
2001
|
+
token?: string | undefined;
|
|
2002
|
+
}
|
|
1998
2003
|
export interface SparkEmrPropertiesOutput {
|
|
1999
2004
|
computeArn?: string | undefined;
|
|
2000
2005
|
credentials?: UsernamePassword | undefined;
|
|
@@ -2007,6 +2012,9 @@ export interface SparkEmrPropertiesOutput {
|
|
|
2007
2012
|
pythonVirtualEnv?: string | undefined;
|
|
2008
2013
|
runtimeRole?: string | undefined;
|
|
2009
2014
|
trustedCertificatesS3Uri?: string | undefined;
|
|
2015
|
+
certificateData?: string | undefined;
|
|
2016
|
+
managedEndpointArn?: string | undefined;
|
|
2017
|
+
managedEndpointCredentials?: ManagedEndpointCredentials | undefined;
|
|
2010
2018
|
}
|
|
2011
2019
|
export interface SparkGluePropertiesOutput {
|
|
2012
2020
|
additionalArgs?: SparkGlueArgs | undefined;
|
|
@@ -2172,6 +2180,7 @@ export interface SparkEmrPropertiesPatch {
|
|
|
2172
2180
|
pythonVirtualEnv?: string | undefined;
|
|
2173
2181
|
runtimeRole?: string | undefined;
|
|
2174
2182
|
trustedCertificatesS3Uri?: string | undefined;
|
|
2183
|
+
managedEndpointArn?: string | undefined;
|
|
2175
2184
|
}
|
|
2176
2185
|
export type ConnectionPropertiesPatch =
|
|
2177
2186
|
| ConnectionPropertiesPatch.AthenaPropertiesMember
|
|
@@ -3356,18 +3365,6 @@ export interface CreateProjectProfileInput {
|
|
|
3356
3365
|
environmentConfigurations?: EnvironmentConfiguration[] | undefined;
|
|
3357
3366
|
domainUnitIdentifier?: string | undefined;
|
|
3358
3367
|
}
|
|
3359
|
-
export interface CreateProjectProfileOutput {
|
|
3360
|
-
domainId: string | undefined;
|
|
3361
|
-
id: string | undefined;
|
|
3362
|
-
name: string | undefined;
|
|
3363
|
-
description?: string | undefined;
|
|
3364
|
-
status?: Status | undefined;
|
|
3365
|
-
environmentConfigurations?: EnvironmentConfiguration[] | undefined;
|
|
3366
|
-
createdBy: string | undefined;
|
|
3367
|
-
createdAt?: Date | undefined;
|
|
3368
|
-
lastUpdatedAt?: Date | undefined;
|
|
3369
|
-
domainUnitId?: string | undefined;
|
|
3370
|
-
}
|
|
3371
3368
|
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
3372
3369
|
export declare const AcceptPredictionsInputFilterSensitiveLog: (
|
|
3373
3370
|
obj: AcceptPredictionsInput
|
|
@@ -3494,6 +3491,9 @@ export declare const ConnectionPropertiesInputFilterSensitiveLog: (
|
|
|
3494
3491
|
export declare const RedshiftPropertiesOutputFilterSensitiveLog: (
|
|
3495
3492
|
obj: RedshiftPropertiesOutput
|
|
3496
3493
|
) => any;
|
|
3494
|
+
export declare const ManagedEndpointCredentialsFilterSensitiveLog: (
|
|
3495
|
+
obj: ManagedEndpointCredentials
|
|
3496
|
+
) => any;
|
|
3497
3497
|
export declare const SparkEmrPropertiesOutputFilterSensitiveLog: (
|
|
3498
3498
|
obj: SparkEmrPropertiesOutput
|
|
3499
3499
|
) => any;
|
|
@@ -3615,6 +3615,3 @@ export declare const EnvironmentConfigurationFilterSensitiveLog: (
|
|
|
3615
3615
|
export declare const CreateProjectProfileInputFilterSensitiveLog: (
|
|
3616
3616
|
obj: CreateProjectProfileInput
|
|
3617
3617
|
) => any;
|
|
3618
|
-
export declare const CreateProjectProfileOutputFilterSensitiveLog: (
|
|
3619
|
-
obj: CreateProjectProfileOutput
|
|
3620
|
-
) => any;
|
|
@@ -70,6 +70,18 @@ import {
|
|
|
70
70
|
TimeSeriesDataPointSummaryFormOutput,
|
|
71
71
|
UserDesignation,
|
|
72
72
|
} from "./models_0";
|
|
73
|
+
export interface CreateProjectProfileOutput {
|
|
74
|
+
domainId: string | undefined;
|
|
75
|
+
id: string | undefined;
|
|
76
|
+
name: string | undefined;
|
|
77
|
+
description?: string | undefined;
|
|
78
|
+
status?: Status | undefined;
|
|
79
|
+
environmentConfigurations?: EnvironmentConfiguration[] | undefined;
|
|
80
|
+
createdBy: string | undefined;
|
|
81
|
+
createdAt?: Date | undefined;
|
|
82
|
+
lastUpdatedAt?: Date | undefined;
|
|
83
|
+
domainUnitId?: string | undefined;
|
|
84
|
+
}
|
|
73
85
|
export declare const RuleAction: {
|
|
74
86
|
readonly CREATE_LISTING_CHANGE_SET: "CREATE_LISTING_CHANGE_SET";
|
|
75
87
|
readonly CREATE_SUBSCRIPTION_REQUEST: "CREATE_SUBSCRIPTION_REQUEST";
|
|
@@ -2377,11 +2389,9 @@ export declare const MetadataGenerationRunStatus: {
|
|
|
2377
2389
|
};
|
|
2378
2390
|
export type MetadataGenerationRunStatus =
|
|
2379
2391
|
(typeof MetadataGenerationRunStatus)[keyof typeof MetadataGenerationRunStatus];
|
|
2380
|
-
export declare const
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
export type MetadataGenerationTargetType =
|
|
2384
|
-
(typeof MetadataGenerationTargetType)[keyof typeof MetadataGenerationTargetType];
|
|
2392
|
+
export declare const CreateProjectProfileOutputFilterSensitiveLog: (
|
|
2393
|
+
obj: CreateProjectProfileOutput
|
|
2394
|
+
) => any;
|
|
2385
2395
|
export declare const CreateRuleInputFilterSensitiveLog: (
|
|
2386
2396
|
obj: CreateRuleInput
|
|
2387
2397
|
) => any;
|
|
@@ -56,7 +56,6 @@ import {
|
|
|
56
56
|
GrantedEntity,
|
|
57
57
|
Import,
|
|
58
58
|
MetadataGenerationRunStatus,
|
|
59
|
-
MetadataGenerationTargetType,
|
|
60
59
|
RuleAction,
|
|
61
60
|
RuleDetail,
|
|
62
61
|
RuleScope,
|
|
@@ -74,6 +73,11 @@ import {
|
|
|
74
73
|
UserProfileStatus,
|
|
75
74
|
UserProfileType,
|
|
76
75
|
} from "./models_1";
|
|
76
|
+
export declare const MetadataGenerationTargetType: {
|
|
77
|
+
readonly ASSET: "ASSET";
|
|
78
|
+
};
|
|
79
|
+
export type MetadataGenerationTargetType =
|
|
80
|
+
(typeof MetadataGenerationTargetType)[keyof typeof MetadataGenerationTargetType];
|
|
77
81
|
export interface MetadataGenerationRunTarget {
|
|
78
82
|
type: MetadataGenerationTargetType | undefined;
|
|
79
83
|
identifier: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.900.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-datazone",
|