aws-sdk-datazone 1.85.0 → 1.86.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 +39 -10
- data/lib/aws-sdk-datazone/client_api.rb +33 -0
- data/lib/aws-sdk-datazone/types.rb +105 -0
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +13 -4
- data/sig/types.rbs +37 -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: ef18f06bc0580fa956604cbf70b7aaf231ffd1c3e46bd95e98e41e4fb3711979
|
|
4
|
+
data.tar.gz: 418941d3cf90231ea51bdfd172d57aad39c4927ea4662d352c2640582a31f082
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41fdaabf0296b4e75c65b63517c126d603abc0c2584bd2190713769179102f9b16d7894d93e184d9f15b3f2f976eefd741a844f873af60eb74da5f2ecabd07d0
|
|
7
|
+
data.tar.gz: 209ce6feb22a73a5a2c49ccbfd949b9f7b1ee10d9d16614ad04ccef1b2166607d7d053a0bb2d9e0dbecf79504b22365f2faf84d21ef23af2dafa1d3a3e4081d8
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.86.0
|
|
@@ -2159,6 +2159,11 @@ module Aws::DataZone
|
|
|
2159
2159
|
# subnet_ids: ["SubnetId"], # required
|
|
2160
2160
|
# security_group_id: "SecurityGroupId",
|
|
2161
2161
|
# },
|
|
2162
|
+
# git_properties: {
|
|
2163
|
+
# code_connection_arn: "GitPropertiesInputCodeConnectionArnString", # required
|
|
2164
|
+
# repository_id: "GitPropertiesInputRepositoryIdString", # required
|
|
2165
|
+
# default_branch: "GitPropertiesInputDefaultBranchString", # required
|
|
2166
|
+
# },
|
|
2162
2167
|
# },
|
|
2163
2168
|
# enable_trusted_identity_propagation: false,
|
|
2164
2169
|
# scope: "DOMAIN", # accepts DOMAIN, PROJECT
|
|
@@ -2186,7 +2191,7 @@ module Aws::DataZone
|
|
|
2186
2191
|
# resp.physical_endpoints[0].glue_connection_names[0] #=> String
|
|
2187
2192
|
# resp.physical_endpoints[0].glue_connection.name #=> String
|
|
2188
2193
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
|
2189
|
-
# 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"
|
|
2194
|
+
# 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", "GIT"
|
|
2190
2195
|
# resp.physical_endpoints[0].glue_connection.match_criteria #=> Array
|
|
2191
2196
|
# resp.physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
|
2192
2197
|
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
|
@@ -2307,7 +2312,12 @@ module Aws::DataZone
|
|
|
2307
2312
|
# resp.props.vpc_properties.security_group_id #=> String
|
|
2308
2313
|
# resp.props.vpc_properties.glue_connection_names #=> Array
|
|
2309
2314
|
# resp.props.vpc_properties.glue_connection_names[0] #=> String
|
|
2310
|
-
# resp.
|
|
2315
|
+
# resp.props.git_properties.code_connection_arn #=> String
|
|
2316
|
+
# resp.props.git_properties.repository_id #=> String
|
|
2317
|
+
# resp.props.git_properties.default_branch #=> String
|
|
2318
|
+
# resp.props.git_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
2319
|
+
# resp.props.git_properties.error_message #=> String
|
|
2320
|
+
# 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", "GIT"
|
|
2311
2321
|
# resp.scope #=> String, one of "DOMAIN", "PROJECT"
|
|
2312
2322
|
#
|
|
2313
2323
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateConnection AWS API Documentation
|
|
@@ -6368,7 +6378,7 @@ module Aws::DataZone
|
|
|
6368
6378
|
# resp.physical_endpoints[0].glue_connection_names[0] #=> String
|
|
6369
6379
|
# resp.physical_endpoints[0].glue_connection.name #=> String
|
|
6370
6380
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
|
6371
|
-
# 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"
|
|
6381
|
+
# 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", "GIT"
|
|
6372
6382
|
# resp.physical_endpoints[0].glue_connection.match_criteria #=> Array
|
|
6373
6383
|
# resp.physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
|
6374
6384
|
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
|
@@ -6489,7 +6499,12 @@ module Aws::DataZone
|
|
|
6489
6499
|
# resp.props.vpc_properties.security_group_id #=> String
|
|
6490
6500
|
# resp.props.vpc_properties.glue_connection_names #=> Array
|
|
6491
6501
|
# resp.props.vpc_properties.glue_connection_names[0] #=> String
|
|
6492
|
-
# resp.
|
|
6502
|
+
# resp.props.git_properties.code_connection_arn #=> String
|
|
6503
|
+
# resp.props.git_properties.repository_id #=> String
|
|
6504
|
+
# resp.props.git_properties.default_branch #=> String
|
|
6505
|
+
# resp.props.git_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
6506
|
+
# resp.props.git_properties.error_message #=> String
|
|
6507
|
+
# 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", "GIT"
|
|
6493
6508
|
# resp.scope #=> String, one of "DOMAIN", "PROJECT"
|
|
6494
6509
|
#
|
|
6495
6510
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetConnection AWS API Documentation
|
|
@@ -9188,7 +9203,7 @@ module Aws::DataZone
|
|
|
9188
9203
|
# name: "ConnectionName",
|
|
9189
9204
|
# environment_identifier: "EnvironmentId",
|
|
9190
9205
|
# project_identifier: "ProjectId",
|
|
9191
|
-
# 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
|
|
9206
|
+
# 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, GIT
|
|
9192
9207
|
# scope: "DOMAIN", # accepts DOMAIN, PROJECT
|
|
9193
9208
|
# })
|
|
9194
9209
|
#
|
|
@@ -9214,7 +9229,7 @@ module Aws::DataZone
|
|
|
9214
9229
|
# resp.items[0].physical_endpoints[0].glue_connection_names[0] #=> String
|
|
9215
9230
|
# resp.items[0].physical_endpoints[0].glue_connection.name #=> String
|
|
9216
9231
|
# resp.items[0].physical_endpoints[0].glue_connection.description #=> String
|
|
9217
|
-
# 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"
|
|
9232
|
+
# 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", "GIT"
|
|
9218
9233
|
# resp.items[0].physical_endpoints[0].glue_connection.match_criteria #=> Array
|
|
9219
9234
|
# resp.items[0].physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
|
9220
9235
|
# resp.items[0].physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
|
@@ -9335,7 +9350,12 @@ module Aws::DataZone
|
|
|
9335
9350
|
# resp.items[0].props.vpc_properties.security_group_id #=> String
|
|
9336
9351
|
# resp.items[0].props.vpc_properties.glue_connection_names #=> Array
|
|
9337
9352
|
# resp.items[0].props.vpc_properties.glue_connection_names[0] #=> String
|
|
9338
|
-
# resp.items[0].
|
|
9353
|
+
# resp.items[0].props.git_properties.code_connection_arn #=> String
|
|
9354
|
+
# resp.items[0].props.git_properties.repository_id #=> String
|
|
9355
|
+
# resp.items[0].props.git_properties.default_branch #=> String
|
|
9356
|
+
# resp.items[0].props.git_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
9357
|
+
# resp.items[0].props.git_properties.error_message #=> String
|
|
9358
|
+
# 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", "GIT"
|
|
9339
9359
|
# resp.items[0].scope #=> String, one of "DOMAIN", "PROJECT"
|
|
9340
9360
|
# resp.next_token #=> String
|
|
9341
9361
|
#
|
|
@@ -14492,6 +14512,10 @@ module Aws::DataZone
|
|
|
14492
14512
|
# subnet_ids: ["SubnetId"],
|
|
14493
14513
|
# security_group_id: "SecurityGroupId",
|
|
14494
14514
|
# },
|
|
14515
|
+
# git_properties: {
|
|
14516
|
+
# code_connection_arn: "GitPropertiesPatchCodeConnectionArnString",
|
|
14517
|
+
# default_branch: "GitPropertiesPatchDefaultBranchString",
|
|
14518
|
+
# },
|
|
14495
14519
|
# },
|
|
14496
14520
|
# })
|
|
14497
14521
|
#
|
|
@@ -14517,7 +14541,7 @@ module Aws::DataZone
|
|
|
14517
14541
|
# resp.physical_endpoints[0].glue_connection_names[0] #=> String
|
|
14518
14542
|
# resp.physical_endpoints[0].glue_connection.name #=> String
|
|
14519
14543
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
|
14520
|
-
# 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"
|
|
14544
|
+
# 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", "GIT"
|
|
14521
14545
|
# resp.physical_endpoints[0].glue_connection.match_criteria #=> Array
|
|
14522
14546
|
# resp.physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
|
14523
14547
|
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
|
@@ -14638,7 +14662,12 @@ module Aws::DataZone
|
|
|
14638
14662
|
# resp.props.vpc_properties.security_group_id #=> String
|
|
14639
14663
|
# resp.props.vpc_properties.glue_connection_names #=> Array
|
|
14640
14664
|
# resp.props.vpc_properties.glue_connection_names[0] #=> String
|
|
14641
|
-
# resp.
|
|
14665
|
+
# resp.props.git_properties.code_connection_arn #=> String
|
|
14666
|
+
# resp.props.git_properties.repository_id #=> String
|
|
14667
|
+
# resp.props.git_properties.default_branch #=> String
|
|
14668
|
+
# resp.props.git_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
14669
|
+
# resp.props.git_properties.error_message #=> String
|
|
14670
|
+
# 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", "GIT"
|
|
14642
14671
|
# resp.scope #=> String, one of "DOMAIN", "PROJECT"
|
|
14643
14672
|
#
|
|
14644
14673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateConnection AWS API Documentation
|
|
@@ -16590,7 +16619,7 @@ module Aws::DataZone
|
|
|
16590
16619
|
tracer: tracer
|
|
16591
16620
|
)
|
|
16592
16621
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
16593
|
-
context[:gem_version] = '1.
|
|
16622
|
+
context[:gem_version] = '1.86.0'
|
|
16594
16623
|
Seahorse::Client::Request.new(handlers, context)
|
|
16595
16624
|
end
|
|
16596
16625
|
|
|
@@ -576,6 +576,17 @@ module Aws::DataZone
|
|
|
576
576
|
GitBranch = Shapes::StringShape.new(name: 'GitBranch')
|
|
577
577
|
GitConnectionId = Shapes::StringShape.new(name: 'GitConnectionId')
|
|
578
578
|
GitMetadata = Shapes::StructureShape.new(name: 'GitMetadata')
|
|
579
|
+
GitPropertiesInput = Shapes::StructureShape.new(name: 'GitPropertiesInput')
|
|
580
|
+
GitPropertiesInputCodeConnectionArnString = Shapes::StringShape.new(name: 'GitPropertiesInputCodeConnectionArnString')
|
|
581
|
+
GitPropertiesInputDefaultBranchString = Shapes::StringShape.new(name: 'GitPropertiesInputDefaultBranchString')
|
|
582
|
+
GitPropertiesInputRepositoryIdString = Shapes::StringShape.new(name: 'GitPropertiesInputRepositoryIdString')
|
|
583
|
+
GitPropertiesOutput = Shapes::StructureShape.new(name: 'GitPropertiesOutput')
|
|
584
|
+
GitPropertiesOutputCodeConnectionArnString = Shapes::StringShape.new(name: 'GitPropertiesOutputCodeConnectionArnString')
|
|
585
|
+
GitPropertiesOutputDefaultBranchString = Shapes::StringShape.new(name: 'GitPropertiesOutputDefaultBranchString')
|
|
586
|
+
GitPropertiesOutputRepositoryIdString = Shapes::StringShape.new(name: 'GitPropertiesOutputRepositoryIdString')
|
|
587
|
+
GitPropertiesPatch = Shapes::StructureShape.new(name: 'GitPropertiesPatch')
|
|
588
|
+
GitPropertiesPatchCodeConnectionArnString = Shapes::StringShape.new(name: 'GitPropertiesPatchCodeConnectionArnString')
|
|
589
|
+
GitPropertiesPatchDefaultBranchString = Shapes::StringShape.new(name: 'GitPropertiesPatchDefaultBranchString')
|
|
579
590
|
GitRepository = Shapes::StringShape.new(name: 'GitRepository')
|
|
580
591
|
GlobalParameterMap = Shapes::MapShape.new(name: 'GlobalParameterMap')
|
|
581
592
|
GlossaryDescription = Shapes::StringShape.new(name: 'GlossaryDescription')
|
|
@@ -1830,6 +1841,7 @@ module Aws::DataZone
|
|
|
1830
1841
|
ConnectionPropertiesInput.add_member(:workflows_serverless_properties, Shapes::ShapeRef.new(shape: WorkflowsServerlessPropertiesInput, location_name: "workflowsServerlessProperties"))
|
|
1831
1842
|
ConnectionPropertiesInput.add_member(:lakehouse_properties, Shapes::ShapeRef.new(shape: LakehousePropertiesInput, location_name: "lakehouseProperties"))
|
|
1832
1843
|
ConnectionPropertiesInput.add_member(:vpc_properties, Shapes::ShapeRef.new(shape: VpcPropertiesInput, location_name: "vpcProperties"))
|
|
1844
|
+
ConnectionPropertiesInput.add_member(:git_properties, Shapes::ShapeRef.new(shape: GitPropertiesInput, location_name: "gitProperties"))
|
|
1833
1845
|
ConnectionPropertiesInput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1834
1846
|
ConnectionPropertiesInput.add_member_subclass(:athena_properties, Types::ConnectionPropertiesInput::AthenaProperties)
|
|
1835
1847
|
ConnectionPropertiesInput.add_member_subclass(:glue_properties, Types::ConnectionPropertiesInput::GlueProperties)
|
|
@@ -1846,6 +1858,7 @@ module Aws::DataZone
|
|
|
1846
1858
|
ConnectionPropertiesInput.add_member_subclass(:workflows_serverless_properties, Types::ConnectionPropertiesInput::WorkflowsServerlessProperties)
|
|
1847
1859
|
ConnectionPropertiesInput.add_member_subclass(:lakehouse_properties, Types::ConnectionPropertiesInput::LakehouseProperties)
|
|
1848
1860
|
ConnectionPropertiesInput.add_member_subclass(:vpc_properties, Types::ConnectionPropertiesInput::VpcProperties)
|
|
1861
|
+
ConnectionPropertiesInput.add_member_subclass(:git_properties, Types::ConnectionPropertiesInput::GitProperties)
|
|
1849
1862
|
ConnectionPropertiesInput.add_member_subclass(:unknown, Types::ConnectionPropertiesInput::Unknown)
|
|
1850
1863
|
ConnectionPropertiesInput.struct_class = Types::ConnectionPropertiesInput
|
|
1851
1864
|
|
|
@@ -1864,6 +1877,7 @@ module Aws::DataZone
|
|
|
1864
1877
|
ConnectionPropertiesOutput.add_member(:workflows_serverless_properties, Shapes::ShapeRef.new(shape: WorkflowsServerlessPropertiesOutput, location_name: "workflowsServerlessProperties"))
|
|
1865
1878
|
ConnectionPropertiesOutput.add_member(:lakehouse_properties, Shapes::ShapeRef.new(shape: LakehousePropertiesOutput, location_name: "lakehouseProperties"))
|
|
1866
1879
|
ConnectionPropertiesOutput.add_member(:vpc_properties, Shapes::ShapeRef.new(shape: VpcPropertiesOutput, location_name: "vpcProperties"))
|
|
1880
|
+
ConnectionPropertiesOutput.add_member(:git_properties, Shapes::ShapeRef.new(shape: GitPropertiesOutput, location_name: "gitProperties"))
|
|
1867
1881
|
ConnectionPropertiesOutput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1868
1882
|
ConnectionPropertiesOutput.add_member_subclass(:athena_properties, Types::ConnectionPropertiesOutput::AthenaProperties)
|
|
1869
1883
|
ConnectionPropertiesOutput.add_member_subclass(:glue_properties, Types::ConnectionPropertiesOutput::GlueProperties)
|
|
@@ -1880,6 +1894,7 @@ module Aws::DataZone
|
|
|
1880
1894
|
ConnectionPropertiesOutput.add_member_subclass(:workflows_serverless_properties, Types::ConnectionPropertiesOutput::WorkflowsServerlessProperties)
|
|
1881
1895
|
ConnectionPropertiesOutput.add_member_subclass(:lakehouse_properties, Types::ConnectionPropertiesOutput::LakehouseProperties)
|
|
1882
1896
|
ConnectionPropertiesOutput.add_member_subclass(:vpc_properties, Types::ConnectionPropertiesOutput::VpcProperties)
|
|
1897
|
+
ConnectionPropertiesOutput.add_member_subclass(:git_properties, Types::ConnectionPropertiesOutput::GitProperties)
|
|
1883
1898
|
ConnectionPropertiesOutput.add_member_subclass(:unknown, Types::ConnectionPropertiesOutput::Unknown)
|
|
1884
1899
|
ConnectionPropertiesOutput.struct_class = Types::ConnectionPropertiesOutput
|
|
1885
1900
|
|
|
@@ -1894,6 +1909,7 @@ module Aws::DataZone
|
|
|
1894
1909
|
ConnectionPropertiesPatch.add_member(:mlflow_properties, Shapes::ShapeRef.new(shape: MlflowPropertiesPatch, location_name: "mlflowProperties"))
|
|
1895
1910
|
ConnectionPropertiesPatch.add_member(:lakehouse_properties, Shapes::ShapeRef.new(shape: LakehousePropertiesPatch, location_name: "lakehouseProperties"))
|
|
1896
1911
|
ConnectionPropertiesPatch.add_member(:vpc_properties, Shapes::ShapeRef.new(shape: VpcPropertiesPatch, location_name: "vpcProperties"))
|
|
1912
|
+
ConnectionPropertiesPatch.add_member(:git_properties, Shapes::ShapeRef.new(shape: GitPropertiesPatch, location_name: "gitProperties"))
|
|
1897
1913
|
ConnectionPropertiesPatch.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1898
1914
|
ConnectionPropertiesPatch.add_member_subclass(:athena_properties, Types::ConnectionPropertiesPatch::AthenaProperties)
|
|
1899
1915
|
ConnectionPropertiesPatch.add_member_subclass(:glue_properties, Types::ConnectionPropertiesPatch::GlueProperties)
|
|
@@ -1906,6 +1922,7 @@ module Aws::DataZone
|
|
|
1906
1922
|
ConnectionPropertiesPatch.add_member_subclass(:mlflow_properties, Types::ConnectionPropertiesPatch::MlflowProperties)
|
|
1907
1923
|
ConnectionPropertiesPatch.add_member_subclass(:lakehouse_properties, Types::ConnectionPropertiesPatch::LakehouseProperties)
|
|
1908
1924
|
ConnectionPropertiesPatch.add_member_subclass(:vpc_properties, Types::ConnectionPropertiesPatch::VpcProperties)
|
|
1925
|
+
ConnectionPropertiesPatch.add_member_subclass(:git_properties, Types::ConnectionPropertiesPatch::GitProperties)
|
|
1909
1926
|
ConnectionPropertiesPatch.add_member_subclass(:unknown, Types::ConnectionPropertiesPatch::Unknown)
|
|
1910
1927
|
ConnectionPropertiesPatch.struct_class = Types::ConnectionPropertiesPatch
|
|
1911
1928
|
|
|
@@ -4094,6 +4111,22 @@ module Aws::DataZone
|
|
|
4094
4111
|
GitMetadata.add_member(:commit_message, Shapes::ShapeRef.new(shape: CommitMessage, location_name: "commitMessage"))
|
|
4095
4112
|
GitMetadata.struct_class = Types::GitMetadata
|
|
4096
4113
|
|
|
4114
|
+
GitPropertiesInput.add_member(:code_connection_arn, Shapes::ShapeRef.new(shape: GitPropertiesInputCodeConnectionArnString, required: true, location_name: "codeConnectionArn"))
|
|
4115
|
+
GitPropertiesInput.add_member(:repository_id, Shapes::ShapeRef.new(shape: GitPropertiesInputRepositoryIdString, required: true, location_name: "repositoryId"))
|
|
4116
|
+
GitPropertiesInput.add_member(:default_branch, Shapes::ShapeRef.new(shape: GitPropertiesInputDefaultBranchString, required: true, location_name: "defaultBranch"))
|
|
4117
|
+
GitPropertiesInput.struct_class = Types::GitPropertiesInput
|
|
4118
|
+
|
|
4119
|
+
GitPropertiesOutput.add_member(:code_connection_arn, Shapes::ShapeRef.new(shape: GitPropertiesOutputCodeConnectionArnString, required: true, location_name: "codeConnectionArn"))
|
|
4120
|
+
GitPropertiesOutput.add_member(:repository_id, Shapes::ShapeRef.new(shape: GitPropertiesOutputRepositoryIdString, required: true, location_name: "repositoryId"))
|
|
4121
|
+
GitPropertiesOutput.add_member(:default_branch, Shapes::ShapeRef.new(shape: GitPropertiesOutputDefaultBranchString, required: true, location_name: "defaultBranch"))
|
|
4122
|
+
GitPropertiesOutput.add_member(:status, Shapes::ShapeRef.new(shape: ConnectionStatus, location_name: "status"))
|
|
4123
|
+
GitPropertiesOutput.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "errorMessage"))
|
|
4124
|
+
GitPropertiesOutput.struct_class = Types::GitPropertiesOutput
|
|
4125
|
+
|
|
4126
|
+
GitPropertiesPatch.add_member(:code_connection_arn, Shapes::ShapeRef.new(shape: GitPropertiesPatchCodeConnectionArnString, location_name: "codeConnectionArn"))
|
|
4127
|
+
GitPropertiesPatch.add_member(:default_branch, Shapes::ShapeRef.new(shape: GitPropertiesPatchDefaultBranchString, location_name: "defaultBranch"))
|
|
4128
|
+
GitPropertiesPatch.struct_class = Types::GitPropertiesPatch
|
|
4129
|
+
|
|
4097
4130
|
GlobalParameterMap.key = Shapes::ShapeRef.new(shape: String)
|
|
4098
4131
|
GlobalParameterMap.value = Shapes::ShapeRef.new(shape: String)
|
|
4099
4132
|
|
|
@@ -2130,6 +2130,10 @@ module Aws::DataZone
|
|
|
2130
2130
|
# The VPC properties of a connection.
|
|
2131
2131
|
# @return [Types::VpcPropertiesInput]
|
|
2132
2132
|
#
|
|
2133
|
+
# @!attribute [rw] git_properties
|
|
2134
|
+
# The Git properties of a connection.
|
|
2135
|
+
# @return [Types::GitPropertiesInput]
|
|
2136
|
+
#
|
|
2133
2137
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesInput AWS API Documentation
|
|
2134
2138
|
#
|
|
2135
2139
|
class ConnectionPropertiesInput < Struct.new(
|
|
@@ -2148,6 +2152,7 @@ module Aws::DataZone
|
|
|
2148
2152
|
:workflows_serverless_properties,
|
|
2149
2153
|
:lakehouse_properties,
|
|
2150
2154
|
:vpc_properties,
|
|
2155
|
+
:git_properties,
|
|
2151
2156
|
:unknown)
|
|
2152
2157
|
SENSITIVE = []
|
|
2153
2158
|
include Aws::Structure
|
|
@@ -2168,6 +2173,7 @@ module Aws::DataZone
|
|
|
2168
2173
|
class WorkflowsServerlessProperties < ConnectionPropertiesInput; end
|
|
2169
2174
|
class LakehouseProperties < ConnectionPropertiesInput; end
|
|
2170
2175
|
class VpcProperties < ConnectionPropertiesInput; end
|
|
2176
|
+
class GitProperties < ConnectionPropertiesInput; end
|
|
2171
2177
|
class Unknown < ConnectionPropertiesInput; end
|
|
2172
2178
|
end
|
|
2173
2179
|
|
|
@@ -2236,6 +2242,10 @@ module Aws::DataZone
|
|
|
2236
2242
|
# The VPC properties of a connection.
|
|
2237
2243
|
# @return [Types::VpcPropertiesOutput]
|
|
2238
2244
|
#
|
|
2245
|
+
# @!attribute [rw] git_properties
|
|
2246
|
+
# The Git properties of a connection.
|
|
2247
|
+
# @return [Types::GitPropertiesOutput]
|
|
2248
|
+
#
|
|
2239
2249
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesOutput AWS API Documentation
|
|
2240
2250
|
#
|
|
2241
2251
|
class ConnectionPropertiesOutput < Struct.new(
|
|
@@ -2254,6 +2264,7 @@ module Aws::DataZone
|
|
|
2254
2264
|
:workflows_serverless_properties,
|
|
2255
2265
|
:lakehouse_properties,
|
|
2256
2266
|
:vpc_properties,
|
|
2267
|
+
:git_properties,
|
|
2257
2268
|
:unknown)
|
|
2258
2269
|
SENSITIVE = []
|
|
2259
2270
|
include Aws::Structure
|
|
@@ -2274,6 +2285,7 @@ module Aws::DataZone
|
|
|
2274
2285
|
class WorkflowsServerlessProperties < ConnectionPropertiesOutput; end
|
|
2275
2286
|
class LakehouseProperties < ConnectionPropertiesOutput; end
|
|
2276
2287
|
class VpcProperties < ConnectionPropertiesOutput; end
|
|
2288
|
+
class GitProperties < ConnectionPropertiesOutput; end
|
|
2277
2289
|
class Unknown < ConnectionPropertiesOutput; end
|
|
2278
2290
|
end
|
|
2279
2291
|
|
|
@@ -2326,6 +2338,10 @@ module Aws::DataZone
|
|
|
2326
2338
|
# The VPC properties of a connection properties patch.
|
|
2327
2339
|
# @return [Types::VpcPropertiesPatch]
|
|
2328
2340
|
#
|
|
2341
|
+
# @!attribute [rw] git_properties
|
|
2342
|
+
# The Git properties of a connection properties patch.
|
|
2343
|
+
# @return [Types::GitPropertiesPatch]
|
|
2344
|
+
#
|
|
2329
2345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesPatch AWS API Documentation
|
|
2330
2346
|
#
|
|
2331
2347
|
class ConnectionPropertiesPatch < Struct.new(
|
|
@@ -2340,6 +2356,7 @@ module Aws::DataZone
|
|
|
2340
2356
|
:mlflow_properties,
|
|
2341
2357
|
:lakehouse_properties,
|
|
2342
2358
|
:vpc_properties,
|
|
2359
|
+
:git_properties,
|
|
2343
2360
|
:unknown)
|
|
2344
2361
|
SENSITIVE = []
|
|
2345
2362
|
include Aws::Structure
|
|
@@ -2356,6 +2373,7 @@ module Aws::DataZone
|
|
|
2356
2373
|
class MlflowProperties < ConnectionPropertiesPatch; end
|
|
2357
2374
|
class LakehouseProperties < ConnectionPropertiesPatch; end
|
|
2358
2375
|
class VpcProperties < ConnectionPropertiesPatch; end
|
|
2376
|
+
class GitProperties < ConnectionPropertiesPatch; end
|
|
2359
2377
|
class Unknown < ConnectionPropertiesPatch; end
|
|
2360
2378
|
end
|
|
2361
2379
|
|
|
@@ -12462,6 +12480,93 @@ module Aws::DataZone
|
|
|
12462
12480
|
include Aws::Structure
|
|
12463
12481
|
end
|
|
12464
12482
|
|
|
12483
|
+
# Contains the Git connection properties that you specify when creating
|
|
12484
|
+
# a Git connection.
|
|
12485
|
+
#
|
|
12486
|
+
# @!attribute [rw] code_connection_arn
|
|
12487
|
+
# The ARN of the CodeConnections connection used to connect to the Git
|
|
12488
|
+
# repository.
|
|
12489
|
+
# @return [String]
|
|
12490
|
+
#
|
|
12491
|
+
# @!attribute [rw] repository_id
|
|
12492
|
+
# The ID of the Git repository. This is the owner and repository name,
|
|
12493
|
+
# for example, owner/repo-name.
|
|
12494
|
+
# @return [String]
|
|
12495
|
+
#
|
|
12496
|
+
# @!attribute [rw] default_branch
|
|
12497
|
+
# The default branch of the Git repository.
|
|
12498
|
+
# @return [String]
|
|
12499
|
+
#
|
|
12500
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GitPropertiesInput AWS API Documentation
|
|
12501
|
+
#
|
|
12502
|
+
class GitPropertiesInput < Struct.new(
|
|
12503
|
+
:code_connection_arn,
|
|
12504
|
+
:repository_id,
|
|
12505
|
+
:default_branch)
|
|
12506
|
+
SENSITIVE = []
|
|
12507
|
+
include Aws::Structure
|
|
12508
|
+
end
|
|
12509
|
+
|
|
12510
|
+
# The properties of a Git connection returned by get and list
|
|
12511
|
+
# operations, including connection status and any error details.
|
|
12512
|
+
#
|
|
12513
|
+
# @!attribute [rw] code_connection_arn
|
|
12514
|
+
# The ARN of the CodeConnections connection used to connect to the Git
|
|
12515
|
+
# repository.
|
|
12516
|
+
# @return [String]
|
|
12517
|
+
#
|
|
12518
|
+
# @!attribute [rw] repository_id
|
|
12519
|
+
# The ID of the Git repository. This is the owner and repository name,
|
|
12520
|
+
# for example, owner/repo-name.
|
|
12521
|
+
# @return [String]
|
|
12522
|
+
#
|
|
12523
|
+
# @!attribute [rw] default_branch
|
|
12524
|
+
# The default branch of the Git repository.
|
|
12525
|
+
# @return [String]
|
|
12526
|
+
#
|
|
12527
|
+
# @!attribute [rw] status
|
|
12528
|
+
# The status of the Git connection.
|
|
12529
|
+
# @return [String]
|
|
12530
|
+
#
|
|
12531
|
+
# @!attribute [rw] error_message
|
|
12532
|
+
# The error message that describes why the Git connection failed. This
|
|
12533
|
+
# member is populated when the connection status is CREATE\_FAILED or
|
|
12534
|
+
# UPDATE\_FAILED.
|
|
12535
|
+
# @return [String]
|
|
12536
|
+
#
|
|
12537
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GitPropertiesOutput AWS API Documentation
|
|
12538
|
+
#
|
|
12539
|
+
class GitPropertiesOutput < Struct.new(
|
|
12540
|
+
:code_connection_arn,
|
|
12541
|
+
:repository_id,
|
|
12542
|
+
:default_branch,
|
|
12543
|
+
:status,
|
|
12544
|
+
:error_message)
|
|
12545
|
+
SENSITIVE = []
|
|
12546
|
+
include Aws::Structure
|
|
12547
|
+
end
|
|
12548
|
+
|
|
12549
|
+
# The properties used to update an existing Git connection, such as the
|
|
12550
|
+
# CodeConnections ARN or the default branch.
|
|
12551
|
+
#
|
|
12552
|
+
# @!attribute [rw] code_connection_arn
|
|
12553
|
+
# The ARN of the CodeConnections connection used to connect to the Git
|
|
12554
|
+
# repository.
|
|
12555
|
+
# @return [String]
|
|
12556
|
+
#
|
|
12557
|
+
# @!attribute [rw] default_branch
|
|
12558
|
+
# The default branch of the Git repository.
|
|
12559
|
+
# @return [String]
|
|
12560
|
+
#
|
|
12561
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GitPropertiesPatch AWS API Documentation
|
|
12562
|
+
#
|
|
12563
|
+
class GitPropertiesPatch < Struct.new(
|
|
12564
|
+
:code_connection_arn,
|
|
12565
|
+
:default_branch)
|
|
12566
|
+
SENSITIVE = []
|
|
12567
|
+
include Aws::Structure
|
|
12568
|
+
end
|
|
12569
|
+
|
|
12465
12570
|
# The details of a business glossary.
|
|
12466
12571
|
#
|
|
12467
12572
|
# @!attribute [rw] domain_id
|
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" | "VPC")
|
|
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" | "GIT")
|
|
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
|
|
@@ -649,6 +649,11 @@ module Aws
|
|
|
649
649
|
vpc_id: ::String,
|
|
650
650
|
subnet_ids: Array[::String],
|
|
651
651
|
security_group_id: ::String?
|
|
652
|
+
}?,
|
|
653
|
+
git_properties: {
|
|
654
|
+
code_connection_arn: ::String,
|
|
655
|
+
repository_id: ::String,
|
|
656
|
+
default_branch: ::String
|
|
652
657
|
}?
|
|
653
658
|
},
|
|
654
659
|
?enable_trusted_identity_propagation: bool,
|
|
@@ -1877,7 +1882,7 @@ module Aws
|
|
|
1877
1882
|
def physical_endpoints: () -> ::Array[Types::PhysicalEndpoint]
|
|
1878
1883
|
def project_id: () -> ::String
|
|
1879
1884
|
def props: () -> Types::ConnectionPropertiesOutput
|
|
1880
|
-
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")
|
|
1885
|
+
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" | "GIT")
|
|
1881
1886
|
def scope: () -> ("DOMAIN" | "PROJECT")
|
|
1882
1887
|
end
|
|
1883
1888
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_connection-instance_method
|
|
@@ -2715,7 +2720,7 @@ module Aws
|
|
|
2715
2720
|
?name: ::String,
|
|
2716
2721
|
?environment_identifier: ::String,
|
|
2717
2722
|
?project_identifier: ::String,
|
|
2718
|
-
?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"),
|
|
2723
|
+
?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" | "GIT"),
|
|
2719
2724
|
?scope: ("DOMAIN" | "PROJECT")
|
|
2720
2725
|
) -> _ListConnectionsResponseSuccess
|
|
2721
2726
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectionsResponseSuccess
|
|
@@ -3852,7 +3857,7 @@ module Aws
|
|
|
3852
3857
|
def physical_endpoints: () -> ::Array[Types::PhysicalEndpoint]
|
|
3853
3858
|
def project_id: () -> ::String
|
|
3854
3859
|
def props: () -> Types::ConnectionPropertiesOutput
|
|
3855
|
-
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")
|
|
3860
|
+
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" | "GIT")
|
|
3856
3861
|
def scope: () -> ("DOMAIN" | "PROJECT")
|
|
3857
3862
|
end
|
|
3858
3863
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_connection-instance_method
|
|
@@ -3963,6 +3968,10 @@ module Aws
|
|
|
3963
3968
|
vpc_id: ::String?,
|
|
3964
3969
|
subnet_ids: Array[::String]?,
|
|
3965
3970
|
security_group_id: ::String?
|
|
3971
|
+
}?,
|
|
3972
|
+
git_properties: {
|
|
3973
|
+
code_connection_arn: ::String?,
|
|
3974
|
+
default_branch: ::String?
|
|
3966
3975
|
}?
|
|
3967
3976
|
}
|
|
3968
3977
|
) -> _UpdateConnectionResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -615,6 +615,7 @@ module Aws::DataZone
|
|
|
615
615
|
attr_accessor workflows_serverless_properties: Types::WorkflowsServerlessPropertiesInput
|
|
616
616
|
attr_accessor lakehouse_properties: Types::LakehousePropertiesInput
|
|
617
617
|
attr_accessor vpc_properties: Types::VpcPropertiesInput
|
|
618
|
+
attr_accessor git_properties: Types::GitPropertiesInput
|
|
618
619
|
attr_accessor unknown: untyped
|
|
619
620
|
SENSITIVE: []
|
|
620
621
|
|
|
@@ -648,6 +649,8 @@ module Aws::DataZone
|
|
|
648
649
|
end
|
|
649
650
|
class VpcProperties < ConnectionPropertiesInput
|
|
650
651
|
end
|
|
652
|
+
class GitProperties < ConnectionPropertiesInput
|
|
653
|
+
end
|
|
651
654
|
class Unknown < ConnectionPropertiesInput
|
|
652
655
|
end
|
|
653
656
|
end
|
|
@@ -668,6 +671,7 @@ module Aws::DataZone
|
|
|
668
671
|
attr_accessor workflows_serverless_properties: Types::WorkflowsServerlessPropertiesOutput
|
|
669
672
|
attr_accessor lakehouse_properties: Types::LakehousePropertiesOutput
|
|
670
673
|
attr_accessor vpc_properties: Types::VpcPropertiesOutput
|
|
674
|
+
attr_accessor git_properties: Types::GitPropertiesOutput
|
|
671
675
|
attr_accessor unknown: untyped
|
|
672
676
|
SENSITIVE: []
|
|
673
677
|
|
|
@@ -701,6 +705,8 @@ module Aws::DataZone
|
|
|
701
705
|
end
|
|
702
706
|
class VpcProperties < ConnectionPropertiesOutput
|
|
703
707
|
end
|
|
708
|
+
class GitProperties < ConnectionPropertiesOutput
|
|
709
|
+
end
|
|
704
710
|
class Unknown < ConnectionPropertiesOutput
|
|
705
711
|
end
|
|
706
712
|
end
|
|
@@ -717,6 +723,7 @@ module Aws::DataZone
|
|
|
717
723
|
attr_accessor mlflow_properties: Types::MlflowPropertiesPatch
|
|
718
724
|
attr_accessor lakehouse_properties: Types::LakehousePropertiesPatch
|
|
719
725
|
attr_accessor vpc_properties: Types::VpcPropertiesPatch
|
|
726
|
+
attr_accessor git_properties: Types::GitPropertiesPatch
|
|
720
727
|
attr_accessor unknown: untyped
|
|
721
728
|
SENSITIVE: []
|
|
722
729
|
|
|
@@ -742,6 +749,8 @@ module Aws::DataZone
|
|
|
742
749
|
end
|
|
743
750
|
class VpcProperties < ConnectionPropertiesPatch
|
|
744
751
|
end
|
|
752
|
+
class GitProperties < ConnectionPropertiesPatch
|
|
753
|
+
end
|
|
745
754
|
class Unknown < ConnectionPropertiesPatch
|
|
746
755
|
end
|
|
747
756
|
end
|
|
@@ -756,7 +765,7 @@ module Aws::DataZone
|
|
|
756
765
|
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
|
757
766
|
attr_accessor project_id: ::String
|
|
758
767
|
attr_accessor props: Types::ConnectionPropertiesOutput
|
|
759
|
-
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")
|
|
768
|
+
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" | "GIT")
|
|
760
769
|
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
|
761
770
|
SENSITIVE: []
|
|
762
771
|
end
|
|
@@ -962,7 +971,7 @@ module Aws::DataZone
|
|
|
962
971
|
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
|
963
972
|
attr_accessor project_id: ::String
|
|
964
973
|
attr_accessor props: Types::ConnectionPropertiesOutput
|
|
965
|
-
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")
|
|
974
|
+
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" | "GIT")
|
|
966
975
|
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
|
967
976
|
SENSITIVE: [:description]
|
|
968
977
|
end
|
|
@@ -2578,7 +2587,7 @@ module Aws::DataZone
|
|
|
2578
2587
|
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
|
2579
2588
|
attr_accessor project_id: ::String
|
|
2580
2589
|
attr_accessor props: Types::ConnectionPropertiesOutput
|
|
2581
|
-
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")
|
|
2590
|
+
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" | "GIT")
|
|
2582
2591
|
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
|
2583
2592
|
SENSITIVE: [:connection_credentials, :description]
|
|
2584
2593
|
end
|
|
@@ -3351,6 +3360,28 @@ module Aws::DataZone
|
|
|
3351
3360
|
SENSITIVE: [:repository, :branch, :commit_message]
|
|
3352
3361
|
end
|
|
3353
3362
|
|
|
3363
|
+
class GitPropertiesInput
|
|
3364
|
+
attr_accessor code_connection_arn: ::String
|
|
3365
|
+
attr_accessor repository_id: ::String
|
|
3366
|
+
attr_accessor default_branch: ::String
|
|
3367
|
+
SENSITIVE: []
|
|
3368
|
+
end
|
|
3369
|
+
|
|
3370
|
+
class GitPropertiesOutput
|
|
3371
|
+
attr_accessor code_connection_arn: ::String
|
|
3372
|
+
attr_accessor repository_id: ::String
|
|
3373
|
+
attr_accessor default_branch: ::String
|
|
3374
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "READY" | "UPDATING" | "UPDATE_FAILED" | "DELETED")
|
|
3375
|
+
attr_accessor error_message: ::String
|
|
3376
|
+
SENSITIVE: []
|
|
3377
|
+
end
|
|
3378
|
+
|
|
3379
|
+
class GitPropertiesPatch
|
|
3380
|
+
attr_accessor code_connection_arn: ::String
|
|
3381
|
+
attr_accessor default_branch: ::String
|
|
3382
|
+
SENSITIVE: []
|
|
3383
|
+
end
|
|
3384
|
+
|
|
3354
3385
|
class GlossaryItem
|
|
3355
3386
|
attr_accessor domain_id: ::String
|
|
3356
3387
|
attr_accessor id: ::String
|
|
@@ -3403,7 +3434,7 @@ module Aws::DataZone
|
|
|
3403
3434
|
class GlueConnection
|
|
3404
3435
|
attr_accessor name: ::String
|
|
3405
3436
|
attr_accessor description: ::String
|
|
3406
|
-
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")
|
|
3437
|
+
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" | "GIT")
|
|
3407
3438
|
attr_accessor match_criteria: ::Array[::String]
|
|
3408
3439
|
attr_accessor connection_properties: ::Hash[::String, ::String]
|
|
3409
3440
|
attr_accessor spark_properties: ::Hash[::String, ::String]
|
|
@@ -3865,7 +3896,7 @@ module Aws::DataZone
|
|
|
3865
3896
|
attr_accessor name: ::String
|
|
3866
3897
|
attr_accessor environment_identifier: ::String
|
|
3867
3898
|
attr_accessor project_identifier: ::String
|
|
3868
|
-
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")
|
|
3899
|
+
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" | "GIT")
|
|
3869
3900
|
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
|
3870
3901
|
SENSITIVE: []
|
|
3871
3902
|
end
|
|
@@ -6400,7 +6431,7 @@ module Aws::DataZone
|
|
|
6400
6431
|
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
|
6401
6432
|
attr_accessor project_id: ::String
|
|
6402
6433
|
attr_accessor props: Types::ConnectionPropertiesOutput
|
|
6403
|
-
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")
|
|
6434
|
+
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" | "GIT")
|
|
6404
6435
|
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
|
6405
6436
|
SENSITIVE: [:description]
|
|
6406
6437
|
end
|