aws-sdk-datazone 1.79.0 → 1.80.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +48 -10
- data/lib/aws-sdk-datazone/client_api.rb +31 -0
- data/lib/aws-sdk-datazone/types.rb +104 -0
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +14 -4
- data/sig/types.rbs +38 -6
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0fe53e66ab647fae5c7366c60d58b2023b7a2dc8827b2ff461e690ec4fe40fbd
|
|
4
|
+
data.tar.gz: 324990f70e7b810a4dea7338456ee50fb7f0b39cb5a99481b8eb354555d414a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: abe8d89885b0afd3c405c6f4d34709aa6f9b5318e7486b31966ff7e571012e968b4d1564035ca29b430b2e9880d6b39efa1e8438fdbfe77d60356a064ceded00
|
|
7
|
+
data.tar.gz: a219e5bad15388e0474051abbde3e534c0b36fbe120fea2af0c0a7c1896d8431a7568efecbf3ce404eb187d605db0ee76f223a30041fb9716d6184a267bbfe85
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.80.0
|
|
@@ -2085,6 +2085,11 @@ module Aws::DataZone
|
|
|
2085
2085
|
# lakehouse_properties: {
|
|
2086
2086
|
# glue_lineage_sync_enabled: false,
|
|
2087
2087
|
# },
|
|
2088
|
+
# vpc_properties: {
|
|
2089
|
+
# vpc_id: "VpcId", # required
|
|
2090
|
+
# subnet_ids: ["SubnetId"], # required
|
|
2091
|
+
# security_group_id: "SecurityGroupId",
|
|
2092
|
+
# },
|
|
2088
2093
|
# },
|
|
2089
2094
|
# enable_trusted_identity_propagation: false,
|
|
2090
2095
|
# scope: "DOMAIN", # accepts DOMAIN, PROJECT
|
|
@@ -2112,7 +2117,7 @@ module Aws::DataZone
|
|
|
2112
2117
|
# resp.physical_endpoints[0].glue_connection_names[0] #=> String
|
|
2113
2118
|
# resp.physical_endpoints[0].glue_connection.name #=> String
|
|
2114
2119
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
|
2115
|
-
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW"
|
|
2120
|
+
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW", "VPC"
|
|
2116
2121
|
# resp.physical_endpoints[0].glue_connection.match_criteria #=> Array
|
|
2117
2122
|
# resp.physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
|
2118
2123
|
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
|
@@ -2217,7 +2222,14 @@ module Aws::DataZone
|
|
|
2217
2222
|
# resp.props.mlflow_properties.tracking_server_arn #=> String
|
|
2218
2223
|
# resp.props.workflows_mwaa_properties.mwaa_environment_name #=> String
|
|
2219
2224
|
# resp.props.lakehouse_properties.glue_lineage_sync_enabled #=> Boolean
|
|
2220
|
-
# resp.
|
|
2225
|
+
# resp.props.vpc_properties.vpc_id #=> String
|
|
2226
|
+
# resp.props.vpc_properties.subnet_ids #=> Array
|
|
2227
|
+
# resp.props.vpc_properties.subnet_ids[0] #=> String
|
|
2228
|
+
# resp.props.vpc_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
2229
|
+
# resp.props.vpc_properties.security_group_id #=> String
|
|
2230
|
+
# resp.props.vpc_properties.glue_connection_names #=> Array
|
|
2231
|
+
# resp.props.vpc_properties.glue_connection_names[0] #=> String
|
|
2232
|
+
# resp.type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW", "VPC"
|
|
2221
2233
|
# resp.scope #=> String, one of "DOMAIN", "PROJECT"
|
|
2222
2234
|
#
|
|
2223
2235
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateConnection AWS API Documentation
|
|
@@ -6229,7 +6241,7 @@ module Aws::DataZone
|
|
|
6229
6241
|
# resp.physical_endpoints[0].glue_connection_names[0] #=> String
|
|
6230
6242
|
# resp.physical_endpoints[0].glue_connection.name #=> String
|
|
6231
6243
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
|
6232
|
-
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW"
|
|
6244
|
+
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW", "VPC"
|
|
6233
6245
|
# resp.physical_endpoints[0].glue_connection.match_criteria #=> Array
|
|
6234
6246
|
# resp.physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
|
6235
6247
|
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
|
@@ -6334,7 +6346,14 @@ module Aws::DataZone
|
|
|
6334
6346
|
# resp.props.mlflow_properties.tracking_server_arn #=> String
|
|
6335
6347
|
# resp.props.workflows_mwaa_properties.mwaa_environment_name #=> String
|
|
6336
6348
|
# resp.props.lakehouse_properties.glue_lineage_sync_enabled #=> Boolean
|
|
6337
|
-
# resp.
|
|
6349
|
+
# resp.props.vpc_properties.vpc_id #=> String
|
|
6350
|
+
# resp.props.vpc_properties.subnet_ids #=> Array
|
|
6351
|
+
# resp.props.vpc_properties.subnet_ids[0] #=> String
|
|
6352
|
+
# resp.props.vpc_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
6353
|
+
# resp.props.vpc_properties.security_group_id #=> String
|
|
6354
|
+
# resp.props.vpc_properties.glue_connection_names #=> Array
|
|
6355
|
+
# resp.props.vpc_properties.glue_connection_names[0] #=> String
|
|
6356
|
+
# resp.type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW", "VPC"
|
|
6338
6357
|
# resp.scope #=> String, one of "DOMAIN", "PROJECT"
|
|
6339
6358
|
#
|
|
6340
6359
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetConnection AWS API Documentation
|
|
@@ -9015,7 +9034,7 @@ module Aws::DataZone
|
|
|
9015
9034
|
# name: "ConnectionName",
|
|
9016
9035
|
# environment_identifier: "EnvironmentId",
|
|
9017
9036
|
# project_identifier: "ProjectId",
|
|
9018
|
-
# type: "ATHENA", # accepts ATHENA, BIGQUERY, DATABRICKS, DOCUMENTDB, DYNAMODB, HYPERPOD, IAM, MYSQL, OPENSEARCH, ORACLE, POSTGRESQL, REDSHIFT, S3, SAPHANA, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, VERTICA, WORKFLOWS_MWAA, AMAZON_Q, MLFLOW
|
|
9037
|
+
# type: "ATHENA", # accepts ATHENA, BIGQUERY, DATABRICKS, DOCUMENTDB, DYNAMODB, HYPERPOD, IAM, MYSQL, OPENSEARCH, ORACLE, POSTGRESQL, REDSHIFT, S3, SAPHANA, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, VERTICA, WORKFLOWS_MWAA, AMAZON_Q, MLFLOW, VPC
|
|
9019
9038
|
# scope: "DOMAIN", # accepts DOMAIN, PROJECT
|
|
9020
9039
|
# })
|
|
9021
9040
|
#
|
|
@@ -9041,7 +9060,7 @@ module Aws::DataZone
|
|
|
9041
9060
|
# resp.items[0].physical_endpoints[0].glue_connection_names[0] #=> String
|
|
9042
9061
|
# resp.items[0].physical_endpoints[0].glue_connection.name #=> String
|
|
9043
9062
|
# resp.items[0].physical_endpoints[0].glue_connection.description #=> String
|
|
9044
|
-
# resp.items[0].physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW"
|
|
9063
|
+
# resp.items[0].physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW", "VPC"
|
|
9045
9064
|
# resp.items[0].physical_endpoints[0].glue_connection.match_criteria #=> Array
|
|
9046
9065
|
# resp.items[0].physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
|
9047
9066
|
# resp.items[0].physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
|
@@ -9146,7 +9165,14 @@ module Aws::DataZone
|
|
|
9146
9165
|
# resp.items[0].props.mlflow_properties.tracking_server_arn #=> String
|
|
9147
9166
|
# resp.items[0].props.workflows_mwaa_properties.mwaa_environment_name #=> String
|
|
9148
9167
|
# resp.items[0].props.lakehouse_properties.glue_lineage_sync_enabled #=> Boolean
|
|
9149
|
-
# resp.items[0].
|
|
9168
|
+
# resp.items[0].props.vpc_properties.vpc_id #=> String
|
|
9169
|
+
# resp.items[0].props.vpc_properties.subnet_ids #=> Array
|
|
9170
|
+
# resp.items[0].props.vpc_properties.subnet_ids[0] #=> String
|
|
9171
|
+
# resp.items[0].props.vpc_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
9172
|
+
# resp.items[0].props.vpc_properties.security_group_id #=> String
|
|
9173
|
+
# resp.items[0].props.vpc_properties.glue_connection_names #=> Array
|
|
9174
|
+
# resp.items[0].props.vpc_properties.glue_connection_names[0] #=> String
|
|
9175
|
+
# resp.items[0].type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW", "VPC"
|
|
9150
9176
|
# resp.items[0].scope #=> String, one of "DOMAIN", "PROJECT"
|
|
9151
9177
|
# resp.next_token #=> String
|
|
9152
9178
|
#
|
|
@@ -14141,6 +14167,11 @@ module Aws::DataZone
|
|
|
14141
14167
|
# lakehouse_properties: {
|
|
14142
14168
|
# glue_lineage_sync_enabled: false,
|
|
14143
14169
|
# },
|
|
14170
|
+
# vpc_properties: {
|
|
14171
|
+
# vpc_id: "VpcId",
|
|
14172
|
+
# subnet_ids: ["SubnetId"],
|
|
14173
|
+
# security_group_id: "SecurityGroupId",
|
|
14174
|
+
# },
|
|
14144
14175
|
# },
|
|
14145
14176
|
# })
|
|
14146
14177
|
#
|
|
@@ -14166,7 +14197,7 @@ module Aws::DataZone
|
|
|
14166
14197
|
# resp.physical_endpoints[0].glue_connection_names[0] #=> String
|
|
14167
14198
|
# resp.physical_endpoints[0].glue_connection.name #=> String
|
|
14168
14199
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
|
14169
|
-
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW"
|
|
14200
|
+
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW", "VPC"
|
|
14170
14201
|
# resp.physical_endpoints[0].glue_connection.match_criteria #=> Array
|
|
14171
14202
|
# resp.physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
|
14172
14203
|
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
|
@@ -14271,7 +14302,14 @@ module Aws::DataZone
|
|
|
14271
14302
|
# resp.props.mlflow_properties.tracking_server_arn #=> String
|
|
14272
14303
|
# resp.props.workflows_mwaa_properties.mwaa_environment_name #=> String
|
|
14273
14304
|
# resp.props.lakehouse_properties.glue_lineage_sync_enabled #=> Boolean
|
|
14274
|
-
# resp.
|
|
14305
|
+
# resp.props.vpc_properties.vpc_id #=> String
|
|
14306
|
+
# resp.props.vpc_properties.subnet_ids #=> Array
|
|
14307
|
+
# resp.props.vpc_properties.subnet_ids[0] #=> String
|
|
14308
|
+
# resp.props.vpc_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
14309
|
+
# resp.props.vpc_properties.security_group_id #=> String
|
|
14310
|
+
# resp.props.vpc_properties.glue_connection_names #=> Array
|
|
14311
|
+
# resp.props.vpc_properties.glue_connection_names[0] #=> String
|
|
14312
|
+
# resp.type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW", "VPC"
|
|
14275
14313
|
# resp.scope #=> String, one of "DOMAIN", "PROJECT"
|
|
14276
14314
|
#
|
|
14277
14315
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateConnection AWS API Documentation
|
|
@@ -16215,7 +16253,7 @@ module Aws::DataZone
|
|
|
16215
16253
|
tracer: tracer
|
|
16216
16254
|
)
|
|
16217
16255
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
16218
|
-
context[:gem_version] = '1.
|
|
16256
|
+
context[:gem_version] = '1.80.0'
|
|
16219
16257
|
Seahorse::Client::Request.new(handlers, context)
|
|
16220
16258
|
end
|
|
16221
16259
|
|
|
@@ -1052,6 +1052,7 @@ module Aws::DataZone
|
|
|
1052
1052
|
SearchTypesResultItems = Shapes::ListShape.new(name: 'SearchTypesResultItems')
|
|
1053
1053
|
SearchUserProfilesInput = Shapes::StructureShape.new(name: 'SearchUserProfilesInput')
|
|
1054
1054
|
SearchUserProfilesOutput = Shapes::StructureShape.new(name: 'SearchUserProfilesOutput')
|
|
1055
|
+
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
|
1055
1056
|
SecurityGroupIdList = Shapes::ListShape.new(name: 'SecurityGroupIdList')
|
|
1056
1057
|
SecurityGroupIdListMemberString = Shapes::StringShape.new(name: 'SecurityGroupIdListMemberString')
|
|
1057
1058
|
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
|
@@ -1278,6 +1279,11 @@ module Aws::DataZone
|
|
|
1278
1279
|
Username = Shapes::StringShape.new(name: 'Username')
|
|
1279
1280
|
UsernamePassword = Shapes::StructureShape.new(name: 'UsernamePassword')
|
|
1280
1281
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
|
1282
|
+
VpcConnectionSubnetIdList = Shapes::ListShape.new(name: 'VpcConnectionSubnetIdList')
|
|
1283
|
+
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
|
1284
|
+
VpcPropertiesInput = Shapes::StructureShape.new(name: 'VpcPropertiesInput')
|
|
1285
|
+
VpcPropertiesOutput = Shapes::StructureShape.new(name: 'VpcPropertiesOutput')
|
|
1286
|
+
VpcPropertiesPatch = Shapes::StructureShape.new(name: 'VpcPropertiesPatch')
|
|
1281
1287
|
WorkflowsMwaaPropertiesInput = Shapes::StructureShape.new(name: 'WorkflowsMwaaPropertiesInput')
|
|
1282
1288
|
WorkflowsMwaaPropertiesOutput = Shapes::StructureShape.new(name: 'WorkflowsMwaaPropertiesOutput')
|
|
1283
1289
|
WorkflowsServerlessPropertiesInput = Shapes::StructureShape.new(name: 'WorkflowsServerlessPropertiesInput')
|
|
@@ -1792,6 +1798,7 @@ module Aws::DataZone
|
|
|
1792
1798
|
ConnectionPropertiesInput.add_member(:workflows_mwaa_properties, Shapes::ShapeRef.new(shape: WorkflowsMwaaPropertiesInput, location_name: "workflowsMwaaProperties"))
|
|
1793
1799
|
ConnectionPropertiesInput.add_member(:workflows_serverless_properties, Shapes::ShapeRef.new(shape: WorkflowsServerlessPropertiesInput, location_name: "workflowsServerlessProperties"))
|
|
1794
1800
|
ConnectionPropertiesInput.add_member(:lakehouse_properties, Shapes::ShapeRef.new(shape: LakehousePropertiesInput, location_name: "lakehouseProperties"))
|
|
1801
|
+
ConnectionPropertiesInput.add_member(:vpc_properties, Shapes::ShapeRef.new(shape: VpcPropertiesInput, location_name: "vpcProperties"))
|
|
1795
1802
|
ConnectionPropertiesInput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1796
1803
|
ConnectionPropertiesInput.add_member_subclass(:athena_properties, Types::ConnectionPropertiesInput::AthenaProperties)
|
|
1797
1804
|
ConnectionPropertiesInput.add_member_subclass(:glue_properties, Types::ConnectionPropertiesInput::GlueProperties)
|
|
@@ -1806,6 +1813,7 @@ module Aws::DataZone
|
|
|
1806
1813
|
ConnectionPropertiesInput.add_member_subclass(:workflows_mwaa_properties, Types::ConnectionPropertiesInput::WorkflowsMwaaProperties)
|
|
1807
1814
|
ConnectionPropertiesInput.add_member_subclass(:workflows_serverless_properties, Types::ConnectionPropertiesInput::WorkflowsServerlessProperties)
|
|
1808
1815
|
ConnectionPropertiesInput.add_member_subclass(:lakehouse_properties, Types::ConnectionPropertiesInput::LakehouseProperties)
|
|
1816
|
+
ConnectionPropertiesInput.add_member_subclass(:vpc_properties, Types::ConnectionPropertiesInput::VpcProperties)
|
|
1809
1817
|
ConnectionPropertiesInput.add_member_subclass(:unknown, Types::ConnectionPropertiesInput::Unknown)
|
|
1810
1818
|
ConnectionPropertiesInput.struct_class = Types::ConnectionPropertiesInput
|
|
1811
1819
|
|
|
@@ -1822,6 +1830,7 @@ module Aws::DataZone
|
|
|
1822
1830
|
ConnectionPropertiesOutput.add_member(:workflows_mwaa_properties, Shapes::ShapeRef.new(shape: WorkflowsMwaaPropertiesOutput, location_name: "workflowsMwaaProperties"))
|
|
1823
1831
|
ConnectionPropertiesOutput.add_member(:workflows_serverless_properties, Shapes::ShapeRef.new(shape: WorkflowsServerlessPropertiesOutput, location_name: "workflowsServerlessProperties"))
|
|
1824
1832
|
ConnectionPropertiesOutput.add_member(:lakehouse_properties, Shapes::ShapeRef.new(shape: LakehousePropertiesOutput, location_name: "lakehouseProperties"))
|
|
1833
|
+
ConnectionPropertiesOutput.add_member(:vpc_properties, Shapes::ShapeRef.new(shape: VpcPropertiesOutput, location_name: "vpcProperties"))
|
|
1825
1834
|
ConnectionPropertiesOutput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1826
1835
|
ConnectionPropertiesOutput.add_member_subclass(:athena_properties, Types::ConnectionPropertiesOutput::AthenaProperties)
|
|
1827
1836
|
ConnectionPropertiesOutput.add_member_subclass(:glue_properties, Types::ConnectionPropertiesOutput::GlueProperties)
|
|
@@ -1836,6 +1845,7 @@ module Aws::DataZone
|
|
|
1836
1845
|
ConnectionPropertiesOutput.add_member_subclass(:workflows_mwaa_properties, Types::ConnectionPropertiesOutput::WorkflowsMwaaProperties)
|
|
1837
1846
|
ConnectionPropertiesOutput.add_member_subclass(:workflows_serverless_properties, Types::ConnectionPropertiesOutput::WorkflowsServerlessProperties)
|
|
1838
1847
|
ConnectionPropertiesOutput.add_member_subclass(:lakehouse_properties, Types::ConnectionPropertiesOutput::LakehouseProperties)
|
|
1848
|
+
ConnectionPropertiesOutput.add_member_subclass(:vpc_properties, Types::ConnectionPropertiesOutput::VpcProperties)
|
|
1839
1849
|
ConnectionPropertiesOutput.add_member_subclass(:unknown, Types::ConnectionPropertiesOutput::Unknown)
|
|
1840
1850
|
ConnectionPropertiesOutput.struct_class = Types::ConnectionPropertiesOutput
|
|
1841
1851
|
|
|
@@ -1848,6 +1858,7 @@ module Aws::DataZone
|
|
|
1848
1858
|
ConnectionPropertiesPatch.add_member(:amazon_q_properties, Shapes::ShapeRef.new(shape: AmazonQPropertiesPatch, location_name: "amazonQProperties"))
|
|
1849
1859
|
ConnectionPropertiesPatch.add_member(:mlflow_properties, Shapes::ShapeRef.new(shape: MlflowPropertiesPatch, location_name: "mlflowProperties"))
|
|
1850
1860
|
ConnectionPropertiesPatch.add_member(:lakehouse_properties, Shapes::ShapeRef.new(shape: LakehousePropertiesPatch, location_name: "lakehouseProperties"))
|
|
1861
|
+
ConnectionPropertiesPatch.add_member(:vpc_properties, Shapes::ShapeRef.new(shape: VpcPropertiesPatch, location_name: "vpcProperties"))
|
|
1851
1862
|
ConnectionPropertiesPatch.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1852
1863
|
ConnectionPropertiesPatch.add_member_subclass(:athena_properties, Types::ConnectionPropertiesPatch::AthenaProperties)
|
|
1853
1864
|
ConnectionPropertiesPatch.add_member_subclass(:glue_properties, Types::ConnectionPropertiesPatch::GlueProperties)
|
|
@@ -1858,6 +1869,7 @@ module Aws::DataZone
|
|
|
1858
1869
|
ConnectionPropertiesPatch.add_member_subclass(:amazon_q_properties, Types::ConnectionPropertiesPatch::AmazonQProperties)
|
|
1859
1870
|
ConnectionPropertiesPatch.add_member_subclass(:mlflow_properties, Types::ConnectionPropertiesPatch::MlflowProperties)
|
|
1860
1871
|
ConnectionPropertiesPatch.add_member_subclass(:lakehouse_properties, Types::ConnectionPropertiesPatch::LakehouseProperties)
|
|
1872
|
+
ConnectionPropertiesPatch.add_member_subclass(:vpc_properties, Types::ConnectionPropertiesPatch::VpcProperties)
|
|
1861
1873
|
ConnectionPropertiesPatch.add_member_subclass(:unknown, Types::ConnectionPropertiesPatch::Unknown)
|
|
1862
1874
|
ConnectionPropertiesPatch.struct_class = Types::ConnectionPropertiesPatch
|
|
1863
1875
|
|
|
@@ -6830,6 +6842,25 @@ module Aws::DataZone
|
|
|
6830
6842
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
|
|
6831
6843
|
ValidationException.struct_class = Types::ValidationException
|
|
6832
6844
|
|
|
6845
|
+
VpcConnectionSubnetIdList.member = Shapes::ShapeRef.new(shape: SubnetId)
|
|
6846
|
+
|
|
6847
|
+
VpcPropertiesInput.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcId"))
|
|
6848
|
+
VpcPropertiesInput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: VpcConnectionSubnetIdList, required: true, location_name: "subnetIds"))
|
|
6849
|
+
VpcPropertiesInput.add_member(:security_group_id, Shapes::ShapeRef.new(shape: SecurityGroupId, location_name: "securityGroupId"))
|
|
6850
|
+
VpcPropertiesInput.struct_class = Types::VpcPropertiesInput
|
|
6851
|
+
|
|
6852
|
+
VpcPropertiesOutput.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcId"))
|
|
6853
|
+
VpcPropertiesOutput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: VpcConnectionSubnetIdList, required: true, location_name: "subnetIds"))
|
|
6854
|
+
VpcPropertiesOutput.add_member(:status, Shapes::ShapeRef.new(shape: ConnectionStatus, required: true, location_name: "status"))
|
|
6855
|
+
VpcPropertiesOutput.add_member(:security_group_id, Shapes::ShapeRef.new(shape: SecurityGroupId, location_name: "securityGroupId"))
|
|
6856
|
+
VpcPropertiesOutput.add_member(:glue_connection_names, Shapes::ShapeRef.new(shape: GlueConnectionNames, location_name: "glueConnectionNames"))
|
|
6857
|
+
VpcPropertiesOutput.struct_class = Types::VpcPropertiesOutput
|
|
6858
|
+
|
|
6859
|
+
VpcPropertiesPatch.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
|
6860
|
+
VpcPropertiesPatch.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: VpcConnectionSubnetIdList, location_name: "subnetIds"))
|
|
6861
|
+
VpcPropertiesPatch.add_member(:security_group_id, Shapes::ShapeRef.new(shape: SecurityGroupId, location_name: "securityGroupId"))
|
|
6862
|
+
VpcPropertiesPatch.struct_class = Types::VpcPropertiesPatch
|
|
6863
|
+
|
|
6833
6864
|
WorkflowsMwaaPropertiesInput.add_member(:mwaa_environment_name, Shapes::ShapeRef.new(shape: String, location_name: "mwaaEnvironmentName"))
|
|
6834
6865
|
WorkflowsMwaaPropertiesInput.struct_class = Types::WorkflowsMwaaPropertiesInput
|
|
6835
6866
|
|
|
@@ -2121,6 +2121,10 @@ module Aws::DataZone
|
|
|
2121
2121
|
# The lakehouse properties of a connection.
|
|
2122
2122
|
# @return [Types::LakehousePropertiesInput]
|
|
2123
2123
|
#
|
|
2124
|
+
# @!attribute [rw] vpc_properties
|
|
2125
|
+
# The VPC properties of a connection.
|
|
2126
|
+
# @return [Types::VpcPropertiesInput]
|
|
2127
|
+
#
|
|
2124
2128
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesInput AWS API Documentation
|
|
2125
2129
|
#
|
|
2126
2130
|
class ConnectionPropertiesInput < Struct.new(
|
|
@@ -2137,6 +2141,7 @@ module Aws::DataZone
|
|
|
2137
2141
|
:workflows_mwaa_properties,
|
|
2138
2142
|
:workflows_serverless_properties,
|
|
2139
2143
|
:lakehouse_properties,
|
|
2144
|
+
:vpc_properties,
|
|
2140
2145
|
:unknown)
|
|
2141
2146
|
SENSITIVE = []
|
|
2142
2147
|
include Aws::Structure
|
|
@@ -2155,6 +2160,7 @@ module Aws::DataZone
|
|
|
2155
2160
|
class WorkflowsMwaaProperties < ConnectionPropertiesInput; end
|
|
2156
2161
|
class WorkflowsServerlessProperties < ConnectionPropertiesInput; end
|
|
2157
2162
|
class LakehouseProperties < ConnectionPropertiesInput; end
|
|
2163
|
+
class VpcProperties < ConnectionPropertiesInput; end
|
|
2158
2164
|
class Unknown < ConnectionPropertiesInput; end
|
|
2159
2165
|
end
|
|
2160
2166
|
|
|
@@ -2214,6 +2220,10 @@ module Aws::DataZone
|
|
|
2214
2220
|
# The lakehouse properties of a connection.
|
|
2215
2221
|
# @return [Types::LakehousePropertiesOutput]
|
|
2216
2222
|
#
|
|
2223
|
+
# @!attribute [rw] vpc_properties
|
|
2224
|
+
# The VPC properties of a connection.
|
|
2225
|
+
# @return [Types::VpcPropertiesOutput]
|
|
2226
|
+
#
|
|
2217
2227
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesOutput AWS API Documentation
|
|
2218
2228
|
#
|
|
2219
2229
|
class ConnectionPropertiesOutput < Struct.new(
|
|
@@ -2230,6 +2240,7 @@ module Aws::DataZone
|
|
|
2230
2240
|
:workflows_mwaa_properties,
|
|
2231
2241
|
:workflows_serverless_properties,
|
|
2232
2242
|
:lakehouse_properties,
|
|
2243
|
+
:vpc_properties,
|
|
2233
2244
|
:unknown)
|
|
2234
2245
|
SENSITIVE = []
|
|
2235
2246
|
include Aws::Structure
|
|
@@ -2248,6 +2259,7 @@ module Aws::DataZone
|
|
|
2248
2259
|
class WorkflowsMwaaProperties < ConnectionPropertiesOutput; end
|
|
2249
2260
|
class WorkflowsServerlessProperties < ConnectionPropertiesOutput; end
|
|
2250
2261
|
class LakehouseProperties < ConnectionPropertiesOutput; end
|
|
2262
|
+
class VpcProperties < ConnectionPropertiesOutput; end
|
|
2251
2263
|
class Unknown < ConnectionPropertiesOutput; end
|
|
2252
2264
|
end
|
|
2253
2265
|
|
|
@@ -2292,6 +2304,10 @@ module Aws::DataZone
|
|
|
2292
2304
|
# The lakehouse properties of a connection properties patch.
|
|
2293
2305
|
# @return [Types::LakehousePropertiesPatch]
|
|
2294
2306
|
#
|
|
2307
|
+
# @!attribute [rw] vpc_properties
|
|
2308
|
+
# The VPC properties of a connection properties patch.
|
|
2309
|
+
# @return [Types::VpcPropertiesPatch]
|
|
2310
|
+
#
|
|
2295
2311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesPatch AWS API Documentation
|
|
2296
2312
|
#
|
|
2297
2313
|
class ConnectionPropertiesPatch < Struct.new(
|
|
@@ -2304,6 +2320,7 @@ module Aws::DataZone
|
|
|
2304
2320
|
:amazon_q_properties,
|
|
2305
2321
|
:mlflow_properties,
|
|
2306
2322
|
:lakehouse_properties,
|
|
2323
|
+
:vpc_properties,
|
|
2307
2324
|
:unknown)
|
|
2308
2325
|
SENSITIVE = []
|
|
2309
2326
|
include Aws::Structure
|
|
@@ -2318,6 +2335,7 @@ module Aws::DataZone
|
|
|
2318
2335
|
class AmazonQProperties < ConnectionPropertiesPatch; end
|
|
2319
2336
|
class MlflowProperties < ConnectionPropertiesPatch; end
|
|
2320
2337
|
class LakehouseProperties < ConnectionPropertiesPatch; end
|
|
2338
|
+
class VpcProperties < ConnectionPropertiesPatch; end
|
|
2321
2339
|
class Unknown < ConnectionPropertiesPatch; end
|
|
2322
2340
|
end
|
|
2323
2341
|
|
|
@@ -25150,6 +25168,92 @@ module Aws::DataZone
|
|
|
25150
25168
|
include Aws::Structure
|
|
25151
25169
|
end
|
|
25152
25170
|
|
|
25171
|
+
# The VPC connection properties used when creating a connection.
|
|
25172
|
+
#
|
|
25173
|
+
# @!attribute [rw] vpc_id
|
|
25174
|
+
# The identifier of the VPC. Must match the pattern `^vpc-[a-z0-9]+$`.
|
|
25175
|
+
# Maximum length of 32.
|
|
25176
|
+
# @return [String]
|
|
25177
|
+
#
|
|
25178
|
+
# @!attribute [rw] subnet_ids
|
|
25179
|
+
# The subnet IDs of the VPC connection. You can specify between 1 and
|
|
25180
|
+
# 16 subnet IDs.
|
|
25181
|
+
# @return [Array<String>]
|
|
25182
|
+
#
|
|
25183
|
+
# @!attribute [rw] security_group_id
|
|
25184
|
+
# The security group ID of the VPC connection. Must match the pattern
|
|
25185
|
+
# `^sg-[a-z0-9]+$`. Maximum length of 32.
|
|
25186
|
+
# @return [String]
|
|
25187
|
+
#
|
|
25188
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/VpcPropertiesInput AWS API Documentation
|
|
25189
|
+
#
|
|
25190
|
+
class VpcPropertiesInput < Struct.new(
|
|
25191
|
+
:vpc_id,
|
|
25192
|
+
:subnet_ids,
|
|
25193
|
+
:security_group_id)
|
|
25194
|
+
SENSITIVE = []
|
|
25195
|
+
include Aws::Structure
|
|
25196
|
+
end
|
|
25197
|
+
|
|
25198
|
+
# The VPC connection properties returned in responses.
|
|
25199
|
+
#
|
|
25200
|
+
# @!attribute [rw] vpc_id
|
|
25201
|
+
# The identifier of the VPC.
|
|
25202
|
+
# @return [String]
|
|
25203
|
+
#
|
|
25204
|
+
# @!attribute [rw] subnet_ids
|
|
25205
|
+
# The subnet IDs of the VPC connection.
|
|
25206
|
+
# @return [Array<String>]
|
|
25207
|
+
#
|
|
25208
|
+
# @!attribute [rw] status
|
|
25209
|
+
# The status of the VPC connection.
|
|
25210
|
+
# @return [String]
|
|
25211
|
+
#
|
|
25212
|
+
# @!attribute [rw] security_group_id
|
|
25213
|
+
# The security group ID of the VPC connection.
|
|
25214
|
+
# @return [String]
|
|
25215
|
+
#
|
|
25216
|
+
# @!attribute [rw] glue_connection_names
|
|
25217
|
+
# The Amazon Web Services Glue connection names associated with the
|
|
25218
|
+
# VPC connection.
|
|
25219
|
+
# @return [Array<String>]
|
|
25220
|
+
#
|
|
25221
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/VpcPropertiesOutput AWS API Documentation
|
|
25222
|
+
#
|
|
25223
|
+
class VpcPropertiesOutput < Struct.new(
|
|
25224
|
+
:vpc_id,
|
|
25225
|
+
:subnet_ids,
|
|
25226
|
+
:status,
|
|
25227
|
+
:security_group_id,
|
|
25228
|
+
:glue_connection_names)
|
|
25229
|
+
SENSITIVE = []
|
|
25230
|
+
include Aws::Structure
|
|
25231
|
+
end
|
|
25232
|
+
|
|
25233
|
+
# The VPC connection properties used when updating a connection.
|
|
25234
|
+
#
|
|
25235
|
+
# @!attribute [rw] vpc_id
|
|
25236
|
+
# The identifier of the VPC.
|
|
25237
|
+
# @return [String]
|
|
25238
|
+
#
|
|
25239
|
+
# @!attribute [rw] subnet_ids
|
|
25240
|
+
# The subnet IDs of the VPC connection.
|
|
25241
|
+
# @return [Array<String>]
|
|
25242
|
+
#
|
|
25243
|
+
# @!attribute [rw] security_group_id
|
|
25244
|
+
# The security group ID of the VPC connection.
|
|
25245
|
+
# @return [String]
|
|
25246
|
+
#
|
|
25247
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/VpcPropertiesPatch AWS API Documentation
|
|
25248
|
+
#
|
|
25249
|
+
class VpcPropertiesPatch < Struct.new(
|
|
25250
|
+
:vpc_id,
|
|
25251
|
+
:subnet_ids,
|
|
25252
|
+
:security_group_id)
|
|
25253
|
+
SENSITIVE = []
|
|
25254
|
+
include Aws::Structure
|
|
25255
|
+
end
|
|
25256
|
+
|
|
25153
25257
|
# The Amazon MWAA properties.
|
|
25154
25258
|
#
|
|
25155
25259
|
# @!attribute [rw] mwaa_environment_name
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -497,7 +497,7 @@ module Aws
|
|
|
497
497
|
def physical_endpoints: () -> ::Array[Types::PhysicalEndpoint]
|
|
498
498
|
def project_id: () -> ::String
|
|
499
499
|
def props: () -> Types::ConnectionPropertiesOutput
|
|
500
|
-
def 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")
|
|
500
|
+
def 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" | "VPC")
|
|
501
501
|
def scope: () -> ("DOMAIN" | "PROJECT")
|
|
502
502
|
end
|
|
503
503
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_connection-instance_method
|
|
@@ -643,6 +643,11 @@ module Aws
|
|
|
643
643
|
}?,
|
|
644
644
|
lakehouse_properties: {
|
|
645
645
|
glue_lineage_sync_enabled: bool?
|
|
646
|
+
}?,
|
|
647
|
+
vpc_properties: {
|
|
648
|
+
vpc_id: ::String,
|
|
649
|
+
subnet_ids: Array[::String],
|
|
650
|
+
security_group_id: ::String?
|
|
646
651
|
}?
|
|
647
652
|
},
|
|
648
653
|
?enable_trusted_identity_propagation: bool,
|
|
@@ -1857,7 +1862,7 @@ module Aws
|
|
|
1857
1862
|
def physical_endpoints: () -> ::Array[Types::PhysicalEndpoint]
|
|
1858
1863
|
def project_id: () -> ::String
|
|
1859
1864
|
def props: () -> Types::ConnectionPropertiesOutput
|
|
1860
|
-
def 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")
|
|
1865
|
+
def 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" | "VPC")
|
|
1861
1866
|
def scope: () -> ("DOMAIN" | "PROJECT")
|
|
1862
1867
|
end
|
|
1863
1868
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_connection-instance_method
|
|
@@ -2692,7 +2697,7 @@ module Aws
|
|
|
2692
2697
|
?name: ::String,
|
|
2693
2698
|
?environment_identifier: ::String,
|
|
2694
2699
|
?project_identifier: ::String,
|
|
2695
|
-
?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"),
|
|
2700
|
+
?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" | "VPC"),
|
|
2696
2701
|
?scope: ("DOMAIN" | "PROJECT")
|
|
2697
2702
|
) -> _ListConnectionsResponseSuccess
|
|
2698
2703
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectionsResponseSuccess
|
|
@@ -3782,7 +3787,7 @@ module Aws
|
|
|
3782
3787
|
def physical_endpoints: () -> ::Array[Types::PhysicalEndpoint]
|
|
3783
3788
|
def project_id: () -> ::String
|
|
3784
3789
|
def props: () -> Types::ConnectionPropertiesOutput
|
|
3785
|
-
def 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")
|
|
3790
|
+
def 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" | "VPC")
|
|
3786
3791
|
def scope: () -> ("DOMAIN" | "PROJECT")
|
|
3787
3792
|
end
|
|
3788
3793
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_connection-instance_method
|
|
@@ -3869,6 +3874,11 @@ module Aws
|
|
|
3869
3874
|
}?,
|
|
3870
3875
|
lakehouse_properties: {
|
|
3871
3876
|
glue_lineage_sync_enabled: bool?
|
|
3877
|
+
}?,
|
|
3878
|
+
vpc_properties: {
|
|
3879
|
+
vpc_id: ::String?,
|
|
3880
|
+
subnet_ids: Array[::String]?,
|
|
3881
|
+
security_group_id: ::String?
|
|
3872
3882
|
}?
|
|
3873
3883
|
}
|
|
3874
3884
|
) -> _UpdateConnectionResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -613,6 +613,7 @@ module Aws::DataZone
|
|
|
613
613
|
attr_accessor workflows_mwaa_properties: Types::WorkflowsMwaaPropertiesInput
|
|
614
614
|
attr_accessor workflows_serverless_properties: Types::WorkflowsServerlessPropertiesInput
|
|
615
615
|
attr_accessor lakehouse_properties: Types::LakehousePropertiesInput
|
|
616
|
+
attr_accessor vpc_properties: Types::VpcPropertiesInput
|
|
616
617
|
attr_accessor unknown: untyped
|
|
617
618
|
SENSITIVE: []
|
|
618
619
|
|
|
@@ -642,6 +643,8 @@ module Aws::DataZone
|
|
|
642
643
|
end
|
|
643
644
|
class LakehouseProperties < ConnectionPropertiesInput
|
|
644
645
|
end
|
|
646
|
+
class VpcProperties < ConnectionPropertiesInput
|
|
647
|
+
end
|
|
645
648
|
class Unknown < ConnectionPropertiesInput
|
|
646
649
|
end
|
|
647
650
|
end
|
|
@@ -660,6 +663,7 @@ module Aws::DataZone
|
|
|
660
663
|
attr_accessor workflows_mwaa_properties: Types::WorkflowsMwaaPropertiesOutput
|
|
661
664
|
attr_accessor workflows_serverless_properties: Types::WorkflowsServerlessPropertiesOutput
|
|
662
665
|
attr_accessor lakehouse_properties: Types::LakehousePropertiesOutput
|
|
666
|
+
attr_accessor vpc_properties: Types::VpcPropertiesOutput
|
|
663
667
|
attr_accessor unknown: untyped
|
|
664
668
|
SENSITIVE: []
|
|
665
669
|
|
|
@@ -689,6 +693,8 @@ module Aws::DataZone
|
|
|
689
693
|
end
|
|
690
694
|
class LakehouseProperties < ConnectionPropertiesOutput
|
|
691
695
|
end
|
|
696
|
+
class VpcProperties < ConnectionPropertiesOutput
|
|
697
|
+
end
|
|
692
698
|
class Unknown < ConnectionPropertiesOutput
|
|
693
699
|
end
|
|
694
700
|
end
|
|
@@ -703,6 +709,7 @@ module Aws::DataZone
|
|
|
703
709
|
attr_accessor amazon_q_properties: Types::AmazonQPropertiesPatch
|
|
704
710
|
attr_accessor mlflow_properties: Types::MlflowPropertiesPatch
|
|
705
711
|
attr_accessor lakehouse_properties: Types::LakehousePropertiesPatch
|
|
712
|
+
attr_accessor vpc_properties: Types::VpcPropertiesPatch
|
|
706
713
|
attr_accessor unknown: untyped
|
|
707
714
|
SENSITIVE: []
|
|
708
715
|
|
|
@@ -724,6 +731,8 @@ module Aws::DataZone
|
|
|
724
731
|
end
|
|
725
732
|
class LakehouseProperties < ConnectionPropertiesPatch
|
|
726
733
|
end
|
|
734
|
+
class VpcProperties < ConnectionPropertiesPatch
|
|
735
|
+
end
|
|
727
736
|
class Unknown < ConnectionPropertiesPatch
|
|
728
737
|
end
|
|
729
738
|
end
|
|
@@ -738,7 +747,7 @@ module Aws::DataZone
|
|
|
738
747
|
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
|
739
748
|
attr_accessor project_id: ::String
|
|
740
749
|
attr_accessor props: Types::ConnectionPropertiesOutput
|
|
741
|
-
attr_accessor 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")
|
|
750
|
+
attr_accessor 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" | "VPC")
|
|
742
751
|
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
|
743
752
|
SENSITIVE: []
|
|
744
753
|
end
|
|
@@ -923,7 +932,7 @@ module Aws::DataZone
|
|
|
923
932
|
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
|
924
933
|
attr_accessor project_id: ::String
|
|
925
934
|
attr_accessor props: Types::ConnectionPropertiesOutput
|
|
926
|
-
attr_accessor 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")
|
|
935
|
+
attr_accessor 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" | "VPC")
|
|
927
936
|
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
|
928
937
|
SENSITIVE: [:description]
|
|
929
938
|
end
|
|
@@ -2523,7 +2532,7 @@ module Aws::DataZone
|
|
|
2523
2532
|
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
|
2524
2533
|
attr_accessor project_id: ::String
|
|
2525
2534
|
attr_accessor props: Types::ConnectionPropertiesOutput
|
|
2526
|
-
attr_accessor 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")
|
|
2535
|
+
attr_accessor 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" | "VPC")
|
|
2527
2536
|
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
|
2528
2537
|
SENSITIVE: [:connection_credentials, :description]
|
|
2529
2538
|
end
|
|
@@ -3334,7 +3343,7 @@ module Aws::DataZone
|
|
|
3334
3343
|
class GlueConnection
|
|
3335
3344
|
attr_accessor name: ::String
|
|
3336
3345
|
attr_accessor description: ::String
|
|
3337
|
-
attr_accessor connection_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")
|
|
3346
|
+
attr_accessor connection_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" | "VPC")
|
|
3338
3347
|
attr_accessor match_criteria: ::Array[::String]
|
|
3339
3348
|
attr_accessor connection_properties: ::Hash[::String, ::String]
|
|
3340
3349
|
attr_accessor spark_properties: ::Hash[::String, ::String]
|
|
@@ -3775,7 +3784,7 @@ module Aws::DataZone
|
|
|
3775
3784
|
attr_accessor name: ::String
|
|
3776
3785
|
attr_accessor environment_identifier: ::String
|
|
3777
3786
|
attr_accessor project_identifier: ::String
|
|
3778
|
-
attr_accessor 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")
|
|
3787
|
+
attr_accessor 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" | "VPC")
|
|
3779
3788
|
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
|
3780
3789
|
SENSITIVE: []
|
|
3781
3790
|
end
|
|
@@ -6239,7 +6248,7 @@ module Aws::DataZone
|
|
|
6239
6248
|
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
|
6240
6249
|
attr_accessor project_id: ::String
|
|
6241
6250
|
attr_accessor props: Types::ConnectionPropertiesOutput
|
|
6242
|
-
attr_accessor 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")
|
|
6251
|
+
attr_accessor 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" | "VPC")
|
|
6243
6252
|
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
|
6244
6253
|
SENSITIVE: [:description]
|
|
6245
6254
|
end
|
|
@@ -6805,6 +6814,29 @@ module Aws::DataZone
|
|
|
6805
6814
|
SENSITIVE: []
|
|
6806
6815
|
end
|
|
6807
6816
|
|
|
6817
|
+
class VpcPropertiesInput
|
|
6818
|
+
attr_accessor vpc_id: ::String
|
|
6819
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
6820
|
+
attr_accessor security_group_id: ::String
|
|
6821
|
+
SENSITIVE: []
|
|
6822
|
+
end
|
|
6823
|
+
|
|
6824
|
+
class VpcPropertiesOutput
|
|
6825
|
+
attr_accessor vpc_id: ::String
|
|
6826
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
6827
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "READY" | "UPDATING" | "UPDATE_FAILED" | "DELETED")
|
|
6828
|
+
attr_accessor security_group_id: ::String
|
|
6829
|
+
attr_accessor glue_connection_names: ::Array[::String]
|
|
6830
|
+
SENSITIVE: []
|
|
6831
|
+
end
|
|
6832
|
+
|
|
6833
|
+
class VpcPropertiesPatch
|
|
6834
|
+
attr_accessor vpc_id: ::String
|
|
6835
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
6836
|
+
attr_accessor security_group_id: ::String
|
|
6837
|
+
SENSITIVE: []
|
|
6838
|
+
end
|
|
6839
|
+
|
|
6808
6840
|
class WorkflowsMwaaPropertiesInput
|
|
6809
6841
|
attr_accessor mwaa_environment_name: ::String
|
|
6810
6842
|
SENSITIVE: []
|