@aws-sdk/client-datazone 3.758.0 → 3.772.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 +579 -700
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/models/models_1.js +2 -0
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +8 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +3 -1
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -0
- package/dist-types/commands/GetProjectCommand.d.ts +2 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +8 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +15 -1
- package/dist-types/models/models_0.d.ts +36 -11
- package/dist-types/models/models_1.d.ts +13 -2
- package/dist-types/models/models_2.d.ts +27 -0
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/dist-types/ts3.4/models/models_1.d.ts +2 -0
- package/dist-types/ts3.4/models/models_2.d.ts +5 -0
- package/package.json +3 -3
|
@@ -719,6 +719,8 @@ export const ProjectStatus = {
|
|
|
719
719
|
ACTIVE: "ACTIVE",
|
|
720
720
|
DELETE_FAILED: "DELETE_FAILED",
|
|
721
721
|
DELETING: "DELETING",
|
|
722
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
723
|
+
UPDATING: "UPDATING",
|
|
722
724
|
};
|
|
723
725
|
export const UserDesignation = {
|
|
724
726
|
PROJECT_CATALOG_CONSUMER: "PROJECT_CATALOG_CONSUMER",
|
|
@@ -1225,6 +1227,7 @@ export const CreateEnvironmentOutputFilterSensitiveLog = (obj) => ({
|
|
|
1225
1227
|
userParameters: obj.userParameters.map((item) => CustomParameterFilterSensitiveLog(item)),
|
|
1226
1228
|
}),
|
|
1227
1229
|
...(obj.provisioningProperties && { provisioningProperties: obj.provisioningProperties }),
|
|
1230
|
+
...(obj.environmentConfigurationId && { environmentConfigurationId: SENSITIVE_STRING }),
|
|
1228
1231
|
});
|
|
1229
1232
|
export const CreateEnvironmentProfileInputFilterSensitiveLog = (obj) => ({
|
|
1230
1233
|
...obj,
|
|
@@ -414,6 +414,7 @@ export const GetEnvironmentOutputFilterSensitiveLog = (obj) => ({
|
|
|
414
414
|
userParameters: obj.userParameters.map((item) => CustomParameterFilterSensitiveLog(item)),
|
|
415
415
|
}),
|
|
416
416
|
...(obj.provisioningProperties && { provisioningProperties: obj.provisioningProperties }),
|
|
417
|
+
...(obj.environmentConfigurationId && { environmentConfigurationId: SENSITIVE_STRING }),
|
|
417
418
|
});
|
|
418
419
|
export const GetEnvironmentBlueprintOutputFilterSensitiveLog = (obj) => ({
|
|
419
420
|
...obj,
|
|
@@ -560,6 +561,7 @@ export const EnvironmentSummaryFilterSensitiveLog = (obj) => ({
|
|
|
560
561
|
...obj,
|
|
561
562
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
562
563
|
...(obj.description && { description: SENSITIVE_STRING }),
|
|
564
|
+
...(obj.environmentConfigurationId && { environmentConfigurationId: SENSITIVE_STRING }),
|
|
563
565
|
});
|
|
564
566
|
export const ListEnvironmentsOutputFilterSensitiveLog = (obj) => ({
|
|
565
567
|
...obj,
|
|
@@ -203,6 +203,7 @@ export const UpdateEnvironmentOutputFilterSensitiveLog = (obj) => ({
|
|
|
203
203
|
userParameters: obj.userParameters.map((item) => CustomParameterFilterSensitiveLog(item)),
|
|
204
204
|
}),
|
|
205
205
|
...(obj.provisioningProperties && { provisioningProperties: obj.provisioningProperties }),
|
|
206
|
+
...(obj.environmentConfigurationId && { environmentConfigurationId: SENSITIVE_STRING }),
|
|
206
207
|
});
|
|
207
208
|
export const UpdateEnvironmentProfileInputFilterSensitiveLog = (obj) => ({
|
|
208
209
|
...obj,
|
|
@@ -224,6 +225,9 @@ export const UpdateProjectInputFilterSensitiveLog = (obj) => ({
|
|
|
224
225
|
...obj,
|
|
225
226
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
226
227
|
...(obj.description && { description: SENSITIVE_STRING }),
|
|
228
|
+
...(obj.userParameters && {
|
|
229
|
+
userParameters: obj.userParameters.map((item) => EnvironmentConfigurationUserParameterFilterSensitiveLog(item)),
|
|
230
|
+
}),
|
|
227
231
|
});
|
|
228
232
|
export const UpdateProjectOutputFilterSensitiveLog = (obj) => ({
|
|
229
233
|
...obj,
|
|
@@ -2156,9 +2156,11 @@ export const se_UpdateEnvironmentCommand = async (input, context) => {
|
|
|
2156
2156
|
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
2157
2157
|
let body;
|
|
2158
2158
|
body = JSON.stringify(take(input, {
|
|
2159
|
+
blueprintVersion: [],
|
|
2159
2160
|
description: [],
|
|
2160
2161
|
glossaryTerms: (_) => _json(_),
|
|
2161
2162
|
name: [],
|
|
2163
|
+
userParameters: (_) => _json(_),
|
|
2162
2164
|
}));
|
|
2163
2165
|
b.m("PATCH").h(headers).b(body);
|
|
2164
2166
|
return b.build();
|
|
@@ -2267,6 +2269,8 @@ export const se_UpdateProjectCommand = async (input, context) => {
|
|
|
2267
2269
|
environmentDeploymentDetails: (_) => _json(_),
|
|
2268
2270
|
glossaryTerms: (_) => _json(_),
|
|
2269
2271
|
name: [],
|
|
2272
|
+
projectProfileVersion: [],
|
|
2273
|
+
userParameters: (_) => _json(_),
|
|
2270
2274
|
}));
|
|
2271
2275
|
b.m("PATCH").h(headers).b(body);
|
|
2272
2276
|
return b.build();
|
|
@@ -2776,6 +2780,7 @@ export const de_CreateEnvironmentCommand = async (output, context) => {
|
|
|
2776
2780
|
domainId: __expectString,
|
|
2777
2781
|
environmentActions: _json,
|
|
2778
2782
|
environmentBlueprintId: __expectString,
|
|
2783
|
+
environmentConfigurationId: __expectString,
|
|
2779
2784
|
environmentProfileId: __expectString,
|
|
2780
2785
|
glossaryTerms: _json,
|
|
2781
2786
|
id: __expectString,
|
|
@@ -3671,6 +3676,7 @@ export const de_GetEnvironmentCommand = async (output, context) => {
|
|
|
3671
3676
|
domainId: __expectString,
|
|
3672
3677
|
environmentActions: _json,
|
|
3673
3678
|
environmentBlueprintId: __expectString,
|
|
3679
|
+
environmentConfigurationId: __expectString,
|
|
3674
3680
|
environmentProfileId: __expectString,
|
|
3675
3681
|
glossaryTerms: _json,
|
|
3676
3682
|
id: __expectString,
|
|
@@ -5125,6 +5131,7 @@ export const de_UpdateEnvironmentCommand = async (output, context) => {
|
|
|
5125
5131
|
domainId: __expectString,
|
|
5126
5132
|
environmentActions: _json,
|
|
5127
5133
|
environmentBlueprintId: __expectString,
|
|
5134
|
+
environmentConfigurationId: __expectString,
|
|
5128
5135
|
environmentProfileId: __expectString,
|
|
5129
5136
|
glossaryTerms: _json,
|
|
5130
5137
|
id: __expectString,
|
|
@@ -6062,6 +6069,7 @@ const de_EnvironmentSummary = (output, context) => {
|
|
|
6062
6069
|
createdBy: __expectString,
|
|
6063
6070
|
description: __expectString,
|
|
6064
6071
|
domainId: __expectString,
|
|
6072
|
+
environmentConfigurationId: __expectString,
|
|
6065
6073
|
environmentProfileId: __expectString,
|
|
6066
6074
|
id: __expectString,
|
|
6067
6075
|
name: __expectString,
|
|
@@ -45,6 +45,7 @@ declare const CreateProjectCommand_base: {
|
|
|
45
45
|
* projectProfileId: "STRING_VALUE",
|
|
46
46
|
* userParameters: [ // EnvironmentConfigurationUserParametersList
|
|
47
47
|
* { // EnvironmentConfigurationUserParameter
|
|
48
|
+
* environmentId: "STRING_VALUE",
|
|
48
49
|
* environmentConfigurationName: "STRING_VALUE",
|
|
49
50
|
* environmentParameters: [ // EnvironmentParametersList
|
|
50
51
|
* { // EnvironmentParameter
|
|
@@ -62,7 +63,7 @@ declare const CreateProjectCommand_base: {
|
|
|
62
63
|
* // id: "STRING_VALUE", // required
|
|
63
64
|
* // name: "STRING_VALUE", // required
|
|
64
65
|
* // description: "STRING_VALUE",
|
|
65
|
-
* // projectStatus: "ACTIVE" || "DELETING" || "DELETE_FAILED",
|
|
66
|
+
* // projectStatus: "ACTIVE" || "DELETING" || "DELETE_FAILED" || "UPDATING" || "UPDATE_FAILED",
|
|
66
67
|
* // failureReasons: [ // FailureReasons
|
|
67
68
|
* // { // ProjectDeletionError
|
|
68
69
|
* // code: "STRING_VALUE",
|
|
@@ -79,6 +80,7 @@ declare const CreateProjectCommand_base: {
|
|
|
79
80
|
* // projectProfileId: "STRING_VALUE",
|
|
80
81
|
* // userParameters: [ // EnvironmentConfigurationUserParametersList
|
|
81
82
|
* // { // EnvironmentConfigurationUserParameter
|
|
83
|
+
* // environmentId: "STRING_VALUE",
|
|
82
84
|
* // environmentConfigurationName: "STRING_VALUE",
|
|
83
85
|
* // environmentParameters: [ // EnvironmentParametersList
|
|
84
86
|
* // { // EnvironmentParameter
|
|
@@ -45,7 +45,7 @@ declare const GetProjectCommand_base: {
|
|
|
45
45
|
* // id: "STRING_VALUE", // required
|
|
46
46
|
* // name: "STRING_VALUE", // required
|
|
47
47
|
* // description: "STRING_VALUE",
|
|
48
|
-
* // projectStatus: "ACTIVE" || "DELETING" || "DELETE_FAILED",
|
|
48
|
+
* // projectStatus: "ACTIVE" || "DELETING" || "DELETE_FAILED" || "UPDATING" || "UPDATE_FAILED",
|
|
49
49
|
* // failureReasons: [ // FailureReasons
|
|
50
50
|
* // { // ProjectDeletionError
|
|
51
51
|
* // code: "STRING_VALUE",
|
|
@@ -62,6 +62,7 @@ declare const GetProjectCommand_base: {
|
|
|
62
62
|
* // projectProfileId: "STRING_VALUE",
|
|
63
63
|
* // userParameters: [ // EnvironmentConfigurationUserParametersList
|
|
64
64
|
* // { // EnvironmentConfigurationUserParameter
|
|
65
|
+
* // environmentId: "STRING_VALUE",
|
|
65
66
|
* // environmentConfigurationName: "STRING_VALUE",
|
|
66
67
|
* // environmentParameters: [ // EnvironmentParametersList
|
|
67
68
|
* // { // EnvironmentParameter
|
|
@@ -65,6 +65,7 @@ declare const ListEnvironmentsCommand_base: {
|
|
|
65
65
|
* // awsAccountRegion: "STRING_VALUE",
|
|
66
66
|
* // provider: "STRING_VALUE", // required
|
|
67
67
|
* // status: "ACTIVE" || "CREATING" || "UPDATING" || "DELETING" || "CREATE_FAILED" || "UPDATE_FAILED" || "DELETE_FAILED" || "VALIDATION_FAILED" || "SUSPENDED" || "DISABLED" || "EXPIRED" || "DELETED" || "INACCESSIBLE",
|
|
68
|
+
* // environmentConfigurationId: "STRING_VALUE",
|
|
68
69
|
* // },
|
|
69
70
|
* // ],
|
|
70
71
|
* // nextToken: "STRING_VALUE",
|
|
@@ -51,7 +51,7 @@ declare const ListProjectsCommand_base: {
|
|
|
51
51
|
* // id: "STRING_VALUE", // required
|
|
52
52
|
* // name: "STRING_VALUE", // required
|
|
53
53
|
* // description: "STRING_VALUE",
|
|
54
|
-
* // projectStatus: "ACTIVE" || "DELETING" || "DELETE_FAILED",
|
|
54
|
+
* // projectStatus: "ACTIVE" || "DELETING" || "DELETE_FAILED" || "UPDATING" || "UPDATE_FAILED",
|
|
55
55
|
* // failureReasons: [ // FailureReasons
|
|
56
56
|
* // { // ProjectDeletionError
|
|
57
57
|
* // code: "STRING_VALUE",
|
|
@@ -42,6 +42,13 @@ declare const UpdateEnvironmentCommand_base: {
|
|
|
42
42
|
* glossaryTerms: [ // GlossaryTerms
|
|
43
43
|
* "STRING_VALUE",
|
|
44
44
|
* ],
|
|
45
|
+
* blueprintVersion: "STRING_VALUE",
|
|
46
|
+
* userParameters: [ // EnvironmentParametersList
|
|
47
|
+
* { // EnvironmentParameter
|
|
48
|
+
* name: "STRING_VALUE",
|
|
49
|
+
* value: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* ],
|
|
45
52
|
* };
|
|
46
53
|
* const command = new UpdateEnvironmentCommand(input);
|
|
47
54
|
* const response = await client.send(command);
|
|
@@ -115,6 +122,7 @@ declare const UpdateEnvironmentCommand_base: {
|
|
|
115
122
|
* // endTimeoutMinutes: Number("int"),
|
|
116
123
|
* // },
|
|
117
124
|
* // environmentBlueprintId: "STRING_VALUE",
|
|
125
|
+
* // environmentConfigurationId: "STRING_VALUE",
|
|
118
126
|
* // };
|
|
119
127
|
*
|
|
120
128
|
* ```
|
|
@@ -53,6 +53,19 @@ declare const UpdateProjectCommand_base: {
|
|
|
53
53
|
* ],
|
|
54
54
|
* },
|
|
55
55
|
* },
|
|
56
|
+
* userParameters: [ // EnvironmentConfigurationUserParametersList
|
|
57
|
+
* { // EnvironmentConfigurationUserParameter
|
|
58
|
+
* environmentId: "STRING_VALUE",
|
|
59
|
+
* environmentConfigurationName: "STRING_VALUE",
|
|
60
|
+
* environmentParameters: [ // EnvironmentParametersList
|
|
61
|
+
* { // EnvironmentParameter
|
|
62
|
+
* name: "STRING_VALUE",
|
|
63
|
+
* value: "STRING_VALUE",
|
|
64
|
+
* },
|
|
65
|
+
* ],
|
|
66
|
+
* },
|
|
67
|
+
* ],
|
|
68
|
+
* projectProfileVersion: "STRING_VALUE",
|
|
56
69
|
* };
|
|
57
70
|
* const command = new UpdateProjectCommand(input);
|
|
58
71
|
* const response = await client.send(command);
|
|
@@ -61,7 +74,7 @@ declare const UpdateProjectCommand_base: {
|
|
|
61
74
|
* // id: "STRING_VALUE", // required
|
|
62
75
|
* // name: "STRING_VALUE", // required
|
|
63
76
|
* // description: "STRING_VALUE",
|
|
64
|
-
* // projectStatus: "ACTIVE" || "DELETING" || "DELETE_FAILED",
|
|
77
|
+
* // projectStatus: "ACTIVE" || "DELETING" || "DELETE_FAILED" || "UPDATING" || "UPDATE_FAILED",
|
|
65
78
|
* // failureReasons: [ // FailureReasons
|
|
66
79
|
* // { // ProjectDeletionError
|
|
67
80
|
* // code: "STRING_VALUE",
|
|
@@ -78,6 +91,7 @@ declare const UpdateProjectCommand_base: {
|
|
|
78
91
|
* // projectProfileId: "STRING_VALUE",
|
|
79
92
|
* // userParameters: [ // EnvironmentConfigurationUserParametersList
|
|
80
93
|
* // { // EnvironmentConfigurationUserParameter
|
|
94
|
+
* // environmentId: "STRING_VALUE",
|
|
81
95
|
* // environmentConfigurationName: "STRING_VALUE",
|
|
82
96
|
* // environmentParameters: [ // EnvironmentParametersList
|
|
83
97
|
* // { // EnvironmentParameter
|
|
@@ -3414,7 +3414,8 @@ export interface OAuth2ClientApplication {
|
|
|
3414
3414
|
*/
|
|
3415
3415
|
userManagedClientApplicationClientId?: string | undefined;
|
|
3416
3416
|
/**
|
|
3417
|
-
* <p>The Amazon Web Services managed client application reference in the OAuth2Client
|
|
3417
|
+
* <p>The Amazon Web Services managed client application reference in the OAuth2Client
|
|
3418
|
+
* application.</p>
|
|
3418
3419
|
* @public
|
|
3419
3420
|
*/
|
|
3420
3421
|
aWSManagedClientApplicationReference?: string | undefined;
|
|
@@ -3975,12 +3976,14 @@ export interface GlueConnectionInput {
|
|
|
3975
3976
|
*/
|
|
3976
3977
|
matchCriteria?: string | undefined;
|
|
3977
3978
|
/**
|
|
3978
|
-
* <p>Speciefies whether to validate credentials of the Amazon Web Services Glue
|
|
3979
|
+
* <p>Speciefies whether to validate credentials of the Amazon Web Services Glue
|
|
3980
|
+
* connection.</p>
|
|
3979
3981
|
* @public
|
|
3980
3982
|
*/
|
|
3981
3983
|
validateCredentials?: boolean | undefined;
|
|
3982
3984
|
/**
|
|
3983
|
-
* <p>Speciefies whether to validate for compute environments of the Amazon Web Services Glue
|
|
3985
|
+
* <p>Speciefies whether to validate for compute environments of the Amazon Web Services Glue
|
|
3986
|
+
* connection.</p>
|
|
3984
3987
|
* @public
|
|
3985
3988
|
*/
|
|
3986
3989
|
validateForComputeEnvironments?: ComputeEnvironments[] | undefined;
|
|
@@ -4033,7 +4036,8 @@ export interface HyperPodPropertiesInput {
|
|
|
4033
4036
|
*/
|
|
4034
4037
|
export interface IamPropertiesInput {
|
|
4035
4038
|
/**
|
|
4036
|
-
* <p>Specifies whether Amazon Web Services Glue lineage sync is enabled for a
|
|
4039
|
+
* <p>Specifies whether Amazon Web Services Glue lineage sync is enabled for a
|
|
4040
|
+
* connection.</p>
|
|
4037
4041
|
* @public
|
|
4038
4042
|
*/
|
|
4039
4043
|
glueLineageSyncEnabled?: boolean | undefined;
|
|
@@ -4264,12 +4268,14 @@ export interface SparkGluePropertiesInput {
|
|
|
4264
4268
|
*/
|
|
4265
4269
|
additionalArgs?: SparkGlueArgs | undefined;
|
|
4266
4270
|
/**
|
|
4267
|
-
* <p>The Amazon Web Services Glue connection name in the Spark Amazon Web Services Glue
|
|
4271
|
+
* <p>The Amazon Web Services Glue connection name in the Spark Amazon Web Services Glue
|
|
4272
|
+
* properties.</p>
|
|
4268
4273
|
* @public
|
|
4269
4274
|
*/
|
|
4270
4275
|
glueConnectionName?: string | undefined;
|
|
4271
4276
|
/**
|
|
4272
|
-
* <p>The Amazon Web Services Glue version in the Spark Amazon Web Services Glue
|
|
4277
|
+
* <p>The Amazon Web Services Glue version in the Spark Amazon Web Services Glue
|
|
4278
|
+
* properties.</p>
|
|
4273
4279
|
* @public
|
|
4274
4280
|
*/
|
|
4275
4281
|
glueVersion?: string | undefined;
|
|
@@ -4509,7 +4515,8 @@ export interface IamPropertiesOutput {
|
|
|
4509
4515
|
*/
|
|
4510
4516
|
environmentId?: string | undefined;
|
|
4511
4517
|
/**
|
|
4512
|
-
* <p>Specifies whether Amazon Web Services Glue lineage sync is enabled for a
|
|
4518
|
+
* <p>Specifies whether Amazon Web Services Glue lineage sync is enabled for a
|
|
4519
|
+
* connection.</p>
|
|
4513
4520
|
* @public
|
|
4514
4521
|
*/
|
|
4515
4522
|
glueLineageSyncEnabled?: boolean | undefined;
|
|
@@ -4670,12 +4677,14 @@ export interface SparkGluePropertiesOutput {
|
|
|
4670
4677
|
*/
|
|
4671
4678
|
additionalArgs?: SparkGlueArgs | undefined;
|
|
4672
4679
|
/**
|
|
4673
|
-
* <p>The Amazon Web Services Glue connection name in the Spark Amazon Web Services Glue
|
|
4680
|
+
* <p>The Amazon Web Services Glue connection name in the Spark Amazon Web Services Glue
|
|
4681
|
+
* properties. </p>
|
|
4674
4682
|
* @public
|
|
4675
4683
|
*/
|
|
4676
4684
|
glueConnectionName?: string | undefined;
|
|
4677
4685
|
/**
|
|
4678
|
-
* <p>The Amazon Web Services Glue version in the Spark Amazon Web Services Glue properties.
|
|
4686
|
+
* <p>The Amazon Web Services Glue version in the Spark Amazon Web Services Glue properties.
|
|
4687
|
+
* </p>
|
|
4679
4688
|
* @public
|
|
4680
4689
|
*/
|
|
4681
4690
|
glueVersion?: string | undefined;
|
|
@@ -4875,7 +4884,8 @@ export interface GluePropertiesPatch {
|
|
|
4875
4884
|
*/
|
|
4876
4885
|
export interface IamPropertiesPatch {
|
|
4877
4886
|
/**
|
|
4878
|
-
* <p>Specifies whether Amazon Web Services Glue lineage sync is enabled for a
|
|
4887
|
+
* <p>Specifies whether Amazon Web Services Glue lineage sync is enabled for a
|
|
4888
|
+
* connection.</p>
|
|
4879
4889
|
* @public
|
|
4880
4890
|
*/
|
|
4881
4891
|
glueLineageSyncEnabled?: boolean | undefined;
|
|
@@ -6074,7 +6084,10 @@ export interface CreateDataSourceInput {
|
|
|
6074
6084
|
*/
|
|
6075
6085
|
connectionIdentifier?: string | undefined;
|
|
6076
6086
|
/**
|
|
6077
|
-
* <p>The type of the data source
|
|
6087
|
+
* <p>The type of the data source. In Amazon DataZone, you can use data sources to import
|
|
6088
|
+
* technical metadata of assets (data) from the source databases or data warehouses into
|
|
6089
|
+
* Amazon DataZone. In the current release of Amazon DataZone, you can create and run data
|
|
6090
|
+
* sources for Amazon Web Services Glue and Amazon Redshift.</p>
|
|
6078
6091
|
* @public
|
|
6079
6092
|
*/
|
|
6080
6093
|
type: string | undefined;
|
|
@@ -7194,6 +7207,11 @@ export interface CreateEnvironmentOutput {
|
|
|
7194
7207
|
* @public
|
|
7195
7208
|
*/
|
|
7196
7209
|
environmentBlueprintId?: string | undefined;
|
|
7210
|
+
/**
|
|
7211
|
+
* <p>The configuration ID of the environment.</p>
|
|
7212
|
+
* @public
|
|
7213
|
+
*/
|
|
7214
|
+
environmentConfigurationId?: string | undefined;
|
|
7197
7215
|
}
|
|
7198
7216
|
/**
|
|
7199
7217
|
* @public
|
|
@@ -7825,6 +7843,11 @@ export interface CreateListingChangeSetOutput {
|
|
|
7825
7843
|
* @public
|
|
7826
7844
|
*/
|
|
7827
7845
|
export interface EnvironmentConfigurationUserParameter {
|
|
7846
|
+
/**
|
|
7847
|
+
* <p>The ID of the environment.</p>
|
|
7848
|
+
* @public
|
|
7849
|
+
*/
|
|
7850
|
+
environmentId?: string | undefined;
|
|
7828
7851
|
/**
|
|
7829
7852
|
* <p>The environment configuration name.</p>
|
|
7830
7853
|
* @public
|
|
@@ -7933,6 +7956,8 @@ export declare const ProjectStatus: {
|
|
|
7933
7956
|
readonly ACTIVE: "ACTIVE";
|
|
7934
7957
|
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
7935
7958
|
readonly DELETING: "DELETING";
|
|
7959
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
7960
|
+
readonly UPDATING: "UPDATING";
|
|
7936
7961
|
};
|
|
7937
7962
|
/**
|
|
7938
7963
|
* @public
|
|
@@ -3025,7 +3025,7 @@ export interface GetEnvironmentBlueprintConfigurationInput {
|
|
|
3025
3025
|
export interface LakeFormationConfiguration {
|
|
3026
3026
|
/**
|
|
3027
3027
|
* <p>The role that is used to manage read/write access to the chosen Amazon S3 bucket(s) for
|
|
3028
|
-
* Data Lake using
|
|
3028
|
+
* Data Lake using Amazon Web Services Lake Formation hybrid access mode.</p>
|
|
3029
3029
|
* @public
|
|
3030
3030
|
*/
|
|
3031
3031
|
locationRegistrationRole?: string | undefined;
|
|
@@ -3682,6 +3682,11 @@ export interface GetEnvironmentOutput {
|
|
|
3682
3682
|
* @public
|
|
3683
3683
|
*/
|
|
3684
3684
|
environmentBlueprintId?: string | undefined;
|
|
3685
|
+
/**
|
|
3686
|
+
* <p>The configuration ID that is used to create the environment.</p>
|
|
3687
|
+
* @public
|
|
3688
|
+
*/
|
|
3689
|
+
environmentConfigurationId?: string | undefined;
|
|
3685
3690
|
}
|
|
3686
3691
|
/**
|
|
3687
3692
|
* @public
|
|
@@ -4031,7 +4036,8 @@ export interface LineageSqlQueryRunDetails {
|
|
|
4031
4036
|
*/
|
|
4032
4037
|
totalQueriesProcessed?: number | undefined;
|
|
4033
4038
|
/**
|
|
4034
|
-
* <p>The number of queries that failed in the SQL query run details of a data lineage
|
|
4039
|
+
* <p>The number of queries that failed in the SQL query run details of a data lineage
|
|
4040
|
+
* run.</p>
|
|
4035
4041
|
* @public
|
|
4036
4042
|
*/
|
|
4037
4043
|
numQueriesFailed?: number | undefined;
|
|
@@ -6312,6 +6318,11 @@ export interface EnvironmentSummary {
|
|
|
6312
6318
|
* @public
|
|
6313
6319
|
*/
|
|
6314
6320
|
status?: EnvironmentStatus | undefined;
|
|
6321
|
+
/**
|
|
6322
|
+
* <p>The configuration ID with which the environment is created.</p>
|
|
6323
|
+
* @public
|
|
6324
|
+
*/
|
|
6325
|
+
environmentConfigurationId?: string | undefined;
|
|
6315
6326
|
}
|
|
6316
6327
|
/**
|
|
6317
6328
|
* @public
|
|
@@ -898,6 +898,17 @@ export interface UpdateEnvironmentInput {
|
|
|
898
898
|
* @public
|
|
899
899
|
*/
|
|
900
900
|
glossaryTerms?: string[] | undefined;
|
|
901
|
+
/**
|
|
902
|
+
* <p>The blueprint version to which the environment should be updated. You can only specify
|
|
903
|
+
* the following string for this parameter: <code>latest</code>.</p>
|
|
904
|
+
* @public
|
|
905
|
+
*/
|
|
906
|
+
blueprintVersion?: string | undefined;
|
|
907
|
+
/**
|
|
908
|
+
* <p>The user parameters of the environment.</p>
|
|
909
|
+
* @public
|
|
910
|
+
*/
|
|
911
|
+
userParameters?: EnvironmentParameter[] | undefined;
|
|
901
912
|
}
|
|
902
913
|
/**
|
|
903
914
|
* @public
|
|
@@ -1016,6 +1027,11 @@ export interface UpdateEnvironmentOutput {
|
|
|
1016
1027
|
* @public
|
|
1017
1028
|
*/
|
|
1018
1029
|
environmentBlueprintId?: string | undefined;
|
|
1030
|
+
/**
|
|
1031
|
+
* <p>The configuration ID of the environment.</p>
|
|
1032
|
+
* @public
|
|
1033
|
+
*/
|
|
1034
|
+
environmentConfigurationId?: string | undefined;
|
|
1019
1035
|
}
|
|
1020
1036
|
/**
|
|
1021
1037
|
* @public
|
|
@@ -1284,6 +1300,17 @@ export interface UpdateProjectInput {
|
|
|
1284
1300
|
* @public
|
|
1285
1301
|
*/
|
|
1286
1302
|
environmentDeploymentDetails?: EnvironmentDeploymentDetails | undefined;
|
|
1303
|
+
/**
|
|
1304
|
+
* <p>The user parameters of the project.</p>
|
|
1305
|
+
* @public
|
|
1306
|
+
*/
|
|
1307
|
+
userParameters?: EnvironmentConfigurationUserParameter[] | undefined;
|
|
1308
|
+
/**
|
|
1309
|
+
* <p>The project profile version to which the project should be updated. You can only specify
|
|
1310
|
+
* the following string for this parameter: <code>latest</code>.</p>
|
|
1311
|
+
* @public
|
|
1312
|
+
*/
|
|
1313
|
+
projectProfileVersion?: string | undefined;
|
|
1287
1314
|
}
|
|
1288
1315
|
/**
|
|
1289
1316
|
* @public
|
|
@@ -2740,6 +2740,7 @@ export interface CreateEnvironmentOutput {
|
|
|
2740
2740
|
provisioningProperties?: ProvisioningProperties | undefined;
|
|
2741
2741
|
deploymentProperties?: DeploymentProperties | undefined;
|
|
2742
2742
|
environmentBlueprintId?: string | undefined;
|
|
2743
|
+
environmentConfigurationId?: string | undefined;
|
|
2743
2744
|
}
|
|
2744
2745
|
export interface CreateEnvironmentActionInput {
|
|
2745
2746
|
domainIdentifier: string | undefined;
|
|
@@ -2907,6 +2908,7 @@ export interface CreateListingChangeSetOutput {
|
|
|
2907
2908
|
status: ListingStatus | undefined;
|
|
2908
2909
|
}
|
|
2909
2910
|
export interface EnvironmentConfigurationUserParameter {
|
|
2911
|
+
environmentId?: string | undefined;
|
|
2910
2912
|
environmentConfigurationName?: string | undefined;
|
|
2911
2913
|
environmentParameters?: EnvironmentParameter[] | undefined;
|
|
2912
2914
|
}
|
|
@@ -2940,6 +2942,8 @@ export declare const ProjectStatus: {
|
|
|
2940
2942
|
readonly ACTIVE: "ACTIVE";
|
|
2941
2943
|
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
2942
2944
|
readonly DELETING: "DELETING";
|
|
2945
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
2946
|
+
readonly UPDATING: "UPDATING";
|
|
2943
2947
|
};
|
|
2944
2948
|
export type ProjectStatus = (typeof ProjectStatus)[keyof typeof ProjectStatus];
|
|
2945
2949
|
export interface CreateProjectOutput {
|
|
@@ -976,6 +976,7 @@ export interface GetEnvironmentOutput {
|
|
|
976
976
|
provisioningProperties?: ProvisioningProperties | undefined;
|
|
977
977
|
deploymentProperties?: DeploymentProperties | undefined;
|
|
978
978
|
environmentBlueprintId?: string | undefined;
|
|
979
|
+
environmentConfigurationId?: string | undefined;
|
|
979
980
|
}
|
|
980
981
|
export interface GetEnvironmentActionInput {
|
|
981
982
|
domainIdentifier: string | undefined;
|
|
@@ -1588,6 +1589,7 @@ export interface EnvironmentSummary {
|
|
|
1588
1589
|
awsAccountRegion?: string | undefined;
|
|
1589
1590
|
provider: string | undefined;
|
|
1590
1591
|
status?: EnvironmentStatus | undefined;
|
|
1592
|
+
environmentConfigurationId?: string | undefined;
|
|
1591
1593
|
}
|
|
1592
1594
|
export interface ListEnvironmentsOutput {
|
|
1593
1595
|
items: EnvironmentSummary[] | undefined;
|
|
@@ -342,6 +342,8 @@ export interface UpdateEnvironmentInput {
|
|
|
342
342
|
name?: string | undefined;
|
|
343
343
|
description?: string | undefined;
|
|
344
344
|
glossaryTerms?: string[] | undefined;
|
|
345
|
+
blueprintVersion?: string | undefined;
|
|
346
|
+
userParameters?: EnvironmentParameter[] | undefined;
|
|
345
347
|
}
|
|
346
348
|
export interface UpdateEnvironmentOutput {
|
|
347
349
|
projectId: string | undefined;
|
|
@@ -365,6 +367,7 @@ export interface UpdateEnvironmentOutput {
|
|
|
365
367
|
provisioningProperties?: ProvisioningProperties | undefined;
|
|
366
368
|
deploymentProperties?: DeploymentProperties | undefined;
|
|
367
369
|
environmentBlueprintId?: string | undefined;
|
|
370
|
+
environmentConfigurationId?: string | undefined;
|
|
368
371
|
}
|
|
369
372
|
export interface UpdateEnvironmentActionInput {
|
|
370
373
|
domainIdentifier: string | undefined;
|
|
@@ -423,6 +426,8 @@ export interface UpdateProjectInput {
|
|
|
423
426
|
description?: string | undefined;
|
|
424
427
|
glossaryTerms?: string[] | undefined;
|
|
425
428
|
environmentDeploymentDetails?: EnvironmentDeploymentDetails | undefined;
|
|
429
|
+
userParameters?: EnvironmentConfigurationUserParameter[] | undefined;
|
|
430
|
+
projectProfileVersion?: string | undefined;
|
|
426
431
|
}
|
|
427
432
|
export interface UpdateProjectOutput {
|
|
428
433
|
domainId: 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.772.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",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.758.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.772.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.772.0",
|
|
28
28
|
"@aws-sdk/middleware-user-agent": "3.758.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|