@aws-sdk/client-datazone 3.914.0 → 3.917.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 +32 -14
- package/dist-es/commands/ListSubscriptionTargetsCommand.js +1 -1
- package/dist-es/models/models_0.js +13 -10
- package/dist-es/models/models_1.js +10 -4
- package/dist-es/models/models_2.js +5 -1
- package/dist-es/protocols/Aws_restJson1.js +5 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +10 -2
- package/dist-types/commands/GetConnectionCommand.d.ts +6 -2
- package/dist-types/commands/ListConnectionsCommand.d.ts +7 -3
- package/dist-types/commands/ListSubscriptionTargetsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectionCommand.d.ts +10 -2
- package/dist-types/models/models_0.d.ts +132 -87
- package/dist-types/models/models_1.d.ts +85 -40
- package/dist-types/models/models_2.d.ts +40 -1
- package/dist-types/ts3.4/commands/ListSubscriptionTargetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +84 -37
- package/dist-types/ts3.4/models/models_1.d.ts +37 -15
- package/dist-types/ts3.4/models/models_2.d.ts +14 -0
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -539,6 +539,8 @@ exports.ConnectionPropertiesInput = void 0;
|
|
|
539
539
|
return visitor.s3Properties(value.s3Properties);
|
|
540
540
|
if (value.amazonQProperties !== undefined)
|
|
541
541
|
return visitor.amazonQProperties(value.amazonQProperties);
|
|
542
|
+
if (value.mlflowProperties !== undefined)
|
|
543
|
+
return visitor.mlflowProperties(value.mlflowProperties);
|
|
542
544
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
543
545
|
};
|
|
544
546
|
})(exports.ConnectionPropertiesInput || (exports.ConnectionPropertiesInput = {}));
|
|
@@ -581,6 +583,8 @@ exports.ConnectionPropertiesOutput = void 0;
|
|
|
581
583
|
return visitor.s3Properties(value.s3Properties);
|
|
582
584
|
if (value.amazonQProperties !== undefined)
|
|
583
585
|
return visitor.amazonQProperties(value.amazonQProperties);
|
|
586
|
+
if (value.mlflowProperties !== undefined)
|
|
587
|
+
return visitor.mlflowProperties(value.mlflowProperties);
|
|
584
588
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
585
589
|
};
|
|
586
590
|
})(exports.ConnectionPropertiesOutput || (exports.ConnectionPropertiesOutput = {}));
|
|
@@ -601,6 +605,8 @@ exports.ConnectionPropertiesPatch = void 0;
|
|
|
601
605
|
return visitor.s3Properties(value.s3Properties);
|
|
602
606
|
if (value.amazonQProperties !== undefined)
|
|
603
607
|
return visitor.amazonQProperties(value.amazonQProperties);
|
|
608
|
+
if (value.mlflowProperties !== undefined)
|
|
609
|
+
return visitor.mlflowProperties(value.mlflowProperties);
|
|
604
610
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
605
611
|
};
|
|
606
612
|
})(exports.ConnectionPropertiesPatch || (exports.ConnectionPropertiesPatch = {}));
|
|
@@ -617,6 +623,7 @@ const ConnectionType = {
|
|
|
617
623
|
DYNAMODB: "DYNAMODB",
|
|
618
624
|
HYPERPOD: "HYPERPOD",
|
|
619
625
|
IAM: "IAM",
|
|
626
|
+
MLFLOW: "MLFLOW",
|
|
620
627
|
MYSQL: "MYSQL",
|
|
621
628
|
OPENSEARCH: "OPENSEARCH",
|
|
622
629
|
ORACLE: "ORACLE",
|
|
@@ -905,16 +912,6 @@ exports.Member = void 0;
|
|
|
905
912
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
906
913
|
};
|
|
907
914
|
})(exports.Member || (exports.Member = {}));
|
|
908
|
-
exports.Region = void 0;
|
|
909
|
-
(function (Region) {
|
|
910
|
-
Region.visit = (value, visitor) => {
|
|
911
|
-
if (value.regionName !== undefined)
|
|
912
|
-
return visitor.regionName(value.regionName);
|
|
913
|
-
if (value.regionNamePath !== undefined)
|
|
914
|
-
return visitor.regionNamePath(value.regionNamePath);
|
|
915
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
916
|
-
};
|
|
917
|
-
})(exports.Region || (exports.Region = {}));
|
|
918
915
|
const AcceptChoiceFilterSensitiveLog = (obj) => ({
|
|
919
916
|
...obj,
|
|
920
917
|
...(obj.editedValue && { editedValue: smithyClient.SENSITIVE_STRING }),
|
|
@@ -1194,6 +1191,8 @@ const ConnectionPropertiesInputFilterSensitiveLog = (obj) => {
|
|
|
1194
1191
|
return { s3Properties: obj.s3Properties };
|
|
1195
1192
|
if (obj.amazonQProperties !== undefined)
|
|
1196
1193
|
return { amazonQProperties: obj.amazonQProperties };
|
|
1194
|
+
if (obj.mlflowProperties !== undefined)
|
|
1195
|
+
return { mlflowProperties: obj.mlflowProperties };
|
|
1197
1196
|
if (obj.$unknown !== undefined)
|
|
1198
1197
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
1199
1198
|
};
|
|
@@ -1229,6 +1228,8 @@ const ConnectionPropertiesOutputFilterSensitiveLog = (obj) => {
|
|
|
1229
1228
|
return { s3Properties: obj.s3Properties };
|
|
1230
1229
|
if (obj.amazonQProperties !== undefined)
|
|
1231
1230
|
return { amazonQProperties: obj.amazonQProperties };
|
|
1231
|
+
if (obj.mlflowProperties !== undefined)
|
|
1232
|
+
return { mlflowProperties: obj.mlflowProperties };
|
|
1232
1233
|
if (obj.$unknown !== undefined)
|
|
1233
1234
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
1234
1235
|
};
|
|
@@ -1264,6 +1265,8 @@ const ConnectionPropertiesPatchFilterSensitiveLog = (obj) => {
|
|
|
1264
1265
|
return { s3Properties: obj.s3Properties };
|
|
1265
1266
|
if (obj.amazonQProperties !== undefined)
|
|
1266
1267
|
return { amazonQProperties: obj.amazonQProperties };
|
|
1268
|
+
if (obj.mlflowProperties !== undefined)
|
|
1269
|
+
return { mlflowProperties: obj.mlflowProperties };
|
|
1267
1270
|
if (obj.$unknown !== undefined)
|
|
1268
1271
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
1269
1272
|
};
|
|
@@ -1472,6 +1475,16 @@ const CreateProjectOutputFilterSensitiveLog = (obj) => ({
|
|
|
1472
1475
|
}),
|
|
1473
1476
|
});
|
|
1474
1477
|
|
|
1478
|
+
exports.Region = void 0;
|
|
1479
|
+
(function (Region) {
|
|
1480
|
+
Region.visit = (value, visitor) => {
|
|
1481
|
+
if (value.regionName !== undefined)
|
|
1482
|
+
return visitor.regionName(value.regionName);
|
|
1483
|
+
if (value.regionNamePath !== undefined)
|
|
1484
|
+
return visitor.regionNamePath(value.regionNamePath);
|
|
1485
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1486
|
+
};
|
|
1487
|
+
})(exports.Region || (exports.Region = {}));
|
|
1475
1488
|
const DeploymentMode = {
|
|
1476
1489
|
ON_CREATE: "ON_CREATE",
|
|
1477
1490
|
ON_DEMAND: "ON_DEMAND",
|
|
@@ -2236,10 +2249,6 @@ const SubscriptionTargetSummaryFilterSensitiveLog = (obj) => ({
|
|
|
2236
2249
|
...obj,
|
|
2237
2250
|
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
2238
2251
|
});
|
|
2239
|
-
const ListSubscriptionTargetsOutputFilterSensitiveLog = (obj) => ({
|
|
2240
|
-
...obj,
|
|
2241
|
-
...(obj.items && { items: obj.items.map((item) => SubscriptionTargetSummaryFilterSensitiveLog(item)) }),
|
|
2242
|
-
});
|
|
2243
2252
|
|
|
2244
2253
|
const MetadataGenerationRunStatus = {
|
|
2245
2254
|
CANCELED: "CANCELED",
|
|
@@ -2354,6 +2363,10 @@ exports.AssetFilterConfiguration = void 0;
|
|
|
2354
2363
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
2355
2364
|
};
|
|
2356
2365
|
})(exports.AssetFilterConfiguration || (exports.AssetFilterConfiguration = {}));
|
|
2366
|
+
const ListSubscriptionTargetsOutputFilterSensitiveLog = (obj) => ({
|
|
2367
|
+
...obj,
|
|
2368
|
+
...(obj.items && { items: obj.items.map((item) => SubscriptionTargetSummaryFilterSensitiveLog(item)) }),
|
|
2369
|
+
});
|
|
2357
2370
|
const PostLineageEventInputFilterSensitiveLog = (obj) => ({
|
|
2358
2371
|
...obj,
|
|
2359
2372
|
...(obj.event && { event: smithyClient.SENSITIVE_STRING }),
|
|
@@ -8832,6 +8845,11 @@ const de_ConnectionPropertiesOutput = (output, context) => {
|
|
|
8832
8845
|
iamProperties: smithyClient._json(output.iamProperties),
|
|
8833
8846
|
};
|
|
8834
8847
|
}
|
|
8848
|
+
if (output.mlflowProperties != null) {
|
|
8849
|
+
return {
|
|
8850
|
+
mlflowProperties: smithyClient._json(output.mlflowProperties),
|
|
8851
|
+
};
|
|
8852
|
+
}
|
|
8835
8853
|
if (output.redshiftProperties != null) {
|
|
8836
8854
|
return {
|
|
8837
8855
|
redshiftProperties: smithyClient._json(output.redshiftProperties),
|
|
@@ -2,7 +2,7 @@ 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 { ListSubscriptionTargetsOutputFilterSensitiveLog
|
|
5
|
+
import { ListSubscriptionTargetsOutputFilterSensitiveLog } from "../models/models_2";
|
|
6
6
|
import { de_ListSubscriptionTargetsCommand, se_ListSubscriptionTargetsCommand } from "../protocols/Aws_restJson1";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListSubscriptionTargetsCommand extends $Command
|
|
@@ -423,6 +423,8 @@ export var ConnectionPropertiesInput;
|
|
|
423
423
|
return visitor.s3Properties(value.s3Properties);
|
|
424
424
|
if (value.amazonQProperties !== undefined)
|
|
425
425
|
return visitor.amazonQProperties(value.amazonQProperties);
|
|
426
|
+
if (value.mlflowProperties !== undefined)
|
|
427
|
+
return visitor.mlflowProperties(value.mlflowProperties);
|
|
426
428
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
427
429
|
};
|
|
428
430
|
})(ConnectionPropertiesInput || (ConnectionPropertiesInput = {}));
|
|
@@ -465,6 +467,8 @@ export var ConnectionPropertiesOutput;
|
|
|
465
467
|
return visitor.s3Properties(value.s3Properties);
|
|
466
468
|
if (value.amazonQProperties !== undefined)
|
|
467
469
|
return visitor.amazonQProperties(value.amazonQProperties);
|
|
470
|
+
if (value.mlflowProperties !== undefined)
|
|
471
|
+
return visitor.mlflowProperties(value.mlflowProperties);
|
|
468
472
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
469
473
|
};
|
|
470
474
|
})(ConnectionPropertiesOutput || (ConnectionPropertiesOutput = {}));
|
|
@@ -485,6 +489,8 @@ export var ConnectionPropertiesPatch;
|
|
|
485
489
|
return visitor.s3Properties(value.s3Properties);
|
|
486
490
|
if (value.amazonQProperties !== undefined)
|
|
487
491
|
return visitor.amazonQProperties(value.amazonQProperties);
|
|
492
|
+
if (value.mlflowProperties !== undefined)
|
|
493
|
+
return visitor.mlflowProperties(value.mlflowProperties);
|
|
488
494
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
489
495
|
};
|
|
490
496
|
})(ConnectionPropertiesPatch || (ConnectionPropertiesPatch = {}));
|
|
@@ -501,6 +507,7 @@ export const ConnectionType = {
|
|
|
501
507
|
DYNAMODB: "DYNAMODB",
|
|
502
508
|
HYPERPOD: "HYPERPOD",
|
|
503
509
|
IAM: "IAM",
|
|
510
|
+
MLFLOW: "MLFLOW",
|
|
504
511
|
MYSQL: "MYSQL",
|
|
505
512
|
OPENSEARCH: "OPENSEARCH",
|
|
506
513
|
ORACLE: "ORACLE",
|
|
@@ -789,16 +796,6 @@ export var Member;
|
|
|
789
796
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
790
797
|
};
|
|
791
798
|
})(Member || (Member = {}));
|
|
792
|
-
export var Region;
|
|
793
|
-
(function (Region) {
|
|
794
|
-
Region.visit = (value, visitor) => {
|
|
795
|
-
if (value.regionName !== undefined)
|
|
796
|
-
return visitor.regionName(value.regionName);
|
|
797
|
-
if (value.regionNamePath !== undefined)
|
|
798
|
-
return visitor.regionNamePath(value.regionNamePath);
|
|
799
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
800
|
-
};
|
|
801
|
-
})(Region || (Region = {}));
|
|
802
799
|
export const AcceptChoiceFilterSensitiveLog = (obj) => ({
|
|
803
800
|
...obj,
|
|
804
801
|
...(obj.editedValue && { editedValue: SENSITIVE_STRING }),
|
|
@@ -1078,6 +1075,8 @@ export const ConnectionPropertiesInputFilterSensitiveLog = (obj) => {
|
|
|
1078
1075
|
return { s3Properties: obj.s3Properties };
|
|
1079
1076
|
if (obj.amazonQProperties !== undefined)
|
|
1080
1077
|
return { amazonQProperties: obj.amazonQProperties };
|
|
1078
|
+
if (obj.mlflowProperties !== undefined)
|
|
1079
|
+
return { mlflowProperties: obj.mlflowProperties };
|
|
1081
1080
|
if (obj.$unknown !== undefined)
|
|
1082
1081
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
1083
1082
|
};
|
|
@@ -1113,6 +1112,8 @@ export const ConnectionPropertiesOutputFilterSensitiveLog = (obj) => {
|
|
|
1113
1112
|
return { s3Properties: obj.s3Properties };
|
|
1114
1113
|
if (obj.amazonQProperties !== undefined)
|
|
1115
1114
|
return { amazonQProperties: obj.amazonQProperties };
|
|
1115
|
+
if (obj.mlflowProperties !== undefined)
|
|
1116
|
+
return { mlflowProperties: obj.mlflowProperties };
|
|
1116
1117
|
if (obj.$unknown !== undefined)
|
|
1117
1118
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
1118
1119
|
};
|
|
@@ -1148,6 +1149,8 @@ export const ConnectionPropertiesPatchFilterSensitiveLog = (obj) => {
|
|
|
1148
1149
|
return { s3Properties: obj.s3Properties };
|
|
1149
1150
|
if (obj.amazonQProperties !== undefined)
|
|
1150
1151
|
return { amazonQProperties: obj.amazonQProperties };
|
|
1152
|
+
if (obj.mlflowProperties !== undefined)
|
|
1153
|
+
return { mlflowProperties: obj.mlflowProperties };
|
|
1151
1154
|
if (obj.$unknown !== undefined)
|
|
1152
1155
|
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
1153
1156
|
};
|
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { AccountInfoFilterSensitiveLog, AccountPoolSummaryFilterSensitiveLog, AccountSourceFilterSensitiveLog, AssetFilterSummaryFilterSensitiveLog, AssetListingFilterSensitiveLog, ConnectionPropertiesOutputFilterSensitiveLog, ConnectionSummaryFilterSensitiveLog, CustomParameterFilterSensitiveLog, DetailedGlossaryTermFilterSensitiveLog, EnvironmentConfigurationUserParameterFilterSensitiveLog, FormOutputFilterSensitiveLog, PhysicalEndpointFilterSensitiveLog, SubscribedListingFilterSensitiveLog, SubscribedPrincipalFilterSensitiveLog, } from "./models_0";
|
|
3
|
+
export var Region;
|
|
4
|
+
(function (Region) {
|
|
5
|
+
Region.visit = (value, visitor) => {
|
|
6
|
+
if (value.regionName !== undefined)
|
|
7
|
+
return visitor.regionName(value.regionName);
|
|
8
|
+
if (value.regionNamePath !== undefined)
|
|
9
|
+
return visitor.regionNamePath(value.regionNamePath);
|
|
10
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
11
|
+
};
|
|
12
|
+
})(Region || (Region = {}));
|
|
3
13
|
export const DeploymentMode = {
|
|
4
14
|
ON_CREATE: "ON_CREATE",
|
|
5
15
|
ON_DEMAND: "ON_DEMAND",
|
|
@@ -764,7 +774,3 @@ export const SubscriptionTargetSummaryFilterSensitiveLog = (obj) => ({
|
|
|
764
774
|
...obj,
|
|
765
775
|
...(obj.name && { name: SENSITIVE_STRING }),
|
|
766
776
|
});
|
|
767
|
-
export const ListSubscriptionTargetsOutputFilterSensitiveLog = (obj) => ({
|
|
768
|
-
...obj,
|
|
769
|
-
...(obj.items && { items: obj.items.map((item) => SubscriptionTargetSummaryFilterSensitiveLog(item)) }),
|
|
770
|
-
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { AccountSourceFilterSensitiveLog, AssetItemFilterSensitiveLog, AssetListingItemFilterSensitiveLog, AssetTypeItemFilterSensitiveLog, ConnectionPropertiesOutputFilterSensitiveLog, ConnectionPropertiesPatchFilterSensitiveLog, CustomParameterFilterSensitiveLog, EnvironmentConfigurationUserParameterFilterSensitiveLog, FormEntryOutputFilterSensitiveLog, FormOutputFilterSensitiveLog, PhysicalEndpointFilterSensitiveLog, SubscribedListingFilterSensitiveLog, SubscribedPrincipalFilterSensitiveLog, } from "./models_0";
|
|
3
|
-
import { DataProductListingItemFilterSensitiveLog, DataProductResultItemFilterSensitiveLog, EnvironmentConfigurationFilterSensitiveLog, ImportFilterSensitiveLog, UserProfileDetailsFilterSensitiveLog, } from "./models_1";
|
|
3
|
+
import { DataProductListingItemFilterSensitiveLog, DataProductResultItemFilterSensitiveLog, EnvironmentConfigurationFilterSensitiveLog, ImportFilterSensitiveLog, SubscriptionTargetSummaryFilterSensitiveLog, UserProfileDetailsFilterSensitiveLog, } from "./models_1";
|
|
4
4
|
export const MetadataGenerationRunStatus = {
|
|
5
5
|
CANCELED: "CANCELED",
|
|
6
6
|
FAILED: "FAILED",
|
|
@@ -114,6 +114,10 @@ export var AssetFilterConfiguration;
|
|
|
114
114
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
115
115
|
};
|
|
116
116
|
})(AssetFilterConfiguration || (AssetFilterConfiguration = {}));
|
|
117
|
+
export const ListSubscriptionTargetsOutputFilterSensitiveLog = (obj) => ({
|
|
118
|
+
...obj,
|
|
119
|
+
...(obj.items && { items: obj.items.map((item) => SubscriptionTargetSummaryFilterSensitiveLog(item)) }),
|
|
120
|
+
});
|
|
117
121
|
export const PostLineageEventInputFilterSensitiveLog = (obj) => ({
|
|
118
122
|
...obj,
|
|
119
123
|
...(obj.event && { event: SENSITIVE_STRING }),
|
|
@@ -6179,6 +6179,11 @@ const de_ConnectionPropertiesOutput = (output, context) => {
|
|
|
6179
6179
|
iamProperties: _json(output.iamProperties),
|
|
6180
6180
|
};
|
|
6181
6181
|
}
|
|
6182
|
+
if (output.mlflowProperties != null) {
|
|
6183
|
+
return {
|
|
6184
|
+
mlflowProperties: _json(output.mlflowProperties),
|
|
6185
|
+
};
|
|
6186
|
+
}
|
|
6182
6187
|
if (output.redshiftProperties != null) {
|
|
6183
6188
|
return {
|
|
6184
6189
|
redshiftProperties: _json(output.redshiftProperties),
|
|
@@ -178,6 +178,10 @@ declare const CreateConnectionCommand_base: {
|
|
|
178
178
|
* profileArn: "STRING_VALUE",
|
|
179
179
|
* authMode: "STRING_VALUE",
|
|
180
180
|
* },
|
|
181
|
+
* mlflowProperties: { // MlflowPropertiesInput
|
|
182
|
+
* trackingServerName: "STRING_VALUE",
|
|
183
|
+
* trackingServerArn: "STRING_VALUE",
|
|
184
|
+
* },
|
|
181
185
|
* },
|
|
182
186
|
* enableTrustedIdentityPropagation: true || false,
|
|
183
187
|
* scope: "DOMAIN" || "PROJECT",
|
|
@@ -203,7 +207,7 @@ declare const CreateConnectionCommand_base: {
|
|
|
203
207
|
* // glueConnection: { // GlueConnection
|
|
204
208
|
* // name: "STRING_VALUE",
|
|
205
209
|
* // description: "STRING_VALUE",
|
|
206
|
-
* // connectionType: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q",
|
|
210
|
+
* // connectionType: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW",
|
|
207
211
|
* // matchCriteria: [ // MatchCriteria
|
|
208
212
|
* // "STRING_VALUE",
|
|
209
213
|
* // ],
|
|
@@ -361,8 +365,12 @@ declare const CreateConnectionCommand_base: {
|
|
|
361
365
|
* // profileArn: "STRING_VALUE",
|
|
362
366
|
* // authMode: "STRING_VALUE",
|
|
363
367
|
* // },
|
|
368
|
+
* // mlflowProperties: { // MlflowPropertiesOutput
|
|
369
|
+
* // trackingServerName: "STRING_VALUE",
|
|
370
|
+
* // trackingServerArn: "STRING_VALUE",
|
|
371
|
+
* // },
|
|
364
372
|
* // },
|
|
365
|
-
* // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q", // required
|
|
373
|
+
* // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW", // required
|
|
366
374
|
* // scope: "DOMAIN" || "PROJECT",
|
|
367
375
|
* // };
|
|
368
376
|
*
|
|
@@ -69,7 +69,7 @@ declare const GetConnectionCommand_base: {
|
|
|
69
69
|
* // glueConnection: { // GlueConnection
|
|
70
70
|
* // name: "STRING_VALUE",
|
|
71
71
|
* // description: "STRING_VALUE",
|
|
72
|
-
* // connectionType: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q",
|
|
72
|
+
* // connectionType: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW",
|
|
73
73
|
* // matchCriteria: [ // MatchCriteria
|
|
74
74
|
* // "STRING_VALUE",
|
|
75
75
|
* // ],
|
|
@@ -227,8 +227,12 @@ declare const GetConnectionCommand_base: {
|
|
|
227
227
|
* // profileArn: "STRING_VALUE",
|
|
228
228
|
* // authMode: "STRING_VALUE",
|
|
229
229
|
* // },
|
|
230
|
+
* // mlflowProperties: { // MlflowPropertiesOutput
|
|
231
|
+
* // trackingServerName: "STRING_VALUE",
|
|
232
|
+
* // trackingServerArn: "STRING_VALUE",
|
|
233
|
+
* // },
|
|
230
234
|
* // },
|
|
231
|
-
* // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q", // required
|
|
235
|
+
* // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW", // required
|
|
232
236
|
* // scope: "DOMAIN" || "PROJECT",
|
|
233
237
|
* // };
|
|
234
238
|
*
|
|
@@ -45,7 +45,7 @@ declare const ListConnectionsCommand_base: {
|
|
|
45
45
|
* name: "STRING_VALUE",
|
|
46
46
|
* environmentIdentifier: "STRING_VALUE",
|
|
47
47
|
* projectIdentifier: "STRING_VALUE",
|
|
48
|
-
* type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q",
|
|
48
|
+
* type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW",
|
|
49
49
|
* scope: "DOMAIN" || "PROJECT",
|
|
50
50
|
* };
|
|
51
51
|
* const command = new ListConnectionsCommand(input);
|
|
@@ -70,7 +70,7 @@ declare const ListConnectionsCommand_base: {
|
|
|
70
70
|
* // glueConnection: { // GlueConnection
|
|
71
71
|
* // name: "STRING_VALUE",
|
|
72
72
|
* // description: "STRING_VALUE",
|
|
73
|
-
* // connectionType: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q",
|
|
73
|
+
* // connectionType: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW",
|
|
74
74
|
* // matchCriteria: [ // MatchCriteria
|
|
75
75
|
* // "STRING_VALUE",
|
|
76
76
|
* // ],
|
|
@@ -228,8 +228,12 @@ declare const ListConnectionsCommand_base: {
|
|
|
228
228
|
* // profileArn: "STRING_VALUE",
|
|
229
229
|
* // authMode: "STRING_VALUE",
|
|
230
230
|
* // },
|
|
231
|
+
* // mlflowProperties: { // MlflowPropertiesOutput
|
|
232
|
+
* // trackingServerName: "STRING_VALUE",
|
|
233
|
+
* // trackingServerArn: "STRING_VALUE",
|
|
234
|
+
* // },
|
|
231
235
|
* // },
|
|
232
|
-
* // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q", // required
|
|
236
|
+
* // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW", // required
|
|
233
237
|
* // scope: "DOMAIN" || "PROJECT",
|
|
234
238
|
* // },
|
|
235
239
|
* // ],
|
|
@@ -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 { ListSubscriptionTargetsInput
|
|
4
|
+
import { ListSubscriptionTargetsInput } from "../models/models_1";
|
|
5
|
+
import { ListSubscriptionTargetsOutput } from "../models/models_2";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/
|
|
4
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -109,6 +109,10 @@ declare const UpdateConnectionCommand_base: {
|
|
|
109
109
|
* profileArn: "STRING_VALUE",
|
|
110
110
|
* authMode: "STRING_VALUE",
|
|
111
111
|
* },
|
|
112
|
+
* mlflowProperties: { // MlflowPropertiesPatch
|
|
113
|
+
* trackingServerName: "STRING_VALUE",
|
|
114
|
+
* trackingServerArn: "STRING_VALUE",
|
|
115
|
+
* },
|
|
112
116
|
* },
|
|
113
117
|
* };
|
|
114
118
|
* const command = new UpdateConnectionCommand(input);
|
|
@@ -132,7 +136,7 @@ declare const UpdateConnectionCommand_base: {
|
|
|
132
136
|
* // glueConnection: { // GlueConnection
|
|
133
137
|
* // name: "STRING_VALUE",
|
|
134
138
|
* // description: "STRING_VALUE",
|
|
135
|
-
* // connectionType: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q",
|
|
139
|
+
* // connectionType: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW",
|
|
136
140
|
* // matchCriteria: [ // MatchCriteria
|
|
137
141
|
* // "STRING_VALUE",
|
|
138
142
|
* // ],
|
|
@@ -290,8 +294,12 @@ declare const UpdateConnectionCommand_base: {
|
|
|
290
294
|
* // profileArn: "STRING_VALUE",
|
|
291
295
|
* // authMode: "STRING_VALUE",
|
|
292
296
|
* // },
|
|
297
|
+
* // mlflowProperties: { // MlflowPropertiesOutput
|
|
298
|
+
* // trackingServerName: "STRING_VALUE",
|
|
299
|
+
* // trackingServerArn: "STRING_VALUE",
|
|
300
|
+
* // },
|
|
293
301
|
* // },
|
|
294
|
-
* // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q", // required
|
|
302
|
+
* // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW", // required
|
|
295
303
|
* // scope: "DOMAIN" || "PROJECT",
|
|
296
304
|
* // };
|
|
297
305
|
*
|