aws-sdk-datazone 1.52.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +166 -30
- data/lib/aws-sdk-datazone/client_api.rb +55 -2
- data/lib/aws-sdk-datazone/endpoint_parameters.rb +3 -3
- data/lib/aws-sdk-datazone/types.rb +177 -2
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +25 -7
- data/sig/types.rbs +56 -7
- 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
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.54.0 (2025-10-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Support creating scoped and trustedIdentityPropagation enabled connections.
|
|
8
|
+
|
|
9
|
+
1.53.0 (2025-09-30)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds support for creation of EMR on EKS Connections in Amazon DataZone.
|
|
13
|
+
|
|
4
14
|
1.52.0 (2025-09-11)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.54.0
|
|
@@ -1117,9 +1117,8 @@ module Aws::DataZone
|
|
|
1117
1117
|
# * `--type-revision` (if used) must match a valid revision of the asset
|
|
1118
1118
|
# type.
|
|
1119
1119
|
#
|
|
1120
|
-
# *
|
|
1121
|
-
# `
|
|
1122
|
-
# [create-form-type][2].
|
|
1120
|
+
# * `formsInput` is required when it is associated as required in the
|
|
1121
|
+
# `asset-type`. For more information, see [create-form-type][2].
|
|
1123
1122
|
#
|
|
1124
1123
|
# * Form content must include all required fields as per the form schema
|
|
1125
1124
|
# (e.g., `bucketArn`).
|
|
@@ -1483,8 +1482,8 @@ module Aws::DataZone
|
|
|
1483
1482
|
#
|
|
1484
1483
|
# * Asset must already exist in the domain with identifier.
|
|
1485
1484
|
#
|
|
1486
|
-
# *
|
|
1487
|
-
#
|
|
1485
|
+
# * `formsInput` is required when asset has the form type.
|
|
1486
|
+
# `typeRevision` should be the latest version of form type.
|
|
1488
1487
|
#
|
|
1489
1488
|
# * The form content must include all required fields (e.g., `bucketArn`
|
|
1490
1489
|
# for `S3ObjectCollectionForm`).
|
|
@@ -1629,8 +1628,8 @@ module Aws::DataZone
|
|
|
1629
1628
|
#
|
|
1630
1629
|
# Prerequisites:
|
|
1631
1630
|
#
|
|
1632
|
-
# * The
|
|
1633
|
-
#
|
|
1631
|
+
# * The `formsInput` field is required, however, can be passed as empty
|
|
1632
|
+
# (e.g. `-forms-input {})`.
|
|
1634
1633
|
#
|
|
1635
1634
|
# * You must have `CreateAssetType` permissions.
|
|
1636
1635
|
#
|
|
@@ -1738,7 +1737,10 @@ module Aws::DataZone
|
|
|
1738
1737
|
# @option params [required, String] :domain_identifier
|
|
1739
1738
|
# The ID of the domain where the connection is created.
|
|
1740
1739
|
#
|
|
1741
|
-
# @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
|
|
1742
1744
|
# The ID of the environment where the connection is created.
|
|
1743
1745
|
#
|
|
1744
1746
|
# @option params [required, String] :name
|
|
@@ -1747,6 +1749,9 @@ module Aws::DataZone
|
|
|
1747
1749
|
# @option params [Types::ConnectionPropertiesInput] :props
|
|
1748
1750
|
# The connection props.
|
|
1749
1751
|
#
|
|
1752
|
+
# @option params [String] :scope
|
|
1753
|
+
# The scope of the connection.
|
|
1754
|
+
#
|
|
1750
1755
|
# @return [Types::CreateConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1751
1756
|
#
|
|
1752
1757
|
# * {Types::CreateConnectionOutput#connection_id #connection_id} => String
|
|
@@ -1758,6 +1763,7 @@ module Aws::DataZone
|
|
|
1758
1763
|
# * {Types::CreateConnectionOutput#physical_endpoints #physical_endpoints} => Array<Types::PhysicalEndpoint>
|
|
1759
1764
|
# * {Types::CreateConnectionOutput#project_id #project_id} => String
|
|
1760
1765
|
# * {Types::CreateConnectionOutput#props #props} => Types::ConnectionPropertiesOutput
|
|
1766
|
+
# * {Types::CreateConnectionOutput#scope #scope} => String
|
|
1761
1767
|
# * {Types::CreateConnectionOutput#type #type} => String
|
|
1762
1768
|
#
|
|
1763
1769
|
# @example Request syntax with placeholder values
|
|
@@ -1772,9 +1778,15 @@ module Aws::DataZone
|
|
|
1772
1778
|
# client_token: "String",
|
|
1773
1779
|
# description: "CreateConnectionInputDescriptionString",
|
|
1774
1780
|
# domain_identifier: "DomainId", # required
|
|
1775
|
-
#
|
|
1781
|
+
# enable_trusted_identity_propagation: false,
|
|
1782
|
+
# environment_identifier: "EnvironmentId",
|
|
1776
1783
|
# name: "ConnectionName", # required
|
|
1777
1784
|
# props: {
|
|
1785
|
+
# amazon_q_properties: {
|
|
1786
|
+
# auth_mode: "AmazonQPropertiesInputAuthModeString",
|
|
1787
|
+
# is_enabled: false, # required
|
|
1788
|
+
# profile_arn: "AmazonQPropertiesInputProfileArnString",
|
|
1789
|
+
# },
|
|
1778
1790
|
# athena_properties: {
|
|
1779
1791
|
# workgroup_name: "AthenaPropertiesInputWorkgroupNameString",
|
|
1780
1792
|
# },
|
|
@@ -1876,6 +1888,7 @@ module Aws::DataZone
|
|
|
1876
1888
|
# instance_profile_arn: "SparkEmrPropertiesInputInstanceProfileArnString",
|
|
1877
1889
|
# java_virtual_env: "SparkEmrPropertiesInputJavaVirtualEnvString",
|
|
1878
1890
|
# log_uri: "SparkEmrPropertiesInputLogUriString",
|
|
1891
|
+
# managed_endpoint_arn: "SparkEmrPropertiesInputManagedEndpointArnString",
|
|
1879
1892
|
# python_virtual_env: "SparkEmrPropertiesInputPythonVirtualEnvString",
|
|
1880
1893
|
# runtime_role: "SparkEmrPropertiesInputRuntimeRoleString",
|
|
1881
1894
|
# trusted_certificates_s3_uri: "SparkEmrPropertiesInputTrustedCertificatesS3UriString",
|
|
@@ -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"
|
|
@@ -1982,6 +2000,7 @@ module Aws::DataZone
|
|
|
1982
2000
|
# resp.props.s3_properties.s3_access_grant_location_id #=> String
|
|
1983
2001
|
# resp.props.s3_properties.s3_uri #=> String
|
|
1984
2002
|
# resp.props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
2003
|
+
# resp.props.spark_emr_properties.certificate_data #=> String
|
|
1985
2004
|
# resp.props.spark_emr_properties.compute_arn #=> String
|
|
1986
2005
|
# resp.props.spark_emr_properties.credentials.password #=> String
|
|
1987
2006
|
# resp.props.spark_emr_properties.credentials.username #=> String
|
|
@@ -1991,6 +2010,9 @@ module Aws::DataZone
|
|
|
1991
2010
|
# resp.props.spark_emr_properties.java_virtual_env #=> String
|
|
1992
2011
|
# resp.props.spark_emr_properties.livy_endpoint #=> String
|
|
1993
2012
|
# resp.props.spark_emr_properties.log_uri #=> String
|
|
2013
|
+
# resp.props.spark_emr_properties.managed_endpoint_arn #=> String
|
|
2014
|
+
# resp.props.spark_emr_properties.managed_endpoint_credentials.id #=> String
|
|
2015
|
+
# resp.props.spark_emr_properties.managed_endpoint_credentials.token #=> String
|
|
1994
2016
|
# resp.props.spark_emr_properties.python_virtual_env #=> String
|
|
1995
2017
|
# resp.props.spark_emr_properties.runtime_role #=> String
|
|
1996
2018
|
# resp.props.spark_emr_properties.trusted_certificates_s3_uri #=> String
|
|
@@ -2002,7 +2024,8 @@ module Aws::DataZone
|
|
|
2002
2024
|
# resp.props.spark_glue_properties.number_of_workers #=> Integer
|
|
2003
2025
|
# resp.props.spark_glue_properties.python_virtual_env #=> String
|
|
2004
2026
|
# resp.props.spark_glue_properties.worker_type #=> String
|
|
2005
|
-
# 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"
|
|
2006
2029
|
#
|
|
2007
2030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateConnection AWS API Documentation
|
|
2008
2031
|
#
|
|
@@ -2034,8 +2057,6 @@ module Aws::DataZone
|
|
|
2034
2057
|
#
|
|
2035
2058
|
# * User must have create permissions for data products in the project.
|
|
2036
2059
|
#
|
|
2037
|
-
# * The domain must have Amazon DataZone publishing enabled.
|
|
2038
|
-
#
|
|
2039
2060
|
# @option params [String] :client_token
|
|
2040
2061
|
# A unique, case-sensitive identifier that is provided to ensure the
|
|
2041
2062
|
# idempotency of the request.
|
|
@@ -3061,6 +3082,29 @@ module Aws::DataZone
|
|
|
3061
3082
|
#
|
|
3062
3083
|
# * The name must be unique within the domain.
|
|
3063
3084
|
#
|
|
3085
|
+
# For custom form types, to indicate that a field should be searchable,
|
|
3086
|
+
# annotate it with `@amazon.datazone#searchable`. By default, searchable
|
|
3087
|
+
# fields are indexed for semantic search, where related query terms will
|
|
3088
|
+
# match the attribute value even if they are not stemmed or keyword
|
|
3089
|
+
# matches. To indicate that a field should be indexed for lexical search
|
|
3090
|
+
# (which disables semantic search but supports stemmed and partial
|
|
3091
|
+
# matches), annotate it with
|
|
3092
|
+
# `@amazon.datazone#searchable(modes:["LEXICAL"])`. To indicate that a
|
|
3093
|
+
# field should be indexed for technical identifier search (for more
|
|
3094
|
+
# information on technical identifier search, see:
|
|
3095
|
+
# [https://aws.amazon.com/blogs/big-data/streamline-data-discovery-with-precise-technical-identifier-search-in-amazon-sagemaker-unified-studio/][1]),
|
|
3096
|
+
# annotate it with `@amazon.datazone#searchable(modes:["TECHNICAL"])`.
|
|
3097
|
+
#
|
|
3098
|
+
# To denote that a field will store glossary term ids (which are
|
|
3099
|
+
# filterable via the Search/SearchListings APIs), annotate it with
|
|
3100
|
+
# `@amazon.datazone#glossaryterm("${GLOSSARY_ID}")`, where
|
|
3101
|
+
# `${GLOSSARY_ID}` is the id of the glossary that the glossary terms
|
|
3102
|
+
# stored in the field belong to.
|
|
3103
|
+
#
|
|
3104
|
+
#
|
|
3105
|
+
#
|
|
3106
|
+
# [1]: https://aws.amazon.com/blogs/big-data/streamline-data-discovery-with-precise-technical-identifier-search-in-amazon-sagemaker-unified-studio/
|
|
3107
|
+
#
|
|
3064
3108
|
# @option params [String] :description
|
|
3065
3109
|
# The description of this Amazon DataZone metadata form type.
|
|
3066
3110
|
#
|
|
@@ -3229,7 +3273,7 @@ module Aws::DataZone
|
|
|
3229
3273
|
#
|
|
3230
3274
|
# * Domain must exist.
|
|
3231
3275
|
#
|
|
3232
|
-
# * Glossary must exist
|
|
3276
|
+
# * Glossary must exist.
|
|
3233
3277
|
#
|
|
3234
3278
|
# * The term name must be unique within the glossary.
|
|
3235
3279
|
#
|
|
@@ -4387,9 +4431,6 @@ module Aws::DataZone
|
|
|
4387
4431
|
#
|
|
4388
4432
|
# * The user must have delete permissions for the data product.
|
|
4389
4433
|
#
|
|
4390
|
-
# * Ensure there are no active dependencies (e.g., published links,
|
|
4391
|
-
# assets using the product).
|
|
4392
|
-
#
|
|
4393
4434
|
# * Domain and project must be active.
|
|
4394
4435
|
#
|
|
4395
4436
|
# @option params [required, String] :domain_identifier
|
|
@@ -4808,7 +4849,7 @@ module Aws::DataZone
|
|
|
4808
4849
|
# * The caller must have the `datazone:DeleteGlossary` permission in the
|
|
4809
4850
|
# domain and glossary.
|
|
4810
4851
|
#
|
|
4811
|
-
# *
|
|
4852
|
+
# * Glossary should not be linked to any active metadata forms.
|
|
4812
4853
|
#
|
|
4813
4854
|
# @option params [required, String] :domain_identifier
|
|
4814
4855
|
# The ID of the Amazon DataZone domain in which the business glossary is
|
|
@@ -5634,6 +5675,7 @@ module Aws::DataZone
|
|
|
5634
5675
|
# * {Types::GetConnectionOutput#physical_endpoints #physical_endpoints} => Array<Types::PhysicalEndpoint>
|
|
5635
5676
|
# * {Types::GetConnectionOutput#project_id #project_id} => String
|
|
5636
5677
|
# * {Types::GetConnectionOutput#props #props} => Types::ConnectionPropertiesOutput
|
|
5678
|
+
# * {Types::GetConnectionOutput#scope #scope} => String
|
|
5637
5679
|
# * {Types::GetConnectionOutput#type #type} => String
|
|
5638
5680
|
#
|
|
5639
5681
|
# @example Request syntax with placeholder values
|
|
@@ -5662,6 +5704,7 @@ module Aws::DataZone
|
|
|
5662
5704
|
# resp.physical_endpoints[0].aws_location.aws_account_id #=> String
|
|
5663
5705
|
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
|
5664
5706
|
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
|
5707
|
+
# resp.physical_endpoints[0].enable_trusted_identity_propagation #=> Boolean
|
|
5665
5708
|
# resp.physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
|
5666
5709
|
# resp.physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
|
5667
5710
|
# resp.physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
|
@@ -5683,7 +5726,7 @@ module Aws::DataZone
|
|
|
5683
5726
|
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
|
5684
5727
|
# resp.physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
|
5685
5728
|
# resp.physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
|
5686
|
-
# 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"
|
|
5687
5730
|
# resp.physical_endpoints[0].glue_connection.creation_time #=> Time
|
|
5688
5731
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
|
5689
5732
|
# resp.physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
|
@@ -5710,6 +5753,9 @@ module Aws::DataZone
|
|
|
5710
5753
|
# resp.physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
|
5711
5754
|
# resp.physical_endpoints[0].stage #=> String
|
|
5712
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
|
|
5713
5759
|
# resp.props.athena_properties.workgroup_name #=> String
|
|
5714
5760
|
# resp.props.glue_properties.error_message #=> String
|
|
5715
5761
|
# resp.props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
@@ -5736,6 +5782,7 @@ module Aws::DataZone
|
|
|
5736
5782
|
# resp.props.s3_properties.s3_access_grant_location_id #=> String
|
|
5737
5783
|
# resp.props.s3_properties.s3_uri #=> String
|
|
5738
5784
|
# resp.props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
5785
|
+
# resp.props.spark_emr_properties.certificate_data #=> String
|
|
5739
5786
|
# resp.props.spark_emr_properties.compute_arn #=> String
|
|
5740
5787
|
# resp.props.spark_emr_properties.credentials.password #=> String
|
|
5741
5788
|
# resp.props.spark_emr_properties.credentials.username #=> String
|
|
@@ -5745,6 +5792,9 @@ module Aws::DataZone
|
|
|
5745
5792
|
# resp.props.spark_emr_properties.java_virtual_env #=> String
|
|
5746
5793
|
# resp.props.spark_emr_properties.livy_endpoint #=> String
|
|
5747
5794
|
# resp.props.spark_emr_properties.log_uri #=> String
|
|
5795
|
+
# resp.props.spark_emr_properties.managed_endpoint_arn #=> String
|
|
5796
|
+
# resp.props.spark_emr_properties.managed_endpoint_credentials.id #=> String
|
|
5797
|
+
# resp.props.spark_emr_properties.managed_endpoint_credentials.token #=> String
|
|
5748
5798
|
# resp.props.spark_emr_properties.python_virtual_env #=> String
|
|
5749
5799
|
# resp.props.spark_emr_properties.runtime_role #=> String
|
|
5750
5800
|
# resp.props.spark_emr_properties.trusted_certificates_s3_uri #=> String
|
|
@@ -5756,7 +5806,8 @@ module Aws::DataZone
|
|
|
5756
5806
|
# resp.props.spark_glue_properties.number_of_workers #=> Integer
|
|
5757
5807
|
# resp.props.spark_glue_properties.python_virtual_env #=> String
|
|
5758
5808
|
# resp.props.spark_glue_properties.worker_type #=> String
|
|
5759
|
-
# 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"
|
|
5760
5811
|
#
|
|
5761
5812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetConnection AWS API Documentation
|
|
5762
5813
|
#
|
|
@@ -6521,6 +6572,22 @@ module Aws::DataZone
|
|
|
6521
6572
|
#
|
|
6522
6573
|
# * The form type should not be deleted or in an invalid state.
|
|
6523
6574
|
#
|
|
6575
|
+
# One use case for this API is to determine whether a form field is
|
|
6576
|
+
# indexed for search.
|
|
6577
|
+
#
|
|
6578
|
+
# A searchable field will be annotated with
|
|
6579
|
+
# `@amazon.datazone#searchable`. By default, searchable fields are
|
|
6580
|
+
# indexed for semantic search, where related query terms will match the
|
|
6581
|
+
# attribute value even if they are not stemmed or keyword matches. If a
|
|
6582
|
+
# field is indexed technical identifier search, it will be annotated
|
|
6583
|
+
# with `@amazon.datazone#searchable(modes:["TECHNICAL"])`. If a field is
|
|
6584
|
+
# indexed for lexical search (supports stemmed and prefix matches but
|
|
6585
|
+
# not semantic matches), it will be annotated with
|
|
6586
|
+
# `@amazon.datazone#searchable(modes:["LEXICAL"])`.
|
|
6587
|
+
#
|
|
6588
|
+
# A field storing glossary term IDs (which is filterable) will be
|
|
6589
|
+
# annotated with `@amazon.datazone#glossaryterm("${glossaryId}")`.
|
|
6590
|
+
#
|
|
6524
6591
|
# @option params [required, String] :domain_identifier
|
|
6525
6592
|
# The ID of the Amazon DataZone domain in which this metadata form type
|
|
6526
6593
|
# exists.
|
|
@@ -8049,9 +8116,12 @@ module Aws::DataZone
|
|
|
8049
8116
|
# NextToken value in a subsequent call to ListConnections to list the
|
|
8050
8117
|
# next set of connections.
|
|
8051
8118
|
#
|
|
8052
|
-
# @option params [
|
|
8119
|
+
# @option params [String] :project_identifier
|
|
8053
8120
|
# The ID of the project where you want to list connections.
|
|
8054
8121
|
#
|
|
8122
|
+
# @option params [String] :scope
|
|
8123
|
+
# The scope of the connection.
|
|
8124
|
+
#
|
|
8055
8125
|
# @option params [String] :sort_by
|
|
8056
8126
|
# Specifies how you want to sort the listed connections.
|
|
8057
8127
|
#
|
|
@@ -8076,10 +8146,11 @@ module Aws::DataZone
|
|
|
8076
8146
|
# max_results: 1,
|
|
8077
8147
|
# name: "ConnectionName",
|
|
8078
8148
|
# next_token: "PaginationToken",
|
|
8079
|
-
# project_identifier: "ProjectId",
|
|
8149
|
+
# project_identifier: "ProjectId",
|
|
8150
|
+
# scope: "DOMAIN", # accepts DOMAIN, PROJECT
|
|
8080
8151
|
# sort_by: "NAME", # accepts NAME
|
|
8081
8152
|
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
|
8082
|
-
# 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
|
|
8083
8154
|
# })
|
|
8084
8155
|
#
|
|
8085
8156
|
# @example Response structure
|
|
@@ -8095,6 +8166,7 @@ module Aws::DataZone
|
|
|
8095
8166
|
# resp.items[0].physical_endpoints[0].aws_location.aws_account_id #=> String
|
|
8096
8167
|
# resp.items[0].physical_endpoints[0].aws_location.aws_region #=> String
|
|
8097
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
|
|
8098
8170
|
# resp.items[0].physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
|
8099
8171
|
# resp.items[0].physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
|
8100
8172
|
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
|
@@ -8116,7 +8188,7 @@ module Aws::DataZone
|
|
|
8116
8188
|
# resp.items[0].physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
|
8117
8189
|
# resp.items[0].physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
|
8118
8190
|
# resp.items[0].physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
|
8119
|
-
# 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"
|
|
8120
8192
|
# resp.items[0].physical_endpoints[0].glue_connection.creation_time #=> Time
|
|
8121
8193
|
# resp.items[0].physical_endpoints[0].glue_connection.description #=> String
|
|
8122
8194
|
# resp.items[0].physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
|
@@ -8143,6 +8215,9 @@ module Aws::DataZone
|
|
|
8143
8215
|
# resp.items[0].physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
|
8144
8216
|
# resp.items[0].physical_endpoints[0].stage #=> String
|
|
8145
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
|
|
8146
8221
|
# resp.items[0].props.athena_properties.workgroup_name #=> String
|
|
8147
8222
|
# resp.items[0].props.glue_properties.error_message #=> String
|
|
8148
8223
|
# resp.items[0].props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
@@ -8169,6 +8244,7 @@ module Aws::DataZone
|
|
|
8169
8244
|
# resp.items[0].props.s3_properties.s3_access_grant_location_id #=> String
|
|
8170
8245
|
# resp.items[0].props.s3_properties.s3_uri #=> String
|
|
8171
8246
|
# resp.items[0].props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
8247
|
+
# resp.items[0].props.spark_emr_properties.certificate_data #=> String
|
|
8172
8248
|
# resp.items[0].props.spark_emr_properties.compute_arn #=> String
|
|
8173
8249
|
# resp.items[0].props.spark_emr_properties.credentials.password #=> String
|
|
8174
8250
|
# resp.items[0].props.spark_emr_properties.credentials.username #=> String
|
|
@@ -8178,6 +8254,9 @@ module Aws::DataZone
|
|
|
8178
8254
|
# resp.items[0].props.spark_emr_properties.java_virtual_env #=> String
|
|
8179
8255
|
# resp.items[0].props.spark_emr_properties.livy_endpoint #=> String
|
|
8180
8256
|
# resp.items[0].props.spark_emr_properties.log_uri #=> String
|
|
8257
|
+
# resp.items[0].props.spark_emr_properties.managed_endpoint_arn #=> String
|
|
8258
|
+
# resp.items[0].props.spark_emr_properties.managed_endpoint_credentials.id #=> String
|
|
8259
|
+
# resp.items[0].props.spark_emr_properties.managed_endpoint_credentials.token #=> String
|
|
8181
8260
|
# resp.items[0].props.spark_emr_properties.python_virtual_env #=> String
|
|
8182
8261
|
# resp.items[0].props.spark_emr_properties.runtime_role #=> String
|
|
8183
8262
|
# resp.items[0].props.spark_emr_properties.trusted_certificates_s3_uri #=> String
|
|
@@ -8189,7 +8268,8 @@ module Aws::DataZone
|
|
|
8189
8268
|
# resp.items[0].props.spark_glue_properties.number_of_workers #=> Integer
|
|
8190
8269
|
# resp.items[0].props.spark_glue_properties.python_virtual_env #=> String
|
|
8191
8270
|
# resp.items[0].props.spark_glue_properties.worker_type #=> String
|
|
8192
|
-
# 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"
|
|
8193
8273
|
# resp.next_token #=> String
|
|
8194
8274
|
#
|
|
8195
8275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListConnections AWS API Documentation
|
|
@@ -11294,8 +11374,48 @@ module Aws::DataZone
|
|
|
11294
11374
|
req.send_request(options)
|
|
11295
11375
|
end
|
|
11296
11376
|
|
|
11297
|
-
# Searches listings
|
|
11298
|
-
#
|
|
11377
|
+
# Searches listings in Amazon DataZone.
|
|
11378
|
+
#
|
|
11379
|
+
# SearchListings is a powerful capability that enables users to discover
|
|
11380
|
+
# and explore published assets and data products across their
|
|
11381
|
+
# organization. It provides both basic and advanced search
|
|
11382
|
+
# functionality, allowing users to find resources based on names,
|
|
11383
|
+
# descriptions, metadata, and other attributes. SearchListings also
|
|
11384
|
+
# supports filtering using various criteria such as creation date,
|
|
11385
|
+
# owner, or status. This API is essential for making the wealth of data
|
|
11386
|
+
# resources in an organization discoverable and usable, helping users
|
|
11387
|
+
# find the right data for their needs quickly and efficiently.
|
|
11388
|
+
#
|
|
11389
|
+
# SearchListings returns results in a paginated format. When the result
|
|
11390
|
+
# set is large, the response will include a nextToken, which can be used
|
|
11391
|
+
# to retrieve the next page of results.
|
|
11392
|
+
#
|
|
11393
|
+
# The SearchListings API gives users flexibility in specifying what kind
|
|
11394
|
+
# of search is run.
|
|
11395
|
+
#
|
|
11396
|
+
# To run a free-text search, the `searchText` parameter must be
|
|
11397
|
+
# supplied. By default, all searchable fields are indexed for semantic
|
|
11398
|
+
# search and will return semantic matches for SearchListings queries. To
|
|
11399
|
+
# prevent semantic search indexing for a custom form attribute, see the
|
|
11400
|
+
# [CreateFormType API documentation][1]. To run a lexical search query,
|
|
11401
|
+
# enclose the query with double quotes (""). This will disable
|
|
11402
|
+
# semantic search even for fields that have semantic search enabled and
|
|
11403
|
+
# will only return results that contain the keywords wrapped by double
|
|
11404
|
+
# quotes (order of tokens in the query is not enforced). Free-text
|
|
11405
|
+
# search is supported for all attributes annotated with
|
|
11406
|
+
# @amazon.datazone#searchable.
|
|
11407
|
+
#
|
|
11408
|
+
# To run a filtered search, provide filter clause using the filters
|
|
11409
|
+
# parameter. To filter on glossary terms, use the special attribute
|
|
11410
|
+
# `__DataZoneGlossaryTerms`.
|
|
11411
|
+
#
|
|
11412
|
+
# To find out whether an attribute has been annotated and indexed for a
|
|
11413
|
+
# given search type, use the GetFormType API to retrieve the form
|
|
11414
|
+
# containing the attribute.
|
|
11415
|
+
#
|
|
11416
|
+
#
|
|
11417
|
+
#
|
|
11418
|
+
# [1]: https://docs.aws.amazon.com/datazone/latest/APIReference/API_CreateFormType.html
|
|
11299
11419
|
#
|
|
11300
11420
|
# @option params [Array<String>] :additional_attributes
|
|
11301
11421
|
# Specifies additional attributes for the search.
|
|
@@ -12187,6 +12307,7 @@ module Aws::DataZone
|
|
|
12187
12307
|
# * {Types::UpdateConnectionOutput#physical_endpoints #physical_endpoints} => Array<Types::PhysicalEndpoint>
|
|
12188
12308
|
# * {Types::UpdateConnectionOutput#project_id #project_id} => String
|
|
12189
12309
|
# * {Types::UpdateConnectionOutput#props #props} => Types::ConnectionPropertiesOutput
|
|
12310
|
+
# * {Types::UpdateConnectionOutput#scope #scope} => String
|
|
12190
12311
|
# * {Types::UpdateConnectionOutput#type #type} => String
|
|
12191
12312
|
#
|
|
12192
12313
|
# @example Request syntax with placeholder values
|
|
@@ -12202,6 +12323,11 @@ module Aws::DataZone
|
|
|
12202
12323
|
# domain_identifier: "DomainId", # required
|
|
12203
12324
|
# identifier: "ConnectionId", # required
|
|
12204
12325
|
# props: {
|
|
12326
|
+
# amazon_q_properties: {
|
|
12327
|
+
# auth_mode: "AmazonQPropertiesPatchAuthModeString",
|
|
12328
|
+
# is_enabled: false, # required
|
|
12329
|
+
# profile_arn: "AmazonQPropertiesPatchProfileArnString",
|
|
12330
|
+
# },
|
|
12205
12331
|
# athena_properties: {
|
|
12206
12332
|
# workgroup_name: "AthenaPropertiesPatchWorkgroupNameString",
|
|
12207
12333
|
# },
|
|
@@ -12254,6 +12380,7 @@ module Aws::DataZone
|
|
|
12254
12380
|
# instance_profile_arn: "SparkEmrPropertiesPatchInstanceProfileArnString",
|
|
12255
12381
|
# java_virtual_env: "SparkEmrPropertiesPatchJavaVirtualEnvString",
|
|
12256
12382
|
# log_uri: "SparkEmrPropertiesPatchLogUriString",
|
|
12383
|
+
# managed_endpoint_arn: "SparkEmrPropertiesPatchManagedEndpointArnString",
|
|
12257
12384
|
# python_virtual_env: "SparkEmrPropertiesPatchPythonVirtualEnvString",
|
|
12258
12385
|
# runtime_role: "SparkEmrPropertiesPatchRuntimeRoleString",
|
|
12259
12386
|
# trusted_certificates_s3_uri: "SparkEmrPropertiesPatchTrustedCertificatesS3UriString",
|
|
@@ -12274,6 +12401,7 @@ module Aws::DataZone
|
|
|
12274
12401
|
# resp.physical_endpoints[0].aws_location.aws_account_id #=> String
|
|
12275
12402
|
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
|
12276
12403
|
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
|
12404
|
+
# resp.physical_endpoints[0].enable_trusted_identity_propagation #=> Boolean
|
|
12277
12405
|
# resp.physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
|
12278
12406
|
# resp.physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
|
12279
12407
|
# resp.physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
|
@@ -12295,7 +12423,7 @@ module Aws::DataZone
|
|
|
12295
12423
|
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
|
12296
12424
|
# resp.physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
|
12297
12425
|
# resp.physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
|
12298
|
-
# 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"
|
|
12299
12427
|
# resp.physical_endpoints[0].glue_connection.creation_time #=> Time
|
|
12300
12428
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
|
12301
12429
|
# resp.physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
|
@@ -12322,6 +12450,9 @@ module Aws::DataZone
|
|
|
12322
12450
|
# resp.physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
|
12323
12451
|
# resp.physical_endpoints[0].stage #=> String
|
|
12324
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
|
|
12325
12456
|
# resp.props.athena_properties.workgroup_name #=> String
|
|
12326
12457
|
# resp.props.glue_properties.error_message #=> String
|
|
12327
12458
|
# resp.props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
@@ -12348,6 +12479,7 @@ module Aws::DataZone
|
|
|
12348
12479
|
# resp.props.s3_properties.s3_access_grant_location_id #=> String
|
|
12349
12480
|
# resp.props.s3_properties.s3_uri #=> String
|
|
12350
12481
|
# resp.props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
12482
|
+
# resp.props.spark_emr_properties.certificate_data #=> String
|
|
12351
12483
|
# resp.props.spark_emr_properties.compute_arn #=> String
|
|
12352
12484
|
# resp.props.spark_emr_properties.credentials.password #=> String
|
|
12353
12485
|
# resp.props.spark_emr_properties.credentials.username #=> String
|
|
@@ -12357,6 +12489,9 @@ module Aws::DataZone
|
|
|
12357
12489
|
# resp.props.spark_emr_properties.java_virtual_env #=> String
|
|
12358
12490
|
# resp.props.spark_emr_properties.livy_endpoint #=> String
|
|
12359
12491
|
# resp.props.spark_emr_properties.log_uri #=> String
|
|
12492
|
+
# resp.props.spark_emr_properties.managed_endpoint_arn #=> String
|
|
12493
|
+
# resp.props.spark_emr_properties.managed_endpoint_credentials.id #=> String
|
|
12494
|
+
# resp.props.spark_emr_properties.managed_endpoint_credentials.token #=> String
|
|
12360
12495
|
# resp.props.spark_emr_properties.python_virtual_env #=> String
|
|
12361
12496
|
# resp.props.spark_emr_properties.runtime_role #=> String
|
|
12362
12497
|
# resp.props.spark_emr_properties.trusted_certificates_s3_uri #=> String
|
|
@@ -12368,7 +12503,8 @@ module Aws::DataZone
|
|
|
12368
12503
|
# resp.props.spark_glue_properties.number_of_workers #=> Integer
|
|
12369
12504
|
# resp.props.spark_glue_properties.python_virtual_env #=> String
|
|
12370
12505
|
# resp.props.spark_glue_properties.worker_type #=> String
|
|
12371
|
-
# 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"
|
|
12372
12508
|
#
|
|
12373
12509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateConnection AWS API Documentation
|
|
12374
12510
|
#
|
|
@@ -14058,7 +14194,7 @@ module Aws::DataZone
|
|
|
14058
14194
|
tracer: tracer
|
|
14059
14195
|
)
|
|
14060
14196
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
14061
|
-
context[:gem_version] = '1.
|
|
14197
|
+
context[:gem_version] = '1.54.0'
|
|
14062
14198
|
Seahorse::Client::Request.new(handlers, context)
|
|
14063
14199
|
end
|
|
14064
14200
|
|