aws-sdk-datazone 1.53.0 → 1.54.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 +59 -14
- data/lib/aws-sdk-datazone/client_api.rb +41 -2
- data/lib/aws-sdk-datazone/endpoint_parameters.rb +3 -3
- data/lib/aws-sdk-datazone/types.rb +132 -1
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +23 -7
- data/sig/types.rbs +44 -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: 4b6ccc3bef80b06956f6dbf0510bfd33ce2865c4a4fdb5a9f778cd02198ad15e
|
4
|
+
data.tar.gz: 649a3f540630505c5dabf8cfcb6c731d4ca131c85f5541b21d041e367f962a49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1846eee3976b33f385766c1b56172d005fc1509b69a5492344b7398297cf166ee38eeedc3c69ec26a41daf95868a895948d9b8bc3e1b76cf3f25822e50df7788
|
7
|
+
data.tar.gz: 922dd6ced23a2ae568672c9c96f1c8239745cb84f45de35a39e30ad26fa57fefecf1edda79ae9d935d1601ac2e42871cfa5802c91eae752f9e9f9e8f3d492e25
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.54.0
|
@@ -1737,7 +1737,10 @@ module Aws::DataZone
|
|
1737
1737
|
# @option params [required, String] :domain_identifier
|
1738
1738
|
# The ID of the domain where the connection is created.
|
1739
1739
|
#
|
1740
|
-
# @option params [
|
1740
|
+
# @option params [Boolean] :enable_trusted_identity_propagation
|
1741
|
+
# Specifies whether the trusted identity propagation is enabled.
|
1742
|
+
#
|
1743
|
+
# @option params [String] :environment_identifier
|
1741
1744
|
# The ID of the environment where the connection is created.
|
1742
1745
|
#
|
1743
1746
|
# @option params [required, String] :name
|
@@ -1746,6 +1749,9 @@ module Aws::DataZone
|
|
1746
1749
|
# @option params [Types::ConnectionPropertiesInput] :props
|
1747
1750
|
# The connection props.
|
1748
1751
|
#
|
1752
|
+
# @option params [String] :scope
|
1753
|
+
# The scope of the connection.
|
1754
|
+
#
|
1749
1755
|
# @return [Types::CreateConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1750
1756
|
#
|
1751
1757
|
# * {Types::CreateConnectionOutput#connection_id #connection_id} => String
|
@@ -1757,6 +1763,7 @@ module Aws::DataZone
|
|
1757
1763
|
# * {Types::CreateConnectionOutput#physical_endpoints #physical_endpoints} => Array<Types::PhysicalEndpoint>
|
1758
1764
|
# * {Types::CreateConnectionOutput#project_id #project_id} => String
|
1759
1765
|
# * {Types::CreateConnectionOutput#props #props} => Types::ConnectionPropertiesOutput
|
1766
|
+
# * {Types::CreateConnectionOutput#scope #scope} => String
|
1760
1767
|
# * {Types::CreateConnectionOutput#type #type} => String
|
1761
1768
|
#
|
1762
1769
|
# @example Request syntax with placeholder values
|
@@ -1771,9 +1778,15 @@ module Aws::DataZone
|
|
1771
1778
|
# client_token: "String",
|
1772
1779
|
# description: "CreateConnectionInputDescriptionString",
|
1773
1780
|
# domain_identifier: "DomainId", # required
|
1774
|
-
#
|
1781
|
+
# enable_trusted_identity_propagation: false,
|
1782
|
+
# environment_identifier: "EnvironmentId",
|
1775
1783
|
# name: "ConnectionName", # required
|
1776
1784
|
# props: {
|
1785
|
+
# amazon_q_properties: {
|
1786
|
+
# auth_mode: "AmazonQPropertiesInputAuthModeString",
|
1787
|
+
# is_enabled: false, # required
|
1788
|
+
# profile_arn: "AmazonQPropertiesInputProfileArnString",
|
1789
|
+
# },
|
1777
1790
|
# athena_properties: {
|
1778
1791
|
# workgroup_name: "AthenaPropertiesInputWorkgroupNameString",
|
1779
1792
|
# },
|
@@ -1893,6 +1906,7 @@ module Aws::DataZone
|
|
1893
1906
|
# worker_type: "SparkGluePropertiesInputWorkerTypeString",
|
1894
1907
|
# },
|
1895
1908
|
# },
|
1909
|
+
# scope: "DOMAIN", # accepts DOMAIN, PROJECT
|
1896
1910
|
# })
|
1897
1911
|
#
|
1898
1912
|
# @example Response structure
|
@@ -1908,6 +1922,7 @@ module Aws::DataZone
|
|
1908
1922
|
# resp.physical_endpoints[0].aws_location.aws_account_id #=> String
|
1909
1923
|
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
1910
1924
|
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
1925
|
+
# resp.physical_endpoints[0].enable_trusted_identity_propagation #=> Boolean
|
1911
1926
|
# resp.physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
1912
1927
|
# resp.physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
1913
1928
|
# resp.physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
@@ -1929,7 +1944,7 @@ module Aws::DataZone
|
|
1929
1944
|
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
1930
1945
|
# resp.physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
1931
1946
|
# resp.physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
1932
|
-
# 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"
|
1947
|
+
# 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"
|
1933
1948
|
# resp.physical_endpoints[0].glue_connection.creation_time #=> Time
|
1934
1949
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
1935
1950
|
# resp.physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
@@ -1956,6 +1971,9 @@ module Aws::DataZone
|
|
1956
1971
|
# resp.physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
1957
1972
|
# resp.physical_endpoints[0].stage #=> String
|
1958
1973
|
# resp.project_id #=> String
|
1974
|
+
# resp.props.amazon_q_properties.auth_mode #=> String
|
1975
|
+
# resp.props.amazon_q_properties.is_enabled #=> Boolean
|
1976
|
+
# resp.props.amazon_q_properties.profile_arn #=> String
|
1959
1977
|
# resp.props.athena_properties.workgroup_name #=> String
|
1960
1978
|
# resp.props.glue_properties.error_message #=> String
|
1961
1979
|
# resp.props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
@@ -2006,7 +2024,8 @@ module Aws::DataZone
|
|
2006
2024
|
# resp.props.spark_glue_properties.number_of_workers #=> Integer
|
2007
2025
|
# resp.props.spark_glue_properties.python_virtual_env #=> String
|
2008
2026
|
# resp.props.spark_glue_properties.worker_type #=> String
|
2009
|
-
# resp.
|
2027
|
+
# resp.scope #=> String, one of "DOMAIN", "PROJECT"
|
2028
|
+
# 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"
|
2010
2029
|
#
|
2011
2030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateConnection AWS API Documentation
|
2012
2031
|
#
|
@@ -5656,6 +5675,7 @@ module Aws::DataZone
|
|
5656
5675
|
# * {Types::GetConnectionOutput#physical_endpoints #physical_endpoints} => Array<Types::PhysicalEndpoint>
|
5657
5676
|
# * {Types::GetConnectionOutput#project_id #project_id} => String
|
5658
5677
|
# * {Types::GetConnectionOutput#props #props} => Types::ConnectionPropertiesOutput
|
5678
|
+
# * {Types::GetConnectionOutput#scope #scope} => String
|
5659
5679
|
# * {Types::GetConnectionOutput#type #type} => String
|
5660
5680
|
#
|
5661
5681
|
# @example Request syntax with placeholder values
|
@@ -5684,6 +5704,7 @@ module Aws::DataZone
|
|
5684
5704
|
# resp.physical_endpoints[0].aws_location.aws_account_id #=> String
|
5685
5705
|
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
5686
5706
|
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
5707
|
+
# resp.physical_endpoints[0].enable_trusted_identity_propagation #=> Boolean
|
5687
5708
|
# resp.physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
5688
5709
|
# resp.physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
5689
5710
|
# resp.physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
@@ -5705,7 +5726,7 @@ module Aws::DataZone
|
|
5705
5726
|
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
5706
5727
|
# resp.physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
5707
5728
|
# resp.physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
5708
|
-
# 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"
|
5729
|
+
# 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"
|
5709
5730
|
# resp.physical_endpoints[0].glue_connection.creation_time #=> Time
|
5710
5731
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
5711
5732
|
# resp.physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
@@ -5732,6 +5753,9 @@ module Aws::DataZone
|
|
5732
5753
|
# resp.physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
5733
5754
|
# resp.physical_endpoints[0].stage #=> String
|
5734
5755
|
# resp.project_id #=> String
|
5756
|
+
# resp.props.amazon_q_properties.auth_mode #=> String
|
5757
|
+
# resp.props.amazon_q_properties.is_enabled #=> Boolean
|
5758
|
+
# resp.props.amazon_q_properties.profile_arn #=> String
|
5735
5759
|
# resp.props.athena_properties.workgroup_name #=> String
|
5736
5760
|
# resp.props.glue_properties.error_message #=> String
|
5737
5761
|
# resp.props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
@@ -5782,7 +5806,8 @@ module Aws::DataZone
|
|
5782
5806
|
# resp.props.spark_glue_properties.number_of_workers #=> Integer
|
5783
5807
|
# resp.props.spark_glue_properties.python_virtual_env #=> String
|
5784
5808
|
# resp.props.spark_glue_properties.worker_type #=> String
|
5785
|
-
# resp.
|
5809
|
+
# resp.scope #=> String, one of "DOMAIN", "PROJECT"
|
5810
|
+
# 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"
|
5786
5811
|
#
|
5787
5812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetConnection AWS API Documentation
|
5788
5813
|
#
|
@@ -8091,9 +8116,12 @@ module Aws::DataZone
|
|
8091
8116
|
# NextToken value in a subsequent call to ListConnections to list the
|
8092
8117
|
# next set of connections.
|
8093
8118
|
#
|
8094
|
-
# @option params [
|
8119
|
+
# @option params [String] :project_identifier
|
8095
8120
|
# The ID of the project where you want to list connections.
|
8096
8121
|
#
|
8122
|
+
# @option params [String] :scope
|
8123
|
+
# The scope of the connection.
|
8124
|
+
#
|
8097
8125
|
# @option params [String] :sort_by
|
8098
8126
|
# Specifies how you want to sort the listed connections.
|
8099
8127
|
#
|
@@ -8118,10 +8146,11 @@ module Aws::DataZone
|
|
8118
8146
|
# max_results: 1,
|
8119
8147
|
# name: "ConnectionName",
|
8120
8148
|
# next_token: "PaginationToken",
|
8121
|
-
# project_identifier: "ProjectId",
|
8149
|
+
# project_identifier: "ProjectId",
|
8150
|
+
# scope: "DOMAIN", # accepts DOMAIN, PROJECT
|
8122
8151
|
# sort_by: "NAME", # accepts NAME
|
8123
8152
|
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
8124
|
-
# type: "ATHENA", # accepts ATHENA, BIGQUERY, DATABRICKS, DOCUMENTDB, DYNAMODB, HYPERPOD, IAM, MYSQL, OPENSEARCH, ORACLE, POSTGRESQL, REDSHIFT, S3, SAPHANA, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, VERTICA, WORKFLOWS_MWAA
|
8153
|
+
# 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
|
8125
8154
|
# })
|
8126
8155
|
#
|
8127
8156
|
# @example Response structure
|
@@ -8137,6 +8166,7 @@ module Aws::DataZone
|
|
8137
8166
|
# resp.items[0].physical_endpoints[0].aws_location.aws_account_id #=> String
|
8138
8167
|
# resp.items[0].physical_endpoints[0].aws_location.aws_region #=> String
|
8139
8168
|
# resp.items[0].physical_endpoints[0].aws_location.iam_connection_id #=> String
|
8169
|
+
# resp.items[0].physical_endpoints[0].enable_trusted_identity_propagation #=> Boolean
|
8140
8170
|
# resp.items[0].physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
8141
8171
|
# resp.items[0].physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
8142
8172
|
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
@@ -8158,7 +8188,7 @@ module Aws::DataZone
|
|
8158
8188
|
# resp.items[0].physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
8159
8189
|
# resp.items[0].physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
8160
8190
|
# resp.items[0].physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
8161
|
-
# 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"
|
8191
|
+
# 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"
|
8162
8192
|
# resp.items[0].physical_endpoints[0].glue_connection.creation_time #=> Time
|
8163
8193
|
# resp.items[0].physical_endpoints[0].glue_connection.description #=> String
|
8164
8194
|
# resp.items[0].physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
@@ -8185,6 +8215,9 @@ module Aws::DataZone
|
|
8185
8215
|
# resp.items[0].physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
8186
8216
|
# resp.items[0].physical_endpoints[0].stage #=> String
|
8187
8217
|
# resp.items[0].project_id #=> String
|
8218
|
+
# resp.items[0].props.amazon_q_properties.auth_mode #=> String
|
8219
|
+
# resp.items[0].props.amazon_q_properties.is_enabled #=> Boolean
|
8220
|
+
# resp.items[0].props.amazon_q_properties.profile_arn #=> String
|
8188
8221
|
# resp.items[0].props.athena_properties.workgroup_name #=> String
|
8189
8222
|
# resp.items[0].props.glue_properties.error_message #=> String
|
8190
8223
|
# resp.items[0].props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
@@ -8235,7 +8268,8 @@ module Aws::DataZone
|
|
8235
8268
|
# resp.items[0].props.spark_glue_properties.number_of_workers #=> Integer
|
8236
8269
|
# resp.items[0].props.spark_glue_properties.python_virtual_env #=> String
|
8237
8270
|
# resp.items[0].props.spark_glue_properties.worker_type #=> String
|
8238
|
-
# resp.items[0].
|
8271
|
+
# resp.items[0].scope #=> String, one of "DOMAIN", "PROJECT"
|
8272
|
+
# 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"
|
8239
8273
|
# resp.next_token #=> String
|
8240
8274
|
#
|
8241
8275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListConnections AWS API Documentation
|
@@ -12273,6 +12307,7 @@ module Aws::DataZone
|
|
12273
12307
|
# * {Types::UpdateConnectionOutput#physical_endpoints #physical_endpoints} => Array<Types::PhysicalEndpoint>
|
12274
12308
|
# * {Types::UpdateConnectionOutput#project_id #project_id} => String
|
12275
12309
|
# * {Types::UpdateConnectionOutput#props #props} => Types::ConnectionPropertiesOutput
|
12310
|
+
# * {Types::UpdateConnectionOutput#scope #scope} => String
|
12276
12311
|
# * {Types::UpdateConnectionOutput#type #type} => String
|
12277
12312
|
#
|
12278
12313
|
# @example Request syntax with placeholder values
|
@@ -12288,6 +12323,11 @@ module Aws::DataZone
|
|
12288
12323
|
# domain_identifier: "DomainId", # required
|
12289
12324
|
# identifier: "ConnectionId", # required
|
12290
12325
|
# props: {
|
12326
|
+
# amazon_q_properties: {
|
12327
|
+
# auth_mode: "AmazonQPropertiesPatchAuthModeString",
|
12328
|
+
# is_enabled: false, # required
|
12329
|
+
# profile_arn: "AmazonQPropertiesPatchProfileArnString",
|
12330
|
+
# },
|
12291
12331
|
# athena_properties: {
|
12292
12332
|
# workgroup_name: "AthenaPropertiesPatchWorkgroupNameString",
|
12293
12333
|
# },
|
@@ -12361,6 +12401,7 @@ module Aws::DataZone
|
|
12361
12401
|
# resp.physical_endpoints[0].aws_location.aws_account_id #=> String
|
12362
12402
|
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
12363
12403
|
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
12404
|
+
# resp.physical_endpoints[0].enable_trusted_identity_propagation #=> Boolean
|
12364
12405
|
# resp.physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
12365
12406
|
# resp.physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
12366
12407
|
# resp.physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
@@ -12382,7 +12423,7 @@ module Aws::DataZone
|
|
12382
12423
|
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
12383
12424
|
# resp.physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
12384
12425
|
# resp.physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
12385
|
-
# 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"
|
12426
|
+
# 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"
|
12386
12427
|
# resp.physical_endpoints[0].glue_connection.creation_time #=> Time
|
12387
12428
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
12388
12429
|
# resp.physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
@@ -12409,6 +12450,9 @@ module Aws::DataZone
|
|
12409
12450
|
# resp.physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
12410
12451
|
# resp.physical_endpoints[0].stage #=> String
|
12411
12452
|
# resp.project_id #=> String
|
12453
|
+
# resp.props.amazon_q_properties.auth_mode #=> String
|
12454
|
+
# resp.props.amazon_q_properties.is_enabled #=> Boolean
|
12455
|
+
# resp.props.amazon_q_properties.profile_arn #=> String
|
12412
12456
|
# resp.props.athena_properties.workgroup_name #=> String
|
12413
12457
|
# resp.props.glue_properties.error_message #=> String
|
12414
12458
|
# resp.props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
@@ -12459,7 +12503,8 @@ module Aws::DataZone
|
|
12459
12503
|
# resp.props.spark_glue_properties.number_of_workers #=> Integer
|
12460
12504
|
# resp.props.spark_glue_properties.python_virtual_env #=> String
|
12461
12505
|
# resp.props.spark_glue_properties.worker_type #=> String
|
12462
|
-
# resp.
|
12506
|
+
# resp.scope #=> String, one of "DOMAIN", "PROJECT"
|
12507
|
+
# 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"
|
12463
12508
|
#
|
12464
12509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateConnection AWS API Documentation
|
12465
12510
|
#
|
@@ -14149,7 +14194,7 @@ module Aws::DataZone
|
|
14149
14194
|
tracer: tracer
|
14150
14195
|
)
|
14151
14196
|
context[:gem_name] = 'aws-sdk-datazone'
|
14152
|
-
context[:gem_version] = '1.
|
14197
|
+
context[:gem_version] = '1.54.0'
|
14153
14198
|
Seahorse::Client::Request.new(handlers, context)
|
14154
14199
|
end
|
14155
14200
|
|
@@ -53,6 +53,15 @@ module Aws::DataZone
|
|
53
53
|
AggregationOutputList = Shapes::ListShape.new(name: 'AggregationOutputList')
|
54
54
|
AllDomainUnitsGrantFilter = Shapes::StructureShape.new(name: 'AllDomainUnitsGrantFilter')
|
55
55
|
AllUsersGrantFilter = Shapes::StructureShape.new(name: 'AllUsersGrantFilter')
|
56
|
+
AmazonQPropertiesInput = Shapes::StructureShape.new(name: 'AmazonQPropertiesInput')
|
57
|
+
AmazonQPropertiesInputAuthModeString = Shapes::StringShape.new(name: 'AmazonQPropertiesInputAuthModeString')
|
58
|
+
AmazonQPropertiesInputProfileArnString = Shapes::StringShape.new(name: 'AmazonQPropertiesInputProfileArnString')
|
59
|
+
AmazonQPropertiesOutput = Shapes::StructureShape.new(name: 'AmazonQPropertiesOutput')
|
60
|
+
AmazonQPropertiesOutputAuthModeString = Shapes::StringShape.new(name: 'AmazonQPropertiesOutputAuthModeString')
|
61
|
+
AmazonQPropertiesOutputProfileArnString = Shapes::StringShape.new(name: 'AmazonQPropertiesOutputProfileArnString')
|
62
|
+
AmazonQPropertiesPatch = Shapes::StructureShape.new(name: 'AmazonQPropertiesPatch')
|
63
|
+
AmazonQPropertiesPatchAuthModeString = Shapes::StringShape.new(name: 'AmazonQPropertiesPatchAuthModeString')
|
64
|
+
AmazonQPropertiesPatchProfileArnString = Shapes::StringShape.new(name: 'AmazonQPropertiesPatchProfileArnString')
|
56
65
|
ApplicableAssetTypes = Shapes::ListShape.new(name: 'ApplicableAssetTypes')
|
57
66
|
AssetFilterConfiguration = Shapes::UnionShape.new(name: 'AssetFilterConfiguration')
|
58
67
|
AssetFilterSummary = Shapes::StructureShape.new(name: 'AssetFilterSummary')
|
@@ -143,6 +152,7 @@ module Aws::DataZone
|
|
143
152
|
ConnectionPropertiesOutput = Shapes::UnionShape.new(name: 'ConnectionPropertiesOutput')
|
144
153
|
ConnectionPropertiesPatch = Shapes::UnionShape.new(name: 'ConnectionPropertiesPatch')
|
145
154
|
ConnectionPropertiesValueString = Shapes::StringShape.new(name: 'ConnectionPropertiesValueString')
|
155
|
+
ConnectionScope = Shapes::StringShape.new(name: 'ConnectionScope')
|
146
156
|
ConnectionStatus = Shapes::StringShape.new(name: 'ConnectionStatus')
|
147
157
|
ConnectionSummaries = Shapes::ListShape.new(name: 'ConnectionSummaries')
|
148
158
|
ConnectionSummary = Shapes::StructureShape.new(name: 'ConnectionSummary')
|
@@ -1251,6 +1261,21 @@ module Aws::DataZone
|
|
1251
1261
|
|
1252
1262
|
AllUsersGrantFilter.struct_class = Types::AllUsersGrantFilter
|
1253
1263
|
|
1264
|
+
AmazonQPropertiesInput.add_member(:auth_mode, Shapes::ShapeRef.new(shape: AmazonQPropertiesInputAuthModeString, location_name: "authMode"))
|
1265
|
+
AmazonQPropertiesInput.add_member(:is_enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isEnabled"))
|
1266
|
+
AmazonQPropertiesInput.add_member(:profile_arn, Shapes::ShapeRef.new(shape: AmazonQPropertiesInputProfileArnString, location_name: "profileArn"))
|
1267
|
+
AmazonQPropertiesInput.struct_class = Types::AmazonQPropertiesInput
|
1268
|
+
|
1269
|
+
AmazonQPropertiesOutput.add_member(:auth_mode, Shapes::ShapeRef.new(shape: AmazonQPropertiesOutputAuthModeString, location_name: "authMode"))
|
1270
|
+
AmazonQPropertiesOutput.add_member(:is_enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isEnabled"))
|
1271
|
+
AmazonQPropertiesOutput.add_member(:profile_arn, Shapes::ShapeRef.new(shape: AmazonQPropertiesOutputProfileArnString, location_name: "profileArn"))
|
1272
|
+
AmazonQPropertiesOutput.struct_class = Types::AmazonQPropertiesOutput
|
1273
|
+
|
1274
|
+
AmazonQPropertiesPatch.add_member(:auth_mode, Shapes::ShapeRef.new(shape: AmazonQPropertiesPatchAuthModeString, location_name: "authMode"))
|
1275
|
+
AmazonQPropertiesPatch.add_member(:is_enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isEnabled"))
|
1276
|
+
AmazonQPropertiesPatch.add_member(:profile_arn, Shapes::ShapeRef.new(shape: AmazonQPropertiesPatchProfileArnString, location_name: "profileArn"))
|
1277
|
+
AmazonQPropertiesPatch.struct_class = Types::AmazonQPropertiesPatch
|
1278
|
+
|
1254
1279
|
ApplicableAssetTypes.member = Shapes::ShapeRef.new(shape: TypeName)
|
1255
1280
|
|
1256
1281
|
AssetFilterConfiguration.add_member(:column_configuration, Shapes::ShapeRef.new(shape: ColumnFilterConfiguration, location_name: "columnConfiguration"))
|
@@ -1519,6 +1544,7 @@ module Aws::DataZone
|
|
1519
1544
|
ConnectionProperties.key = Shapes::ShapeRef.new(shape: String)
|
1520
1545
|
ConnectionProperties.value = Shapes::ShapeRef.new(shape: ConnectionPropertiesValueString)
|
1521
1546
|
|
1547
|
+
ConnectionPropertiesInput.add_member(:amazon_q_properties, Shapes::ShapeRef.new(shape: AmazonQPropertiesInput, location_name: "amazonQProperties"))
|
1522
1548
|
ConnectionPropertiesInput.add_member(:athena_properties, Shapes::ShapeRef.new(shape: AthenaPropertiesInput, location_name: "athenaProperties"))
|
1523
1549
|
ConnectionPropertiesInput.add_member(:glue_properties, Shapes::ShapeRef.new(shape: GluePropertiesInput, location_name: "glueProperties"))
|
1524
1550
|
ConnectionPropertiesInput.add_member(:hyper_pod_properties, Shapes::ShapeRef.new(shape: HyperPodPropertiesInput, location_name: "hyperPodProperties"))
|
@@ -1528,6 +1554,7 @@ module Aws::DataZone
|
|
1528
1554
|
ConnectionPropertiesInput.add_member(:spark_emr_properties, Shapes::ShapeRef.new(shape: SparkEmrPropertiesInput, location_name: "sparkEmrProperties"))
|
1529
1555
|
ConnectionPropertiesInput.add_member(:spark_glue_properties, Shapes::ShapeRef.new(shape: SparkGluePropertiesInput, location_name: "sparkGlueProperties"))
|
1530
1556
|
ConnectionPropertiesInput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
1557
|
+
ConnectionPropertiesInput.add_member_subclass(:amazon_q_properties, Types::ConnectionPropertiesInput::AmazonQProperties)
|
1531
1558
|
ConnectionPropertiesInput.add_member_subclass(:athena_properties, Types::ConnectionPropertiesInput::AthenaProperties)
|
1532
1559
|
ConnectionPropertiesInput.add_member_subclass(:glue_properties, Types::ConnectionPropertiesInput::GlueProperties)
|
1533
1560
|
ConnectionPropertiesInput.add_member_subclass(:hyper_pod_properties, Types::ConnectionPropertiesInput::HyperPodProperties)
|
@@ -1539,6 +1566,7 @@ module Aws::DataZone
|
|
1539
1566
|
ConnectionPropertiesInput.add_member_subclass(:unknown, Types::ConnectionPropertiesInput::Unknown)
|
1540
1567
|
ConnectionPropertiesInput.struct_class = Types::ConnectionPropertiesInput
|
1541
1568
|
|
1569
|
+
ConnectionPropertiesOutput.add_member(:amazon_q_properties, Shapes::ShapeRef.new(shape: AmazonQPropertiesOutput, location_name: "amazonQProperties"))
|
1542
1570
|
ConnectionPropertiesOutput.add_member(:athena_properties, Shapes::ShapeRef.new(shape: AthenaPropertiesOutput, location_name: "athenaProperties"))
|
1543
1571
|
ConnectionPropertiesOutput.add_member(:glue_properties, Shapes::ShapeRef.new(shape: GluePropertiesOutput, location_name: "glueProperties"))
|
1544
1572
|
ConnectionPropertiesOutput.add_member(:hyper_pod_properties, Shapes::ShapeRef.new(shape: HyperPodPropertiesOutput, location_name: "hyperPodProperties"))
|
@@ -1548,6 +1576,7 @@ module Aws::DataZone
|
|
1548
1576
|
ConnectionPropertiesOutput.add_member(:spark_emr_properties, Shapes::ShapeRef.new(shape: SparkEmrPropertiesOutput, location_name: "sparkEmrProperties"))
|
1549
1577
|
ConnectionPropertiesOutput.add_member(:spark_glue_properties, Shapes::ShapeRef.new(shape: SparkGluePropertiesOutput, location_name: "sparkGlueProperties"))
|
1550
1578
|
ConnectionPropertiesOutput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
1579
|
+
ConnectionPropertiesOutput.add_member_subclass(:amazon_q_properties, Types::ConnectionPropertiesOutput::AmazonQProperties)
|
1551
1580
|
ConnectionPropertiesOutput.add_member_subclass(:athena_properties, Types::ConnectionPropertiesOutput::AthenaProperties)
|
1552
1581
|
ConnectionPropertiesOutput.add_member_subclass(:glue_properties, Types::ConnectionPropertiesOutput::GlueProperties)
|
1553
1582
|
ConnectionPropertiesOutput.add_member_subclass(:hyper_pod_properties, Types::ConnectionPropertiesOutput::HyperPodProperties)
|
@@ -1559,6 +1588,7 @@ module Aws::DataZone
|
|
1559
1588
|
ConnectionPropertiesOutput.add_member_subclass(:unknown, Types::ConnectionPropertiesOutput::Unknown)
|
1560
1589
|
ConnectionPropertiesOutput.struct_class = Types::ConnectionPropertiesOutput
|
1561
1590
|
|
1591
|
+
ConnectionPropertiesPatch.add_member(:amazon_q_properties, Shapes::ShapeRef.new(shape: AmazonQPropertiesPatch, location_name: "amazonQProperties"))
|
1562
1592
|
ConnectionPropertiesPatch.add_member(:athena_properties, Shapes::ShapeRef.new(shape: AthenaPropertiesPatch, location_name: "athenaProperties"))
|
1563
1593
|
ConnectionPropertiesPatch.add_member(:glue_properties, Shapes::ShapeRef.new(shape: GluePropertiesPatch, location_name: "glueProperties"))
|
1564
1594
|
ConnectionPropertiesPatch.add_member(:iam_properties, Shapes::ShapeRef.new(shape: IamPropertiesPatch, location_name: "iamProperties"))
|
@@ -1566,6 +1596,7 @@ module Aws::DataZone
|
|
1566
1596
|
ConnectionPropertiesPatch.add_member(:s3_properties, Shapes::ShapeRef.new(shape: S3PropertiesPatch, location_name: "s3Properties"))
|
1567
1597
|
ConnectionPropertiesPatch.add_member(:spark_emr_properties, Shapes::ShapeRef.new(shape: SparkEmrPropertiesPatch, location_name: "sparkEmrProperties"))
|
1568
1598
|
ConnectionPropertiesPatch.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
1599
|
+
ConnectionPropertiesPatch.add_member_subclass(:amazon_q_properties, Types::ConnectionPropertiesPatch::AmazonQProperties)
|
1569
1600
|
ConnectionPropertiesPatch.add_member_subclass(:athena_properties, Types::ConnectionPropertiesPatch::AthenaProperties)
|
1570
1601
|
ConnectionPropertiesPatch.add_member_subclass(:glue_properties, Types::ConnectionPropertiesPatch::GlueProperties)
|
1571
1602
|
ConnectionPropertiesPatch.add_member_subclass(:iam_properties, Types::ConnectionPropertiesPatch::IamProperties)
|
@@ -1585,6 +1616,7 @@ module Aws::DataZone
|
|
1585
1616
|
ConnectionSummary.add_member(:physical_endpoints, Shapes::ShapeRef.new(shape: PhysicalEndpoints, required: true, location_name: "physicalEndpoints"))
|
1586
1617
|
ConnectionSummary.add_member(:project_id, Shapes::ShapeRef.new(shape: ProjectId, location_name: "projectId"))
|
1587
1618
|
ConnectionSummary.add_member(:props, Shapes::ShapeRef.new(shape: ConnectionPropertiesOutput, location_name: "props"))
|
1619
|
+
ConnectionSummary.add_member(:scope, Shapes::ShapeRef.new(shape: ConnectionScope, location_name: "scope"))
|
1588
1620
|
ConnectionSummary.add_member(:type, Shapes::ShapeRef.new(shape: ConnectionType, required: true, location_name: "type"))
|
1589
1621
|
ConnectionSummary.struct_class = Types::ConnectionSummary
|
1590
1622
|
|
@@ -1729,9 +1761,11 @@ module Aws::DataZone
|
|
1729
1761
|
CreateConnectionInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
1730
1762
|
CreateConnectionInput.add_member(:description, Shapes::ShapeRef.new(shape: CreateConnectionInputDescriptionString, location_name: "description"))
|
1731
1763
|
CreateConnectionInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
1732
|
-
CreateConnectionInput.add_member(:
|
1764
|
+
CreateConnectionInput.add_member(:enable_trusted_identity_propagation, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableTrustedIdentityPropagation"))
|
1765
|
+
CreateConnectionInput.add_member(:environment_identifier, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "environmentIdentifier"))
|
1733
1766
|
CreateConnectionInput.add_member(:name, Shapes::ShapeRef.new(shape: ConnectionName, required: true, location_name: "name"))
|
1734
1767
|
CreateConnectionInput.add_member(:props, Shapes::ShapeRef.new(shape: ConnectionPropertiesInput, location_name: "props"))
|
1768
|
+
CreateConnectionInput.add_member(:scope, Shapes::ShapeRef.new(shape: ConnectionScope, location_name: "scope"))
|
1735
1769
|
CreateConnectionInput.struct_class = Types::CreateConnectionInput
|
1736
1770
|
|
1737
1771
|
CreateConnectionOutput.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location_name: "connectionId"))
|
@@ -1743,6 +1777,7 @@ module Aws::DataZone
|
|
1743
1777
|
CreateConnectionOutput.add_member(:physical_endpoints, Shapes::ShapeRef.new(shape: PhysicalEndpoints, required: true, location_name: "physicalEndpoints"))
|
1744
1778
|
CreateConnectionOutput.add_member(:project_id, Shapes::ShapeRef.new(shape: ProjectId, location_name: "projectId"))
|
1745
1779
|
CreateConnectionOutput.add_member(:props, Shapes::ShapeRef.new(shape: ConnectionPropertiesOutput, location_name: "props"))
|
1780
|
+
CreateConnectionOutput.add_member(:scope, Shapes::ShapeRef.new(shape: ConnectionScope, location_name: "scope"))
|
1746
1781
|
CreateConnectionOutput.add_member(:type, Shapes::ShapeRef.new(shape: ConnectionType, required: true, location_name: "type"))
|
1747
1782
|
CreateConnectionOutput.struct_class = Types::CreateConnectionOutput
|
1748
1783
|
|
@@ -2997,6 +3032,7 @@ module Aws::DataZone
|
|
2997
3032
|
GetConnectionOutput.add_member(:physical_endpoints, Shapes::ShapeRef.new(shape: PhysicalEndpoints, required: true, location_name: "physicalEndpoints"))
|
2998
3033
|
GetConnectionOutput.add_member(:project_id, Shapes::ShapeRef.new(shape: ProjectId, location_name: "projectId"))
|
2999
3034
|
GetConnectionOutput.add_member(:props, Shapes::ShapeRef.new(shape: ConnectionPropertiesOutput, location_name: "props"))
|
3035
|
+
GetConnectionOutput.add_member(:scope, Shapes::ShapeRef.new(shape: ConnectionScope, location_name: "scope"))
|
3000
3036
|
GetConnectionOutput.add_member(:type, Shapes::ShapeRef.new(shape: ConnectionType, required: true, location_name: "type"))
|
3001
3037
|
GetConnectionOutput.struct_class = Types::GetConnectionOutput
|
3002
3038
|
|
@@ -3874,7 +3910,8 @@ module Aws::DataZone
|
|
3874
3910
|
ListConnectionsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
3875
3911
|
ListConnectionsInput.add_member(:name, Shapes::ShapeRef.new(shape: ConnectionName, location: "querystring", location_name: "name"))
|
3876
3912
|
ListConnectionsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
|
3877
|
-
ListConnectionsInput.add_member(:project_identifier, Shapes::ShapeRef.new(shape: ProjectId,
|
3913
|
+
ListConnectionsInput.add_member(:project_identifier, Shapes::ShapeRef.new(shape: ProjectId, location: "querystring", location_name: "projectIdentifier"))
|
3914
|
+
ListConnectionsInput.add_member(:scope, Shapes::ShapeRef.new(shape: ConnectionScope, location: "querystring", location_name: "scope"))
|
3878
3915
|
ListConnectionsInput.add_member(:sort_by, Shapes::ShapeRef.new(shape: SortFieldConnection, location: "querystring", location_name: "sortBy"))
|
3879
3916
|
ListConnectionsInput.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location: "querystring", location_name: "sortOrder"))
|
3880
3917
|
ListConnectionsInput.add_member(:type, Shapes::ShapeRef.new(shape: ConnectionType, location: "querystring", location_name: "type"))
|
@@ -4442,6 +4479,7 @@ module Aws::DataZone
|
|
4442
4479
|
PhysicalConnectionRequirements.struct_class = Types::PhysicalConnectionRequirements
|
4443
4480
|
|
4444
4481
|
PhysicalEndpoint.add_member(:aws_location, Shapes::ShapeRef.new(shape: AwsLocation, location_name: "awsLocation"))
|
4482
|
+
PhysicalEndpoint.add_member(:enable_trusted_identity_propagation, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableTrustedIdentityPropagation"))
|
4445
4483
|
PhysicalEndpoint.add_member(:glue_connection, Shapes::ShapeRef.new(shape: GlueConnection, location_name: "glueConnection"))
|
4446
4484
|
PhysicalEndpoint.add_member(:glue_connection_name, Shapes::ShapeRef.new(shape: String, location_name: "glueConnectionName"))
|
4447
4485
|
PhysicalEndpoint.add_member(:host, Shapes::ShapeRef.new(shape: String, location_name: "host"))
|
@@ -5490,6 +5528,7 @@ module Aws::DataZone
|
|
5490
5528
|
UpdateConnectionOutput.add_member(:physical_endpoints, Shapes::ShapeRef.new(shape: PhysicalEndpoints, required: true, location_name: "physicalEndpoints"))
|
5491
5529
|
UpdateConnectionOutput.add_member(:project_id, Shapes::ShapeRef.new(shape: ProjectId, location_name: "projectId"))
|
5492
5530
|
UpdateConnectionOutput.add_member(:props, Shapes::ShapeRef.new(shape: ConnectionPropertiesOutput, location_name: "props"))
|
5531
|
+
UpdateConnectionOutput.add_member(:scope, Shapes::ShapeRef.new(shape: ConnectionScope, location_name: "scope"))
|
5493
5532
|
UpdateConnectionOutput.add_member(:type, Shapes::ShapeRef.new(shape: ConnectionType, required: true, location_name: "type"))
|
5494
5533
|
UpdateConnectionOutput.struct_class = Types::UpdateConnectionOutput
|
5495
5534
|
|
@@ -13,17 +13,17 @@ module Aws::DataZone
|
|
13
13
|
# @!attribute region
|
14
14
|
# The AWS region used to dispatch the request.
|
15
15
|
#
|
16
|
-
# @return [
|
16
|
+
# @return [string]
|
17
17
|
#
|
18
18
|
# @!attribute use_fips
|
19
19
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
20
20
|
#
|
21
|
-
# @return [
|
21
|
+
# @return [boolean]
|
22
22
|
#
|
23
23
|
# @!attribute endpoint
|
24
24
|
# Override the endpoint used to send this request
|
25
25
|
#
|
26
|
-
# @return [
|
26
|
+
# @return [string]
|
27
27
|
#
|
28
28
|
EndpointParameters = Struct.new(
|
29
29
|
:region,
|
@@ -594,6 +594,78 @@ module Aws::DataZone
|
|
594
594
|
#
|
595
595
|
class AllUsersGrantFilter < Aws::EmptyStructure; end
|
596
596
|
|
597
|
+
# The Amazon Q properties of the connection.
|
598
|
+
#
|
599
|
+
# @!attribute [rw] auth_mode
|
600
|
+
# The authentication mode of the connection's Amazon Q properties.
|
601
|
+
# @return [String]
|
602
|
+
#
|
603
|
+
# @!attribute [rw] is_enabled
|
604
|
+
# Specifies whether Amazon Q is enabled for the connection.
|
605
|
+
# @return [Boolean]
|
606
|
+
#
|
607
|
+
# @!attribute [rw] profile_arn
|
608
|
+
# The profile ARN of the connection's Amazon Q properties.
|
609
|
+
# @return [String]
|
610
|
+
#
|
611
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AmazonQPropertiesInput AWS API Documentation
|
612
|
+
#
|
613
|
+
class AmazonQPropertiesInput < Struct.new(
|
614
|
+
:auth_mode,
|
615
|
+
:is_enabled,
|
616
|
+
:profile_arn)
|
617
|
+
SENSITIVE = []
|
618
|
+
include Aws::Structure
|
619
|
+
end
|
620
|
+
|
621
|
+
# The Amazon Q properties of the connection.
|
622
|
+
#
|
623
|
+
# @!attribute [rw] auth_mode
|
624
|
+
# The authentication mode of the connection's Amazon Q properties.
|
625
|
+
# @return [String]
|
626
|
+
#
|
627
|
+
# @!attribute [rw] is_enabled
|
628
|
+
# Specifies whether Amazon Q is enabled for the connection.
|
629
|
+
# @return [Boolean]
|
630
|
+
#
|
631
|
+
# @!attribute [rw] profile_arn
|
632
|
+
# The profile ARN of the connection's Amazon Q properties.
|
633
|
+
# @return [String]
|
634
|
+
#
|
635
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AmazonQPropertiesOutput AWS API Documentation
|
636
|
+
#
|
637
|
+
class AmazonQPropertiesOutput < Struct.new(
|
638
|
+
:auth_mode,
|
639
|
+
:is_enabled,
|
640
|
+
:profile_arn)
|
641
|
+
SENSITIVE = []
|
642
|
+
include Aws::Structure
|
643
|
+
end
|
644
|
+
|
645
|
+
# The Amazon Q properties of the connection.
|
646
|
+
#
|
647
|
+
# @!attribute [rw] auth_mode
|
648
|
+
# The authentication mode of the connection's Amazon Q properties.
|
649
|
+
# @return [String]
|
650
|
+
#
|
651
|
+
# @!attribute [rw] is_enabled
|
652
|
+
# Specifies whether Amazon Q is enabled for the connection.
|
653
|
+
# @return [Boolean]
|
654
|
+
#
|
655
|
+
# @!attribute [rw] profile_arn
|
656
|
+
# The profile ARN of the connection's Amazon Q properties.
|
657
|
+
# @return [String]
|
658
|
+
#
|
659
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AmazonQPropertiesPatch AWS API Documentation
|
660
|
+
#
|
661
|
+
class AmazonQPropertiesPatch < Struct.new(
|
662
|
+
:auth_mode,
|
663
|
+
:is_enabled,
|
664
|
+
:profile_arn)
|
665
|
+
SENSITIVE = []
|
666
|
+
include Aws::Structure
|
667
|
+
end
|
668
|
+
|
597
669
|
# The configuration details of the asset filter.
|
598
670
|
#
|
599
671
|
# @note AssetFilterConfiguration is a union - when making an API calls you must set exactly one of the members.
|
@@ -1728,6 +1800,10 @@ module Aws::DataZone
|
|
1728
1800
|
#
|
1729
1801
|
# @note ConnectionPropertiesInput is a union - when making an API calls you must set exactly one of the members.
|
1730
1802
|
#
|
1803
|
+
# @!attribute [rw] amazon_q_properties
|
1804
|
+
# The Amazon Q properties of the connection.
|
1805
|
+
# @return [Types::AmazonQPropertiesInput]
|
1806
|
+
#
|
1731
1807
|
# @!attribute [rw] athena_properties
|
1732
1808
|
# The Amazon Athena properties of a connection.
|
1733
1809
|
# @return [Types::AthenaPropertiesInput]
|
@@ -1763,6 +1839,7 @@ module Aws::DataZone
|
|
1763
1839
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesInput AWS API Documentation
|
1764
1840
|
#
|
1765
1841
|
class ConnectionPropertiesInput < Struct.new(
|
1842
|
+
:amazon_q_properties,
|
1766
1843
|
:athena_properties,
|
1767
1844
|
:glue_properties,
|
1768
1845
|
:hyper_pod_properties,
|
@@ -1776,6 +1853,7 @@ module Aws::DataZone
|
|
1776
1853
|
include Aws::Structure
|
1777
1854
|
include Aws::Structure::Union
|
1778
1855
|
|
1856
|
+
class AmazonQProperties < ConnectionPropertiesInput; end
|
1779
1857
|
class AthenaProperties < ConnectionPropertiesInput; end
|
1780
1858
|
class GlueProperties < ConnectionPropertiesInput; end
|
1781
1859
|
class HyperPodProperties < ConnectionPropertiesInput; end
|
@@ -1791,6 +1869,10 @@ module Aws::DataZone
|
|
1791
1869
|
#
|
1792
1870
|
# @note ConnectionPropertiesOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConnectionPropertiesOutput corresponding to the set member.
|
1793
1871
|
#
|
1872
|
+
# @!attribute [rw] amazon_q_properties
|
1873
|
+
# The Amazon Q properties of the connection.
|
1874
|
+
# @return [Types::AmazonQPropertiesOutput]
|
1875
|
+
#
|
1794
1876
|
# @!attribute [rw] athena_properties
|
1795
1877
|
# The Amazon Athena properties of a connection.
|
1796
1878
|
# @return [Types::AthenaPropertiesOutput]
|
@@ -1826,6 +1908,7 @@ module Aws::DataZone
|
|
1826
1908
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesOutput AWS API Documentation
|
1827
1909
|
#
|
1828
1910
|
class ConnectionPropertiesOutput < Struct.new(
|
1911
|
+
:amazon_q_properties,
|
1829
1912
|
:athena_properties,
|
1830
1913
|
:glue_properties,
|
1831
1914
|
:hyper_pod_properties,
|
@@ -1839,6 +1922,7 @@ module Aws::DataZone
|
|
1839
1922
|
include Aws::Structure
|
1840
1923
|
include Aws::Structure::Union
|
1841
1924
|
|
1925
|
+
class AmazonQProperties < ConnectionPropertiesOutput; end
|
1842
1926
|
class AthenaProperties < ConnectionPropertiesOutput; end
|
1843
1927
|
class GlueProperties < ConnectionPropertiesOutput; end
|
1844
1928
|
class HyperPodProperties < ConnectionPropertiesOutput; end
|
@@ -1854,6 +1938,10 @@ module Aws::DataZone
|
|
1854
1938
|
#
|
1855
1939
|
# @note ConnectionPropertiesPatch is a union - when making an API calls you must set exactly one of the members.
|
1856
1940
|
#
|
1941
|
+
# @!attribute [rw] amazon_q_properties
|
1942
|
+
# The Amazon Q properties of the connection.
|
1943
|
+
# @return [Types::AmazonQPropertiesPatch]
|
1944
|
+
#
|
1857
1945
|
# @!attribute [rw] athena_properties
|
1858
1946
|
# The Amazon Athena properties of a connection properties patch.
|
1859
1947
|
# @return [Types::AthenaPropertiesPatch]
|
@@ -1882,6 +1970,7 @@ module Aws::DataZone
|
|
1882
1970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesPatch AWS API Documentation
|
1883
1971
|
#
|
1884
1972
|
class ConnectionPropertiesPatch < Struct.new(
|
1973
|
+
:amazon_q_properties,
|
1885
1974
|
:athena_properties,
|
1886
1975
|
:glue_properties,
|
1887
1976
|
:iam_properties,
|
@@ -1893,6 +1982,7 @@ module Aws::DataZone
|
|
1893
1982
|
include Aws::Structure
|
1894
1983
|
include Aws::Structure::Union
|
1895
1984
|
|
1985
|
+
class AmazonQProperties < ConnectionPropertiesPatch; end
|
1896
1986
|
class AthenaProperties < ConnectionPropertiesPatch; end
|
1897
1987
|
class GlueProperties < ConnectionPropertiesPatch; end
|
1898
1988
|
class IamProperties < ConnectionPropertiesPatch; end
|
@@ -1936,6 +2026,10 @@ module Aws::DataZone
|
|
1936
2026
|
# The connection props.
|
1937
2027
|
# @return [Types::ConnectionPropertiesOutput]
|
1938
2028
|
#
|
2029
|
+
# @!attribute [rw] scope
|
2030
|
+
# The scope of the connection.
|
2031
|
+
# @return [String]
|
2032
|
+
#
|
1939
2033
|
# @!attribute [rw] type
|
1940
2034
|
# The connection type.
|
1941
2035
|
# @return [String]
|
@@ -1951,6 +2045,7 @@ module Aws::DataZone
|
|
1951
2045
|
:physical_endpoints,
|
1952
2046
|
:project_id,
|
1953
2047
|
:props,
|
2048
|
+
:scope,
|
1954
2049
|
:type)
|
1955
2050
|
SENSITIVE = []
|
1956
2051
|
include Aws::Structure
|
@@ -2651,6 +2746,10 @@ module Aws::DataZone
|
|
2651
2746
|
# The ID of the domain where the connection is created.
|
2652
2747
|
# @return [String]
|
2653
2748
|
#
|
2749
|
+
# @!attribute [rw] enable_trusted_identity_propagation
|
2750
|
+
# Specifies whether the trusted identity propagation is enabled.
|
2751
|
+
# @return [Boolean]
|
2752
|
+
#
|
2654
2753
|
# @!attribute [rw] environment_identifier
|
2655
2754
|
# The ID of the environment where the connection is created.
|
2656
2755
|
# @return [String]
|
@@ -2663,6 +2762,10 @@ module Aws::DataZone
|
|
2663
2762
|
# The connection props.
|
2664
2763
|
# @return [Types::ConnectionPropertiesInput]
|
2665
2764
|
#
|
2765
|
+
# @!attribute [rw] scope
|
2766
|
+
# The scope of the connection.
|
2767
|
+
# @return [String]
|
2768
|
+
#
|
2666
2769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateConnectionInput AWS API Documentation
|
2667
2770
|
#
|
2668
2771
|
class CreateConnectionInput < Struct.new(
|
@@ -2670,9 +2773,11 @@ module Aws::DataZone
|
|
2670
2773
|
:client_token,
|
2671
2774
|
:description,
|
2672
2775
|
:domain_identifier,
|
2776
|
+
:enable_trusted_identity_propagation,
|
2673
2777
|
:environment_identifier,
|
2674
2778
|
:name,
|
2675
|
-
:props
|
2779
|
+
:props,
|
2780
|
+
:scope)
|
2676
2781
|
SENSITIVE = [:description]
|
2677
2782
|
include Aws::Structure
|
2678
2783
|
end
|
@@ -2713,6 +2818,10 @@ module Aws::DataZone
|
|
2713
2818
|
# The connection props.
|
2714
2819
|
# @return [Types::ConnectionPropertiesOutput]
|
2715
2820
|
#
|
2821
|
+
# @!attribute [rw] scope
|
2822
|
+
# The scope of the connection.
|
2823
|
+
# @return [String]
|
2824
|
+
#
|
2716
2825
|
# @!attribute [rw] type
|
2717
2826
|
# The connection type.
|
2718
2827
|
# @return [String]
|
@@ -2729,6 +2838,7 @@ module Aws::DataZone
|
|
2729
2838
|
:physical_endpoints,
|
2730
2839
|
:project_id,
|
2731
2840
|
:props,
|
2841
|
+
:scope,
|
2732
2842
|
:type)
|
2733
2843
|
SENSITIVE = [:description]
|
2734
2844
|
include Aws::Structure
|
@@ -8336,6 +8446,10 @@ module Aws::DataZone
|
|
8336
8446
|
# Connection props.
|
8337
8447
|
# @return [Types::ConnectionPropertiesOutput]
|
8338
8448
|
#
|
8449
|
+
# @!attribute [rw] scope
|
8450
|
+
# The scope of the connection.
|
8451
|
+
# @return [String]
|
8452
|
+
#
|
8339
8453
|
# @!attribute [rw] type
|
8340
8454
|
# The type of the connection.
|
8341
8455
|
# @return [String]
|
@@ -8354,6 +8468,7 @@ module Aws::DataZone
|
|
8354
8468
|
:physical_endpoints,
|
8355
8469
|
:project_id,
|
8356
8470
|
:props,
|
8471
|
+
:scope,
|
8357
8472
|
:type)
|
8358
8473
|
SENSITIVE = [:connection_credentials, :description]
|
8359
8474
|
include Aws::Structure
|
@@ -12485,6 +12600,10 @@ module Aws::DataZone
|
|
12485
12600
|
# The ID of the project where you want to list connections.
|
12486
12601
|
# @return [String]
|
12487
12602
|
#
|
12603
|
+
# @!attribute [rw] scope
|
12604
|
+
# The scope of the connection.
|
12605
|
+
# @return [String]
|
12606
|
+
#
|
12488
12607
|
# @!attribute [rw] sort_by
|
12489
12608
|
# Specifies how you want to sort the listed connections.
|
12490
12609
|
# @return [String]
|
@@ -12506,6 +12625,7 @@ module Aws::DataZone
|
|
12506
12625
|
:name,
|
12507
12626
|
:next_token,
|
12508
12627
|
:project_identifier,
|
12628
|
+
:scope,
|
12509
12629
|
:sort_by,
|
12510
12630
|
:sort_order,
|
12511
12631
|
:type)
|
@@ -15363,6 +15483,11 @@ module Aws::DataZone
|
|
15363
15483
|
# The location of a connection.
|
15364
15484
|
# @return [Types::AwsLocation]
|
15365
15485
|
#
|
15486
|
+
# @!attribute [rw] enable_trusted_identity_propagation
|
15487
|
+
# Specified whether trusted identity propagation for the connection is
|
15488
|
+
# enabled.
|
15489
|
+
# @return [Boolean]
|
15490
|
+
#
|
15366
15491
|
# @!attribute [rw] glue_connection
|
15367
15492
|
# The Amazon Web Services Glue connection.
|
15368
15493
|
# @return [Types::GlueConnection]
|
@@ -15391,6 +15516,7 @@ module Aws::DataZone
|
|
15391
15516
|
#
|
15392
15517
|
class PhysicalEndpoint < Struct.new(
|
15393
15518
|
:aws_location,
|
15519
|
+
:enable_trusted_identity_propagation,
|
15394
15520
|
:glue_connection,
|
15395
15521
|
:glue_connection_name,
|
15396
15522
|
:host,
|
@@ -19725,6 +19851,10 @@ module Aws::DataZone
|
|
19725
19851
|
# The connection props.
|
19726
19852
|
# @return [Types::ConnectionPropertiesOutput]
|
19727
19853
|
#
|
19854
|
+
# @!attribute [rw] scope
|
19855
|
+
# The scope of the connection.
|
19856
|
+
# @return [String]
|
19857
|
+
#
|
19728
19858
|
# @!attribute [rw] type
|
19729
19859
|
# The connection type.
|
19730
19860
|
# @return [String]
|
@@ -19741,6 +19871,7 @@ module Aws::DataZone
|
|
19741
19871
|
:physical_endpoints,
|
19742
19872
|
:project_id,
|
19743
19873
|
:props,
|
19874
|
+
:scope,
|
19744
19875
|
:type)
|
19745
19876
|
SENSITIVE = [:description]
|
19746
19877
|
include Aws::Structure
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -555,7 +555,8 @@ module Aws
|
|
555
555
|
def physical_endpoints: () -> ::Array[Types::PhysicalEndpoint]
|
556
556
|
def project_id: () -> ::String
|
557
557
|
def props: () -> Types::ConnectionPropertiesOutput
|
558
|
-
def
|
558
|
+
def scope: () -> ("DOMAIN" | "PROJECT")
|
559
|
+
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")
|
559
560
|
end
|
560
561
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_connection-instance_method
|
561
562
|
def create_connection: (
|
@@ -568,9 +569,15 @@ module Aws
|
|
568
569
|
?client_token: ::String,
|
569
570
|
?description: ::String,
|
570
571
|
domain_identifier: ::String,
|
571
|
-
|
572
|
+
?enable_trusted_identity_propagation: bool,
|
573
|
+
?environment_identifier: ::String,
|
572
574
|
name: ::String,
|
573
575
|
?props: {
|
576
|
+
amazon_q_properties: {
|
577
|
+
auth_mode: ::String?,
|
578
|
+
is_enabled: bool,
|
579
|
+
profile_arn: ::String?
|
580
|
+
}?,
|
574
581
|
athena_properties: {
|
575
582
|
workgroup_name: ::String?
|
576
583
|
}?,
|
@@ -677,7 +684,8 @@ module Aws
|
|
677
684
|
python_virtual_env: ::String?,
|
678
685
|
worker_type: ::String?
|
679
686
|
}?
|
680
|
-
}
|
687
|
+
},
|
688
|
+
?scope: ("DOMAIN" | "PROJECT")
|
681
689
|
) -> _CreateConnectionResponseSuccess
|
682
690
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectionResponseSuccess
|
683
691
|
|
@@ -1897,7 +1905,8 @@ module Aws
|
|
1897
1905
|
def physical_endpoints: () -> ::Array[Types::PhysicalEndpoint]
|
1898
1906
|
def project_id: () -> ::String
|
1899
1907
|
def props: () -> Types::ConnectionPropertiesOutput
|
1900
|
-
def
|
1908
|
+
def scope: () -> ("DOMAIN" | "PROJECT")
|
1909
|
+
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")
|
1901
1910
|
end
|
1902
1911
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_connection-instance_method
|
1903
1912
|
def get_connection: (
|
@@ -2620,10 +2629,11 @@ module Aws
|
|
2620
2629
|
?max_results: ::Integer,
|
2621
2630
|
?name: ::String,
|
2622
2631
|
?next_token: ::String,
|
2623
|
-
project_identifier: ::String,
|
2632
|
+
?project_identifier: ::String,
|
2633
|
+
?scope: ("DOMAIN" | "PROJECT"),
|
2624
2634
|
?sort_by: ("NAME"),
|
2625
2635
|
?sort_order: ("ASCENDING" | "DESCENDING"),
|
2626
|
-
?type: ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "S3" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA")
|
2636
|
+
?type: ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "S3" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA" | "AMAZON_Q")
|
2627
2637
|
) -> _ListConnectionsResponseSuccess
|
2628
2638
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectionsResponseSuccess
|
2629
2639
|
|
@@ -3646,7 +3656,8 @@ module Aws
|
|
3646
3656
|
def physical_endpoints: () -> ::Array[Types::PhysicalEndpoint]
|
3647
3657
|
def project_id: () -> ::String
|
3648
3658
|
def props: () -> Types::ConnectionPropertiesOutput
|
3649
|
-
def
|
3659
|
+
def scope: () -> ("DOMAIN" | "PROJECT")
|
3660
|
+
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")
|
3650
3661
|
end
|
3651
3662
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_connection-instance_method
|
3652
3663
|
def update_connection: (
|
@@ -3660,6 +3671,11 @@ module Aws
|
|
3660
3671
|
domain_identifier: ::String,
|
3661
3672
|
identifier: ::String,
|
3662
3673
|
?props: {
|
3674
|
+
amazon_q_properties: {
|
3675
|
+
auth_mode: ::String?,
|
3676
|
+
is_enabled: bool,
|
3677
|
+
profile_arn: ::String?
|
3678
|
+
}?,
|
3663
3679
|
athena_properties: {
|
3664
3680
|
workgroup_name: ::String?
|
3665
3681
|
}?,
|
data/sig/types.rbs
CHANGED
@@ -177,6 +177,27 @@ module Aws::DataZone
|
|
177
177
|
class AllUsersGrantFilter < Aws::EmptyStructure
|
178
178
|
end
|
179
179
|
|
180
|
+
class AmazonQPropertiesInput
|
181
|
+
attr_accessor auth_mode: ::String
|
182
|
+
attr_accessor is_enabled: bool
|
183
|
+
attr_accessor profile_arn: ::String
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class AmazonQPropertiesOutput
|
188
|
+
attr_accessor auth_mode: ::String
|
189
|
+
attr_accessor is_enabled: bool
|
190
|
+
attr_accessor profile_arn: ::String
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class AmazonQPropertiesPatch
|
195
|
+
attr_accessor auth_mode: ::String
|
196
|
+
attr_accessor is_enabled: bool
|
197
|
+
attr_accessor profile_arn: ::String
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
180
201
|
class AssetFilterConfiguration
|
181
202
|
attr_accessor column_configuration: Types::ColumnFilterConfiguration
|
182
203
|
attr_accessor row_configuration: Types::RowFilterConfiguration
|
@@ -498,6 +519,7 @@ module Aws::DataZone
|
|
498
519
|
end
|
499
520
|
|
500
521
|
class ConnectionPropertiesInput
|
522
|
+
attr_accessor amazon_q_properties: Types::AmazonQPropertiesInput
|
501
523
|
attr_accessor athena_properties: Types::AthenaPropertiesInput
|
502
524
|
attr_accessor glue_properties: Types::GluePropertiesInput
|
503
525
|
attr_accessor hyper_pod_properties: Types::HyperPodPropertiesInput
|
@@ -509,6 +531,8 @@ module Aws::DataZone
|
|
509
531
|
attr_accessor unknown: untyped
|
510
532
|
SENSITIVE: []
|
511
533
|
|
534
|
+
class AmazonQProperties < ConnectionPropertiesInput
|
535
|
+
end
|
512
536
|
class AthenaProperties < ConnectionPropertiesInput
|
513
537
|
end
|
514
538
|
class GlueProperties < ConnectionPropertiesInput
|
@@ -530,6 +554,7 @@ module Aws::DataZone
|
|
530
554
|
end
|
531
555
|
|
532
556
|
class ConnectionPropertiesOutput
|
557
|
+
attr_accessor amazon_q_properties: Types::AmazonQPropertiesOutput
|
533
558
|
attr_accessor athena_properties: Types::AthenaPropertiesOutput
|
534
559
|
attr_accessor glue_properties: Types::GluePropertiesOutput
|
535
560
|
attr_accessor hyper_pod_properties: Types::HyperPodPropertiesOutput
|
@@ -541,6 +566,8 @@ module Aws::DataZone
|
|
541
566
|
attr_accessor unknown: untyped
|
542
567
|
SENSITIVE: []
|
543
568
|
|
569
|
+
class AmazonQProperties < ConnectionPropertiesOutput
|
570
|
+
end
|
544
571
|
class AthenaProperties < ConnectionPropertiesOutput
|
545
572
|
end
|
546
573
|
class GlueProperties < ConnectionPropertiesOutput
|
@@ -562,6 +589,7 @@ module Aws::DataZone
|
|
562
589
|
end
|
563
590
|
|
564
591
|
class ConnectionPropertiesPatch
|
592
|
+
attr_accessor amazon_q_properties: Types::AmazonQPropertiesPatch
|
565
593
|
attr_accessor athena_properties: Types::AthenaPropertiesPatch
|
566
594
|
attr_accessor glue_properties: Types::GluePropertiesPatch
|
567
595
|
attr_accessor iam_properties: Types::IamPropertiesPatch
|
@@ -571,6 +599,8 @@ module Aws::DataZone
|
|
571
599
|
attr_accessor unknown: untyped
|
572
600
|
SENSITIVE: []
|
573
601
|
|
602
|
+
class AmazonQProperties < ConnectionPropertiesPatch
|
603
|
+
end
|
574
604
|
class AthenaProperties < ConnectionPropertiesPatch
|
575
605
|
end
|
576
606
|
class GlueProperties < ConnectionPropertiesPatch
|
@@ -596,7 +626,8 @@ module Aws::DataZone
|
|
596
626
|
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
597
627
|
attr_accessor project_id: ::String
|
598
628
|
attr_accessor props: Types::ConnectionPropertiesOutput
|
599
|
-
attr_accessor
|
629
|
+
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
630
|
+
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")
|
600
631
|
SENSITIVE: []
|
601
632
|
end
|
602
633
|
|
@@ -760,9 +791,11 @@ module Aws::DataZone
|
|
760
791
|
attr_accessor client_token: ::String
|
761
792
|
attr_accessor description: ::String
|
762
793
|
attr_accessor domain_identifier: ::String
|
794
|
+
attr_accessor enable_trusted_identity_propagation: bool
|
763
795
|
attr_accessor environment_identifier: ::String
|
764
796
|
attr_accessor name: ::String
|
765
797
|
attr_accessor props: Types::ConnectionPropertiesInput
|
798
|
+
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
766
799
|
SENSITIVE: [:description]
|
767
800
|
end
|
768
801
|
|
@@ -776,7 +809,8 @@ module Aws::DataZone
|
|
776
809
|
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
777
810
|
attr_accessor project_id: ::String
|
778
811
|
attr_accessor props: Types::ConnectionPropertiesOutput
|
779
|
-
attr_accessor
|
812
|
+
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
813
|
+
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")
|
780
814
|
SENSITIVE: [:description]
|
781
815
|
end
|
782
816
|
|
@@ -2277,7 +2311,8 @@ module Aws::DataZone
|
|
2277
2311
|
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
2278
2312
|
attr_accessor project_id: ::String
|
2279
2313
|
attr_accessor props: Types::ConnectionPropertiesOutput
|
2280
|
-
attr_accessor
|
2314
|
+
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
2315
|
+
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")
|
2281
2316
|
SENSITIVE: [:connection_credentials, :description]
|
2282
2317
|
end
|
2283
2318
|
|
@@ -2974,7 +3009,7 @@ module Aws::DataZone
|
|
2974
3009
|
attr_accessor compatible_compute_environments: ::Array[("SPARK" | "ATHENA" | "PYTHON")]
|
2975
3010
|
attr_accessor connection_properties: ::Hash[::String, ::String]
|
2976
3011
|
attr_accessor connection_schema_version: ::Integer
|
2977
|
-
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")
|
3012
|
+
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")
|
2978
3013
|
attr_accessor creation_time: ::Time
|
2979
3014
|
attr_accessor description: ::String
|
2980
3015
|
attr_accessor last_connection_validation_time: ::Time
|
@@ -3372,9 +3407,10 @@ module Aws::DataZone
|
|
3372
3407
|
attr_accessor name: ::String
|
3373
3408
|
attr_accessor next_token: ::String
|
3374
3409
|
attr_accessor project_identifier: ::String
|
3410
|
+
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
3375
3411
|
attr_accessor sort_by: ("NAME")
|
3376
3412
|
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
3377
|
-
attr_accessor type: ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "S3" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA")
|
3413
|
+
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")
|
3378
3414
|
SENSITIVE: []
|
3379
3415
|
end
|
3380
3416
|
|
@@ -4120,6 +4156,7 @@ module Aws::DataZone
|
|
4120
4156
|
|
4121
4157
|
class PhysicalEndpoint
|
4122
4158
|
attr_accessor aws_location: Types::AwsLocation
|
4159
|
+
attr_accessor enable_trusted_identity_propagation: bool
|
4123
4160
|
attr_accessor glue_connection: Types::GlueConnection
|
4124
4161
|
attr_accessor glue_connection_name: ::String
|
4125
4162
|
attr_accessor host: ::String
|
@@ -5406,7 +5443,8 @@ module Aws::DataZone
|
|
5406
5443
|
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
5407
5444
|
attr_accessor project_id: ::String
|
5408
5445
|
attr_accessor props: Types::ConnectionPropertiesOutput
|
5409
|
-
attr_accessor
|
5446
|
+
attr_accessor scope: ("DOMAIN" | "PROJECT")
|
5447
|
+
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")
|
5410
5448
|
SENSITIVE: [:description]
|
5411
5449
|
end
|
5412
5450
|
|