aws-sdk-datazone 1.28.0 → 1.30.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 +1763 -20
- data/lib/aws-sdk-datazone/client_api.rb +1242 -19
- data/lib/aws-sdk-datazone/types.rb +3652 -272
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +576 -10
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +967 -10
- metadata +4 -4
@@ -257,11 +257,34 @@ module Aws::DataZone
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -722,6 +745,8 @@ module Aws::DataZone
|
|
722
745
|
# },
|
723
746
|
# create_environment: {
|
724
747
|
# },
|
748
|
+
# create_environment_from_blueprint: {
|
749
|
+
# },
|
725
750
|
# create_environment_profile: {
|
726
751
|
# domain_unit_id: "DomainUnitId",
|
727
752
|
# },
|
@@ -734,6 +759,10 @@ module Aws::DataZone
|
|
734
759
|
# create_project: {
|
735
760
|
# include_child_domain_units: false,
|
736
761
|
# },
|
762
|
+
# create_project_from_project_profile: {
|
763
|
+
# include_child_domain_units: false,
|
764
|
+
# project_profiles: ["String"],
|
765
|
+
# },
|
737
766
|
# delegate_create_environment_profile: {
|
738
767
|
# },
|
739
768
|
# override_domain_unit_owners: {
|
@@ -746,7 +775,7 @@ module Aws::DataZone
|
|
746
775
|
# domain_identifier: "DomainId", # required
|
747
776
|
# entity_identifier: "String", # required
|
748
777
|
# entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE
|
749
|
-
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT
|
778
|
+
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT, CREATE_ENVIRONMENT_FROM_BLUEPRINT, CREATE_PROJECT_FROM_PROJECT_PROFILE
|
750
779
|
# principal: { # required
|
751
780
|
# domain_unit: {
|
752
781
|
# domain_unit_designation: "OWNER", # required, accepts OWNER
|
@@ -1439,6 +1468,293 @@ module Aws::DataZone
|
|
1439
1468
|
req.send_request(options)
|
1440
1469
|
end
|
1441
1470
|
|
1471
|
+
# Creates a new connection. In Amazon DataZone, a connection enables you
|
1472
|
+
# to connect your resources (domains, projects, and environments) to
|
1473
|
+
# external resources and services.
|
1474
|
+
#
|
1475
|
+
# @option params [Types::AwsLocation] :aws_location
|
1476
|
+
# The location where the connection is created.
|
1477
|
+
#
|
1478
|
+
# @option params [String] :client_token
|
1479
|
+
# A unique, case-sensitive identifier that is provided to ensure the
|
1480
|
+
# idempotency of the request.
|
1481
|
+
#
|
1482
|
+
# **A suitable default value is auto-generated.** You should normally
|
1483
|
+
# not need to pass this option.**
|
1484
|
+
#
|
1485
|
+
# @option params [String] :description
|
1486
|
+
# A connection description.
|
1487
|
+
#
|
1488
|
+
# @option params [required, String] :domain_identifier
|
1489
|
+
# The ID of the domain where the connection is created.
|
1490
|
+
#
|
1491
|
+
# @option params [required, String] :environment_identifier
|
1492
|
+
# The ID of the environment where the connection is created.
|
1493
|
+
#
|
1494
|
+
# @option params [required, String] :name
|
1495
|
+
# The connection name.
|
1496
|
+
#
|
1497
|
+
# @option params [Types::ConnectionPropertiesInput] :props
|
1498
|
+
# The connection props.
|
1499
|
+
#
|
1500
|
+
# @return [Types::CreateConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1501
|
+
#
|
1502
|
+
# * {Types::CreateConnectionOutput#connection_id #connection_id} => String
|
1503
|
+
# * {Types::CreateConnectionOutput#description #description} => String
|
1504
|
+
# * {Types::CreateConnectionOutput#domain_id #domain_id} => String
|
1505
|
+
# * {Types::CreateConnectionOutput#domain_unit_id #domain_unit_id} => String
|
1506
|
+
# * {Types::CreateConnectionOutput#environment_id #environment_id} => String
|
1507
|
+
# * {Types::CreateConnectionOutput#name #name} => String
|
1508
|
+
# * {Types::CreateConnectionOutput#physical_endpoints #physical_endpoints} => Array<Types::PhysicalEndpoint>
|
1509
|
+
# * {Types::CreateConnectionOutput#project_id #project_id} => String
|
1510
|
+
# * {Types::CreateConnectionOutput#props #props} => Types::ConnectionPropertiesOutput
|
1511
|
+
# * {Types::CreateConnectionOutput#type #type} => String
|
1512
|
+
#
|
1513
|
+
# @example Request syntax with placeholder values
|
1514
|
+
#
|
1515
|
+
# resp = client.create_connection({
|
1516
|
+
# aws_location: {
|
1517
|
+
# access_role: "AwsLocationAccessRoleString",
|
1518
|
+
# aws_account_id: "AwsAccountId",
|
1519
|
+
# aws_region: "AwsRegion",
|
1520
|
+
# iam_connection_id: "ConnectionId",
|
1521
|
+
# },
|
1522
|
+
# client_token: "String",
|
1523
|
+
# description: "CreateConnectionInputDescriptionString",
|
1524
|
+
# domain_identifier: "DomainId", # required
|
1525
|
+
# environment_identifier: "EnvironmentId", # required
|
1526
|
+
# name: "ConnectionName", # required
|
1527
|
+
# props: {
|
1528
|
+
# athena_properties: {
|
1529
|
+
# workgroup_name: "AthenaPropertiesInputWorkgroupNameString",
|
1530
|
+
# },
|
1531
|
+
# glue_properties: {
|
1532
|
+
# glue_connection_input: {
|
1533
|
+
# athena_properties: {
|
1534
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
1535
|
+
# },
|
1536
|
+
# authentication_configuration: {
|
1537
|
+
# authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
|
1538
|
+
# basic_authentication_credentials: {
|
1539
|
+
# password: "BasicAuthenticationCredentialsPasswordString",
|
1540
|
+
# user_name: "BasicAuthenticationCredentialsUserNameString",
|
1541
|
+
# },
|
1542
|
+
# custom_authentication_credentials: {
|
1543
|
+
# "CredentialMapKeyString" => "CredentialMapValueString",
|
1544
|
+
# },
|
1545
|
+
# kms_key_arn: "AuthenticationConfigurationInputKmsKeyArnString",
|
1546
|
+
# o_auth_2_properties: {
|
1547
|
+
# authorization_code_properties: {
|
1548
|
+
# authorization_code: "AuthorizationCodePropertiesAuthorizationCodeString",
|
1549
|
+
# redirect_uri: "AuthorizationCodePropertiesRedirectUriString",
|
1550
|
+
# },
|
1551
|
+
# o_auth_2_client_application: {
|
1552
|
+
# a_ws_managed_client_application_reference: "OAuth2ClientApplicationAWSManagedClientApplicationReferenceString",
|
1553
|
+
# user_managed_client_application_client_id: "OAuth2ClientApplicationUserManagedClientApplicationClientIdString",
|
1554
|
+
# },
|
1555
|
+
# o_auth_2_credentials: {
|
1556
|
+
# access_token: "GlueOAuth2CredentialsAccessTokenString",
|
1557
|
+
# jwt_token: "GlueOAuth2CredentialsJwtTokenString",
|
1558
|
+
# refresh_token: "GlueOAuth2CredentialsRefreshTokenString",
|
1559
|
+
# user_managed_client_application_client_secret: "GlueOAuth2CredentialsUserManagedClientApplicationClientSecretString",
|
1560
|
+
# },
|
1561
|
+
# o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
|
1562
|
+
# token_url: "OAuth2PropertiesTokenUrlString",
|
1563
|
+
# token_url_parameters_map: {
|
1564
|
+
# "TokenUrlParametersMapKeyString" => "TokenUrlParametersMapValueString",
|
1565
|
+
# },
|
1566
|
+
# },
|
1567
|
+
# secret_arn: "AuthenticationConfigurationInputSecretArnString",
|
1568
|
+
# },
|
1569
|
+
# connection_properties: {
|
1570
|
+
# "String" => "ConnectionPropertiesValueString",
|
1571
|
+
# },
|
1572
|
+
# connection_type: "SNOWFLAKE", # accepts SNOWFLAKE, BIGQUERY, DOCUMENTDB, DYNAMODB, MYSQL, OPENSEARCH, ORACLE, POSTGRESQL, REDSHIFT, SAPHANA, SQLSERVER, TERADATA, VERTICA
|
1573
|
+
# description: "String",
|
1574
|
+
# match_criteria: "GlueConnectionInputMatchCriteriaString",
|
1575
|
+
# name: "GlueConnectionInputNameString",
|
1576
|
+
# physical_connection_requirements: {
|
1577
|
+
# availability_zone: "PhysicalConnectionRequirementsAvailabilityZoneString",
|
1578
|
+
# security_group_id_list: ["SecurityGroupIdListMemberString"],
|
1579
|
+
# subnet_id: "SubnetId",
|
1580
|
+
# subnet_id_list: ["SubnetId"],
|
1581
|
+
# },
|
1582
|
+
# python_properties: {
|
1583
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
1584
|
+
# },
|
1585
|
+
# spark_properties: {
|
1586
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
1587
|
+
# },
|
1588
|
+
# validate_credentials: false,
|
1589
|
+
# validate_for_compute_environments: ["SPARK"], # accepts SPARK, ATHENA, PYTHON
|
1590
|
+
# },
|
1591
|
+
# },
|
1592
|
+
# hyper_pod_properties: {
|
1593
|
+
# cluster_name: "HyperPodPropertiesInputClusterNameString", # required
|
1594
|
+
# },
|
1595
|
+
# iam_properties: {
|
1596
|
+
# glue_lineage_sync_enabled: false,
|
1597
|
+
# },
|
1598
|
+
# redshift_properties: {
|
1599
|
+
# credentials: {
|
1600
|
+
# secret_arn: "RedshiftCredentialsSecretArnString",
|
1601
|
+
# username_password: {
|
1602
|
+
# password: "Password", # required
|
1603
|
+
# username: "Username", # required
|
1604
|
+
# },
|
1605
|
+
# },
|
1606
|
+
# database_name: "RedshiftPropertiesInputDatabaseNameString",
|
1607
|
+
# host: "RedshiftPropertiesInputHostString",
|
1608
|
+
# lineage_sync: {
|
1609
|
+
# enabled: false,
|
1610
|
+
# schedule: {
|
1611
|
+
# schedule: "LineageSyncScheduleScheduleString",
|
1612
|
+
# },
|
1613
|
+
# },
|
1614
|
+
# port: 1,
|
1615
|
+
# storage: {
|
1616
|
+
# cluster_name: "RedshiftStoragePropertiesClusterNameString",
|
1617
|
+
# workgroup_name: "RedshiftStoragePropertiesWorkgroupNameString",
|
1618
|
+
# },
|
1619
|
+
# },
|
1620
|
+
# spark_emr_properties: {
|
1621
|
+
# compute_arn: "SparkEmrPropertiesInputComputeArnString",
|
1622
|
+
# instance_profile_arn: "SparkEmrPropertiesInputInstanceProfileArnString",
|
1623
|
+
# java_virtual_env: "SparkEmrPropertiesInputJavaVirtualEnvString",
|
1624
|
+
# log_uri: "SparkEmrPropertiesInputLogUriString",
|
1625
|
+
# python_virtual_env: "SparkEmrPropertiesInputPythonVirtualEnvString",
|
1626
|
+
# runtime_role: "SparkEmrPropertiesInputRuntimeRoleString",
|
1627
|
+
# trusted_certificates_s3_uri: "SparkEmrPropertiesInputTrustedCertificatesS3UriString",
|
1628
|
+
# },
|
1629
|
+
# spark_glue_properties: {
|
1630
|
+
# additional_args: {
|
1631
|
+
# connection: "String",
|
1632
|
+
# },
|
1633
|
+
# glue_connection_name: "SparkGluePropertiesInputGlueConnectionNameString",
|
1634
|
+
# glue_version: "SparkGluePropertiesInputGlueVersionString",
|
1635
|
+
# idle_timeout: 1,
|
1636
|
+
# java_virtual_env: "SparkGluePropertiesInputJavaVirtualEnvString",
|
1637
|
+
# number_of_workers: 1,
|
1638
|
+
# python_virtual_env: "SparkGluePropertiesInputPythonVirtualEnvString",
|
1639
|
+
# worker_type: "SparkGluePropertiesInputWorkerTypeString",
|
1640
|
+
# },
|
1641
|
+
# },
|
1642
|
+
# })
|
1643
|
+
#
|
1644
|
+
# @example Response structure
|
1645
|
+
#
|
1646
|
+
# resp.connection_id #=> String
|
1647
|
+
# resp.description #=> String
|
1648
|
+
# resp.domain_id #=> String
|
1649
|
+
# resp.domain_unit_id #=> String
|
1650
|
+
# resp.environment_id #=> String
|
1651
|
+
# resp.name #=> String
|
1652
|
+
# resp.physical_endpoints #=> Array
|
1653
|
+
# resp.physical_endpoints[0].aws_location.access_role #=> String
|
1654
|
+
# resp.physical_endpoints[0].aws_location.aws_account_id #=> String
|
1655
|
+
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
1656
|
+
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
1657
|
+
# resp.physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
1658
|
+
# resp.physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
1659
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
1660
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.authorization_code #=> String
|
1661
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.redirect_uri #=> String
|
1662
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.a_ws_managed_client_application_reference #=> String
|
1663
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.user_managed_client_application_client_id #=> String
|
1664
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.access_token #=> String
|
1665
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.jwt_token #=> String
|
1666
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.refresh_token #=> String
|
1667
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.user_managed_client_application_client_secret #=> String
|
1668
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "AUTHORIZATION_CODE", "CLIENT_CREDENTIALS", "JWT_BEARER"
|
1669
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url #=> String
|
1670
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map #=> Hash
|
1671
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map["TokenUrlParametersMapKeyString"] #=> String
|
1672
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.secret_arn #=> String
|
1673
|
+
# resp.physical_endpoints[0].glue_connection.compatible_compute_environments #=> Array
|
1674
|
+
# resp.physical_endpoints[0].glue_connection.compatible_compute_environments[0] #=> String, one of "SPARK", "ATHENA", "PYTHON"
|
1675
|
+
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
1676
|
+
# resp.physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
1677
|
+
# resp.physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
1678
|
+
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
1679
|
+
# resp.physical_endpoints[0].glue_connection.creation_time #=> Time
|
1680
|
+
# resp.physical_endpoints[0].glue_connection.description #=> String
|
1681
|
+
# resp.physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
1682
|
+
# resp.physical_endpoints[0].glue_connection.last_updated_by #=> String
|
1683
|
+
# resp.physical_endpoints[0].glue_connection.last_updated_time #=> Time
|
1684
|
+
# resp.physical_endpoints[0].glue_connection.match_criteria #=> Array
|
1685
|
+
# resp.physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
1686
|
+
# resp.physical_endpoints[0].glue_connection.name #=> String
|
1687
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.availability_zone #=> String
|
1688
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list #=> Array
|
1689
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list[0] #=> String
|
1690
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id #=> String
|
1691
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list #=> Array
|
1692
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list[0] #=> String
|
1693
|
+
# resp.physical_endpoints[0].glue_connection.python_properties #=> Hash
|
1694
|
+
# resp.physical_endpoints[0].glue_connection.python_properties["PropertyMapKeyString"] #=> String
|
1695
|
+
# resp.physical_endpoints[0].glue_connection.spark_properties #=> Hash
|
1696
|
+
# resp.physical_endpoints[0].glue_connection.spark_properties["PropertyMapKeyString"] #=> String
|
1697
|
+
# resp.physical_endpoints[0].glue_connection.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
1698
|
+
# resp.physical_endpoints[0].glue_connection.status_reason #=> String
|
1699
|
+
# resp.physical_endpoints[0].glue_connection_name #=> String
|
1700
|
+
# resp.physical_endpoints[0].host #=> String
|
1701
|
+
# resp.physical_endpoints[0].port #=> Integer
|
1702
|
+
# resp.physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
1703
|
+
# resp.physical_endpoints[0].stage #=> String
|
1704
|
+
# resp.project_id #=> String
|
1705
|
+
# resp.props.athena_properties.workgroup_name #=> String
|
1706
|
+
# resp.props.glue_properties.error_message #=> String
|
1707
|
+
# resp.props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
1708
|
+
# resp.props.hyper_pod_properties.cluster_arn #=> String
|
1709
|
+
# resp.props.hyper_pod_properties.cluster_name #=> String
|
1710
|
+
# resp.props.hyper_pod_properties.orchestrator #=> String, one of "EKS", "SLURM"
|
1711
|
+
# resp.props.iam_properties.environment_id #=> String
|
1712
|
+
# resp.props.iam_properties.glue_lineage_sync_enabled #=> Boolean
|
1713
|
+
# resp.props.redshift_properties.credentials.secret_arn #=> String
|
1714
|
+
# resp.props.redshift_properties.credentials.username_password.password #=> String
|
1715
|
+
# resp.props.redshift_properties.credentials.username_password.username #=> String
|
1716
|
+
# resp.props.redshift_properties.database_name #=> String
|
1717
|
+
# resp.props.redshift_properties.is_provisioned_secret #=> Boolean
|
1718
|
+
# resp.props.redshift_properties.jdbc_iam_url #=> String
|
1719
|
+
# resp.props.redshift_properties.jdbc_url #=> String
|
1720
|
+
# resp.props.redshift_properties.lineage_sync.enabled #=> Boolean
|
1721
|
+
# resp.props.redshift_properties.lineage_sync.lineage_job_id #=> String
|
1722
|
+
# resp.props.redshift_properties.lineage_sync.schedule.schedule #=> String
|
1723
|
+
# resp.props.redshift_properties.redshift_temp_dir #=> String
|
1724
|
+
# resp.props.redshift_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
1725
|
+
# resp.props.redshift_properties.storage.cluster_name #=> String
|
1726
|
+
# resp.props.redshift_properties.storage.workgroup_name #=> String
|
1727
|
+
# resp.props.spark_emr_properties.compute_arn #=> String
|
1728
|
+
# resp.props.spark_emr_properties.credentials.password #=> String
|
1729
|
+
# resp.props.spark_emr_properties.credentials.username #=> String
|
1730
|
+
# resp.props.spark_emr_properties.credentials_expiration #=> Time
|
1731
|
+
# resp.props.spark_emr_properties.governance_type #=> String, one of "AWS_MANAGED", "USER_MANAGED"
|
1732
|
+
# resp.props.spark_emr_properties.instance_profile_arn #=> String
|
1733
|
+
# resp.props.spark_emr_properties.java_virtual_env #=> String
|
1734
|
+
# resp.props.spark_emr_properties.livy_endpoint #=> String
|
1735
|
+
# resp.props.spark_emr_properties.log_uri #=> String
|
1736
|
+
# resp.props.spark_emr_properties.python_virtual_env #=> String
|
1737
|
+
# resp.props.spark_emr_properties.runtime_role #=> String
|
1738
|
+
# resp.props.spark_emr_properties.trusted_certificates_s3_uri #=> String
|
1739
|
+
# resp.props.spark_glue_properties.additional_args.connection #=> String
|
1740
|
+
# resp.props.spark_glue_properties.glue_connection_name #=> String
|
1741
|
+
# resp.props.spark_glue_properties.glue_version #=> String
|
1742
|
+
# resp.props.spark_glue_properties.idle_timeout #=> Integer
|
1743
|
+
# resp.props.spark_glue_properties.java_virtual_env #=> String
|
1744
|
+
# resp.props.spark_glue_properties.number_of_workers #=> Integer
|
1745
|
+
# resp.props.spark_glue_properties.python_virtual_env #=> String
|
1746
|
+
# resp.props.spark_glue_properties.worker_type #=> String
|
1747
|
+
# resp.type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
1748
|
+
#
|
1749
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateConnection AWS API Documentation
|
1750
|
+
#
|
1751
|
+
# @overload create_connection(params = {})
|
1752
|
+
# @param [Hash] params ({})
|
1753
|
+
def create_connection(params = {}, options = {})
|
1754
|
+
req = build_request(:create_connection, params)
|
1755
|
+
req.send_request(options)
|
1756
|
+
end
|
1757
|
+
|
1442
1758
|
# Creates a data product.
|
1443
1759
|
#
|
1444
1760
|
# @option params [String] :client_token
|
@@ -1676,6 +1992,9 @@ module Aws::DataZone
|
|
1676
1992
|
# Specifies the configuration of the data source. It can be set to
|
1677
1993
|
# either `glueRunConfiguration` or `redshiftRunConfiguration`.
|
1678
1994
|
#
|
1995
|
+
# @option params [String] :connection_identifier
|
1996
|
+
# The ID of the connection.
|
1997
|
+
#
|
1679
1998
|
# @option params [String] :description
|
1680
1999
|
# The description of the data source.
|
1681
2000
|
#
|
@@ -1685,7 +2004,7 @@ module Aws::DataZone
|
|
1685
2004
|
# @option params [String] :enable_setting
|
1686
2005
|
# Specifies whether the data source is enabled.
|
1687
2006
|
#
|
1688
|
-
# @option params [
|
2007
|
+
# @option params [String] :environment_identifier
|
1689
2008
|
# The unique identifier of the Amazon DataZone environment to which the
|
1690
2009
|
# data source publishes assets.
|
1691
2010
|
#
|
@@ -1714,6 +2033,7 @@ module Aws::DataZone
|
|
1714
2033
|
#
|
1715
2034
|
# * {Types::CreateDataSourceOutput#asset_forms_output #asset_forms_output} => Array<Types::FormOutput>
|
1716
2035
|
# * {Types::CreateDataSourceOutput#configuration #configuration} => Types::DataSourceConfigurationOutput
|
2036
|
+
# * {Types::CreateDataSourceOutput#connection_id #connection_id} => String
|
1717
2037
|
# * {Types::CreateDataSourceOutput#created_at #created_at} => Time
|
1718
2038
|
# * {Types::CreateDataSourceOutput#description #description} => String
|
1719
2039
|
# * {Types::CreateDataSourceOutput#domain_id #domain_id} => String
|
@@ -1748,6 +2068,7 @@ module Aws::DataZone
|
|
1748
2068
|
# configuration: {
|
1749
2069
|
# glue_run_configuration: {
|
1750
2070
|
# auto_import_data_quality_result: false,
|
2071
|
+
# catalog_name: "GlueRunConfigurationInputCatalogNameString",
|
1751
2072
|
# data_access_role: "GlueRunConfigurationInputDataAccessRoleString",
|
1752
2073
|
# relational_filter_configurations: [ # required
|
1753
2074
|
# {
|
@@ -1764,10 +2085,10 @@ module Aws::DataZone
|
|
1764
2085
|
# },
|
1765
2086
|
# redshift_run_configuration: {
|
1766
2087
|
# data_access_role: "RedshiftRunConfigurationInputDataAccessRoleString",
|
1767
|
-
# redshift_credential_configuration: {
|
2088
|
+
# redshift_credential_configuration: {
|
1768
2089
|
# secret_manager_arn: "RedshiftCredentialConfigurationSecretManagerArnString", # required
|
1769
2090
|
# },
|
1770
|
-
# redshift_storage: {
|
2091
|
+
# redshift_storage: {
|
1771
2092
|
# redshift_cluster_source: {
|
1772
2093
|
# cluster_name: "RedshiftClusterStorageClusterNameString", # required
|
1773
2094
|
# },
|
@@ -1788,13 +2109,19 @@ module Aws::DataZone
|
|
1788
2109
|
# },
|
1789
2110
|
# ],
|
1790
2111
|
# },
|
2112
|
+
# sage_maker_run_configuration: {
|
2113
|
+
# tracking_assets: { # required
|
2114
|
+
# "SageMakerAssetType" => ["SageMakerResourceArn"],
|
2115
|
+
# },
|
2116
|
+
# },
|
1791
2117
|
# },
|
2118
|
+
# connection_identifier: "CreateDataSourceInputConnectionIdentifierString",
|
1792
2119
|
# description: "Description",
|
1793
2120
|
# domain_identifier: "DomainId", # required
|
1794
2121
|
# enable_setting: "ENABLED", # accepts ENABLED, DISABLED
|
1795
|
-
# environment_identifier: "
|
2122
|
+
# environment_identifier: "CreateDataSourceInputEnvironmentIdentifierString",
|
1796
2123
|
# name: "Name", # required
|
1797
|
-
# project_identifier: "
|
2124
|
+
# project_identifier: "CreateDataSourceInputProjectIdentifierString", # required
|
1798
2125
|
# publish_on_import: false,
|
1799
2126
|
# recommendation: {
|
1800
2127
|
# enable_business_name_generation: false,
|
@@ -1815,6 +2142,7 @@ module Aws::DataZone
|
|
1815
2142
|
# resp.asset_forms_output[0].type_revision #=> String
|
1816
2143
|
# resp.configuration.glue_run_configuration.account_id #=> String
|
1817
2144
|
# resp.configuration.glue_run_configuration.auto_import_data_quality_result #=> Boolean
|
2145
|
+
# resp.configuration.glue_run_configuration.catalog_name #=> String
|
1818
2146
|
# resp.configuration.glue_run_configuration.data_access_role #=> String
|
1819
2147
|
# resp.configuration.glue_run_configuration.region #=> String
|
1820
2148
|
# resp.configuration.glue_run_configuration.relational_filter_configurations #=> Array
|
@@ -1835,6 +2163,12 @@ module Aws::DataZone
|
|
1835
2163
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].expression #=> String
|
1836
2164
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].type #=> String, one of "INCLUDE", "EXCLUDE"
|
1837
2165
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].schema_name #=> String
|
2166
|
+
# resp.configuration.sage_maker_run_configuration.account_id #=> String
|
2167
|
+
# resp.configuration.sage_maker_run_configuration.region #=> String
|
2168
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets #=> Hash
|
2169
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"] #=> Array
|
2170
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"][0] #=> String
|
2171
|
+
# resp.connection_id #=> String
|
1838
2172
|
# resp.created_at #=> Time
|
1839
2173
|
# resp.description #=> String
|
1840
2174
|
# resp.domain_id #=> String
|
@@ -1883,6 +2217,9 @@ module Aws::DataZone
|
|
1883
2217
|
# domain is created. The domain execution role is created in the Amazon
|
1884
2218
|
# Web Services account that houses the Amazon DataZone domain.
|
1885
2219
|
#
|
2220
|
+
# @option params [String] :domain_version
|
2221
|
+
# The version of the domain that is created.
|
2222
|
+
#
|
1886
2223
|
# @option params [String] :kms_key_identifier
|
1887
2224
|
# The identifier of the Amazon Web Services Key Management Service (KMS)
|
1888
2225
|
# key that is used to encrypt the Amazon DataZone domain, metadata, and
|
@@ -1891,6 +2228,9 @@ module Aws::DataZone
|
|
1891
2228
|
# @option params [required, String] :name
|
1892
2229
|
# The name of the Amazon DataZone domain.
|
1893
2230
|
#
|
2231
|
+
# @option params [String] :service_role
|
2232
|
+
# The service role of the domain that is created.
|
2233
|
+
#
|
1894
2234
|
# @option params [Types::SingleSignOn] :single_sign_on
|
1895
2235
|
# The single-sign on configuration of the Amazon DataZone domain.
|
1896
2236
|
#
|
@@ -1902,11 +2242,13 @@ module Aws::DataZone
|
|
1902
2242
|
# * {Types::CreateDomainOutput#arn #arn} => String
|
1903
2243
|
# * {Types::CreateDomainOutput#description #description} => String
|
1904
2244
|
# * {Types::CreateDomainOutput#domain_execution_role #domain_execution_role} => String
|
2245
|
+
# * {Types::CreateDomainOutput#domain_version #domain_version} => String
|
1905
2246
|
# * {Types::CreateDomainOutput#id #id} => String
|
1906
2247
|
# * {Types::CreateDomainOutput#kms_key_identifier #kms_key_identifier} => String
|
1907
2248
|
# * {Types::CreateDomainOutput#name #name} => String
|
1908
2249
|
# * {Types::CreateDomainOutput#portal_url #portal_url} => String
|
1909
2250
|
# * {Types::CreateDomainOutput#root_domain_unit_id #root_domain_unit_id} => String
|
2251
|
+
# * {Types::CreateDomainOutput#service_role #service_role} => String
|
1910
2252
|
# * {Types::CreateDomainOutput#single_sign_on #single_sign_on} => Types::SingleSignOn
|
1911
2253
|
# * {Types::CreateDomainOutput#status #status} => String
|
1912
2254
|
# * {Types::CreateDomainOutput#tags #tags} => Hash<String,String>
|
@@ -1917,8 +2259,10 @@ module Aws::DataZone
|
|
1917
2259
|
# client_token: "String",
|
1918
2260
|
# description: "String",
|
1919
2261
|
# domain_execution_role: "RoleArn", # required
|
2262
|
+
# domain_version: "V1", # accepts V1, V2
|
1920
2263
|
# kms_key_identifier: "KmsKeyArn",
|
1921
2264
|
# name: "String", # required
|
2265
|
+
# service_role: "RoleArn",
|
1922
2266
|
# single_sign_on: {
|
1923
2267
|
# type: "IAM_IDC", # accepts IAM_IDC, DISABLED
|
1924
2268
|
# user_assignment: "AUTOMATIC", # accepts AUTOMATIC, MANUAL
|
@@ -1933,11 +2277,13 @@ module Aws::DataZone
|
|
1933
2277
|
# resp.arn #=> String
|
1934
2278
|
# resp.description #=> String
|
1935
2279
|
# resp.domain_execution_role #=> String
|
2280
|
+
# resp.domain_version #=> String, one of "V1", "V2"
|
1936
2281
|
# resp.id #=> String
|
1937
2282
|
# resp.kms_key_identifier #=> String
|
1938
2283
|
# resp.name #=> String
|
1939
2284
|
# resp.portal_url #=> String
|
1940
2285
|
# resp.root_domain_unit_id #=> String
|
2286
|
+
# resp.service_role #=> String
|
1941
2287
|
# resp.single_sign_on.type #=> String, one of "IAM_IDC", "DISABLED"
|
1942
2288
|
# resp.single_sign_on.user_assignment #=> String, one of "AUTOMATIC", "MANUAL"
|
1943
2289
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "CREATION_FAILED", "DELETING", "DELETED", "DELETION_FAILED"
|
@@ -2022,6 +2368,9 @@ module Aws::DataZone
|
|
2022
2368
|
|
2023
2369
|
# Create an Amazon DataZone environment.
|
2024
2370
|
#
|
2371
|
+
# @option params [Integer] :deployment_order
|
2372
|
+
# The deployment order of the environment.
|
2373
|
+
#
|
2025
2374
|
# @option params [String] :description
|
2026
2375
|
# The description of the Amazon DataZone environment.
|
2027
2376
|
#
|
@@ -2038,6 +2387,9 @@ module Aws::DataZone
|
|
2038
2387
|
# @option params [String] :environment_blueprint_identifier
|
2039
2388
|
# The ID of the blueprint with which the environment is being created.
|
2040
2389
|
#
|
2390
|
+
# @option params [String] :environment_configuration_id
|
2391
|
+
# The configuration ID of the environment.
|
2392
|
+
#
|
2041
2393
|
# @option params [required, String] :environment_profile_identifier
|
2042
2394
|
# The identifier of the environment profile that is used to create this
|
2043
2395
|
# Amazon DataZone environment.
|
@@ -2083,11 +2435,13 @@ module Aws::DataZone
|
|
2083
2435
|
# @example Request syntax with placeholder values
|
2084
2436
|
#
|
2085
2437
|
# resp = client.create_environment({
|
2438
|
+
# deployment_order: 1,
|
2086
2439
|
# description: "String",
|
2087
2440
|
# domain_identifier: "DomainId", # required
|
2088
2441
|
# environment_account_identifier: "String",
|
2089
2442
|
# environment_account_region: "String",
|
2090
2443
|
# environment_blueprint_identifier: "String",
|
2444
|
+
# environment_configuration_id: "String",
|
2091
2445
|
# environment_profile_identifier: "EnvironmentProfileId", # required
|
2092
2446
|
# glossary_terms: ["GlossaryTermId"],
|
2093
2447
|
# name: "String", # required
|
@@ -2643,6 +2997,12 @@ module Aws::DataZone
|
|
2643
2997
|
# @option params [required, String] :name
|
2644
2998
|
# The name of the Amazon DataZone project.
|
2645
2999
|
#
|
3000
|
+
# @option params [String] :project_profile_id
|
3001
|
+
# The ID of the project profile.
|
3002
|
+
#
|
3003
|
+
# @option params [Array<Types::EnvironmentConfigurationUserParameter>] :user_parameters
|
3004
|
+
# The user parameters of the project.
|
3005
|
+
#
|
2646
3006
|
# @return [Types::CreateProjectOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2647
3007
|
#
|
2648
3008
|
# * {Types::CreateProjectOutput#created_at #created_at} => Time
|
@@ -2650,12 +3010,15 @@ module Aws::DataZone
|
|
2650
3010
|
# * {Types::CreateProjectOutput#description #description} => String
|
2651
3011
|
# * {Types::CreateProjectOutput#domain_id #domain_id} => String
|
2652
3012
|
# * {Types::CreateProjectOutput#domain_unit_id #domain_unit_id} => String
|
3013
|
+
# * {Types::CreateProjectOutput#environment_deployment_details #environment_deployment_details} => Types::EnvironmentDeploymentDetails
|
2653
3014
|
# * {Types::CreateProjectOutput#failure_reasons #failure_reasons} => Array<Types::ProjectDeletionError>
|
2654
3015
|
# * {Types::CreateProjectOutput#glossary_terms #glossary_terms} => Array<String>
|
2655
3016
|
# * {Types::CreateProjectOutput#id #id} => String
|
2656
3017
|
# * {Types::CreateProjectOutput#last_updated_at #last_updated_at} => Time
|
2657
3018
|
# * {Types::CreateProjectOutput#name #name} => String
|
3019
|
+
# * {Types::CreateProjectOutput#project_profile_id #project_profile_id} => String
|
2658
3020
|
# * {Types::CreateProjectOutput#project_status #project_status} => String
|
3021
|
+
# * {Types::CreateProjectOutput#user_parameters #user_parameters} => Array<Types::EnvironmentConfigurationUserParameter>
|
2659
3022
|
#
|
2660
3023
|
# @example Request syntax with placeholder values
|
2661
3024
|
#
|
@@ -2665,6 +3028,18 @@ module Aws::DataZone
|
|
2665
3028
|
# domain_unit_id: "DomainUnitId",
|
2666
3029
|
# glossary_terms: ["GlossaryTermId"],
|
2667
3030
|
# name: "ProjectName", # required
|
3031
|
+
# project_profile_id: "ProjectProfileId",
|
3032
|
+
# user_parameters: [
|
3033
|
+
# {
|
3034
|
+
# environment_configuration_name: "EnvironmentConfigurationName",
|
3035
|
+
# environment_parameters: [
|
3036
|
+
# {
|
3037
|
+
# name: "String",
|
3038
|
+
# value: "String",
|
3039
|
+
# },
|
3040
|
+
# ],
|
3041
|
+
# },
|
3042
|
+
# ],
|
2668
3043
|
# })
|
2669
3044
|
#
|
2670
3045
|
# @example Response structure
|
@@ -2674,6 +3049,11 @@ module Aws::DataZone
|
|
2674
3049
|
# resp.description #=> String
|
2675
3050
|
# resp.domain_id #=> String
|
2676
3051
|
# resp.domain_unit_id #=> String
|
3052
|
+
# resp.environment_deployment_details.environment_failure_reasons #=> Hash
|
3053
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"] #=> Array
|
3054
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"][0].code #=> String
|
3055
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"][0].message #=> String
|
3056
|
+
# resp.environment_deployment_details.overall_deployment_status #=> String, one of "PENDING_DEPLOYMENT", "IN_PROGRESS", "SUCCESSFUL", "FAILED_VALIDATION", "FAILED_DEPLOYMENT"
|
2677
3057
|
# resp.failure_reasons #=> Array
|
2678
3058
|
# resp.failure_reasons[0].code #=> String
|
2679
3059
|
# resp.failure_reasons[0].message #=> String
|
@@ -2682,7 +3062,13 @@ module Aws::DataZone
|
|
2682
3062
|
# resp.id #=> String
|
2683
3063
|
# resp.last_updated_at #=> Time
|
2684
3064
|
# resp.name #=> String
|
3065
|
+
# resp.project_profile_id #=> String
|
2685
3066
|
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED"
|
3067
|
+
# resp.user_parameters #=> Array
|
3068
|
+
# resp.user_parameters[0].environment_configuration_name #=> String
|
3069
|
+
# resp.user_parameters[0].environment_parameters #=> Array
|
3070
|
+
# resp.user_parameters[0].environment_parameters[0].name #=> String
|
3071
|
+
# resp.user_parameters[0].environment_parameters[0].value #=> String
|
2686
3072
|
#
|
2687
3073
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProject AWS API Documentation
|
2688
3074
|
#
|
@@ -2731,6 +3117,125 @@ module Aws::DataZone
|
|
2731
3117
|
req.send_request(options)
|
2732
3118
|
end
|
2733
3119
|
|
3120
|
+
# Creates a project profile.
|
3121
|
+
#
|
3122
|
+
# @option params [String] :description
|
3123
|
+
# A description of a project profile.
|
3124
|
+
#
|
3125
|
+
# @option params [required, String] :domain_identifier
|
3126
|
+
# A domain ID of the project profile.
|
3127
|
+
#
|
3128
|
+
# @option params [String] :domain_unit_identifier
|
3129
|
+
# A domain unit ID of the project profile.
|
3130
|
+
#
|
3131
|
+
# @option params [Array<Types::EnvironmentConfiguration>] :environment_configurations
|
3132
|
+
# Environment configurations of the project profile.
|
3133
|
+
#
|
3134
|
+
# @option params [required, String] :name
|
3135
|
+
# Project profile name.
|
3136
|
+
#
|
3137
|
+
# @option params [String] :status
|
3138
|
+
# Project profile status.
|
3139
|
+
#
|
3140
|
+
# @return [Types::CreateProjectProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3141
|
+
#
|
3142
|
+
# * {Types::CreateProjectProfileOutput#created_at #created_at} => Time
|
3143
|
+
# * {Types::CreateProjectProfileOutput#created_by #created_by} => String
|
3144
|
+
# * {Types::CreateProjectProfileOutput#description #description} => String
|
3145
|
+
# * {Types::CreateProjectProfileOutput#domain_id #domain_id} => String
|
3146
|
+
# * {Types::CreateProjectProfileOutput#domain_unit_id #domain_unit_id} => String
|
3147
|
+
# * {Types::CreateProjectProfileOutput#environment_configurations #environment_configurations} => Array<Types::EnvironmentConfiguration>
|
3148
|
+
# * {Types::CreateProjectProfileOutput#id #id} => String
|
3149
|
+
# * {Types::CreateProjectProfileOutput#last_updated_at #last_updated_at} => Time
|
3150
|
+
# * {Types::CreateProjectProfileOutput#name #name} => String
|
3151
|
+
# * {Types::CreateProjectProfileOutput#status #status} => String
|
3152
|
+
#
|
3153
|
+
# @example Request syntax with placeholder values
|
3154
|
+
#
|
3155
|
+
# resp = client.create_project_profile({
|
3156
|
+
# description: "Description",
|
3157
|
+
# domain_identifier: "DomainId", # required
|
3158
|
+
# domain_unit_identifier: "DomainUnitId",
|
3159
|
+
# environment_configurations: [
|
3160
|
+
# {
|
3161
|
+
# aws_account: { # required
|
3162
|
+
# aws_account_id: "AwsAccountId",
|
3163
|
+
# aws_account_id_path: "ParameterStorePath",
|
3164
|
+
# },
|
3165
|
+
# aws_region: { # required
|
3166
|
+
# region_name: "RegionName",
|
3167
|
+
# region_name_path: "ParameterStorePath",
|
3168
|
+
# },
|
3169
|
+
# configuration_parameters: {
|
3170
|
+
# parameter_overrides: [
|
3171
|
+
# {
|
3172
|
+
# is_editable: false,
|
3173
|
+
# name: "EnvironmentConfigurationParameterName",
|
3174
|
+
# value: "String",
|
3175
|
+
# },
|
3176
|
+
# ],
|
3177
|
+
# resolved_parameters: [
|
3178
|
+
# {
|
3179
|
+
# is_editable: false,
|
3180
|
+
# name: "EnvironmentConfigurationParameterName",
|
3181
|
+
# value: "String",
|
3182
|
+
# },
|
3183
|
+
# ],
|
3184
|
+
# ssm_path: "ParameterStorePath",
|
3185
|
+
# },
|
3186
|
+
# deployment_mode: "ON_CREATE", # accepts ON_CREATE, ON_DEMAND
|
3187
|
+
# deployment_order: 1,
|
3188
|
+
# description: "Description",
|
3189
|
+
# environment_blueprint_id: "EnvironmentBlueprintId", # required
|
3190
|
+
# id: "EnvironmentConfigurationId",
|
3191
|
+
# name: "EnvironmentConfigurationName", # required
|
3192
|
+
# },
|
3193
|
+
# ],
|
3194
|
+
# name: "ProjectProfileName", # required
|
3195
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
3196
|
+
# })
|
3197
|
+
#
|
3198
|
+
# @example Response structure
|
3199
|
+
#
|
3200
|
+
# resp.created_at #=> Time
|
3201
|
+
# resp.created_by #=> String
|
3202
|
+
# resp.description #=> String
|
3203
|
+
# resp.domain_id #=> String
|
3204
|
+
# resp.domain_unit_id #=> String
|
3205
|
+
# resp.environment_configurations #=> Array
|
3206
|
+
# resp.environment_configurations[0].aws_account.aws_account_id #=> String
|
3207
|
+
# resp.environment_configurations[0].aws_account.aws_account_id_path #=> String
|
3208
|
+
# resp.environment_configurations[0].aws_region.region_name #=> String
|
3209
|
+
# resp.environment_configurations[0].aws_region.region_name_path #=> String
|
3210
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides #=> Array
|
3211
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].is_editable #=> Boolean
|
3212
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].name #=> String
|
3213
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].value #=> String
|
3214
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters #=> Array
|
3215
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].is_editable #=> Boolean
|
3216
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].name #=> String
|
3217
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].value #=> String
|
3218
|
+
# resp.environment_configurations[0].configuration_parameters.ssm_path #=> String
|
3219
|
+
# resp.environment_configurations[0].deployment_mode #=> String, one of "ON_CREATE", "ON_DEMAND"
|
3220
|
+
# resp.environment_configurations[0].deployment_order #=> Integer
|
3221
|
+
# resp.environment_configurations[0].description #=> String
|
3222
|
+
# resp.environment_configurations[0].environment_blueprint_id #=> String
|
3223
|
+
# resp.environment_configurations[0].id #=> String
|
3224
|
+
# resp.environment_configurations[0].name #=> String
|
3225
|
+
# resp.id #=> String
|
3226
|
+
# resp.last_updated_at #=> Time
|
3227
|
+
# resp.name #=> String
|
3228
|
+
# resp.status #=> String, one of "ENABLED", "DISABLED"
|
3229
|
+
#
|
3230
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectProfile AWS API Documentation
|
3231
|
+
#
|
3232
|
+
# @overload create_project_profile(params = {})
|
3233
|
+
# @param [Hash] params ({})
|
3234
|
+
def create_project_profile(params = {}, options = {})
|
3235
|
+
req = build_request(:create_project_profile, params)
|
3236
|
+
req.send_request(options)
|
3237
|
+
end
|
3238
|
+
|
2734
3239
|
# Creates a rule in Amazon DataZone. A rule is a formal agreement that
|
2735
3240
|
# enforces specific requirements across user workflows (e.g., publishing
|
2736
3241
|
# assets to the catalog, requesting subscriptions, creating projects)
|
@@ -2874,7 +3379,7 @@ module Aws::DataZone
|
|
2874
3379
|
# @option params [required, Types::GrantedEntityInput] :granted_entity
|
2875
3380
|
# The entity to which the subscription is to be granted.
|
2876
3381
|
#
|
2877
|
-
# @option params [
|
3382
|
+
# @option params [String] :subscription_target_identifier
|
2878
3383
|
# The ID of the subscription target for which the subscription grant is
|
2879
3384
|
# created.
|
2880
3385
|
#
|
@@ -2910,7 +3415,7 @@ module Aws::DataZone
|
|
2910
3415
|
# revision: "Revision", # required
|
2911
3416
|
# },
|
2912
3417
|
# },
|
2913
|
-
# subscription_target_identifier: "SubscriptionTargetId",
|
3418
|
+
# subscription_target_identifier: "SubscriptionTargetId",
|
2914
3419
|
# })
|
2915
3420
|
#
|
2916
3421
|
# @example Response structure
|
@@ -3144,7 +3649,7 @@ module Aws::DataZone
|
|
3144
3649
|
# client_token: "String",
|
3145
3650
|
# domain_identifier: "DomainId", # required
|
3146
3651
|
# environment_identifier: "EnvironmentId", # required
|
3147
|
-
# manage_access_role: "
|
3652
|
+
# manage_access_role: "IamRoleArn", # required
|
3148
3653
|
# name: "SubscriptionTargetName", # required
|
3149
3654
|
# provider: "String",
|
3150
3655
|
# subscription_target_config: [ # required
|
@@ -3326,6 +3831,40 @@ module Aws::DataZone
|
|
3326
3831
|
req.send_request(options)
|
3327
3832
|
end
|
3328
3833
|
|
3834
|
+
# Deletes and connection. In Amazon DataZone, a connection enables you
|
3835
|
+
# to connect your resources (domains, projects, and environments) to
|
3836
|
+
# external resources and services.
|
3837
|
+
#
|
3838
|
+
# @option params [required, String] :domain_identifier
|
3839
|
+
# The ID of the domain where the connection is deleted.
|
3840
|
+
#
|
3841
|
+
# @option params [required, String] :identifier
|
3842
|
+
# The ID of the connection that is deleted.
|
3843
|
+
#
|
3844
|
+
# @return [Types::DeleteConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3845
|
+
#
|
3846
|
+
# * {Types::DeleteConnectionOutput#status #status} => String
|
3847
|
+
#
|
3848
|
+
# @example Request syntax with placeholder values
|
3849
|
+
#
|
3850
|
+
# resp = client.delete_connection({
|
3851
|
+
# domain_identifier: "DomainId", # required
|
3852
|
+
# identifier: "ConnectionId", # required
|
3853
|
+
# })
|
3854
|
+
#
|
3855
|
+
# @example Response structure
|
3856
|
+
#
|
3857
|
+
# resp.status #=> String
|
3858
|
+
#
|
3859
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteConnection AWS API Documentation
|
3860
|
+
#
|
3861
|
+
# @overload delete_connection(params = {})
|
3862
|
+
# @param [Hash] params ({})
|
3863
|
+
def delete_connection(params = {}, options = {})
|
3864
|
+
req = build_request(:delete_connection, params)
|
3865
|
+
req.send_request(options)
|
3866
|
+
end
|
3867
|
+
|
3329
3868
|
# Deletes a data product in Amazon DataZone.
|
3330
3869
|
#
|
3331
3870
|
# @option params [required, String] :domain_identifier
|
@@ -3377,6 +3916,7 @@ module Aws::DataZone
|
|
3377
3916
|
#
|
3378
3917
|
# * {Types::DeleteDataSourceOutput#asset_forms_output #asset_forms_output} => Array<Types::FormOutput>
|
3379
3918
|
# * {Types::DeleteDataSourceOutput#configuration #configuration} => Types::DataSourceConfigurationOutput
|
3919
|
+
# * {Types::DeleteDataSourceOutput#connection_id #connection_id} => String
|
3380
3920
|
# * {Types::DeleteDataSourceOutput#created_at #created_at} => Time
|
3381
3921
|
# * {Types::DeleteDataSourceOutput#description #description} => String
|
3382
3922
|
# * {Types::DeleteDataSourceOutput#domain_id #domain_id} => String
|
@@ -3415,6 +3955,7 @@ module Aws::DataZone
|
|
3415
3955
|
# resp.asset_forms_output[0].type_revision #=> String
|
3416
3956
|
# resp.configuration.glue_run_configuration.account_id #=> String
|
3417
3957
|
# resp.configuration.glue_run_configuration.auto_import_data_quality_result #=> Boolean
|
3958
|
+
# resp.configuration.glue_run_configuration.catalog_name #=> String
|
3418
3959
|
# resp.configuration.glue_run_configuration.data_access_role #=> String
|
3419
3960
|
# resp.configuration.glue_run_configuration.region #=> String
|
3420
3961
|
# resp.configuration.glue_run_configuration.relational_filter_configurations #=> Array
|
@@ -3435,6 +3976,12 @@ module Aws::DataZone
|
|
3435
3976
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].expression #=> String
|
3436
3977
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].type #=> String, one of "INCLUDE", "EXCLUDE"
|
3437
3978
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].schema_name #=> String
|
3979
|
+
# resp.configuration.sage_maker_run_configuration.account_id #=> String
|
3980
|
+
# resp.configuration.sage_maker_run_configuration.region #=> String
|
3981
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets #=> Hash
|
3982
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"] #=> Array
|
3983
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"][0] #=> String
|
3984
|
+
# resp.connection_id #=> String
|
3438
3985
|
# resp.created_at #=> Time
|
3439
3986
|
# resp.description #=> String
|
3440
3987
|
# resp.domain_id #=> String
|
@@ -3830,6 +4377,32 @@ module Aws::DataZone
|
|
3830
4377
|
req.send_request(options)
|
3831
4378
|
end
|
3832
4379
|
|
4380
|
+
# Deletes a project profile.
|
4381
|
+
#
|
4382
|
+
# @option params [required, String] :domain_identifier
|
4383
|
+
# The ID of the domain where a project profile is deleted.
|
4384
|
+
#
|
4385
|
+
# @option params [required, String] :identifier
|
4386
|
+
# The ID of the project profile that is deleted.
|
4387
|
+
#
|
4388
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4389
|
+
#
|
4390
|
+
# @example Request syntax with placeholder values
|
4391
|
+
#
|
4392
|
+
# resp = client.delete_project_profile({
|
4393
|
+
# domain_identifier: "DomainId", # required
|
4394
|
+
# identifier: "ProjectProfileId", # required
|
4395
|
+
# })
|
4396
|
+
#
|
4397
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteProjectProfile AWS API Documentation
|
4398
|
+
#
|
4399
|
+
# @overload delete_project_profile(params = {})
|
4400
|
+
# @param [Hash] params ({})
|
4401
|
+
def delete_project_profile(params = {}, options = {})
|
4402
|
+
req = build_request(:delete_project_profile, params)
|
4403
|
+
req.send_request(options)
|
4404
|
+
end
|
4405
|
+
|
3833
4406
|
# Deletes a rule in Amazon DataZone. A rule is a formal agreement that
|
3834
4407
|
# enforces specific requirements across user workflows (e.g., publishing
|
3835
4408
|
# assets to the catalog, requesting subscriptions, creating projects)
|
@@ -4297,6 +4870,161 @@ module Aws::DataZone
|
|
4297
4870
|
req.send_request(options)
|
4298
4871
|
end
|
4299
4872
|
|
4873
|
+
# Gets a connection. In Amazon DataZone, a connection enables you to
|
4874
|
+
# connect your resources (domains, projects, and environments) to
|
4875
|
+
# external resources and services.
|
4876
|
+
#
|
4877
|
+
# @option params [required, String] :domain_identifier
|
4878
|
+
# The ID of the domain where we get the connection.
|
4879
|
+
#
|
4880
|
+
# @option params [required, String] :identifier
|
4881
|
+
# The connection ID.
|
4882
|
+
#
|
4883
|
+
# @option params [Boolean] :with_secret
|
4884
|
+
# Specifies whether a connection has a secret.
|
4885
|
+
#
|
4886
|
+
# @return [Types::GetConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4887
|
+
#
|
4888
|
+
# * {Types::GetConnectionOutput#connection_credentials #connection_credentials} => Types::ConnectionCredentials
|
4889
|
+
# * {Types::GetConnectionOutput#connection_id #connection_id} => String
|
4890
|
+
# * {Types::GetConnectionOutput#description #description} => String
|
4891
|
+
# * {Types::GetConnectionOutput#domain_id #domain_id} => String
|
4892
|
+
# * {Types::GetConnectionOutput#domain_unit_id #domain_unit_id} => String
|
4893
|
+
# * {Types::GetConnectionOutput#environment_id #environment_id} => String
|
4894
|
+
# * {Types::GetConnectionOutput#environment_user_role #environment_user_role} => String
|
4895
|
+
# * {Types::GetConnectionOutput#name #name} => String
|
4896
|
+
# * {Types::GetConnectionOutput#physical_endpoints #physical_endpoints} => Array<Types::PhysicalEndpoint>
|
4897
|
+
# * {Types::GetConnectionOutput#project_id #project_id} => String
|
4898
|
+
# * {Types::GetConnectionOutput#props #props} => Types::ConnectionPropertiesOutput
|
4899
|
+
# * {Types::GetConnectionOutput#type #type} => String
|
4900
|
+
#
|
4901
|
+
# @example Request syntax with placeholder values
|
4902
|
+
#
|
4903
|
+
# resp = client.get_connection({
|
4904
|
+
# domain_identifier: "DomainId", # required
|
4905
|
+
# identifier: "ConnectionId", # required
|
4906
|
+
# with_secret: false,
|
4907
|
+
# })
|
4908
|
+
#
|
4909
|
+
# @example Response structure
|
4910
|
+
#
|
4911
|
+
# resp.connection_credentials.access_key_id #=> String
|
4912
|
+
# resp.connection_credentials.expiration #=> Time
|
4913
|
+
# resp.connection_credentials.secret_access_key #=> String
|
4914
|
+
# resp.connection_credentials.session_token #=> String
|
4915
|
+
# resp.connection_id #=> String
|
4916
|
+
# resp.description #=> String
|
4917
|
+
# resp.domain_id #=> String
|
4918
|
+
# resp.domain_unit_id #=> String
|
4919
|
+
# resp.environment_id #=> String
|
4920
|
+
# resp.environment_user_role #=> String
|
4921
|
+
# resp.name #=> String
|
4922
|
+
# resp.physical_endpoints #=> Array
|
4923
|
+
# resp.physical_endpoints[0].aws_location.access_role #=> String
|
4924
|
+
# resp.physical_endpoints[0].aws_location.aws_account_id #=> String
|
4925
|
+
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
4926
|
+
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
4927
|
+
# resp.physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
4928
|
+
# resp.physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
4929
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
4930
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.authorization_code #=> String
|
4931
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.redirect_uri #=> String
|
4932
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.a_ws_managed_client_application_reference #=> String
|
4933
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.user_managed_client_application_client_id #=> String
|
4934
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.access_token #=> String
|
4935
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.jwt_token #=> String
|
4936
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.refresh_token #=> String
|
4937
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.user_managed_client_application_client_secret #=> String
|
4938
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "AUTHORIZATION_CODE", "CLIENT_CREDENTIALS", "JWT_BEARER"
|
4939
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url #=> String
|
4940
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map #=> Hash
|
4941
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map["TokenUrlParametersMapKeyString"] #=> String
|
4942
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.secret_arn #=> String
|
4943
|
+
# resp.physical_endpoints[0].glue_connection.compatible_compute_environments #=> Array
|
4944
|
+
# resp.physical_endpoints[0].glue_connection.compatible_compute_environments[0] #=> String, one of "SPARK", "ATHENA", "PYTHON"
|
4945
|
+
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
4946
|
+
# resp.physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
4947
|
+
# resp.physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
4948
|
+
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
4949
|
+
# resp.physical_endpoints[0].glue_connection.creation_time #=> Time
|
4950
|
+
# resp.physical_endpoints[0].glue_connection.description #=> String
|
4951
|
+
# resp.physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
4952
|
+
# resp.physical_endpoints[0].glue_connection.last_updated_by #=> String
|
4953
|
+
# resp.physical_endpoints[0].glue_connection.last_updated_time #=> Time
|
4954
|
+
# resp.physical_endpoints[0].glue_connection.match_criteria #=> Array
|
4955
|
+
# resp.physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
4956
|
+
# resp.physical_endpoints[0].glue_connection.name #=> String
|
4957
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.availability_zone #=> String
|
4958
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list #=> Array
|
4959
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list[0] #=> String
|
4960
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id #=> String
|
4961
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list #=> Array
|
4962
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list[0] #=> String
|
4963
|
+
# resp.physical_endpoints[0].glue_connection.python_properties #=> Hash
|
4964
|
+
# resp.physical_endpoints[0].glue_connection.python_properties["PropertyMapKeyString"] #=> String
|
4965
|
+
# resp.physical_endpoints[0].glue_connection.spark_properties #=> Hash
|
4966
|
+
# resp.physical_endpoints[0].glue_connection.spark_properties["PropertyMapKeyString"] #=> String
|
4967
|
+
# resp.physical_endpoints[0].glue_connection.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
4968
|
+
# resp.physical_endpoints[0].glue_connection.status_reason #=> String
|
4969
|
+
# resp.physical_endpoints[0].glue_connection_name #=> String
|
4970
|
+
# resp.physical_endpoints[0].host #=> String
|
4971
|
+
# resp.physical_endpoints[0].port #=> Integer
|
4972
|
+
# resp.physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
4973
|
+
# resp.physical_endpoints[0].stage #=> String
|
4974
|
+
# resp.project_id #=> String
|
4975
|
+
# resp.props.athena_properties.workgroup_name #=> String
|
4976
|
+
# resp.props.glue_properties.error_message #=> String
|
4977
|
+
# resp.props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
4978
|
+
# resp.props.hyper_pod_properties.cluster_arn #=> String
|
4979
|
+
# resp.props.hyper_pod_properties.cluster_name #=> String
|
4980
|
+
# resp.props.hyper_pod_properties.orchestrator #=> String, one of "EKS", "SLURM"
|
4981
|
+
# resp.props.iam_properties.environment_id #=> String
|
4982
|
+
# resp.props.iam_properties.glue_lineage_sync_enabled #=> Boolean
|
4983
|
+
# resp.props.redshift_properties.credentials.secret_arn #=> String
|
4984
|
+
# resp.props.redshift_properties.credentials.username_password.password #=> String
|
4985
|
+
# resp.props.redshift_properties.credentials.username_password.username #=> String
|
4986
|
+
# resp.props.redshift_properties.database_name #=> String
|
4987
|
+
# resp.props.redshift_properties.is_provisioned_secret #=> Boolean
|
4988
|
+
# resp.props.redshift_properties.jdbc_iam_url #=> String
|
4989
|
+
# resp.props.redshift_properties.jdbc_url #=> String
|
4990
|
+
# resp.props.redshift_properties.lineage_sync.enabled #=> Boolean
|
4991
|
+
# resp.props.redshift_properties.lineage_sync.lineage_job_id #=> String
|
4992
|
+
# resp.props.redshift_properties.lineage_sync.schedule.schedule #=> String
|
4993
|
+
# resp.props.redshift_properties.redshift_temp_dir #=> String
|
4994
|
+
# resp.props.redshift_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
4995
|
+
# resp.props.redshift_properties.storage.cluster_name #=> String
|
4996
|
+
# resp.props.redshift_properties.storage.workgroup_name #=> String
|
4997
|
+
# resp.props.spark_emr_properties.compute_arn #=> String
|
4998
|
+
# resp.props.spark_emr_properties.credentials.password #=> String
|
4999
|
+
# resp.props.spark_emr_properties.credentials.username #=> String
|
5000
|
+
# resp.props.spark_emr_properties.credentials_expiration #=> Time
|
5001
|
+
# resp.props.spark_emr_properties.governance_type #=> String, one of "AWS_MANAGED", "USER_MANAGED"
|
5002
|
+
# resp.props.spark_emr_properties.instance_profile_arn #=> String
|
5003
|
+
# resp.props.spark_emr_properties.java_virtual_env #=> String
|
5004
|
+
# resp.props.spark_emr_properties.livy_endpoint #=> String
|
5005
|
+
# resp.props.spark_emr_properties.log_uri #=> String
|
5006
|
+
# resp.props.spark_emr_properties.python_virtual_env #=> String
|
5007
|
+
# resp.props.spark_emr_properties.runtime_role #=> String
|
5008
|
+
# resp.props.spark_emr_properties.trusted_certificates_s3_uri #=> String
|
5009
|
+
# resp.props.spark_glue_properties.additional_args.connection #=> String
|
5010
|
+
# resp.props.spark_glue_properties.glue_connection_name #=> String
|
5011
|
+
# resp.props.spark_glue_properties.glue_version #=> String
|
5012
|
+
# resp.props.spark_glue_properties.idle_timeout #=> Integer
|
5013
|
+
# resp.props.spark_glue_properties.java_virtual_env #=> String
|
5014
|
+
# resp.props.spark_glue_properties.number_of_workers #=> Integer
|
5015
|
+
# resp.props.spark_glue_properties.python_virtual_env #=> String
|
5016
|
+
# resp.props.spark_glue_properties.worker_type #=> String
|
5017
|
+
# resp.type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
5018
|
+
#
|
5019
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetConnection AWS API Documentation
|
5020
|
+
#
|
5021
|
+
# @overload get_connection(params = {})
|
5022
|
+
# @param [Hash] params ({})
|
5023
|
+
def get_connection(params = {}, options = {})
|
5024
|
+
req = build_request(:get_connection, params)
|
5025
|
+
req.send_request(options)
|
5026
|
+
end
|
5027
|
+
|
4300
5028
|
# Gets the data product.
|
4301
5029
|
#
|
4302
5030
|
# @option params [required, String] :domain_identifier
|
@@ -4381,6 +5109,7 @@ module Aws::DataZone
|
|
4381
5109
|
#
|
4382
5110
|
# * {Types::GetDataSourceOutput#asset_forms_output #asset_forms_output} => Array<Types::FormOutput>
|
4383
5111
|
# * {Types::GetDataSourceOutput#configuration #configuration} => Types::DataSourceConfigurationOutput
|
5112
|
+
# * {Types::GetDataSourceOutput#connection_id #connection_id} => String
|
4384
5113
|
# * {Types::GetDataSourceOutput#created_at #created_at} => Time
|
4385
5114
|
# * {Types::GetDataSourceOutput#description #description} => String
|
4386
5115
|
# * {Types::GetDataSourceOutput#domain_id #domain_id} => String
|
@@ -4418,6 +5147,7 @@ module Aws::DataZone
|
|
4418
5147
|
# resp.asset_forms_output[0].type_revision #=> String
|
4419
5148
|
# resp.configuration.glue_run_configuration.account_id #=> String
|
4420
5149
|
# resp.configuration.glue_run_configuration.auto_import_data_quality_result #=> Boolean
|
5150
|
+
# resp.configuration.glue_run_configuration.catalog_name #=> String
|
4421
5151
|
# resp.configuration.glue_run_configuration.data_access_role #=> String
|
4422
5152
|
# resp.configuration.glue_run_configuration.region #=> String
|
4423
5153
|
# resp.configuration.glue_run_configuration.relational_filter_configurations #=> Array
|
@@ -4438,6 +5168,12 @@ module Aws::DataZone
|
|
4438
5168
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].expression #=> String
|
4439
5169
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].type #=> String, one of "INCLUDE", "EXCLUDE"
|
4440
5170
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].schema_name #=> String
|
5171
|
+
# resp.configuration.sage_maker_run_configuration.account_id #=> String
|
5172
|
+
# resp.configuration.sage_maker_run_configuration.region #=> String
|
5173
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets #=> Hash
|
5174
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"] #=> Array
|
5175
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"][0] #=> String
|
5176
|
+
# resp.connection_id #=> String
|
4441
5177
|
# resp.created_at #=> Time
|
4442
5178
|
# resp.description #=> String
|
4443
5179
|
# resp.domain_id #=> String
|
@@ -4496,6 +5232,7 @@ module Aws::DataZone
|
|
4496
5232
|
# * {Types::GetDataSourceRunOutput#domain_id #domain_id} => String
|
4497
5233
|
# * {Types::GetDataSourceRunOutput#error_message #error_message} => Types::DataSourceErrorMessage
|
4498
5234
|
# * {Types::GetDataSourceRunOutput#id #id} => String
|
5235
|
+
# * {Types::GetDataSourceRunOutput#lineage_summary #lineage_summary} => Types::DataSourceRunLineageSummary
|
4499
5236
|
# * {Types::GetDataSourceRunOutput#project_id #project_id} => String
|
4500
5237
|
# * {Types::GetDataSourceRunOutput#run_statistics_for_assets #run_statistics_for_assets} => Types::RunStatisticsForAssets
|
4501
5238
|
# * {Types::GetDataSourceRunOutput#started_at #started_at} => Time
|
@@ -4520,6 +5257,7 @@ module Aws::DataZone
|
|
4520
5257
|
# resp.error_message.error_detail #=> String
|
4521
5258
|
# resp.error_message.error_type #=> String, one of "ACCESS_DENIED_EXCEPTION", "CONFLICT_EXCEPTION", "INTERNAL_SERVER_EXCEPTION", "RESOURCE_NOT_FOUND_EXCEPTION", "SERVICE_QUOTA_EXCEEDED_EXCEPTION", "THROTTLING_EXCEPTION", "VALIDATION_EXCEPTION"
|
4522
5259
|
# resp.id #=> String
|
5260
|
+
# resp.lineage_summary.import_status #=> String, one of "IN_PROGRESS", "SUCCESS", "FAILED", "PARTIALLY_SUCCEEDED"
|
4523
5261
|
# resp.project_id #=> String
|
4524
5262
|
# resp.run_statistics_for_assets.added #=> Integer
|
4525
5263
|
# resp.run_statistics_for_assets.failed #=> Integer
|
@@ -4552,12 +5290,14 @@ module Aws::DataZone
|
|
4552
5290
|
# * {Types::GetDomainOutput#created_at #created_at} => Time
|
4553
5291
|
# * {Types::GetDomainOutput#description #description} => String
|
4554
5292
|
# * {Types::GetDomainOutput#domain_execution_role #domain_execution_role} => String
|
5293
|
+
# * {Types::GetDomainOutput#domain_version #domain_version} => String
|
4555
5294
|
# * {Types::GetDomainOutput#id #id} => String
|
4556
5295
|
# * {Types::GetDomainOutput#kms_key_identifier #kms_key_identifier} => String
|
4557
5296
|
# * {Types::GetDomainOutput#last_updated_at #last_updated_at} => Time
|
4558
5297
|
# * {Types::GetDomainOutput#name #name} => String
|
4559
5298
|
# * {Types::GetDomainOutput#portal_url #portal_url} => String
|
4560
5299
|
# * {Types::GetDomainOutput#root_domain_unit_id #root_domain_unit_id} => String
|
5300
|
+
# * {Types::GetDomainOutput#service_role #service_role} => String
|
4561
5301
|
# * {Types::GetDomainOutput#single_sign_on #single_sign_on} => Types::SingleSignOn
|
4562
5302
|
# * {Types::GetDomainOutput#status #status} => String
|
4563
5303
|
# * {Types::GetDomainOutput#tags #tags} => Hash<String,String>
|
@@ -4574,12 +5314,14 @@ module Aws::DataZone
|
|
4574
5314
|
# resp.created_at #=> Time
|
4575
5315
|
# resp.description #=> String
|
4576
5316
|
# resp.domain_execution_role #=> String
|
5317
|
+
# resp.domain_version #=> String, one of "V1", "V2"
|
4577
5318
|
# resp.id #=> String
|
4578
5319
|
# resp.kms_key_identifier #=> String
|
4579
5320
|
# resp.last_updated_at #=> Time
|
4580
5321
|
# resp.name #=> String
|
4581
5322
|
# resp.portal_url #=> String
|
4582
5323
|
# resp.root_domain_unit_id #=> String
|
5324
|
+
# resp.service_role #=> String
|
4583
5325
|
# resp.single_sign_on.type #=> String, one of "IAM_IDC", "DISABLED"
|
4584
5326
|
# resp.single_sign_on.user_assignment #=> String, one of "AUTOMATIC", "MANUAL"
|
4585
5327
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "CREATION_FAILED", "DELETING", "DELETED", "DELETION_FAILED"
|
@@ -4862,6 +5604,7 @@ module Aws::DataZone
|
|
4862
5604
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#domain_id #domain_id} => String
|
4863
5605
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#enabled_regions #enabled_regions} => Array<String>
|
4864
5606
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#environment_blueprint_id #environment_blueprint_id} => String
|
5607
|
+
# * {Types::GetEnvironmentBlueprintConfigurationOutput#environment_role_permission_boundary #environment_role_permission_boundary} => String
|
4865
5608
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#manage_access_role_arn #manage_access_role_arn} => String
|
4866
5609
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#provisioning_configurations #provisioning_configurations} => Array<Types::ProvisioningConfiguration>
|
4867
5610
|
# * {Types::GetEnvironmentBlueprintConfigurationOutput#provisioning_role_arn #provisioning_role_arn} => String
|
@@ -4882,6 +5625,7 @@ module Aws::DataZone
|
|
4882
5625
|
# resp.enabled_regions #=> Array
|
4883
5626
|
# resp.enabled_regions[0] #=> String
|
4884
5627
|
# resp.environment_blueprint_id #=> String
|
5628
|
+
# resp.environment_role_permission_boundary #=> String
|
4885
5629
|
# resp.manage_access_role_arn #=> String
|
4886
5630
|
# resp.provisioning_configurations #=> Array
|
4887
5631
|
# resp.provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations #=> Array
|
@@ -5242,6 +5986,109 @@ module Aws::DataZone
|
|
5242
5986
|
req.send_request(options)
|
5243
5987
|
end
|
5244
5988
|
|
5989
|
+
# The details of the job run.
|
5990
|
+
#
|
5991
|
+
# @option params [required, String] :domain_identifier
|
5992
|
+
# The ID of the domain.
|
5993
|
+
#
|
5994
|
+
# @option params [required, String] :identifier
|
5995
|
+
# The ID of the job run.
|
5996
|
+
#
|
5997
|
+
# @return [Types::GetJobRunOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5998
|
+
#
|
5999
|
+
# * {Types::GetJobRunOutput#created_at #created_at} => Time
|
6000
|
+
# * {Types::GetJobRunOutput#created_by #created_by} => String
|
6001
|
+
# * {Types::GetJobRunOutput#details #details} => Types::JobRunDetails
|
6002
|
+
# * {Types::GetJobRunOutput#domain_id #domain_id} => String
|
6003
|
+
# * {Types::GetJobRunOutput#end_time #end_time} => Time
|
6004
|
+
# * {Types::GetJobRunOutput#error #error} => Types::JobRunError
|
6005
|
+
# * {Types::GetJobRunOutput#id #id} => String
|
6006
|
+
# * {Types::GetJobRunOutput#job_id #job_id} => String
|
6007
|
+
# * {Types::GetJobRunOutput#job_type #job_type} => String
|
6008
|
+
# * {Types::GetJobRunOutput#run_mode #run_mode} => String
|
6009
|
+
# * {Types::GetJobRunOutput#start_time #start_time} => Time
|
6010
|
+
# * {Types::GetJobRunOutput#status #status} => String
|
6011
|
+
#
|
6012
|
+
# @example Request syntax with placeholder values
|
6013
|
+
#
|
6014
|
+
# resp = client.get_job_run({
|
6015
|
+
# domain_identifier: "DomainId", # required
|
6016
|
+
# identifier: "RunIdentifier", # required
|
6017
|
+
# })
|
6018
|
+
#
|
6019
|
+
# @example Response structure
|
6020
|
+
#
|
6021
|
+
# resp.created_at #=> Time
|
6022
|
+
# resp.created_by #=> String
|
6023
|
+
# resp.details.lineage_run_details.sql_query_run_details.error_messages #=> Array
|
6024
|
+
# resp.details.lineage_run_details.sql_query_run_details.error_messages[0] #=> String
|
6025
|
+
# resp.details.lineage_run_details.sql_query_run_details.num_queries_failed #=> Integer
|
6026
|
+
# resp.details.lineage_run_details.sql_query_run_details.query_end_time #=> Time
|
6027
|
+
# resp.details.lineage_run_details.sql_query_run_details.query_start_time #=> Time
|
6028
|
+
# resp.details.lineage_run_details.sql_query_run_details.total_queries_processed #=> Integer
|
6029
|
+
# resp.domain_id #=> String
|
6030
|
+
# resp.end_time #=> Time
|
6031
|
+
# resp.error.message #=> String
|
6032
|
+
# resp.id #=> String
|
6033
|
+
# resp.job_id #=> String
|
6034
|
+
# resp.job_type #=> String, one of "LINEAGE"
|
6035
|
+
# resp.run_mode #=> String, one of "SCHEDULED", "ON_DEMAND"
|
6036
|
+
# resp.start_time #=> Time
|
6037
|
+
# resp.status #=> String, one of "SCHEDULED", "IN_PROGRESS", "SUCCESS", "PARTIALLY_SUCCEEDED", "FAILED", "ABORTED", "TIMED_OUT", "CANCELED"
|
6038
|
+
#
|
6039
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetJobRun AWS API Documentation
|
6040
|
+
#
|
6041
|
+
# @overload get_job_run(params = {})
|
6042
|
+
# @param [Hash] params ({})
|
6043
|
+
def get_job_run(params = {}, options = {})
|
6044
|
+
req = build_request(:get_job_run, params)
|
6045
|
+
req.send_request(options)
|
6046
|
+
end
|
6047
|
+
|
6048
|
+
# Describes the lineage event.
|
6049
|
+
#
|
6050
|
+
# @option params [required, String] :domain_identifier
|
6051
|
+
# The ID of the domain.
|
6052
|
+
#
|
6053
|
+
# @option params [required, String] :identifier
|
6054
|
+
# The ID of the lineage event.
|
6055
|
+
#
|
6056
|
+
# @return [Types::GetLineageEventOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6057
|
+
#
|
6058
|
+
# * {Types::GetLineageEventOutput#created_at #created_at} => Time
|
6059
|
+
# * {Types::GetLineageEventOutput#created_by #created_by} => String
|
6060
|
+
# * {Types::GetLineageEventOutput#domain_id #domain_id} => String
|
6061
|
+
# * {Types::GetLineageEventOutput#event #event} => String
|
6062
|
+
# * {Types::GetLineageEventOutput#event_time #event_time} => Time
|
6063
|
+
# * {Types::GetLineageEventOutput#id #id} => String
|
6064
|
+
# * {Types::GetLineageEventOutput#processing_status #processing_status} => String
|
6065
|
+
#
|
6066
|
+
# @example Request syntax with placeholder values
|
6067
|
+
#
|
6068
|
+
# resp = client.get_lineage_event({
|
6069
|
+
# domain_identifier: "DomainId", # required
|
6070
|
+
# identifier: "LineageEventIdentifier", # required
|
6071
|
+
# })
|
6072
|
+
#
|
6073
|
+
# @example Response structure
|
6074
|
+
#
|
6075
|
+
# resp.created_at #=> Time
|
6076
|
+
# resp.created_by #=> String
|
6077
|
+
# resp.domain_id #=> String
|
6078
|
+
# resp.event #=> String
|
6079
|
+
# resp.event_time #=> Time
|
6080
|
+
# resp.id #=> String
|
6081
|
+
# resp.processing_status #=> String, one of "REQUESTED", "PROCESSING", "SUCCESS", "FAILED"
|
6082
|
+
#
|
6083
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetLineageEvent AWS API Documentation
|
6084
|
+
#
|
6085
|
+
# @overload get_lineage_event(params = {})
|
6086
|
+
# @param [Hash] params ({})
|
6087
|
+
def get_lineage_event(params = {}, options = {})
|
6088
|
+
req = build_request(:get_lineage_event, params)
|
6089
|
+
req.send_request(options)
|
6090
|
+
end
|
6091
|
+
|
5245
6092
|
# Gets the data lineage node.
|
5246
6093
|
#
|
5247
6094
|
# @option params [required, String] :domain_identifier
|
@@ -5471,12 +6318,15 @@ module Aws::DataZone
|
|
5471
6318
|
# * {Types::GetProjectOutput#description #description} => String
|
5472
6319
|
# * {Types::GetProjectOutput#domain_id #domain_id} => String
|
5473
6320
|
# * {Types::GetProjectOutput#domain_unit_id #domain_unit_id} => String
|
6321
|
+
# * {Types::GetProjectOutput#environment_deployment_details #environment_deployment_details} => Types::EnvironmentDeploymentDetails
|
5474
6322
|
# * {Types::GetProjectOutput#failure_reasons #failure_reasons} => Array<Types::ProjectDeletionError>
|
5475
6323
|
# * {Types::GetProjectOutput#glossary_terms #glossary_terms} => Array<String>
|
5476
6324
|
# * {Types::GetProjectOutput#id #id} => String
|
5477
6325
|
# * {Types::GetProjectOutput#last_updated_at #last_updated_at} => Time
|
5478
6326
|
# * {Types::GetProjectOutput#name #name} => String
|
6327
|
+
# * {Types::GetProjectOutput#project_profile_id #project_profile_id} => String
|
5479
6328
|
# * {Types::GetProjectOutput#project_status #project_status} => String
|
6329
|
+
# * {Types::GetProjectOutput#user_parameters #user_parameters} => Array<Types::EnvironmentConfigurationUserParameter>
|
5480
6330
|
#
|
5481
6331
|
# @example Request syntax with placeholder values
|
5482
6332
|
#
|
@@ -5492,6 +6342,11 @@ module Aws::DataZone
|
|
5492
6342
|
# resp.description #=> String
|
5493
6343
|
# resp.domain_id #=> String
|
5494
6344
|
# resp.domain_unit_id #=> String
|
6345
|
+
# resp.environment_deployment_details.environment_failure_reasons #=> Hash
|
6346
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"] #=> Array
|
6347
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"][0].code #=> String
|
6348
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"][0].message #=> String
|
6349
|
+
# resp.environment_deployment_details.overall_deployment_status #=> String, one of "PENDING_DEPLOYMENT", "IN_PROGRESS", "SUCCESSFUL", "FAILED_VALIDATION", "FAILED_DEPLOYMENT"
|
5495
6350
|
# resp.failure_reasons #=> Array
|
5496
6351
|
# resp.failure_reasons[0].code #=> String
|
5497
6352
|
# resp.failure_reasons[0].message #=> String
|
@@ -5500,7 +6355,13 @@ module Aws::DataZone
|
|
5500
6355
|
# resp.id #=> String
|
5501
6356
|
# resp.last_updated_at #=> Time
|
5502
6357
|
# resp.name #=> String
|
6358
|
+
# resp.project_profile_id #=> String
|
5503
6359
|
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED"
|
6360
|
+
# resp.user_parameters #=> Array
|
6361
|
+
# resp.user_parameters[0].environment_configuration_name #=> String
|
6362
|
+
# resp.user_parameters[0].environment_parameters #=> Array
|
6363
|
+
# resp.user_parameters[0].environment_parameters[0].name #=> String
|
6364
|
+
# resp.user_parameters[0].environment_parameters[0].value #=> String
|
5504
6365
|
#
|
5505
6366
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProject AWS API Documentation
|
5506
6367
|
#
|
@@ -5511,10 +6372,79 @@ module Aws::DataZone
|
|
5511
6372
|
req.send_request(options)
|
5512
6373
|
end
|
5513
6374
|
|
5514
|
-
#
|
5515
|
-
#
|
5516
|
-
#
|
5517
|
-
#
|
6375
|
+
# The details of the project profile.
|
6376
|
+
#
|
6377
|
+
# @option params [required, String] :domain_identifier
|
6378
|
+
# The ID of the domain.
|
6379
|
+
#
|
6380
|
+
# @option params [required, String] :identifier
|
6381
|
+
# The ID of the project profile.
|
6382
|
+
#
|
6383
|
+
# @return [Types::GetProjectProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6384
|
+
#
|
6385
|
+
# * {Types::GetProjectProfileOutput#created_at #created_at} => Time
|
6386
|
+
# * {Types::GetProjectProfileOutput#created_by #created_by} => String
|
6387
|
+
# * {Types::GetProjectProfileOutput#description #description} => String
|
6388
|
+
# * {Types::GetProjectProfileOutput#domain_id #domain_id} => String
|
6389
|
+
# * {Types::GetProjectProfileOutput#domain_unit_id #domain_unit_id} => String
|
6390
|
+
# * {Types::GetProjectProfileOutput#environment_configurations #environment_configurations} => Array<Types::EnvironmentConfiguration>
|
6391
|
+
# * {Types::GetProjectProfileOutput#id #id} => String
|
6392
|
+
# * {Types::GetProjectProfileOutput#last_updated_at #last_updated_at} => Time
|
6393
|
+
# * {Types::GetProjectProfileOutput#name #name} => String
|
6394
|
+
# * {Types::GetProjectProfileOutput#status #status} => String
|
6395
|
+
#
|
6396
|
+
# @example Request syntax with placeholder values
|
6397
|
+
#
|
6398
|
+
# resp = client.get_project_profile({
|
6399
|
+
# domain_identifier: "DomainId", # required
|
6400
|
+
# identifier: "ProjectProfileId", # required
|
6401
|
+
# })
|
6402
|
+
#
|
6403
|
+
# @example Response structure
|
6404
|
+
#
|
6405
|
+
# resp.created_at #=> Time
|
6406
|
+
# resp.created_by #=> String
|
6407
|
+
# resp.description #=> String
|
6408
|
+
# resp.domain_id #=> String
|
6409
|
+
# resp.domain_unit_id #=> String
|
6410
|
+
# resp.environment_configurations #=> Array
|
6411
|
+
# resp.environment_configurations[0].aws_account.aws_account_id #=> String
|
6412
|
+
# resp.environment_configurations[0].aws_account.aws_account_id_path #=> String
|
6413
|
+
# resp.environment_configurations[0].aws_region.region_name #=> String
|
6414
|
+
# resp.environment_configurations[0].aws_region.region_name_path #=> String
|
6415
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides #=> Array
|
6416
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].is_editable #=> Boolean
|
6417
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].name #=> String
|
6418
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].value #=> String
|
6419
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters #=> Array
|
6420
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].is_editable #=> Boolean
|
6421
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].name #=> String
|
6422
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].value #=> String
|
6423
|
+
# resp.environment_configurations[0].configuration_parameters.ssm_path #=> String
|
6424
|
+
# resp.environment_configurations[0].deployment_mode #=> String, one of "ON_CREATE", "ON_DEMAND"
|
6425
|
+
# resp.environment_configurations[0].deployment_order #=> Integer
|
6426
|
+
# resp.environment_configurations[0].description #=> String
|
6427
|
+
# resp.environment_configurations[0].environment_blueprint_id #=> String
|
6428
|
+
# resp.environment_configurations[0].id #=> String
|
6429
|
+
# resp.environment_configurations[0].name #=> String
|
6430
|
+
# resp.id #=> String
|
6431
|
+
# resp.last_updated_at #=> Time
|
6432
|
+
# resp.name #=> String
|
6433
|
+
# resp.status #=> String, one of "ENABLED", "DISABLED"
|
6434
|
+
#
|
6435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectProfile AWS API Documentation
|
6436
|
+
#
|
6437
|
+
# @overload get_project_profile(params = {})
|
6438
|
+
# @param [Hash] params ({})
|
6439
|
+
def get_project_profile(params = {}, options = {})
|
6440
|
+
req = build_request(:get_project_profile, params)
|
6441
|
+
req.send_request(options)
|
6442
|
+
end
|
6443
|
+
|
6444
|
+
# Gets the details of a rule in Amazon DataZone. A rule is a formal
|
6445
|
+
# agreement that enforces specific requirements across user workflows
|
6446
|
+
# (e.g., publishing assets to the catalog, requesting subscriptions,
|
6447
|
+
# creating projects) within the Amazon DataZone data portal. These rules
|
5518
6448
|
# help maintain consistency, ensure compliance, and uphold governance
|
5519
6449
|
# standards in data management processes. For instance, a metadata
|
5520
6450
|
# enforcement rule can specify the required information for creating a
|
@@ -6134,6 +7064,182 @@ module Aws::DataZone
|
|
6134
7064
|
req.send_request(options)
|
6135
7065
|
end
|
6136
7066
|
|
7067
|
+
# Lists connections. In Amazon DataZone, a connection enables you to
|
7068
|
+
# connect your resources (domains, projects, and environments) to
|
7069
|
+
# external resources and services.
|
7070
|
+
#
|
7071
|
+
# @option params [required, String] :domain_identifier
|
7072
|
+
# The ID of the domain where you want to list connections.
|
7073
|
+
#
|
7074
|
+
# @option params [String] :environment_identifier
|
7075
|
+
# The ID of the environment where you want to list connections.
|
7076
|
+
#
|
7077
|
+
# @option params [Integer] :max_results
|
7078
|
+
# The maximum number of connections to return in a single call to
|
7079
|
+
# ListConnections. When the number of connections to be listed is
|
7080
|
+
# greater than the value of MaxResults, the response contains a
|
7081
|
+
# NextToken value that you can use in a subsequent call to
|
7082
|
+
# ListConnections to list the next set of connections.
|
7083
|
+
#
|
7084
|
+
# @option params [String] :name
|
7085
|
+
# The name of the connection.
|
7086
|
+
#
|
7087
|
+
# @option params [String] :next_token
|
7088
|
+
# When the number of connections is greater than the default value for
|
7089
|
+
# the MaxResults parameter, or if you explicitly specify a value for
|
7090
|
+
# MaxResults that is less than the number of connections, the response
|
7091
|
+
# includes a pagination token named NextToken. You can specify this
|
7092
|
+
# NextToken value in a subsequent call to ListConnections to list the
|
7093
|
+
# next set of connections.
|
7094
|
+
#
|
7095
|
+
# @option params [required, String] :project_identifier
|
7096
|
+
# The ID of the project where you want to list connections.
|
7097
|
+
#
|
7098
|
+
# @option params [String] :sort_by
|
7099
|
+
# Specifies how you want to sort the listed connections.
|
7100
|
+
#
|
7101
|
+
# @option params [String] :sort_order
|
7102
|
+
# Specifies the sort order for the listed connections.
|
7103
|
+
#
|
7104
|
+
# @option params [String] :type
|
7105
|
+
# The type of connection.
|
7106
|
+
#
|
7107
|
+
# @return [Types::ListConnectionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7108
|
+
#
|
7109
|
+
# * {Types::ListConnectionsOutput#items #items} => Array<Types::ConnectionSummary>
|
7110
|
+
# * {Types::ListConnectionsOutput#next_token #next_token} => String
|
7111
|
+
#
|
7112
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7113
|
+
#
|
7114
|
+
# @example Request syntax with placeholder values
|
7115
|
+
#
|
7116
|
+
# resp = client.list_connections({
|
7117
|
+
# domain_identifier: "DomainId", # required
|
7118
|
+
# environment_identifier: "EnvironmentId",
|
7119
|
+
# max_results: 1,
|
7120
|
+
# name: "ConnectionName",
|
7121
|
+
# next_token: "PaginationToken",
|
7122
|
+
# project_identifier: "ProjectId", # required
|
7123
|
+
# sort_by: "NAME", # accepts NAME
|
7124
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
7125
|
+
# type: "ATHENA", # accepts ATHENA, BIGQUERY, DATABRICKS, DOCUMENTDB, DYNAMODB, HYPERPOD, IAM, MYSQL, OPENSEARCH, ORACLE, POSTGRESQL, REDSHIFT, SAPHANA, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, VERTICA, WORKFLOWS_MWAA
|
7126
|
+
# })
|
7127
|
+
#
|
7128
|
+
# @example Response structure
|
7129
|
+
#
|
7130
|
+
# resp.items #=> Array
|
7131
|
+
# resp.items[0].connection_id #=> String
|
7132
|
+
# resp.items[0].domain_id #=> String
|
7133
|
+
# resp.items[0].domain_unit_id #=> String
|
7134
|
+
# resp.items[0].environment_id #=> String
|
7135
|
+
# resp.items[0].name #=> String
|
7136
|
+
# resp.items[0].physical_endpoints #=> Array
|
7137
|
+
# resp.items[0].physical_endpoints[0].aws_location.access_role #=> String
|
7138
|
+
# resp.items[0].physical_endpoints[0].aws_location.aws_account_id #=> String
|
7139
|
+
# resp.items[0].physical_endpoints[0].aws_location.aws_region #=> String
|
7140
|
+
# resp.items[0].physical_endpoints[0].aws_location.iam_connection_id #=> String
|
7141
|
+
# resp.items[0].physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
7142
|
+
# resp.items[0].physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
7143
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
7144
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.authorization_code #=> String
|
7145
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.redirect_uri #=> String
|
7146
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.a_ws_managed_client_application_reference #=> String
|
7147
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.user_managed_client_application_client_id #=> String
|
7148
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.access_token #=> String
|
7149
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.jwt_token #=> String
|
7150
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.refresh_token #=> String
|
7151
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.user_managed_client_application_client_secret #=> String
|
7152
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "AUTHORIZATION_CODE", "CLIENT_CREDENTIALS", "JWT_BEARER"
|
7153
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url #=> String
|
7154
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map #=> Hash
|
7155
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map["TokenUrlParametersMapKeyString"] #=> String
|
7156
|
+
# resp.items[0].physical_endpoints[0].glue_connection.authentication_configuration.secret_arn #=> String
|
7157
|
+
# resp.items[0].physical_endpoints[0].glue_connection.compatible_compute_environments #=> Array
|
7158
|
+
# resp.items[0].physical_endpoints[0].glue_connection.compatible_compute_environments[0] #=> String, one of "SPARK", "ATHENA", "PYTHON"
|
7159
|
+
# resp.items[0].physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
7160
|
+
# resp.items[0].physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
7161
|
+
# resp.items[0].physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
7162
|
+
# 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", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
7163
|
+
# resp.items[0].physical_endpoints[0].glue_connection.creation_time #=> Time
|
7164
|
+
# resp.items[0].physical_endpoints[0].glue_connection.description #=> String
|
7165
|
+
# resp.items[0].physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
7166
|
+
# resp.items[0].physical_endpoints[0].glue_connection.last_updated_by #=> String
|
7167
|
+
# resp.items[0].physical_endpoints[0].glue_connection.last_updated_time #=> Time
|
7168
|
+
# resp.items[0].physical_endpoints[0].glue_connection.match_criteria #=> Array
|
7169
|
+
# resp.items[0].physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
7170
|
+
# resp.items[0].physical_endpoints[0].glue_connection.name #=> String
|
7171
|
+
# resp.items[0].physical_endpoints[0].glue_connection.physical_connection_requirements.availability_zone #=> String
|
7172
|
+
# resp.items[0].physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list #=> Array
|
7173
|
+
# resp.items[0].physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list[0] #=> String
|
7174
|
+
# resp.items[0].physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id #=> String
|
7175
|
+
# resp.items[0].physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list #=> Array
|
7176
|
+
# resp.items[0].physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list[0] #=> String
|
7177
|
+
# resp.items[0].physical_endpoints[0].glue_connection.python_properties #=> Hash
|
7178
|
+
# resp.items[0].physical_endpoints[0].glue_connection.python_properties["PropertyMapKeyString"] #=> String
|
7179
|
+
# resp.items[0].physical_endpoints[0].glue_connection.spark_properties #=> Hash
|
7180
|
+
# resp.items[0].physical_endpoints[0].glue_connection.spark_properties["PropertyMapKeyString"] #=> String
|
7181
|
+
# resp.items[0].physical_endpoints[0].glue_connection.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
7182
|
+
# resp.items[0].physical_endpoints[0].glue_connection.status_reason #=> String
|
7183
|
+
# resp.items[0].physical_endpoints[0].glue_connection_name #=> String
|
7184
|
+
# resp.items[0].physical_endpoints[0].host #=> String
|
7185
|
+
# resp.items[0].physical_endpoints[0].port #=> Integer
|
7186
|
+
# resp.items[0].physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
7187
|
+
# resp.items[0].physical_endpoints[0].stage #=> String
|
7188
|
+
# resp.items[0].project_id #=> String
|
7189
|
+
# resp.items[0].props.athena_properties.workgroup_name #=> String
|
7190
|
+
# resp.items[0].props.glue_properties.error_message #=> String
|
7191
|
+
# resp.items[0].props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
7192
|
+
# resp.items[0].props.hyper_pod_properties.cluster_arn #=> String
|
7193
|
+
# resp.items[0].props.hyper_pod_properties.cluster_name #=> String
|
7194
|
+
# resp.items[0].props.hyper_pod_properties.orchestrator #=> String, one of "EKS", "SLURM"
|
7195
|
+
# resp.items[0].props.iam_properties.environment_id #=> String
|
7196
|
+
# resp.items[0].props.iam_properties.glue_lineage_sync_enabled #=> Boolean
|
7197
|
+
# resp.items[0].props.redshift_properties.credentials.secret_arn #=> String
|
7198
|
+
# resp.items[0].props.redshift_properties.credentials.username_password.password #=> String
|
7199
|
+
# resp.items[0].props.redshift_properties.credentials.username_password.username #=> String
|
7200
|
+
# resp.items[0].props.redshift_properties.database_name #=> String
|
7201
|
+
# resp.items[0].props.redshift_properties.is_provisioned_secret #=> Boolean
|
7202
|
+
# resp.items[0].props.redshift_properties.jdbc_iam_url #=> String
|
7203
|
+
# resp.items[0].props.redshift_properties.jdbc_url #=> String
|
7204
|
+
# resp.items[0].props.redshift_properties.lineage_sync.enabled #=> Boolean
|
7205
|
+
# resp.items[0].props.redshift_properties.lineage_sync.lineage_job_id #=> String
|
7206
|
+
# resp.items[0].props.redshift_properties.lineage_sync.schedule.schedule #=> String
|
7207
|
+
# resp.items[0].props.redshift_properties.redshift_temp_dir #=> String
|
7208
|
+
# resp.items[0].props.redshift_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
7209
|
+
# resp.items[0].props.redshift_properties.storage.cluster_name #=> String
|
7210
|
+
# resp.items[0].props.redshift_properties.storage.workgroup_name #=> String
|
7211
|
+
# resp.items[0].props.spark_emr_properties.compute_arn #=> String
|
7212
|
+
# resp.items[0].props.spark_emr_properties.credentials.password #=> String
|
7213
|
+
# resp.items[0].props.spark_emr_properties.credentials.username #=> String
|
7214
|
+
# resp.items[0].props.spark_emr_properties.credentials_expiration #=> Time
|
7215
|
+
# resp.items[0].props.spark_emr_properties.governance_type #=> String, one of "AWS_MANAGED", "USER_MANAGED"
|
7216
|
+
# resp.items[0].props.spark_emr_properties.instance_profile_arn #=> String
|
7217
|
+
# resp.items[0].props.spark_emr_properties.java_virtual_env #=> String
|
7218
|
+
# resp.items[0].props.spark_emr_properties.livy_endpoint #=> String
|
7219
|
+
# resp.items[0].props.spark_emr_properties.log_uri #=> String
|
7220
|
+
# resp.items[0].props.spark_emr_properties.python_virtual_env #=> String
|
7221
|
+
# resp.items[0].props.spark_emr_properties.runtime_role #=> String
|
7222
|
+
# resp.items[0].props.spark_emr_properties.trusted_certificates_s3_uri #=> String
|
7223
|
+
# resp.items[0].props.spark_glue_properties.additional_args.connection #=> String
|
7224
|
+
# resp.items[0].props.spark_glue_properties.glue_connection_name #=> String
|
7225
|
+
# resp.items[0].props.spark_glue_properties.glue_version #=> String
|
7226
|
+
# resp.items[0].props.spark_glue_properties.idle_timeout #=> Integer
|
7227
|
+
# resp.items[0].props.spark_glue_properties.java_virtual_env #=> String
|
7228
|
+
# resp.items[0].props.spark_glue_properties.number_of_workers #=> Integer
|
7229
|
+
# resp.items[0].props.spark_glue_properties.python_virtual_env #=> String
|
7230
|
+
# resp.items[0].props.spark_glue_properties.worker_type #=> String
|
7231
|
+
# resp.items[0].type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
7232
|
+
# resp.next_token #=> String
|
7233
|
+
#
|
7234
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListConnections AWS API Documentation
|
7235
|
+
#
|
7236
|
+
# @overload list_connections(params = {})
|
7237
|
+
# @param [Hash] params ({})
|
7238
|
+
def list_connections(params = {}, options = {})
|
7239
|
+
req = build_request(:list_connections, params)
|
7240
|
+
req.send_request(options)
|
7241
|
+
end
|
7242
|
+
|
6137
7243
|
# Lists data product revisions.
|
6138
7244
|
#
|
6139
7245
|
# @option params [required, String] :domain_identifier
|
@@ -6249,6 +7355,9 @@ module Aws::DataZone
|
|
6249
7355
|
# resp.items[0].database #=> String
|
6250
7356
|
# resp.items[0].error_message.error_detail #=> String
|
6251
7357
|
# resp.items[0].error_message.error_type #=> String, one of "ACCESS_DENIED_EXCEPTION", "CONFLICT_EXCEPTION", "INTERNAL_SERVER_EXCEPTION", "RESOURCE_NOT_FOUND_EXCEPTION", "SERVICE_QUOTA_EXCEEDED_EXCEPTION", "THROTTLING_EXCEPTION", "VALIDATION_EXCEPTION"
|
7358
|
+
# resp.items[0].lineage_summary.error_message #=> String
|
7359
|
+
# resp.items[0].lineage_summary.event_id #=> String
|
7360
|
+
# resp.items[0].lineage_summary.event_status #=> String, one of "REQUESTED", "PROCESSING", "SUCCESS", "FAILED"
|
6252
7361
|
# resp.items[0].project_id #=> String
|
6253
7362
|
# resp.items[0].technical_description #=> String
|
6254
7363
|
# resp.items[0].technical_name #=> String
|
@@ -6316,6 +7425,7 @@ module Aws::DataZone
|
|
6316
7425
|
# resp.items[0].error_message.error_detail #=> String
|
6317
7426
|
# resp.items[0].error_message.error_type #=> String, one of "ACCESS_DENIED_EXCEPTION", "CONFLICT_EXCEPTION", "INTERNAL_SERVER_EXCEPTION", "RESOURCE_NOT_FOUND_EXCEPTION", "SERVICE_QUOTA_EXCEEDED_EXCEPTION", "THROTTLING_EXCEPTION", "VALIDATION_EXCEPTION"
|
6318
7427
|
# resp.items[0].id #=> String
|
7428
|
+
# resp.items[0].lineage_summary.import_status #=> String, one of "IN_PROGRESS", "SUCCESS", "FAILED", "PARTIALLY_SUCCEEDED"
|
6319
7429
|
# resp.items[0].project_id #=> String
|
6320
7430
|
# resp.items[0].run_statistics_for_assets.added #=> Integer
|
6321
7431
|
# resp.items[0].run_statistics_for_assets.failed #=> Integer
|
@@ -6340,6 +7450,9 @@ module Aws::DataZone
|
|
6340
7450
|
|
6341
7451
|
# Lists data sources in Amazon DataZone.
|
6342
7452
|
#
|
7453
|
+
# @option params [String] :connection_identifier
|
7454
|
+
# The ID of the connection.
|
7455
|
+
#
|
6343
7456
|
# @option params [required, String] :domain_identifier
|
6344
7457
|
# The identifier of the Amazon DataZone domain in which to list the data
|
6345
7458
|
# sources.
|
@@ -6384,6 +7497,7 @@ module Aws::DataZone
|
|
6384
7497
|
# @example Request syntax with placeholder values
|
6385
7498
|
#
|
6386
7499
|
# resp = client.list_data_sources({
|
7500
|
+
# connection_identifier: "String",
|
6387
7501
|
# domain_identifier: "DomainId", # required
|
6388
7502
|
# environment_identifier: "String",
|
6389
7503
|
# max_results: 1,
|
@@ -6397,8 +7511,10 @@ module Aws::DataZone
|
|
6397
7511
|
# @example Response structure
|
6398
7512
|
#
|
6399
7513
|
# resp.items #=> Array
|
7514
|
+
# resp.items[0].connection_id #=> String
|
6400
7515
|
# resp.items[0].created_at #=> Time
|
6401
7516
|
# resp.items[0].data_source_id #=> String
|
7517
|
+
# resp.items[0].description #=> String
|
6402
7518
|
# resp.items[0].domain_id #=> String
|
6403
7519
|
# resp.items[0].enable_setting #=> String, one of "ENABLED", "DISABLED"
|
6404
7520
|
# resp.items[0].environment_id #=> String
|
@@ -6521,6 +7637,7 @@ module Aws::DataZone
|
|
6521
7637
|
# resp.items[0].arn #=> String
|
6522
7638
|
# resp.items[0].created_at #=> Time
|
6523
7639
|
# resp.items[0].description #=> String
|
7640
|
+
# resp.items[0].domain_version #=> String, one of "V1", "V2"
|
6524
7641
|
# resp.items[0].id #=> String
|
6525
7642
|
# resp.items[0].last_updated_at #=> Time
|
6526
7643
|
# resp.items[0].managed_account_id #=> String
|
@@ -6702,6 +7819,7 @@ module Aws::DataZone
|
|
6702
7819
|
# resp.items[0].enabled_regions #=> Array
|
6703
7820
|
# resp.items[0].enabled_regions[0] #=> String
|
6704
7821
|
# resp.items[0].environment_blueprint_id #=> String
|
7822
|
+
# resp.items[0].environment_role_permission_boundary #=> String
|
6705
7823
|
# resp.items[0].manage_access_role_arn #=> String
|
6706
7824
|
# resp.items[0].provisioning_configurations #=> Array
|
6707
7825
|
# resp.items[0].provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations #=> Array
|
@@ -6968,6 +8086,159 @@ module Aws::DataZone
|
|
6968
8086
|
req.send_request(options)
|
6969
8087
|
end
|
6970
8088
|
|
8089
|
+
# Lists job runs.
|
8090
|
+
#
|
8091
|
+
# @option params [required, String] :domain_identifier
|
8092
|
+
# The ID of the domain where you want to list job runs.
|
8093
|
+
#
|
8094
|
+
# @option params [required, String] :job_identifier
|
8095
|
+
# The ID of the job run.
|
8096
|
+
#
|
8097
|
+
# @option params [Integer] :max_results
|
8098
|
+
# The maximum number of job runs to return in a single call to
|
8099
|
+
# ListJobRuns. When the number of job runs to be listed is greater than
|
8100
|
+
# the value of MaxResults, the response contains a NextToken value that
|
8101
|
+
# you can use in a subsequent call to ListJobRuns to list the next set
|
8102
|
+
# of job runs.
|
8103
|
+
#
|
8104
|
+
# @option params [String] :next_token
|
8105
|
+
# When the number of job runs is greater than the default value for the
|
8106
|
+
# MaxResults parameter, or if you explicitly specify a value for
|
8107
|
+
# MaxResults that is less than the number of job runs, the response
|
8108
|
+
# includes a pagination token named NextToken. You can specify this
|
8109
|
+
# NextToken value in a subsequent call to ListJobRuns to list the next
|
8110
|
+
# set of job runs.
|
8111
|
+
#
|
8112
|
+
# @option params [String] :sort_order
|
8113
|
+
# Specifies the order in which job runs are to be sorted.
|
8114
|
+
#
|
8115
|
+
# @option params [String] :status
|
8116
|
+
# The status of a job run.
|
8117
|
+
#
|
8118
|
+
# @return [Types::ListJobRunsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8119
|
+
#
|
8120
|
+
# * {Types::ListJobRunsOutput#items #items} => Array<Types::JobRunSummary>
|
8121
|
+
# * {Types::ListJobRunsOutput#next_token #next_token} => String
|
8122
|
+
#
|
8123
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8124
|
+
#
|
8125
|
+
# @example Request syntax with placeholder values
|
8126
|
+
#
|
8127
|
+
# resp = client.list_job_runs({
|
8128
|
+
# domain_identifier: "DomainId", # required
|
8129
|
+
# job_identifier: "ListJobRunsInputJobIdentifierString", # required
|
8130
|
+
# max_results: 1,
|
8131
|
+
# next_token: "PaginationToken",
|
8132
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
8133
|
+
# status: "SCHEDULED", # accepts SCHEDULED, IN_PROGRESS, SUCCESS, PARTIALLY_SUCCEEDED, FAILED, ABORTED, TIMED_OUT, CANCELED
|
8134
|
+
# })
|
8135
|
+
#
|
8136
|
+
# @example Response structure
|
8137
|
+
#
|
8138
|
+
# resp.items #=> Array
|
8139
|
+
# resp.items[0].created_at #=> Time
|
8140
|
+
# resp.items[0].created_by #=> String
|
8141
|
+
# resp.items[0].domain_id #=> String
|
8142
|
+
# resp.items[0].end_time #=> Time
|
8143
|
+
# resp.items[0].error.message #=> String
|
8144
|
+
# resp.items[0].job_id #=> String
|
8145
|
+
# resp.items[0].job_type #=> String, one of "LINEAGE"
|
8146
|
+
# resp.items[0].run_id #=> String
|
8147
|
+
# resp.items[0].run_mode #=> String, one of "SCHEDULED", "ON_DEMAND"
|
8148
|
+
# resp.items[0].start_time #=> Time
|
8149
|
+
# resp.items[0].status #=> String, one of "SCHEDULED", "IN_PROGRESS", "SUCCESS", "PARTIALLY_SUCCEEDED", "FAILED", "ABORTED", "TIMED_OUT", "CANCELED"
|
8150
|
+
# resp.next_token #=> String
|
8151
|
+
#
|
8152
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListJobRuns AWS API Documentation
|
8153
|
+
#
|
8154
|
+
# @overload list_job_runs(params = {})
|
8155
|
+
# @param [Hash] params ({})
|
8156
|
+
def list_job_runs(params = {}, options = {})
|
8157
|
+
req = build_request(:list_job_runs, params)
|
8158
|
+
req.send_request(options)
|
8159
|
+
end
|
8160
|
+
|
8161
|
+
# Lists lineage events.
|
8162
|
+
#
|
8163
|
+
# @option params [required, String] :domain_identifier
|
8164
|
+
# The ID of the domain where you want to list lineage events.
|
8165
|
+
#
|
8166
|
+
# @option params [Integer] :max_results
|
8167
|
+
# The maximum number of lineage events to return in a single call to
|
8168
|
+
# ListLineageEvents. When the number of lineage events to be listed is
|
8169
|
+
# greater than the value of MaxResults, the response contains a
|
8170
|
+
# NextToken value that you can use in a subsequent call to
|
8171
|
+
# ListLineageEvents to list the next set of lineage events.
|
8172
|
+
#
|
8173
|
+
# @option params [String] :next_token
|
8174
|
+
# When the number of lineage events is greater than the default value
|
8175
|
+
# for the MaxResults parameter, or if you explicitly specify a value for
|
8176
|
+
# MaxResults that is less than the number of lineage events, the
|
8177
|
+
# response includes a pagination token named NextToken. You can specify
|
8178
|
+
# this NextToken value in a subsequent call to ListLineageEvents to list
|
8179
|
+
# the next set of lineage events.
|
8180
|
+
#
|
8181
|
+
# @option params [String] :processing_status
|
8182
|
+
# The processing status of a lineage event.
|
8183
|
+
#
|
8184
|
+
# @option params [String] :sort_order
|
8185
|
+
# The sort order of the lineage events.
|
8186
|
+
#
|
8187
|
+
# @option params [Time,DateTime,Date,Integer,String] :timestamp_after
|
8188
|
+
# The after timestamp of a lineage event.
|
8189
|
+
#
|
8190
|
+
# @option params [Time,DateTime,Date,Integer,String] :timestamp_before
|
8191
|
+
# The before timestamp of a lineage event.
|
8192
|
+
#
|
8193
|
+
# @return [Types::ListLineageEventsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8194
|
+
#
|
8195
|
+
# * {Types::ListLineageEventsOutput#items #items} => Array<Types::LineageEventSummary>
|
8196
|
+
# * {Types::ListLineageEventsOutput#next_token #next_token} => String
|
8197
|
+
#
|
8198
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8199
|
+
#
|
8200
|
+
# @example Request syntax with placeholder values
|
8201
|
+
#
|
8202
|
+
# resp = client.list_lineage_events({
|
8203
|
+
# domain_identifier: "DomainId", # required
|
8204
|
+
# max_results: 1,
|
8205
|
+
# next_token: "PaginationToken",
|
8206
|
+
# processing_status: "REQUESTED", # accepts REQUESTED, PROCESSING, SUCCESS, FAILED
|
8207
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
8208
|
+
# timestamp_after: Time.now,
|
8209
|
+
# timestamp_before: Time.now,
|
8210
|
+
# })
|
8211
|
+
#
|
8212
|
+
# @example Response structure
|
8213
|
+
#
|
8214
|
+
# resp.items #=> Array
|
8215
|
+
# resp.items[0].created_at #=> Time
|
8216
|
+
# resp.items[0].created_by #=> String
|
8217
|
+
# resp.items[0].domain_id #=> String
|
8218
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.event_type #=> String, one of "START", "RUNNING", "COMPLETE", "ABORT", "FAIL", "OTHER"
|
8219
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.inputs #=> Array
|
8220
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.inputs[0].name #=> String
|
8221
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.inputs[0].namespace #=> String
|
8222
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.job.name #=> String
|
8223
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.job.namespace #=> String
|
8224
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.outputs #=> Array
|
8225
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.outputs[0].name #=> String
|
8226
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.outputs[0].namespace #=> String
|
8227
|
+
# resp.items[0].event_summary.open_lineage_run_event_summary.run_id #=> String
|
8228
|
+
# resp.items[0].event_time #=> Time
|
8229
|
+
# resp.items[0].id #=> String
|
8230
|
+
# resp.items[0].processing_status #=> String, one of "REQUESTED", "PROCESSING", "SUCCESS", "FAILED"
|
8231
|
+
# resp.next_token #=> String
|
8232
|
+
#
|
8233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListLineageEvents AWS API Documentation
|
8234
|
+
#
|
8235
|
+
# @overload list_lineage_events(params = {})
|
8236
|
+
# @param [Hash] params ({})
|
8237
|
+
def list_lineage_events(params = {}, options = {})
|
8238
|
+
req = build_request(:list_lineage_events, params)
|
8239
|
+
req.send_request(options)
|
8240
|
+
end
|
8241
|
+
|
6971
8242
|
# Lists the history of the specified data lineage node.
|
6972
8243
|
#
|
6973
8244
|
# @option params [String] :direction
|
@@ -7253,7 +8524,7 @@ module Aws::DataZone
|
|
7253
8524
|
# entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE
|
7254
8525
|
# max_results: 1,
|
7255
8526
|
# next_token: "PaginationToken",
|
7256
|
-
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT
|
8527
|
+
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT, CREATE_ENVIRONMENT_FROM_BLUEPRINT, CREATE_PROJECT_FROM_PROJECT_PROFILE
|
7257
8528
|
# })
|
7258
8529
|
#
|
7259
8530
|
# @example Response structure
|
@@ -7268,6 +8539,9 @@ module Aws::DataZone
|
|
7268
8539
|
# resp.grant_list[0].detail.create_form_type.include_child_domain_units #=> Boolean
|
7269
8540
|
# resp.grant_list[0].detail.create_glossary.include_child_domain_units #=> Boolean
|
7270
8541
|
# resp.grant_list[0].detail.create_project.include_child_domain_units #=> Boolean
|
8542
|
+
# resp.grant_list[0].detail.create_project_from_project_profile.include_child_domain_units #=> Boolean
|
8543
|
+
# resp.grant_list[0].detail.create_project_from_project_profile.project_profiles #=> Array
|
8544
|
+
# resp.grant_list[0].detail.create_project_from_project_profile.project_profiles[0] #=> String
|
7271
8545
|
# resp.grant_list[0].detail.override_domain_unit_owners.include_child_domain_units #=> Boolean
|
7272
8546
|
# resp.grant_list[0].detail.override_project_owners.include_child_domain_units #=> Boolean
|
7273
8547
|
# resp.grant_list[0].principal.domain_unit.domain_unit_designation #=> String, one of "OWNER"
|
@@ -7354,6 +8628,76 @@ module Aws::DataZone
|
|
7354
8628
|
req.send_request(options)
|
7355
8629
|
end
|
7356
8630
|
|
8631
|
+
# Lists project profiles.
|
8632
|
+
#
|
8633
|
+
# @option params [required, String] :domain_identifier
|
8634
|
+
# The ID of the domain where you want to list project profiles.
|
8635
|
+
#
|
8636
|
+
# @option params [Integer] :max_results
|
8637
|
+
# The maximum number of project profiles to return in a single call to
|
8638
|
+
# ListProjectProfiles. When the number of project profiles to be listed
|
8639
|
+
# is greater than the value of MaxResults, the response contains a
|
8640
|
+
# NextToken value that you can use in a subsequent call to
|
8641
|
+
# ListProjectProfiles to list the next set of project profiles.
|
8642
|
+
#
|
8643
|
+
# @option params [String] :name
|
8644
|
+
# The name of a project profile.
|
8645
|
+
#
|
8646
|
+
# @option params [String] :next_token
|
8647
|
+
# When the number of project profiles is greater than the default value
|
8648
|
+
# for the MaxResults parameter, or if you explicitly specify a value for
|
8649
|
+
# MaxResults that is less than the number of project profiles, the
|
8650
|
+
# response includes a pagination token named NextToken. You can specify
|
8651
|
+
# this NextToken value in a subsequent call to ListProjectProfiles to
|
8652
|
+
# list the next set of project profiles.
|
8653
|
+
#
|
8654
|
+
# @option params [String] :sort_by
|
8655
|
+
# Specifies by what to sort project profiles.
|
8656
|
+
#
|
8657
|
+
# @option params [String] :sort_order
|
8658
|
+
# Specifies the sort order of the project profiles.
|
8659
|
+
#
|
8660
|
+
# @return [Types::ListProjectProfilesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8661
|
+
#
|
8662
|
+
# * {Types::ListProjectProfilesOutput#items #items} => Array<Types::ProjectProfileSummary>
|
8663
|
+
# * {Types::ListProjectProfilesOutput#next_token #next_token} => String
|
8664
|
+
#
|
8665
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8666
|
+
#
|
8667
|
+
# @example Request syntax with placeholder values
|
8668
|
+
#
|
8669
|
+
# resp = client.list_project_profiles({
|
8670
|
+
# domain_identifier: "DomainId", # required
|
8671
|
+
# max_results: 1,
|
8672
|
+
# name: "ProjectProfileName",
|
8673
|
+
# next_token: "PaginationToken",
|
8674
|
+
# sort_by: "NAME", # accepts NAME
|
8675
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
8676
|
+
# })
|
8677
|
+
#
|
8678
|
+
# @example Response structure
|
8679
|
+
#
|
8680
|
+
# resp.items #=> Array
|
8681
|
+
# resp.items[0].created_at #=> Time
|
8682
|
+
# resp.items[0].created_by #=> String
|
8683
|
+
# resp.items[0].description #=> String
|
8684
|
+
# resp.items[0].domain_id #=> String
|
8685
|
+
# resp.items[0].domain_unit_id #=> String
|
8686
|
+
# resp.items[0].id #=> String
|
8687
|
+
# resp.items[0].last_updated_at #=> Time
|
8688
|
+
# resp.items[0].name #=> String
|
8689
|
+
# resp.items[0].status #=> String, one of "ENABLED", "DISABLED"
|
8690
|
+
# resp.next_token #=> String
|
8691
|
+
#
|
8692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListProjectProfiles AWS API Documentation
|
8693
|
+
#
|
8694
|
+
# @overload list_project_profiles(params = {})
|
8695
|
+
# @param [Hash] params ({})
|
8696
|
+
def list_project_profiles(params = {}, options = {})
|
8697
|
+
req = build_request(:list_project_profiles, params)
|
8698
|
+
req.send_request(options)
|
8699
|
+
end
|
8700
|
+
|
7357
8701
|
# Lists Amazon DataZone projects.
|
7358
8702
|
#
|
7359
8703
|
# @option params [required, String] :domain_identifier
|
@@ -8092,7 +9436,10 @@ module Aws::DataZone
|
|
8092
9436
|
# The data lineage event that you want to post. Only open-lineage run
|
8093
9437
|
# event are supported as events.
|
8094
9438
|
#
|
8095
|
-
# @return [
|
9439
|
+
# @return [Types::PostLineageEventOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9440
|
+
#
|
9441
|
+
# * {Types::PostLineageEventOutput#domain_id #domain_id} => String
|
9442
|
+
# * {Types::PostLineageEventOutput#id #id} => String
|
8096
9443
|
#
|
8097
9444
|
# @example Request syntax with placeholder values
|
8098
9445
|
#
|
@@ -8102,6 +9449,11 @@ module Aws::DataZone
|
|
8102
9449
|
# event: "data", # required
|
8103
9450
|
# })
|
8104
9451
|
#
|
9452
|
+
# @example Response structure
|
9453
|
+
#
|
9454
|
+
# resp.domain_id #=> String
|
9455
|
+
# resp.id #=> String
|
9456
|
+
#
|
8105
9457
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PostLineageEvent AWS API Documentation
|
8106
9458
|
#
|
8107
9459
|
# @overload post_lineage_event(params = {})
|
@@ -8194,6 +9546,9 @@ module Aws::DataZone
|
|
8194
9546
|
# @option params [required, String] :environment_blueprint_identifier
|
8195
9547
|
# The identifier of the environment blueprint.
|
8196
9548
|
#
|
9549
|
+
# @option params [String] :environment_role_permission_boundary
|
9550
|
+
# The environment role permissions boundary.
|
9551
|
+
#
|
8197
9552
|
# @option params [String] :manage_access_role_arn
|
8198
9553
|
# The ARN of the manage access role.
|
8199
9554
|
#
|
@@ -8212,6 +9567,7 @@ module Aws::DataZone
|
|
8212
9567
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#domain_id #domain_id} => String
|
8213
9568
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#enabled_regions #enabled_regions} => Array<String>
|
8214
9569
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#environment_blueprint_id #environment_blueprint_id} => String
|
9570
|
+
# * {Types::PutEnvironmentBlueprintConfigurationOutput#environment_role_permission_boundary #environment_role_permission_boundary} => String
|
8215
9571
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#manage_access_role_arn #manage_access_role_arn} => String
|
8216
9572
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#provisioning_configurations #provisioning_configurations} => Array<Types::ProvisioningConfiguration>
|
8217
9573
|
# * {Types::PutEnvironmentBlueprintConfigurationOutput#provisioning_role_arn #provisioning_role_arn} => String
|
@@ -8224,6 +9580,7 @@ module Aws::DataZone
|
|
8224
9580
|
# domain_identifier: "DomainId", # required
|
8225
9581
|
# enabled_regions: ["RegionName"], # required
|
8226
9582
|
# environment_blueprint_identifier: "EnvironmentBlueprintId", # required
|
9583
|
+
# environment_role_permission_boundary: "PolicyArn",
|
8227
9584
|
# manage_access_role_arn: "RoleArn",
|
8228
9585
|
# provisioning_configurations: [
|
8229
9586
|
# {
|
@@ -8248,6 +9605,7 @@ module Aws::DataZone
|
|
8248
9605
|
# resp.enabled_regions #=> Array
|
8249
9606
|
# resp.enabled_regions[0] #=> String
|
8250
9607
|
# resp.environment_blueprint_id #=> String
|
9608
|
+
# resp.environment_role_permission_boundary #=> String
|
8251
9609
|
# resp.manage_access_role_arn #=> String
|
8252
9610
|
# resp.provisioning_configurations #=> Array
|
8253
9611
|
# resp.provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations #=> Array
|
@@ -8516,7 +9874,7 @@ module Aws::DataZone
|
|
8516
9874
|
# domain_identifier: "DomainId", # required
|
8517
9875
|
# entity_identifier: "String", # required
|
8518
9876
|
# entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE
|
8519
|
-
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT
|
9877
|
+
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT, CREATE_ENVIRONMENT_FROM_BLUEPRINT, CREATE_PROJECT_FROM_PROJECT_PROFILE
|
8520
9878
|
# principal: { # required
|
8521
9879
|
# domain_unit: {
|
8522
9880
|
# domain_unit_designation: "OWNER", # required, accepts OWNER
|
@@ -9569,6 +10927,220 @@ module Aws::DataZone
|
|
9569
10927
|
req.send_request(options)
|
9570
10928
|
end
|
9571
10929
|
|
10930
|
+
# Updates a connection. In Amazon DataZone, a connection enables you to
|
10931
|
+
# connect your resources (domains, projects, and environments) to
|
10932
|
+
# external resources and services.
|
10933
|
+
#
|
10934
|
+
# @option params [Types::AwsLocation] :aws_location
|
10935
|
+
# The location where a connection is to be updated.
|
10936
|
+
#
|
10937
|
+
# @option params [String] :description
|
10938
|
+
# The description of a connection.
|
10939
|
+
#
|
10940
|
+
# @option params [required, String] :domain_identifier
|
10941
|
+
# The ID of the domain where a connection is to be updated.
|
10942
|
+
#
|
10943
|
+
# @option params [required, String] :identifier
|
10944
|
+
# The ID of the connection to be updated.
|
10945
|
+
#
|
10946
|
+
# @option params [Types::ConnectionPropertiesPatch] :props
|
10947
|
+
# The connection props.
|
10948
|
+
#
|
10949
|
+
# @return [Types::UpdateConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10950
|
+
#
|
10951
|
+
# * {Types::UpdateConnectionOutput#connection_id #connection_id} => String
|
10952
|
+
# * {Types::UpdateConnectionOutput#description #description} => String
|
10953
|
+
# * {Types::UpdateConnectionOutput#domain_id #domain_id} => String
|
10954
|
+
# * {Types::UpdateConnectionOutput#domain_unit_id #domain_unit_id} => String
|
10955
|
+
# * {Types::UpdateConnectionOutput#environment_id #environment_id} => String
|
10956
|
+
# * {Types::UpdateConnectionOutput#name #name} => String
|
10957
|
+
# * {Types::UpdateConnectionOutput#physical_endpoints #physical_endpoints} => Array<Types::PhysicalEndpoint>
|
10958
|
+
# * {Types::UpdateConnectionOutput#project_id #project_id} => String
|
10959
|
+
# * {Types::UpdateConnectionOutput#props #props} => Types::ConnectionPropertiesOutput
|
10960
|
+
# * {Types::UpdateConnectionOutput#type #type} => String
|
10961
|
+
#
|
10962
|
+
# @example Request syntax with placeholder values
|
10963
|
+
#
|
10964
|
+
# resp = client.update_connection({
|
10965
|
+
# aws_location: {
|
10966
|
+
# access_role: "AwsLocationAccessRoleString",
|
10967
|
+
# aws_account_id: "AwsAccountId",
|
10968
|
+
# aws_region: "AwsRegion",
|
10969
|
+
# iam_connection_id: "ConnectionId",
|
10970
|
+
# },
|
10971
|
+
# description: "UpdateConnectionInputDescriptionString",
|
10972
|
+
# domain_identifier: "DomainId", # required
|
10973
|
+
# identifier: "ConnectionId", # required
|
10974
|
+
# props: {
|
10975
|
+
# athena_properties: {
|
10976
|
+
# workgroup_name: "AthenaPropertiesPatchWorkgroupNameString",
|
10977
|
+
# },
|
10978
|
+
# glue_properties: {
|
10979
|
+
# glue_connection_input: {
|
10980
|
+
# authentication_configuration: {
|
10981
|
+
# basic_authentication_credentials: {
|
10982
|
+
# password: "BasicAuthenticationCredentialsPasswordString",
|
10983
|
+
# user_name: "BasicAuthenticationCredentialsUserNameString",
|
10984
|
+
# },
|
10985
|
+
# secret_arn: "AuthenticationConfigurationPatchSecretArnString",
|
10986
|
+
# },
|
10987
|
+
# connection_properties: {
|
10988
|
+
# "String" => "ConnectionPropertiesValueString",
|
10989
|
+
# },
|
10990
|
+
# description: "String",
|
10991
|
+
# },
|
10992
|
+
# },
|
10993
|
+
# iam_properties: {
|
10994
|
+
# glue_lineage_sync_enabled: false,
|
10995
|
+
# },
|
10996
|
+
# redshift_properties: {
|
10997
|
+
# credentials: {
|
10998
|
+
# secret_arn: "RedshiftCredentialsSecretArnString",
|
10999
|
+
# username_password: {
|
11000
|
+
# password: "Password", # required
|
11001
|
+
# username: "Username", # required
|
11002
|
+
# },
|
11003
|
+
# },
|
11004
|
+
# database_name: "RedshiftPropertiesPatchDatabaseNameString",
|
11005
|
+
# host: "RedshiftPropertiesPatchHostString",
|
11006
|
+
# lineage_sync: {
|
11007
|
+
# enabled: false,
|
11008
|
+
# schedule: {
|
11009
|
+
# schedule: "LineageSyncScheduleScheduleString",
|
11010
|
+
# },
|
11011
|
+
# },
|
11012
|
+
# port: 1,
|
11013
|
+
# storage: {
|
11014
|
+
# cluster_name: "RedshiftStoragePropertiesClusterNameString",
|
11015
|
+
# workgroup_name: "RedshiftStoragePropertiesWorkgroupNameString",
|
11016
|
+
# },
|
11017
|
+
# },
|
11018
|
+
# spark_emr_properties: {
|
11019
|
+
# compute_arn: "SparkEmrPropertiesPatchComputeArnString",
|
11020
|
+
# instance_profile_arn: "SparkEmrPropertiesPatchInstanceProfileArnString",
|
11021
|
+
# java_virtual_env: "SparkEmrPropertiesPatchJavaVirtualEnvString",
|
11022
|
+
# log_uri: "SparkEmrPropertiesPatchLogUriString",
|
11023
|
+
# python_virtual_env: "SparkEmrPropertiesPatchPythonVirtualEnvString",
|
11024
|
+
# runtime_role: "SparkEmrPropertiesPatchRuntimeRoleString",
|
11025
|
+
# trusted_certificates_s3_uri: "SparkEmrPropertiesPatchTrustedCertificatesS3UriString",
|
11026
|
+
# },
|
11027
|
+
# },
|
11028
|
+
# })
|
11029
|
+
#
|
11030
|
+
# @example Response structure
|
11031
|
+
#
|
11032
|
+
# resp.connection_id #=> String
|
11033
|
+
# resp.description #=> String
|
11034
|
+
# resp.domain_id #=> String
|
11035
|
+
# resp.domain_unit_id #=> String
|
11036
|
+
# resp.environment_id #=> String
|
11037
|
+
# resp.name #=> String
|
11038
|
+
# resp.physical_endpoints #=> Array
|
11039
|
+
# resp.physical_endpoints[0].aws_location.access_role #=> String
|
11040
|
+
# resp.physical_endpoints[0].aws_location.aws_account_id #=> String
|
11041
|
+
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
11042
|
+
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
11043
|
+
# resp.physical_endpoints[0].glue_connection.athena_properties #=> Hash
|
11044
|
+
# resp.physical_endpoints[0].glue_connection.athena_properties["PropertyMapKeyString"] #=> String
|
11045
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
|
11046
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.authorization_code #=> String
|
11047
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.authorization_code_properties.redirect_uri #=> String
|
11048
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.a_ws_managed_client_application_reference #=> String
|
11049
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.user_managed_client_application_client_id #=> String
|
11050
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.access_token #=> String
|
11051
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.jwt_token #=> String
|
11052
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.refresh_token #=> String
|
11053
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_credentials.user_managed_client_application_client_secret #=> String
|
11054
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "AUTHORIZATION_CODE", "CLIENT_CREDENTIALS", "JWT_BEARER"
|
11055
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url #=> String
|
11056
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map #=> Hash
|
11057
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map["TokenUrlParametersMapKeyString"] #=> String
|
11058
|
+
# resp.physical_endpoints[0].glue_connection.authentication_configuration.secret_arn #=> String
|
11059
|
+
# resp.physical_endpoints[0].glue_connection.compatible_compute_environments #=> Array
|
11060
|
+
# resp.physical_endpoints[0].glue_connection.compatible_compute_environments[0] #=> String, one of "SPARK", "ATHENA", "PYTHON"
|
11061
|
+
# resp.physical_endpoints[0].glue_connection.connection_properties #=> Hash
|
11062
|
+
# resp.physical_endpoints[0].glue_connection.connection_properties["String"] #=> String
|
11063
|
+
# resp.physical_endpoints[0].glue_connection.connection_schema_version #=> Integer
|
11064
|
+
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
11065
|
+
# resp.physical_endpoints[0].glue_connection.creation_time #=> Time
|
11066
|
+
# resp.physical_endpoints[0].glue_connection.description #=> String
|
11067
|
+
# resp.physical_endpoints[0].glue_connection.last_connection_validation_time #=> Time
|
11068
|
+
# resp.physical_endpoints[0].glue_connection.last_updated_by #=> String
|
11069
|
+
# resp.physical_endpoints[0].glue_connection.last_updated_time #=> Time
|
11070
|
+
# resp.physical_endpoints[0].glue_connection.match_criteria #=> Array
|
11071
|
+
# resp.physical_endpoints[0].glue_connection.match_criteria[0] #=> String
|
11072
|
+
# resp.physical_endpoints[0].glue_connection.name #=> String
|
11073
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.availability_zone #=> String
|
11074
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list #=> Array
|
11075
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.security_group_id_list[0] #=> String
|
11076
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id #=> String
|
11077
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list #=> Array
|
11078
|
+
# resp.physical_endpoints[0].glue_connection.physical_connection_requirements.subnet_id_list[0] #=> String
|
11079
|
+
# resp.physical_endpoints[0].glue_connection.python_properties #=> Hash
|
11080
|
+
# resp.physical_endpoints[0].glue_connection.python_properties["PropertyMapKeyString"] #=> String
|
11081
|
+
# resp.physical_endpoints[0].glue_connection.spark_properties #=> Hash
|
11082
|
+
# resp.physical_endpoints[0].glue_connection.spark_properties["PropertyMapKeyString"] #=> String
|
11083
|
+
# resp.physical_endpoints[0].glue_connection.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
11084
|
+
# resp.physical_endpoints[0].glue_connection.status_reason #=> String
|
11085
|
+
# resp.physical_endpoints[0].glue_connection_name #=> String
|
11086
|
+
# resp.physical_endpoints[0].host #=> String
|
11087
|
+
# resp.physical_endpoints[0].port #=> Integer
|
11088
|
+
# resp.physical_endpoints[0].protocol #=> String, one of "ATHENA", "GLUE_INTERACTIVE_SESSION", "HTTPS", "JDBC", "LIVY", "ODBC", "PRISM"
|
11089
|
+
# resp.physical_endpoints[0].stage #=> String
|
11090
|
+
# resp.project_id #=> String
|
11091
|
+
# resp.props.athena_properties.workgroup_name #=> String
|
11092
|
+
# resp.props.glue_properties.error_message #=> String
|
11093
|
+
# resp.props.glue_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
11094
|
+
# resp.props.hyper_pod_properties.cluster_arn #=> String
|
11095
|
+
# resp.props.hyper_pod_properties.cluster_name #=> String
|
11096
|
+
# resp.props.hyper_pod_properties.orchestrator #=> String, one of "EKS", "SLURM"
|
11097
|
+
# resp.props.iam_properties.environment_id #=> String
|
11098
|
+
# resp.props.iam_properties.glue_lineage_sync_enabled #=> Boolean
|
11099
|
+
# resp.props.redshift_properties.credentials.secret_arn #=> String
|
11100
|
+
# resp.props.redshift_properties.credentials.username_password.password #=> String
|
11101
|
+
# resp.props.redshift_properties.credentials.username_password.username #=> String
|
11102
|
+
# resp.props.redshift_properties.database_name #=> String
|
11103
|
+
# resp.props.redshift_properties.is_provisioned_secret #=> Boolean
|
11104
|
+
# resp.props.redshift_properties.jdbc_iam_url #=> String
|
11105
|
+
# resp.props.redshift_properties.jdbc_url #=> String
|
11106
|
+
# resp.props.redshift_properties.lineage_sync.enabled #=> Boolean
|
11107
|
+
# resp.props.redshift_properties.lineage_sync.lineage_job_id #=> String
|
11108
|
+
# resp.props.redshift_properties.lineage_sync.schedule.schedule #=> String
|
11109
|
+
# resp.props.redshift_properties.redshift_temp_dir #=> String
|
11110
|
+
# resp.props.redshift_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
11111
|
+
# resp.props.redshift_properties.storage.cluster_name #=> String
|
11112
|
+
# resp.props.redshift_properties.storage.workgroup_name #=> String
|
11113
|
+
# resp.props.spark_emr_properties.compute_arn #=> String
|
11114
|
+
# resp.props.spark_emr_properties.credentials.password #=> String
|
11115
|
+
# resp.props.spark_emr_properties.credentials.username #=> String
|
11116
|
+
# resp.props.spark_emr_properties.credentials_expiration #=> Time
|
11117
|
+
# resp.props.spark_emr_properties.governance_type #=> String, one of "AWS_MANAGED", "USER_MANAGED"
|
11118
|
+
# resp.props.spark_emr_properties.instance_profile_arn #=> String
|
11119
|
+
# resp.props.spark_emr_properties.java_virtual_env #=> String
|
11120
|
+
# resp.props.spark_emr_properties.livy_endpoint #=> String
|
11121
|
+
# resp.props.spark_emr_properties.log_uri #=> String
|
11122
|
+
# resp.props.spark_emr_properties.python_virtual_env #=> String
|
11123
|
+
# resp.props.spark_emr_properties.runtime_role #=> String
|
11124
|
+
# resp.props.spark_emr_properties.trusted_certificates_s3_uri #=> String
|
11125
|
+
# resp.props.spark_glue_properties.additional_args.connection #=> String
|
11126
|
+
# resp.props.spark_glue_properties.glue_connection_name #=> String
|
11127
|
+
# resp.props.spark_glue_properties.glue_version #=> String
|
11128
|
+
# resp.props.spark_glue_properties.idle_timeout #=> Integer
|
11129
|
+
# resp.props.spark_glue_properties.java_virtual_env #=> String
|
11130
|
+
# resp.props.spark_glue_properties.number_of_workers #=> Integer
|
11131
|
+
# resp.props.spark_glue_properties.python_virtual_env #=> String
|
11132
|
+
# resp.props.spark_glue_properties.worker_type #=> String
|
11133
|
+
# resp.type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA"
|
11134
|
+
#
|
11135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateConnection AWS API Documentation
|
11136
|
+
#
|
11137
|
+
# @overload update_connection(params = {})
|
11138
|
+
# @param [Hash] params ({})
|
11139
|
+
def update_connection(params = {}, options = {})
|
11140
|
+
req = build_request(:update_connection, params)
|
11141
|
+
req.send_request(options)
|
11142
|
+
end
|
11143
|
+
|
9572
11144
|
# Updates the specified data source in Amazon DataZone.
|
9573
11145
|
#
|
9574
11146
|
# @option params [Array<Types::FormInput>] :asset_forms_input
|
@@ -9615,6 +11187,7 @@ module Aws::DataZone
|
|
9615
11187
|
#
|
9616
11188
|
# * {Types::UpdateDataSourceOutput#asset_forms_output #asset_forms_output} => Array<Types::FormOutput>
|
9617
11189
|
# * {Types::UpdateDataSourceOutput#configuration #configuration} => Types::DataSourceConfigurationOutput
|
11190
|
+
# * {Types::UpdateDataSourceOutput#connection_id #connection_id} => String
|
9618
11191
|
# * {Types::UpdateDataSourceOutput#created_at #created_at} => Time
|
9619
11192
|
# * {Types::UpdateDataSourceOutput#description #description} => String
|
9620
11193
|
# * {Types::UpdateDataSourceOutput#domain_id #domain_id} => String
|
@@ -9650,6 +11223,7 @@ module Aws::DataZone
|
|
9650
11223
|
# configuration: {
|
9651
11224
|
# glue_run_configuration: {
|
9652
11225
|
# auto_import_data_quality_result: false,
|
11226
|
+
# catalog_name: "GlueRunConfigurationInputCatalogNameString",
|
9653
11227
|
# data_access_role: "GlueRunConfigurationInputDataAccessRoleString",
|
9654
11228
|
# relational_filter_configurations: [ # required
|
9655
11229
|
# {
|
@@ -9666,10 +11240,10 @@ module Aws::DataZone
|
|
9666
11240
|
# },
|
9667
11241
|
# redshift_run_configuration: {
|
9668
11242
|
# data_access_role: "RedshiftRunConfigurationInputDataAccessRoleString",
|
9669
|
-
# redshift_credential_configuration: {
|
11243
|
+
# redshift_credential_configuration: {
|
9670
11244
|
# secret_manager_arn: "RedshiftCredentialConfigurationSecretManagerArnString", # required
|
9671
11245
|
# },
|
9672
|
-
# redshift_storage: {
|
11246
|
+
# redshift_storage: {
|
9673
11247
|
# redshift_cluster_source: {
|
9674
11248
|
# cluster_name: "RedshiftClusterStorageClusterNameString", # required
|
9675
11249
|
# },
|
@@ -9690,6 +11264,11 @@ module Aws::DataZone
|
|
9690
11264
|
# },
|
9691
11265
|
# ],
|
9692
11266
|
# },
|
11267
|
+
# sage_maker_run_configuration: {
|
11268
|
+
# tracking_assets: { # required
|
11269
|
+
# "SageMakerAssetType" => ["SageMakerResourceArn"],
|
11270
|
+
# },
|
11271
|
+
# },
|
9693
11272
|
# },
|
9694
11273
|
# description: "Description",
|
9695
11274
|
# domain_identifier: "DomainId", # required
|
@@ -9716,6 +11295,7 @@ module Aws::DataZone
|
|
9716
11295
|
# resp.asset_forms_output[0].type_revision #=> String
|
9717
11296
|
# resp.configuration.glue_run_configuration.account_id #=> String
|
9718
11297
|
# resp.configuration.glue_run_configuration.auto_import_data_quality_result #=> Boolean
|
11298
|
+
# resp.configuration.glue_run_configuration.catalog_name #=> String
|
9719
11299
|
# resp.configuration.glue_run_configuration.data_access_role #=> String
|
9720
11300
|
# resp.configuration.glue_run_configuration.region #=> String
|
9721
11301
|
# resp.configuration.glue_run_configuration.relational_filter_configurations #=> Array
|
@@ -9736,6 +11316,12 @@ module Aws::DataZone
|
|
9736
11316
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].expression #=> String
|
9737
11317
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].filter_expressions[0].type #=> String, one of "INCLUDE", "EXCLUDE"
|
9738
11318
|
# resp.configuration.redshift_run_configuration.relational_filter_configurations[0].schema_name #=> String
|
11319
|
+
# resp.configuration.sage_maker_run_configuration.account_id #=> String
|
11320
|
+
# resp.configuration.sage_maker_run_configuration.region #=> String
|
11321
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets #=> Hash
|
11322
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"] #=> Array
|
11323
|
+
# resp.configuration.sage_maker_run_configuration.tracking_assets["SageMakerAssetType"][0] #=> String
|
11324
|
+
# resp.connection_id #=> String
|
9739
11325
|
# resp.created_at #=> Time
|
9740
11326
|
# resp.description #=> String
|
9741
11327
|
# resp.domain_id #=> String
|
@@ -9800,6 +11386,9 @@ module Aws::DataZone
|
|
9800
11386
|
# @option params [String] :name
|
9801
11387
|
# The name to be updated as part of the `UpdateDomain` action.
|
9802
11388
|
#
|
11389
|
+
# @option params [String] :service_role
|
11390
|
+
# The service role of the domain.
|
11391
|
+
#
|
9803
11392
|
# @option params [Types::SingleSignOn] :single_sign_on
|
9804
11393
|
# The single sign-on option to be updated as part of the `UpdateDomain`
|
9805
11394
|
# action.
|
@@ -9812,6 +11401,7 @@ module Aws::DataZone
|
|
9812
11401
|
# * {Types::UpdateDomainOutput#last_updated_at #last_updated_at} => Time
|
9813
11402
|
# * {Types::UpdateDomainOutput#name #name} => String
|
9814
11403
|
# * {Types::UpdateDomainOutput#root_domain_unit_id #root_domain_unit_id} => String
|
11404
|
+
# * {Types::UpdateDomainOutput#service_role #service_role} => String
|
9815
11405
|
# * {Types::UpdateDomainOutput#single_sign_on #single_sign_on} => Types::SingleSignOn
|
9816
11406
|
#
|
9817
11407
|
# @example Request syntax with placeholder values
|
@@ -9822,6 +11412,7 @@ module Aws::DataZone
|
|
9822
11412
|
# domain_execution_role: "RoleArn",
|
9823
11413
|
# identifier: "DomainId", # required
|
9824
11414
|
# name: "String",
|
11415
|
+
# service_role: "RoleArn",
|
9825
11416
|
# single_sign_on: {
|
9826
11417
|
# type: "IAM_IDC", # accepts IAM_IDC, DISABLED
|
9827
11418
|
# user_assignment: "AUTOMATIC", # accepts AUTOMATIC, MANUAL
|
@@ -9836,6 +11427,7 @@ module Aws::DataZone
|
|
9836
11427
|
# resp.last_updated_at #=> Time
|
9837
11428
|
# resp.name #=> String
|
9838
11429
|
# resp.root_domain_unit_id #=> String
|
11430
|
+
# resp.service_role #=> String
|
9839
11431
|
# resp.single_sign_on.type #=> String, one of "IAM_IDC", "DISABLED"
|
9840
11432
|
# resp.single_sign_on.user_assignment #=> String, one of "AUTOMATIC", "MANUAL"
|
9841
11433
|
#
|
@@ -10367,6 +11959,9 @@ module Aws::DataZone
|
|
10367
11959
|
# @option params [required, String] :domain_identifier
|
10368
11960
|
# The ID of the Amazon DataZone domain where a project is being updated.
|
10369
11961
|
#
|
11962
|
+
# @option params [Types::EnvironmentDeploymentDetails] :environment_deployment_details
|
11963
|
+
# The environment deployment details of the project.
|
11964
|
+
#
|
10370
11965
|
# @option params [Array<String>] :glossary_terms
|
10371
11966
|
# The glossary terms to be updated as part of the `UpdateProject`
|
10372
11967
|
# action.
|
@@ -10384,18 +11979,32 @@ module Aws::DataZone
|
|
10384
11979
|
# * {Types::UpdateProjectOutput#description #description} => String
|
10385
11980
|
# * {Types::UpdateProjectOutput#domain_id #domain_id} => String
|
10386
11981
|
# * {Types::UpdateProjectOutput#domain_unit_id #domain_unit_id} => String
|
11982
|
+
# * {Types::UpdateProjectOutput#environment_deployment_details #environment_deployment_details} => Types::EnvironmentDeploymentDetails
|
10387
11983
|
# * {Types::UpdateProjectOutput#failure_reasons #failure_reasons} => Array<Types::ProjectDeletionError>
|
10388
11984
|
# * {Types::UpdateProjectOutput#glossary_terms #glossary_terms} => Array<String>
|
10389
11985
|
# * {Types::UpdateProjectOutput#id #id} => String
|
10390
11986
|
# * {Types::UpdateProjectOutput#last_updated_at #last_updated_at} => Time
|
10391
11987
|
# * {Types::UpdateProjectOutput#name #name} => String
|
11988
|
+
# * {Types::UpdateProjectOutput#project_profile_id #project_profile_id} => String
|
10392
11989
|
# * {Types::UpdateProjectOutput#project_status #project_status} => String
|
11990
|
+
# * {Types::UpdateProjectOutput#user_parameters #user_parameters} => Array<Types::EnvironmentConfigurationUserParameter>
|
10393
11991
|
#
|
10394
11992
|
# @example Request syntax with placeholder values
|
10395
11993
|
#
|
10396
11994
|
# resp = client.update_project({
|
10397
11995
|
# description: "Description",
|
10398
11996
|
# domain_identifier: "DomainId", # required
|
11997
|
+
# environment_deployment_details: {
|
11998
|
+
# environment_failure_reasons: {
|
11999
|
+
# "String" => [
|
12000
|
+
# {
|
12001
|
+
# code: "String",
|
12002
|
+
# message: "String", # required
|
12003
|
+
# },
|
12004
|
+
# ],
|
12005
|
+
# },
|
12006
|
+
# overall_deployment_status: "PENDING_DEPLOYMENT", # accepts PENDING_DEPLOYMENT, IN_PROGRESS, SUCCESSFUL, FAILED_VALIDATION, FAILED_DEPLOYMENT
|
12007
|
+
# },
|
10399
12008
|
# glossary_terms: ["GlossaryTermId"],
|
10400
12009
|
# identifier: "ProjectId", # required
|
10401
12010
|
# name: "ProjectName",
|
@@ -10408,6 +12017,11 @@ module Aws::DataZone
|
|
10408
12017
|
# resp.description #=> String
|
10409
12018
|
# resp.domain_id #=> String
|
10410
12019
|
# resp.domain_unit_id #=> String
|
12020
|
+
# resp.environment_deployment_details.environment_failure_reasons #=> Hash
|
12021
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"] #=> Array
|
12022
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"][0].code #=> String
|
12023
|
+
# resp.environment_deployment_details.environment_failure_reasons["String"][0].message #=> String
|
12024
|
+
# resp.environment_deployment_details.overall_deployment_status #=> String, one of "PENDING_DEPLOYMENT", "IN_PROGRESS", "SUCCESSFUL", "FAILED_VALIDATION", "FAILED_DEPLOYMENT"
|
10411
12025
|
# resp.failure_reasons #=> Array
|
10412
12026
|
# resp.failure_reasons[0].code #=> String
|
10413
12027
|
# resp.failure_reasons[0].message #=> String
|
@@ -10416,7 +12030,13 @@ module Aws::DataZone
|
|
10416
12030
|
# resp.id #=> String
|
10417
12031
|
# resp.last_updated_at #=> Time
|
10418
12032
|
# resp.name #=> String
|
12033
|
+
# resp.project_profile_id #=> String
|
10419
12034
|
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED"
|
12035
|
+
# resp.user_parameters #=> Array
|
12036
|
+
# resp.user_parameters[0].environment_configuration_name #=> String
|
12037
|
+
# resp.user_parameters[0].environment_parameters #=> Array
|
12038
|
+
# resp.user_parameters[0].environment_parameters[0].name #=> String
|
12039
|
+
# resp.user_parameters[0].environment_parameters[0].value #=> String
|
10420
12040
|
#
|
10421
12041
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProject AWS API Documentation
|
10422
12042
|
#
|
@@ -10427,6 +12047,129 @@ module Aws::DataZone
|
|
10427
12047
|
req.send_request(options)
|
10428
12048
|
end
|
10429
12049
|
|
12050
|
+
# Updates a project profile.
|
12051
|
+
#
|
12052
|
+
# @option params [String] :description
|
12053
|
+
# The description of a project profile.
|
12054
|
+
#
|
12055
|
+
# @option params [required, String] :domain_identifier
|
12056
|
+
# The ID of the domain where a project profile is to be updated.
|
12057
|
+
#
|
12058
|
+
# @option params [String] :domain_unit_identifier
|
12059
|
+
# The ID of the domain unit where a project profile is to be updated.
|
12060
|
+
#
|
12061
|
+
# @option params [Array<Types::EnvironmentConfiguration>] :environment_configurations
|
12062
|
+
# The environment configurations of a project profile.
|
12063
|
+
#
|
12064
|
+
# @option params [required, String] :identifier
|
12065
|
+
# The ID of a project profile that is to be updated.
|
12066
|
+
#
|
12067
|
+
# @option params [String] :name
|
12068
|
+
# The name of a project profile.
|
12069
|
+
#
|
12070
|
+
# @option params [String] :status
|
12071
|
+
# The status of a project profile.
|
12072
|
+
#
|
12073
|
+
# @return [Types::UpdateProjectProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12074
|
+
#
|
12075
|
+
# * {Types::UpdateProjectProfileOutput#created_at #created_at} => Time
|
12076
|
+
# * {Types::UpdateProjectProfileOutput#created_by #created_by} => String
|
12077
|
+
# * {Types::UpdateProjectProfileOutput#description #description} => String
|
12078
|
+
# * {Types::UpdateProjectProfileOutput#domain_id #domain_id} => String
|
12079
|
+
# * {Types::UpdateProjectProfileOutput#domain_unit_id #domain_unit_id} => String
|
12080
|
+
# * {Types::UpdateProjectProfileOutput#environment_configurations #environment_configurations} => Array<Types::EnvironmentConfiguration>
|
12081
|
+
# * {Types::UpdateProjectProfileOutput#id #id} => String
|
12082
|
+
# * {Types::UpdateProjectProfileOutput#last_updated_at #last_updated_at} => Time
|
12083
|
+
# * {Types::UpdateProjectProfileOutput#name #name} => String
|
12084
|
+
# * {Types::UpdateProjectProfileOutput#status #status} => String
|
12085
|
+
#
|
12086
|
+
# @example Request syntax with placeholder values
|
12087
|
+
#
|
12088
|
+
# resp = client.update_project_profile({
|
12089
|
+
# description: "Description",
|
12090
|
+
# domain_identifier: "DomainId", # required
|
12091
|
+
# domain_unit_identifier: "DomainUnitId",
|
12092
|
+
# environment_configurations: [
|
12093
|
+
# {
|
12094
|
+
# aws_account: { # required
|
12095
|
+
# aws_account_id: "AwsAccountId",
|
12096
|
+
# aws_account_id_path: "ParameterStorePath",
|
12097
|
+
# },
|
12098
|
+
# aws_region: { # required
|
12099
|
+
# region_name: "RegionName",
|
12100
|
+
# region_name_path: "ParameterStorePath",
|
12101
|
+
# },
|
12102
|
+
# configuration_parameters: {
|
12103
|
+
# parameter_overrides: [
|
12104
|
+
# {
|
12105
|
+
# is_editable: false,
|
12106
|
+
# name: "EnvironmentConfigurationParameterName",
|
12107
|
+
# value: "String",
|
12108
|
+
# },
|
12109
|
+
# ],
|
12110
|
+
# resolved_parameters: [
|
12111
|
+
# {
|
12112
|
+
# is_editable: false,
|
12113
|
+
# name: "EnvironmentConfigurationParameterName",
|
12114
|
+
# value: "String",
|
12115
|
+
# },
|
12116
|
+
# ],
|
12117
|
+
# ssm_path: "ParameterStorePath",
|
12118
|
+
# },
|
12119
|
+
# deployment_mode: "ON_CREATE", # accepts ON_CREATE, ON_DEMAND
|
12120
|
+
# deployment_order: 1,
|
12121
|
+
# description: "Description",
|
12122
|
+
# environment_blueprint_id: "EnvironmentBlueprintId", # required
|
12123
|
+
# id: "EnvironmentConfigurationId",
|
12124
|
+
# name: "EnvironmentConfigurationName", # required
|
12125
|
+
# },
|
12126
|
+
# ],
|
12127
|
+
# identifier: "ProjectProfileId", # required
|
12128
|
+
# name: "ProjectProfileName",
|
12129
|
+
# status: "ENABLED", # accepts ENABLED, DISABLED
|
12130
|
+
# })
|
12131
|
+
#
|
12132
|
+
# @example Response structure
|
12133
|
+
#
|
12134
|
+
# resp.created_at #=> Time
|
12135
|
+
# resp.created_by #=> String
|
12136
|
+
# resp.description #=> String
|
12137
|
+
# resp.domain_id #=> String
|
12138
|
+
# resp.domain_unit_id #=> String
|
12139
|
+
# resp.environment_configurations #=> Array
|
12140
|
+
# resp.environment_configurations[0].aws_account.aws_account_id #=> String
|
12141
|
+
# resp.environment_configurations[0].aws_account.aws_account_id_path #=> String
|
12142
|
+
# resp.environment_configurations[0].aws_region.region_name #=> String
|
12143
|
+
# resp.environment_configurations[0].aws_region.region_name_path #=> String
|
12144
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides #=> Array
|
12145
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].is_editable #=> Boolean
|
12146
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].name #=> String
|
12147
|
+
# resp.environment_configurations[0].configuration_parameters.parameter_overrides[0].value #=> String
|
12148
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters #=> Array
|
12149
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].is_editable #=> Boolean
|
12150
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].name #=> String
|
12151
|
+
# resp.environment_configurations[0].configuration_parameters.resolved_parameters[0].value #=> String
|
12152
|
+
# resp.environment_configurations[0].configuration_parameters.ssm_path #=> String
|
12153
|
+
# resp.environment_configurations[0].deployment_mode #=> String, one of "ON_CREATE", "ON_DEMAND"
|
12154
|
+
# resp.environment_configurations[0].deployment_order #=> Integer
|
12155
|
+
# resp.environment_configurations[0].description #=> String
|
12156
|
+
# resp.environment_configurations[0].environment_blueprint_id #=> String
|
12157
|
+
# resp.environment_configurations[0].id #=> String
|
12158
|
+
# resp.environment_configurations[0].name #=> String
|
12159
|
+
# resp.id #=> String
|
12160
|
+
# resp.last_updated_at #=> Time
|
12161
|
+
# resp.name #=> String
|
12162
|
+
# resp.status #=> String, one of "ENABLED", "DISABLED"
|
12163
|
+
#
|
12164
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectProfile AWS API Documentation
|
12165
|
+
#
|
12166
|
+
# @overload update_project_profile(params = {})
|
12167
|
+
# @param [Hash] params ({})
|
12168
|
+
def update_project_profile(params = {}, options = {})
|
12169
|
+
req = build_request(:update_project_profile, params)
|
12170
|
+
req.send_request(options)
|
12171
|
+
end
|
12172
|
+
|
10430
12173
|
# Updates a rule. In Amazon DataZone, a rule is a formal agreement that
|
10431
12174
|
# enforces specific requirements across user workflows (e.g., publishing
|
10432
12175
|
# assets to the catalog, requesting subscriptions, creating projects)
|
@@ -10790,7 +12533,7 @@ module Aws::DataZone
|
|
10790
12533
|
# domain_identifier: "DomainId", # required
|
10791
12534
|
# environment_identifier: "EnvironmentId", # required
|
10792
12535
|
# identifier: "SubscriptionTargetId", # required
|
10793
|
-
# manage_access_role: "
|
12536
|
+
# manage_access_role: "IamRoleArn",
|
10794
12537
|
# name: "SubscriptionTargetName",
|
10795
12538
|
# provider: "String",
|
10796
12539
|
# subscription_target_config: [
|
@@ -10902,7 +12645,7 @@ module Aws::DataZone
|
|
10902
12645
|
tracer: tracer
|
10903
12646
|
)
|
10904
12647
|
context[:gem_name] = 'aws-sdk-datazone'
|
10905
|
-
context[:gem_version] = '1.
|
12648
|
+
context[:gem_version] = '1.30.0'
|
10906
12649
|
Seahorse::Client::Request.new(handlers, context)
|
10907
12650
|
end
|
10908
12651
|
|