aws-sdk-datazone 1.71.0 → 1.73.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 +164 -7
- data/lib/aws-sdk-datazone/client_api.rb +60 -2
- data/lib/aws-sdk-datazone/types.rb +243 -15
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +51 -8
- data/sig/types.rbs +48 -2
- metadata +1 -1
|
@@ -620,6 +620,8 @@ module Aws::DataZone
|
|
|
620
620
|
# resp.subscribed_principals[0].user.id #=> String
|
|
621
621
|
# resp.subscribed_principals[0].user.details.iam.arn #=> String
|
|
622
622
|
# resp.subscribed_principals[0].user.details.iam.principal_id #=> String
|
|
623
|
+
# resp.subscribed_principals[0].user.details.iam.session_name #=> String
|
|
624
|
+
# resp.subscribed_principals[0].user.details.iam.group_profile_id #=> String
|
|
623
625
|
# resp.subscribed_principals[0].user.details.sso.username #=> String
|
|
624
626
|
# resp.subscribed_principals[0].user.details.sso.first_name #=> String
|
|
625
627
|
# resp.subscribed_principals[0].user.details.sso.last_name #=> String
|
|
@@ -1120,6 +1122,8 @@ module Aws::DataZone
|
|
|
1120
1122
|
# resp.subscribed_principal.user.id #=> String
|
|
1121
1123
|
# resp.subscribed_principal.user.details.iam.arn #=> String
|
|
1122
1124
|
# resp.subscribed_principal.user.details.iam.principal_id #=> String
|
|
1125
|
+
# resp.subscribed_principal.user.details.iam.session_name #=> String
|
|
1126
|
+
# resp.subscribed_principal.user.details.iam.group_profile_id #=> String
|
|
1123
1127
|
# resp.subscribed_principal.user.details.sso.username #=> String
|
|
1124
1128
|
# resp.subscribed_principal.user.details.sso.first_name #=> String
|
|
1125
1129
|
# resp.subscribed_principal.user.details.sso.last_name #=> String
|
|
@@ -1885,6 +1889,9 @@ module Aws::DataZone
|
|
|
1885
1889
|
# **A suitable default value is auto-generated.** You should normally
|
|
1886
1890
|
# not need to pass this option.**
|
|
1887
1891
|
#
|
|
1892
|
+
# @option params [Array<Types::Configuration>] :configurations
|
|
1893
|
+
# The configurations of the connection.
|
|
1894
|
+
#
|
|
1888
1895
|
# @option params [String] :description
|
|
1889
1896
|
# A connection description.
|
|
1890
1897
|
#
|
|
@@ -1909,6 +1916,7 @@ module Aws::DataZone
|
|
|
1909
1916
|
# @return [Types::CreateConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1910
1917
|
#
|
|
1911
1918
|
# * {Types::CreateConnectionOutput#connection_id #connection_id} => String
|
|
1919
|
+
# * {Types::CreateConnectionOutput#configurations #configurations} => Array<Types::Configuration>
|
|
1912
1920
|
# * {Types::CreateConnectionOutput#description #description} => String
|
|
1913
1921
|
# * {Types::CreateConnectionOutput#domain_id #domain_id} => String
|
|
1914
1922
|
# * {Types::CreateConnectionOutput#domain_unit_id #domain_unit_id} => String
|
|
@@ -1930,6 +1938,14 @@ module Aws::DataZone
|
|
|
1930
1938
|
# iam_connection_id: "ConnectionId",
|
|
1931
1939
|
# },
|
|
1932
1940
|
# client_token: "String",
|
|
1941
|
+
# configurations: [
|
|
1942
|
+
# {
|
|
1943
|
+
# classification: "ConfigurationClassificationString",
|
|
1944
|
+
# properties: {
|
|
1945
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
|
1946
|
+
# },
|
|
1947
|
+
# },
|
|
1948
|
+
# ],
|
|
1933
1949
|
# description: "CreateConnectionInputDescriptionString",
|
|
1934
1950
|
# domain_identifier: "DomainId", # required
|
|
1935
1951
|
# environment_identifier: "EnvironmentId",
|
|
@@ -2042,6 +2058,7 @@ module Aws::DataZone
|
|
|
2042
2058
|
# connection: "String",
|
|
2043
2059
|
# },
|
|
2044
2060
|
# glue_connection_name: "SparkGluePropertiesInputGlueConnectionNameString",
|
|
2061
|
+
# glue_connection_names: ["GlueConnectionName"],
|
|
2045
2062
|
# glue_version: "SparkGluePropertiesInputGlueVersionString",
|
|
2046
2063
|
# idle_timeout: 1,
|
|
2047
2064
|
# java_virtual_env: "SparkGluePropertiesInputJavaVirtualEnvString",
|
|
@@ -2052,6 +2069,7 @@ module Aws::DataZone
|
|
|
2052
2069
|
# s3_properties: {
|
|
2053
2070
|
# s3_uri: "S3Uri", # required
|
|
2054
2071
|
# s3_access_grant_location_id: "S3AccessGrantLocationId",
|
|
2072
|
+
# register_s3_access_grant_location: false,
|
|
2055
2073
|
# },
|
|
2056
2074
|
# amazon_q_properties: {
|
|
2057
2075
|
# is_enabled: false, # required
|
|
@@ -2074,6 +2092,10 @@ module Aws::DataZone
|
|
|
2074
2092
|
# @example Response structure
|
|
2075
2093
|
#
|
|
2076
2094
|
# resp.connection_id #=> String
|
|
2095
|
+
# resp.configurations #=> Array
|
|
2096
|
+
# resp.configurations[0].classification #=> String
|
|
2097
|
+
# resp.configurations[0].properties #=> Hash
|
|
2098
|
+
# resp.configurations[0].properties["PropertyMapKeyString"] #=> String
|
|
2077
2099
|
# resp.description #=> String
|
|
2078
2100
|
# resp.domain_id #=> String
|
|
2079
2101
|
# resp.domain_unit_id #=> String
|
|
@@ -2085,6 +2107,8 @@ module Aws::DataZone
|
|
|
2085
2107
|
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
|
2086
2108
|
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
|
2087
2109
|
# resp.physical_endpoints[0].glue_connection_name #=> String
|
|
2110
|
+
# resp.physical_endpoints[0].glue_connection_names #=> Array
|
|
2111
|
+
# resp.physical_endpoints[0].glue_connection_names[0] #=> String
|
|
2088
2112
|
# resp.physical_endpoints[0].glue_connection.name #=> String
|
|
2089
2113
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
|
2090
2114
|
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW"
|
|
@@ -2173,6 +2197,8 @@ module Aws::DataZone
|
|
|
2173
2197
|
# resp.props.spark_emr_properties.managed_endpoint_credentials.token #=> String
|
|
2174
2198
|
# resp.props.spark_glue_properties.additional_args.connection #=> String
|
|
2175
2199
|
# resp.props.spark_glue_properties.glue_connection_name #=> String
|
|
2200
|
+
# resp.props.spark_glue_properties.glue_connection_names #=> Array
|
|
2201
|
+
# resp.props.spark_glue_properties.glue_connection_names[0] #=> String
|
|
2176
2202
|
# resp.props.spark_glue_properties.glue_version #=> String
|
|
2177
2203
|
# resp.props.spark_glue_properties.idle_timeout #=> Integer
|
|
2178
2204
|
# resp.props.spark_glue_properties.java_virtual_env #=> String
|
|
@@ -2181,6 +2207,7 @@ module Aws::DataZone
|
|
|
2181
2207
|
# resp.props.spark_glue_properties.worker_type #=> String
|
|
2182
2208
|
# resp.props.s3_properties.s3_uri #=> String
|
|
2183
2209
|
# resp.props.s3_properties.s3_access_grant_location_id #=> String
|
|
2210
|
+
# resp.props.s3_properties.register_s3_access_grant_location #=> Boolean
|
|
2184
2211
|
# resp.props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
2185
2212
|
# resp.props.s3_properties.error_message #=> String
|
|
2186
2213
|
# resp.props.amazon_q_properties.is_enabled #=> Boolean
|
|
@@ -2690,7 +2717,7 @@ module Aws::DataZone
|
|
|
2690
2717
|
# @option params [Types::SingleSignOn] :single_sign_on
|
|
2691
2718
|
# The single-sign on configuration of the Amazon DataZone domain.
|
|
2692
2719
|
#
|
|
2693
|
-
# @option params [
|
|
2720
|
+
# @option params [String] :domain_execution_role
|
|
2694
2721
|
# The domain execution role that is created when an Amazon DataZone
|
|
2695
2722
|
# domain is created. The domain execution role is created in the Amazon
|
|
2696
2723
|
# Web Services account that houses the Amazon DataZone domain.
|
|
@@ -2742,7 +2769,7 @@ module Aws::DataZone
|
|
|
2742
2769
|
# user_assignment: "AUTOMATIC", # accepts AUTOMATIC, MANUAL
|
|
2743
2770
|
# idc_instance_arn: "SingleSignOnIdcInstanceArnString",
|
|
2744
2771
|
# },
|
|
2745
|
-
# domain_execution_role: "RoleArn",
|
|
2772
|
+
# domain_execution_role: "RoleArn",
|
|
2746
2773
|
# kms_key_identifier: "KmsKeyArn",
|
|
2747
2774
|
# tags: {
|
|
2748
2775
|
# "TagKey" => "TagValue",
|
|
@@ -3537,9 +3564,14 @@ module Aws::DataZone
|
|
|
3537
3564
|
# The identifier of the Amazon DataZone domain in which the group
|
|
3538
3565
|
# profile is created.
|
|
3539
3566
|
#
|
|
3540
|
-
# @option params [
|
|
3567
|
+
# @option params [String] :group_identifier
|
|
3541
3568
|
# The identifier of the group for which the group profile is created.
|
|
3542
3569
|
#
|
|
3570
|
+
# @option params [String] :role_principal_arn
|
|
3571
|
+
# The ARN of the IAM role that will be associated with the group
|
|
3572
|
+
# profile. This role defines the permissions that group members will
|
|
3573
|
+
# assume when accessing Amazon DataZone resources.
|
|
3574
|
+
#
|
|
3543
3575
|
# @option params [String] :client_token
|
|
3544
3576
|
# A unique, case-sensitive identifier that is provided to ensure the
|
|
3545
3577
|
# idempotency of the request.
|
|
@@ -3553,12 +3585,15 @@ module Aws::DataZone
|
|
|
3553
3585
|
# * {Types::CreateGroupProfileOutput#id #id} => String
|
|
3554
3586
|
# * {Types::CreateGroupProfileOutput#status #status} => String
|
|
3555
3587
|
# * {Types::CreateGroupProfileOutput#group_name #group_name} => String
|
|
3588
|
+
# * {Types::CreateGroupProfileOutput#role_principal_arn #role_principal_arn} => String
|
|
3589
|
+
# * {Types::CreateGroupProfileOutput#role_principal_id #role_principal_id} => String
|
|
3556
3590
|
#
|
|
3557
3591
|
# @example Request syntax with placeholder values
|
|
3558
3592
|
#
|
|
3559
3593
|
# resp = client.create_group_profile({
|
|
3560
3594
|
# domain_identifier: "DomainId", # required
|
|
3561
|
-
# group_identifier: "GroupIdentifier",
|
|
3595
|
+
# group_identifier: "GroupIdentifier",
|
|
3596
|
+
# role_principal_arn: "String",
|
|
3562
3597
|
# client_token: "String",
|
|
3563
3598
|
# })
|
|
3564
3599
|
#
|
|
@@ -3568,6 +3603,8 @@ module Aws::DataZone
|
|
|
3568
3603
|
# resp.id #=> String
|
|
3569
3604
|
# resp.status #=> String, one of "ASSIGNED", "NOT_ASSIGNED"
|
|
3570
3605
|
# resp.group_name #=> String
|
|
3606
|
+
# resp.role_principal_arn #=> String
|
|
3607
|
+
# resp.role_principal_id #=> String
|
|
3571
3608
|
#
|
|
3572
3609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateGroupProfile AWS API Documentation
|
|
3573
3610
|
#
|
|
@@ -3663,6 +3700,17 @@ module Aws::DataZone
|
|
|
3663
3700
|
# @option params [Array<Types::EnvironmentConfigurationUserParameter>] :user_parameters
|
|
3664
3701
|
# The user parameters of the project.
|
|
3665
3702
|
#
|
|
3703
|
+
# @option params [String] :project_category
|
|
3704
|
+
# The category of the project. Set to 'ADMIN' designates this as an
|
|
3705
|
+
# administrative project for the Amazon DataZone domain.
|
|
3706
|
+
#
|
|
3707
|
+
# @option params [String] :project_execution_role
|
|
3708
|
+
# The default project IAM role that is used to access project resources
|
|
3709
|
+
# and run computes such as Glue and Sagemaker.
|
|
3710
|
+
#
|
|
3711
|
+
# @option params [Array<Types::ProjectMembershipAssignment>] :membership_assignments
|
|
3712
|
+
# The members to be assigned to the project.
|
|
3713
|
+
#
|
|
3666
3714
|
# @return [Types::CreateProjectOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3667
3715
|
#
|
|
3668
3716
|
# * {Types::CreateProjectOutput#domain_id #domain_id} => String
|
|
@@ -3680,6 +3728,7 @@ module Aws::DataZone
|
|
|
3680
3728
|
# * {Types::CreateProjectOutput#project_profile_id #project_profile_id} => String
|
|
3681
3729
|
# * {Types::CreateProjectOutput#user_parameters #user_parameters} => Array<Types::EnvironmentConfigurationUserParameter>
|
|
3682
3730
|
# * {Types::CreateProjectOutput#environment_deployment_details #environment_deployment_details} => Types::EnvironmentDeploymentDetails
|
|
3731
|
+
# * {Types::CreateProjectOutput#project_category #project_category} => String
|
|
3683
3732
|
#
|
|
3684
3733
|
# @example Request syntax with placeholder values
|
|
3685
3734
|
#
|
|
@@ -3710,6 +3759,17 @@ module Aws::DataZone
|
|
|
3710
3759
|
# ],
|
|
3711
3760
|
# },
|
|
3712
3761
|
# ],
|
|
3762
|
+
# project_category: "String",
|
|
3763
|
+
# project_execution_role: "RoleArn",
|
|
3764
|
+
# membership_assignments: [
|
|
3765
|
+
# {
|
|
3766
|
+
# member: { # required
|
|
3767
|
+
# user_identifier: "String",
|
|
3768
|
+
# group_identifier: "String",
|
|
3769
|
+
# },
|
|
3770
|
+
# designation: "PROJECT_OWNER", # required, accepts PROJECT_OWNER, PROJECT_CONTRIBUTOR, PROJECT_CATALOG_VIEWER, PROJECT_CATALOG_CONSUMER, PROJECT_CATALOG_STEWARD
|
|
3771
|
+
# },
|
|
3772
|
+
# ],
|
|
3713
3773
|
# })
|
|
3714
3774
|
#
|
|
3715
3775
|
# @example Response structure
|
|
@@ -3747,6 +3807,7 @@ module Aws::DataZone
|
|
|
3747
3807
|
# resp.environment_deployment_details.environment_failure_reasons["String"] #=> Array
|
|
3748
3808
|
# resp.environment_deployment_details.environment_failure_reasons["String"][0].code #=> String
|
|
3749
3809
|
# resp.environment_deployment_details.environment_failure_reasons["String"][0].message #=> String
|
|
3810
|
+
# resp.project_category #=> String
|
|
3750
3811
|
#
|
|
3751
3812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProject AWS API Documentation
|
|
3752
3813
|
#
|
|
@@ -4288,6 +4349,8 @@ module Aws::DataZone
|
|
|
4288
4349
|
# resp.subscribed_principals[0].user.id #=> String
|
|
4289
4350
|
# resp.subscribed_principals[0].user.details.iam.arn #=> String
|
|
4290
4351
|
# resp.subscribed_principals[0].user.details.iam.principal_id #=> String
|
|
4352
|
+
# resp.subscribed_principals[0].user.details.iam.session_name #=> String
|
|
4353
|
+
# resp.subscribed_principals[0].user.details.iam.group_profile_id #=> String
|
|
4291
4354
|
# resp.subscribed_principals[0].user.details.sso.username #=> String
|
|
4292
4355
|
# resp.subscribed_principals[0].user.details.sso.first_name #=> String
|
|
4293
4356
|
# resp.subscribed_principals[0].user.details.sso.last_name #=> String
|
|
@@ -4470,6 +4533,9 @@ module Aws::DataZone
|
|
|
4470
4533
|
# @option params [String] :user_type
|
|
4471
4534
|
# The user type of the user for which the user profile is created.
|
|
4472
4535
|
#
|
|
4536
|
+
# @option params [String] :session_name
|
|
4537
|
+
# The session name for IAM role sessions.
|
|
4538
|
+
#
|
|
4473
4539
|
# @option params [String] :client_token
|
|
4474
4540
|
# A unique, case-sensitive identifier that is provided to ensure the
|
|
4475
4541
|
# idempotency of the request.
|
|
@@ -4490,7 +4556,8 @@ module Aws::DataZone
|
|
|
4490
4556
|
# resp = client.create_user_profile({
|
|
4491
4557
|
# domain_identifier: "DomainId", # required
|
|
4492
4558
|
# user_identifier: "UserIdentifier", # required
|
|
4493
|
-
# user_type: "IAM_USER", # accepts IAM_USER, IAM_ROLE, SSO_USER
|
|
4559
|
+
# user_type: "IAM_USER", # accepts IAM_USER, IAM_ROLE, SSO_USER, IAM_ROLE_SESSION
|
|
4560
|
+
# session_name: "CreateUserProfileInputSessionNameString",
|
|
4494
4561
|
# client_token: "String",
|
|
4495
4562
|
# })
|
|
4496
4563
|
#
|
|
@@ -4502,6 +4569,8 @@ module Aws::DataZone
|
|
|
4502
4569
|
# resp.status #=> String, one of "ASSIGNED", "NOT_ASSIGNED", "ACTIVATED", "DEACTIVATED"
|
|
4503
4570
|
# resp.details.iam.arn #=> String
|
|
4504
4571
|
# resp.details.iam.principal_id #=> String
|
|
4572
|
+
# resp.details.iam.session_name #=> String
|
|
4573
|
+
# resp.details.iam.group_profile_id #=> String
|
|
4505
4574
|
# resp.details.sso.username #=> String
|
|
4506
4575
|
# resp.details.sso.first_name #=> String
|
|
4507
4576
|
# resp.details.sso.last_name #=> String
|
|
@@ -5966,6 +6035,7 @@ module Aws::DataZone
|
|
|
5966
6035
|
# @return [Types::GetConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5967
6036
|
#
|
|
5968
6037
|
# * {Types::GetConnectionOutput#connection_credentials #connection_credentials} => Types::ConnectionCredentials
|
|
6038
|
+
# * {Types::GetConnectionOutput#configurations #configurations} => Array<Types::Configuration>
|
|
5969
6039
|
# * {Types::GetConnectionOutput#connection_id #connection_id} => String
|
|
5970
6040
|
# * {Types::GetConnectionOutput#description #description} => String
|
|
5971
6041
|
# * {Types::GetConnectionOutput#domain_id #domain_id} => String
|
|
@@ -5993,6 +6063,10 @@ module Aws::DataZone
|
|
|
5993
6063
|
# resp.connection_credentials.secret_access_key #=> String
|
|
5994
6064
|
# resp.connection_credentials.session_token #=> String
|
|
5995
6065
|
# resp.connection_credentials.expiration #=> Time
|
|
6066
|
+
# resp.configurations #=> Array
|
|
6067
|
+
# resp.configurations[0].classification #=> String
|
|
6068
|
+
# resp.configurations[0].properties #=> Hash
|
|
6069
|
+
# resp.configurations[0].properties["PropertyMapKeyString"] #=> String
|
|
5996
6070
|
# resp.connection_id #=> String
|
|
5997
6071
|
# resp.description #=> String
|
|
5998
6072
|
# resp.domain_id #=> String
|
|
@@ -6006,6 +6080,8 @@ module Aws::DataZone
|
|
|
6006
6080
|
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
|
6007
6081
|
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
|
6008
6082
|
# resp.physical_endpoints[0].glue_connection_name #=> String
|
|
6083
|
+
# resp.physical_endpoints[0].glue_connection_names #=> Array
|
|
6084
|
+
# resp.physical_endpoints[0].glue_connection_names[0] #=> String
|
|
6009
6085
|
# resp.physical_endpoints[0].glue_connection.name #=> String
|
|
6010
6086
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
|
6011
6087
|
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW"
|
|
@@ -6094,6 +6170,8 @@ module Aws::DataZone
|
|
|
6094
6170
|
# resp.props.spark_emr_properties.managed_endpoint_credentials.token #=> String
|
|
6095
6171
|
# resp.props.spark_glue_properties.additional_args.connection #=> String
|
|
6096
6172
|
# resp.props.spark_glue_properties.glue_connection_name #=> String
|
|
6173
|
+
# resp.props.spark_glue_properties.glue_connection_names #=> Array
|
|
6174
|
+
# resp.props.spark_glue_properties.glue_connection_names[0] #=> String
|
|
6097
6175
|
# resp.props.spark_glue_properties.glue_version #=> String
|
|
6098
6176
|
# resp.props.spark_glue_properties.idle_timeout #=> Integer
|
|
6099
6177
|
# resp.props.spark_glue_properties.java_virtual_env #=> String
|
|
@@ -6102,6 +6180,7 @@ module Aws::DataZone
|
|
|
6102
6180
|
# resp.props.spark_glue_properties.worker_type #=> String
|
|
6103
6181
|
# resp.props.s3_properties.s3_uri #=> String
|
|
6104
6182
|
# resp.props.s3_properties.s3_access_grant_location_id #=> String
|
|
6183
|
+
# resp.props.s3_properties.register_s3_access_grant_location #=> Boolean
|
|
6105
6184
|
# resp.props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
6106
6185
|
# resp.props.s3_properties.error_message #=> String
|
|
6107
6186
|
# resp.props.amazon_q_properties.is_enabled #=> Boolean
|
|
@@ -7138,6 +7217,8 @@ module Aws::DataZone
|
|
|
7138
7217
|
# * {Types::GetGroupProfileOutput#id #id} => String
|
|
7139
7218
|
# * {Types::GetGroupProfileOutput#status #status} => String
|
|
7140
7219
|
# * {Types::GetGroupProfileOutput#group_name #group_name} => String
|
|
7220
|
+
# * {Types::GetGroupProfileOutput#role_principal_arn #role_principal_arn} => String
|
|
7221
|
+
# * {Types::GetGroupProfileOutput#role_principal_id #role_principal_id} => String
|
|
7141
7222
|
#
|
|
7142
7223
|
# @example Request syntax with placeholder values
|
|
7143
7224
|
#
|
|
@@ -7152,6 +7233,8 @@ module Aws::DataZone
|
|
|
7152
7233
|
# resp.id #=> String
|
|
7153
7234
|
# resp.status #=> String, one of "ASSIGNED", "NOT_ASSIGNED"
|
|
7154
7235
|
# resp.group_name #=> String
|
|
7236
|
+
# resp.role_principal_arn #=> String
|
|
7237
|
+
# resp.role_principal_id #=> String
|
|
7155
7238
|
#
|
|
7156
7239
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetGroupProfile AWS API Documentation
|
|
7157
7240
|
#
|
|
@@ -7558,6 +7641,7 @@ module Aws::DataZone
|
|
|
7558
7641
|
# * {Types::GetProjectOutput#project_profile_id #project_profile_id} => String
|
|
7559
7642
|
# * {Types::GetProjectOutput#user_parameters #user_parameters} => Array<Types::EnvironmentConfigurationUserParameter>
|
|
7560
7643
|
# * {Types::GetProjectOutput#environment_deployment_details #environment_deployment_details} => Types::EnvironmentDeploymentDetails
|
|
7644
|
+
# * {Types::GetProjectOutput#project_category #project_category} => String
|
|
7561
7645
|
#
|
|
7562
7646
|
# @example Request syntax with placeholder values
|
|
7563
7647
|
#
|
|
@@ -7601,6 +7685,7 @@ module Aws::DataZone
|
|
|
7601
7685
|
# resp.environment_deployment_details.environment_failure_reasons["String"] #=> Array
|
|
7602
7686
|
# resp.environment_deployment_details.environment_failure_reasons["String"][0].code #=> String
|
|
7603
7687
|
# resp.environment_deployment_details.environment_failure_reasons["String"][0].message #=> String
|
|
7688
|
+
# resp.project_category #=> String
|
|
7604
7689
|
#
|
|
7605
7690
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProject AWS API Documentation
|
|
7606
7691
|
#
|
|
@@ -7815,6 +7900,8 @@ module Aws::DataZone
|
|
|
7815
7900
|
# resp.subscribed_principal.user.id #=> String
|
|
7816
7901
|
# resp.subscribed_principal.user.details.iam.arn #=> String
|
|
7817
7902
|
# resp.subscribed_principal.user.details.iam.principal_id #=> String
|
|
7903
|
+
# resp.subscribed_principal.user.details.iam.session_name #=> String
|
|
7904
|
+
# resp.subscribed_principal.user.details.iam.group_profile_id #=> String
|
|
7818
7905
|
# resp.subscribed_principal.user.details.sso.username #=> String
|
|
7819
7906
|
# resp.subscribed_principal.user.details.sso.first_name #=> String
|
|
7820
7907
|
# resp.subscribed_principal.user.details.sso.last_name #=> String
|
|
@@ -7984,6 +8071,8 @@ module Aws::DataZone
|
|
|
7984
8071
|
# resp.subscribed_principals[0].user.id #=> String
|
|
7985
8072
|
# resp.subscribed_principals[0].user.details.iam.arn #=> String
|
|
7986
8073
|
# resp.subscribed_principals[0].user.details.iam.principal_id #=> String
|
|
8074
|
+
# resp.subscribed_principals[0].user.details.iam.session_name #=> String
|
|
8075
|
+
# resp.subscribed_principals[0].user.details.iam.group_profile_id #=> String
|
|
7987
8076
|
# resp.subscribed_principals[0].user.details.sso.username #=> String
|
|
7988
8077
|
# resp.subscribed_principals[0].user.details.sso.first_name #=> String
|
|
7989
8078
|
# resp.subscribed_principals[0].user.details.sso.last_name #=> String
|
|
@@ -8182,6 +8271,9 @@ module Aws::DataZone
|
|
|
8182
8271
|
# @option params [String] :type
|
|
8183
8272
|
# The type of the user profile.
|
|
8184
8273
|
#
|
|
8274
|
+
# @option params [String] :session_name
|
|
8275
|
+
# The session name for IAM role sessions.
|
|
8276
|
+
#
|
|
8185
8277
|
# @return [Types::GetUserProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8186
8278
|
#
|
|
8187
8279
|
# * {Types::GetUserProfileOutput#domain_id #domain_id} => String
|
|
@@ -8196,6 +8288,7 @@ module Aws::DataZone
|
|
|
8196
8288
|
# domain_identifier: "DomainId", # required
|
|
8197
8289
|
# user_identifier: "UserIdentifier", # required
|
|
8198
8290
|
# type: "IAM", # accepts IAM, SSO
|
|
8291
|
+
# session_name: "GetUserProfileInputSessionNameString",
|
|
8199
8292
|
# })
|
|
8200
8293
|
#
|
|
8201
8294
|
# @example Response structure
|
|
@@ -8206,6 +8299,8 @@ module Aws::DataZone
|
|
|
8206
8299
|
# resp.status #=> String, one of "ASSIGNED", "NOT_ASSIGNED", "ACTIVATED", "DEACTIVATED"
|
|
8207
8300
|
# resp.details.iam.arn #=> String
|
|
8208
8301
|
# resp.details.iam.principal_id #=> String
|
|
8302
|
+
# resp.details.iam.session_name #=> String
|
|
8303
|
+
# resp.details.iam.group_profile_id #=> String
|
|
8209
8304
|
# resp.details.sso.username #=> String
|
|
8210
8305
|
# resp.details.sso.first_name #=> String
|
|
8211
8306
|
# resp.details.sso.last_name #=> String
|
|
@@ -8557,6 +8652,10 @@ module Aws::DataZone
|
|
|
8557
8652
|
# @example Response structure
|
|
8558
8653
|
#
|
|
8559
8654
|
# resp.items #=> Array
|
|
8655
|
+
# resp.items[0].configurations #=> Array
|
|
8656
|
+
# resp.items[0].configurations[0].classification #=> String
|
|
8657
|
+
# resp.items[0].configurations[0].properties #=> Hash
|
|
8658
|
+
# resp.items[0].configurations[0].properties["PropertyMapKeyString"] #=> String
|
|
8560
8659
|
# resp.items[0].connection_id #=> String
|
|
8561
8660
|
# resp.items[0].domain_id #=> String
|
|
8562
8661
|
# resp.items[0].domain_unit_id #=> String
|
|
@@ -8568,6 +8667,8 @@ module Aws::DataZone
|
|
|
8568
8667
|
# resp.items[0].physical_endpoints[0].aws_location.aws_region #=> String
|
|
8569
8668
|
# resp.items[0].physical_endpoints[0].aws_location.iam_connection_id #=> String
|
|
8570
8669
|
# resp.items[0].physical_endpoints[0].glue_connection_name #=> String
|
|
8670
|
+
# resp.items[0].physical_endpoints[0].glue_connection_names #=> Array
|
|
8671
|
+
# resp.items[0].physical_endpoints[0].glue_connection_names[0] #=> String
|
|
8571
8672
|
# resp.items[0].physical_endpoints[0].glue_connection.name #=> String
|
|
8572
8673
|
# resp.items[0].physical_endpoints[0].glue_connection.description #=> String
|
|
8573
8674
|
# resp.items[0].physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW"
|
|
@@ -8656,6 +8757,8 @@ module Aws::DataZone
|
|
|
8656
8757
|
# resp.items[0].props.spark_emr_properties.managed_endpoint_credentials.token #=> String
|
|
8657
8758
|
# resp.items[0].props.spark_glue_properties.additional_args.connection #=> String
|
|
8658
8759
|
# resp.items[0].props.spark_glue_properties.glue_connection_name #=> String
|
|
8760
|
+
# resp.items[0].props.spark_glue_properties.glue_connection_names #=> Array
|
|
8761
|
+
# resp.items[0].props.spark_glue_properties.glue_connection_names[0] #=> String
|
|
8659
8762
|
# resp.items[0].props.spark_glue_properties.glue_version #=> String
|
|
8660
8763
|
# resp.items[0].props.spark_glue_properties.idle_timeout #=> Integer
|
|
8661
8764
|
# resp.items[0].props.spark_glue_properties.java_virtual_env #=> String
|
|
@@ -8664,6 +8767,7 @@ module Aws::DataZone
|
|
|
8664
8767
|
# resp.items[0].props.spark_glue_properties.worker_type #=> String
|
|
8665
8768
|
# resp.items[0].props.s3_properties.s3_uri #=> String
|
|
8666
8769
|
# resp.items[0].props.s3_properties.s3_access_grant_location_id #=> String
|
|
8770
|
+
# resp.items[0].props.s3_properties.register_s3_access_grant_location #=> Boolean
|
|
8667
8771
|
# resp.items[0].props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
8668
8772
|
# resp.items[0].props.s3_properties.error_message #=> String
|
|
8669
8773
|
# resp.items[0].props.amazon_q_properties.is_enabled #=> Boolean
|
|
@@ -10188,6 +10292,9 @@ module Aws::DataZone
|
|
|
10188
10292
|
# @option params [String] :name
|
|
10189
10293
|
# The name of the project.
|
|
10190
10294
|
#
|
|
10295
|
+
# @option params [String] :project_category
|
|
10296
|
+
# A parameter to filter projects by their category.
|
|
10297
|
+
#
|
|
10191
10298
|
# @option params [String] :next_token
|
|
10192
10299
|
# When the number of projects is greater than the default value for the
|
|
10193
10300
|
# `MaxResults` parameter, or if you explicitly specify a value for
|
|
@@ -10217,6 +10324,7 @@ module Aws::DataZone
|
|
|
10217
10324
|
# user_identifier: "String",
|
|
10218
10325
|
# group_identifier: "String",
|
|
10219
10326
|
# name: "ProjectName",
|
|
10327
|
+
# project_category: "String",
|
|
10220
10328
|
# next_token: "PaginationToken",
|
|
10221
10329
|
# max_results: 1,
|
|
10222
10330
|
# })
|
|
@@ -10236,6 +10344,7 @@ module Aws::DataZone
|
|
|
10236
10344
|
# resp.items[0].created_at #=> Time
|
|
10237
10345
|
# resp.items[0].updated_at #=> Time
|
|
10238
10346
|
# resp.items[0].domain_unit_id #=> String
|
|
10347
|
+
# resp.items[0].project_category #=> String
|
|
10239
10348
|
# resp.next_token #=> String
|
|
10240
10349
|
#
|
|
10241
10350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListProjects AWS API Documentation
|
|
@@ -10563,6 +10672,8 @@ module Aws::DataZone
|
|
|
10563
10672
|
# resp.items[0].subscribed_principals[0].user.id #=> String
|
|
10564
10673
|
# resp.items[0].subscribed_principals[0].user.details.iam.arn #=> String
|
|
10565
10674
|
# resp.items[0].subscribed_principals[0].user.details.iam.principal_id #=> String
|
|
10675
|
+
# resp.items[0].subscribed_principals[0].user.details.iam.session_name #=> String
|
|
10676
|
+
# resp.items[0].subscribed_principals[0].user.details.iam.group_profile_id #=> String
|
|
10566
10677
|
# resp.items[0].subscribed_principals[0].user.details.sso.username #=> String
|
|
10567
10678
|
# resp.items[0].subscribed_principals[0].user.details.sso.first_name #=> String
|
|
10568
10679
|
# resp.items[0].subscribed_principals[0].user.details.sso.last_name #=> String
|
|
@@ -10803,6 +10914,8 @@ module Aws::DataZone
|
|
|
10803
10914
|
# resp.items[0].subscribed_principal.user.id #=> String
|
|
10804
10915
|
# resp.items[0].subscribed_principal.user.details.iam.arn #=> String
|
|
10805
10916
|
# resp.items[0].subscribed_principal.user.details.iam.principal_id #=> String
|
|
10917
|
+
# resp.items[0].subscribed_principal.user.details.iam.session_name #=> String
|
|
10918
|
+
# resp.items[0].subscribed_principal.user.details.iam.group_profile_id #=> String
|
|
10806
10919
|
# resp.items[0].subscribed_principal.user.details.sso.username #=> String
|
|
10807
10920
|
# resp.items[0].subscribed_principal.user.details.sso.first_name #=> String
|
|
10808
10921
|
# resp.items[0].subscribed_principal.user.details.sso.last_name #=> String
|
|
@@ -11474,6 +11587,8 @@ module Aws::DataZone
|
|
|
11474
11587
|
# resp.subscribed_principals[0].user.id #=> String
|
|
11475
11588
|
# resp.subscribed_principals[0].user.details.iam.arn #=> String
|
|
11476
11589
|
# resp.subscribed_principals[0].user.details.iam.principal_id #=> String
|
|
11590
|
+
# resp.subscribed_principals[0].user.details.iam.session_name #=> String
|
|
11591
|
+
# resp.subscribed_principals[0].user.details.iam.group_profile_id #=> String
|
|
11477
11592
|
# resp.subscribed_principals[0].user.details.sso.username #=> String
|
|
11478
11593
|
# resp.subscribed_principals[0].user.details.sso.first_name #=> String
|
|
11479
11594
|
# resp.subscribed_principals[0].user.details.sso.last_name #=> String
|
|
@@ -11706,6 +11821,8 @@ module Aws::DataZone
|
|
|
11706
11821
|
# resp.subscribed_principal.user.id #=> String
|
|
11707
11822
|
# resp.subscribed_principal.user.details.iam.arn #=> String
|
|
11708
11823
|
# resp.subscribed_principal.user.details.iam.principal_id #=> String
|
|
11824
|
+
# resp.subscribed_principal.user.details.iam.session_name #=> String
|
|
11825
|
+
# resp.subscribed_principal.user.details.iam.group_profile_id #=> String
|
|
11709
11826
|
# resp.subscribed_principal.user.details.sso.username #=> String
|
|
11710
11827
|
# resp.subscribed_principal.user.details.sso.first_name #=> String
|
|
11711
11828
|
# resp.subscribed_principal.user.details.sso.last_name #=> String
|
|
@@ -12061,7 +12178,7 @@ module Aws::DataZone
|
|
|
12061
12178
|
#
|
|
12062
12179
|
# resp = client.search_group_profiles({
|
|
12063
12180
|
# domain_identifier: "DomainId", # required
|
|
12064
|
-
# group_type: "SSO_GROUP", # required, accepts SSO_GROUP, DATAZONE_SSO_GROUP
|
|
12181
|
+
# group_type: "SSO_GROUP", # required, accepts SSO_GROUP, DATAZONE_SSO_GROUP, IAM_ROLE_SESSION_GROUP
|
|
12065
12182
|
# search_text: "GroupSearchText",
|
|
12066
12183
|
# max_results: 1,
|
|
12067
12184
|
# next_token: "PaginationToken",
|
|
@@ -12074,6 +12191,8 @@ module Aws::DataZone
|
|
|
12074
12191
|
# resp.items[0].id #=> String
|
|
12075
12192
|
# resp.items[0].status #=> String, one of "ASSIGNED", "NOT_ASSIGNED"
|
|
12076
12193
|
# resp.items[0].group_name #=> String
|
|
12194
|
+
# resp.items[0].role_principal_arn #=> String
|
|
12195
|
+
# resp.items[0].role_principal_id #=> String
|
|
12077
12196
|
# resp.next_token #=> String
|
|
12078
12197
|
#
|
|
12079
12198
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SearchGroupProfiles AWS API Documentation
|
|
@@ -12517,6 +12636,8 @@ module Aws::DataZone
|
|
|
12517
12636
|
# resp.items[0].status #=> String, one of "ASSIGNED", "NOT_ASSIGNED", "ACTIVATED", "DEACTIVATED"
|
|
12518
12637
|
# resp.items[0].details.iam.arn #=> String
|
|
12519
12638
|
# resp.items[0].details.iam.principal_id #=> String
|
|
12639
|
+
# resp.items[0].details.iam.session_name #=> String
|
|
12640
|
+
# resp.items[0].details.iam.group_profile_id #=> String
|
|
12520
12641
|
# resp.items[0].details.sso.username #=> String
|
|
12521
12642
|
# resp.items[0].details.sso.first_name #=> String
|
|
12522
12643
|
# resp.items[0].details.sso.last_name #=> String
|
|
@@ -13012,6 +13133,9 @@ module Aws::DataZone
|
|
|
13012
13133
|
# connect your resources (domains, projects, and environments) to
|
|
13013
13134
|
# external resources and services.
|
|
13014
13135
|
#
|
|
13136
|
+
# @option params [Array<Types::Configuration>] :configurations
|
|
13137
|
+
# The configurations of the connection.
|
|
13138
|
+
#
|
|
13015
13139
|
# @option params [required, String] :domain_identifier
|
|
13016
13140
|
# The ID of the domain where a connection is to be updated.
|
|
13017
13141
|
#
|
|
@@ -13029,6 +13153,7 @@ module Aws::DataZone
|
|
|
13029
13153
|
#
|
|
13030
13154
|
# @return [Types::UpdateConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
13031
13155
|
#
|
|
13156
|
+
# * {Types::UpdateConnectionOutput#configurations #configurations} => Array<Types::Configuration>
|
|
13032
13157
|
# * {Types::UpdateConnectionOutput#connection_id #connection_id} => String
|
|
13033
13158
|
# * {Types::UpdateConnectionOutput#description #description} => String
|
|
13034
13159
|
# * {Types::UpdateConnectionOutput#domain_id #domain_id} => String
|
|
@@ -13044,6 +13169,14 @@ module Aws::DataZone
|
|
|
13044
13169
|
# @example Request syntax with placeholder values
|
|
13045
13170
|
#
|
|
13046
13171
|
# resp = client.update_connection({
|
|
13172
|
+
# configurations: [
|
|
13173
|
+
# {
|
|
13174
|
+
# classification: "ConfigurationClassificationString",
|
|
13175
|
+
# properties: {
|
|
13176
|
+
# "PropertyMapKeyString" => "PropertyMapValueString",
|
|
13177
|
+
# },
|
|
13178
|
+
# },
|
|
13179
|
+
# ],
|
|
13047
13180
|
# domain_identifier: "DomainId", # required
|
|
13048
13181
|
# identifier: "ConnectionId", # required
|
|
13049
13182
|
# description: "UpdateConnectionInputDescriptionString",
|
|
@@ -13110,6 +13243,7 @@ module Aws::DataZone
|
|
|
13110
13243
|
# s3_properties: {
|
|
13111
13244
|
# s3_uri: "S3Uri", # required
|
|
13112
13245
|
# s3_access_grant_location_id: "S3AccessGrantLocationId",
|
|
13246
|
+
# register_s3_access_grant_location: false,
|
|
13113
13247
|
# },
|
|
13114
13248
|
# amazon_q_properties: {
|
|
13115
13249
|
# is_enabled: false, # required
|
|
@@ -13124,6 +13258,10 @@ module Aws::DataZone
|
|
|
13124
13258
|
#
|
|
13125
13259
|
# @example Response structure
|
|
13126
13260
|
#
|
|
13261
|
+
# resp.configurations #=> Array
|
|
13262
|
+
# resp.configurations[0].classification #=> String
|
|
13263
|
+
# resp.configurations[0].properties #=> Hash
|
|
13264
|
+
# resp.configurations[0].properties["PropertyMapKeyString"] #=> String
|
|
13127
13265
|
# resp.connection_id #=> String
|
|
13128
13266
|
# resp.description #=> String
|
|
13129
13267
|
# resp.domain_id #=> String
|
|
@@ -13136,6 +13274,8 @@ module Aws::DataZone
|
|
|
13136
13274
|
# resp.physical_endpoints[0].aws_location.aws_region #=> String
|
|
13137
13275
|
# resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
|
|
13138
13276
|
# resp.physical_endpoints[0].glue_connection_name #=> String
|
|
13277
|
+
# resp.physical_endpoints[0].glue_connection_names #=> Array
|
|
13278
|
+
# resp.physical_endpoints[0].glue_connection_names[0] #=> String
|
|
13139
13279
|
# resp.physical_endpoints[0].glue_connection.name #=> String
|
|
13140
13280
|
# resp.physical_endpoints[0].glue_connection.description #=> String
|
|
13141
13281
|
# resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW"
|
|
@@ -13224,6 +13364,8 @@ module Aws::DataZone
|
|
|
13224
13364
|
# resp.props.spark_emr_properties.managed_endpoint_credentials.token #=> String
|
|
13225
13365
|
# resp.props.spark_glue_properties.additional_args.connection #=> String
|
|
13226
13366
|
# resp.props.spark_glue_properties.glue_connection_name #=> String
|
|
13367
|
+
# resp.props.spark_glue_properties.glue_connection_names #=> Array
|
|
13368
|
+
# resp.props.spark_glue_properties.glue_connection_names[0] #=> String
|
|
13227
13369
|
# resp.props.spark_glue_properties.glue_version #=> String
|
|
13228
13370
|
# resp.props.spark_glue_properties.idle_timeout #=> Integer
|
|
13229
13371
|
# resp.props.spark_glue_properties.java_virtual_env #=> String
|
|
@@ -13232,6 +13374,7 @@ module Aws::DataZone
|
|
|
13232
13374
|
# resp.props.spark_glue_properties.worker_type #=> String
|
|
13233
13375
|
# resp.props.s3_properties.s3_uri #=> String
|
|
13234
13376
|
# resp.props.s3_properties.s3_access_grant_location_id #=> String
|
|
13377
|
+
# resp.props.s3_properties.register_s3_access_grant_location #=> Boolean
|
|
13235
13378
|
# resp.props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
|
|
13236
13379
|
# resp.props.s3_properties.error_message #=> String
|
|
13237
13380
|
# resp.props.amazon_q_properties.is_enabled #=> Boolean
|
|
@@ -14179,6 +14322,8 @@ module Aws::DataZone
|
|
|
14179
14322
|
# * {Types::UpdateGroupProfileOutput#id #id} => String
|
|
14180
14323
|
# * {Types::UpdateGroupProfileOutput#status #status} => String
|
|
14181
14324
|
# * {Types::UpdateGroupProfileOutput#group_name #group_name} => String
|
|
14325
|
+
# * {Types::UpdateGroupProfileOutput#role_principal_arn #role_principal_arn} => String
|
|
14326
|
+
# * {Types::UpdateGroupProfileOutput#role_principal_id #role_principal_id} => String
|
|
14182
14327
|
#
|
|
14183
14328
|
# @example Request syntax with placeholder values
|
|
14184
14329
|
#
|
|
@@ -14194,6 +14339,8 @@ module Aws::DataZone
|
|
|
14194
14339
|
# resp.id #=> String
|
|
14195
14340
|
# resp.status #=> String, one of "ASSIGNED", "NOT_ASSIGNED"
|
|
14196
14341
|
# resp.group_name #=> String
|
|
14342
|
+
# resp.role_principal_arn #=> String
|
|
14343
|
+
# resp.role_principal_id #=> String
|
|
14197
14344
|
#
|
|
14198
14345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateGroupProfile AWS API Documentation
|
|
14199
14346
|
#
|
|
@@ -14256,6 +14403,7 @@ module Aws::DataZone
|
|
|
14256
14403
|
# * {Types::UpdateProjectOutput#project_profile_id #project_profile_id} => String
|
|
14257
14404
|
# * {Types::UpdateProjectOutput#user_parameters #user_parameters} => Array<Types::EnvironmentConfigurationUserParameter>
|
|
14258
14405
|
# * {Types::UpdateProjectOutput#environment_deployment_details #environment_deployment_details} => Types::EnvironmentDeploymentDetails
|
|
14406
|
+
# * {Types::UpdateProjectOutput#project_category #project_category} => String
|
|
14259
14407
|
#
|
|
14260
14408
|
# @example Request syntax with placeholder values
|
|
14261
14409
|
#
|
|
@@ -14335,6 +14483,7 @@ module Aws::DataZone
|
|
|
14335
14483
|
# resp.environment_deployment_details.environment_failure_reasons["String"] #=> Array
|
|
14336
14484
|
# resp.environment_deployment_details.environment_failure_reasons["String"][0].code #=> String
|
|
14337
14485
|
# resp.environment_deployment_details.environment_failure_reasons["String"][0].message #=> String
|
|
14486
|
+
# resp.project_category #=> String
|
|
14338
14487
|
#
|
|
14339
14488
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProject AWS API Documentation
|
|
14340
14489
|
#
|
|
@@ -14802,6 +14951,8 @@ module Aws::DataZone
|
|
|
14802
14951
|
# resp.subscribed_principals[0].user.id #=> String
|
|
14803
14952
|
# resp.subscribed_principals[0].user.details.iam.arn #=> String
|
|
14804
14953
|
# resp.subscribed_principals[0].user.details.iam.principal_id #=> String
|
|
14954
|
+
# resp.subscribed_principals[0].user.details.iam.session_name #=> String
|
|
14955
|
+
# resp.subscribed_principals[0].user.details.iam.group_profile_id #=> String
|
|
14805
14956
|
# resp.subscribed_principals[0].user.details.sso.username #=> String
|
|
14806
14957
|
# resp.subscribed_principals[0].user.details.sso.first_name #=> String
|
|
14807
14958
|
# resp.subscribed_principals[0].user.details.sso.last_name #=> String
|
|
@@ -14986,6 +15137,9 @@ module Aws::DataZone
|
|
|
14986
15137
|
# @option params [required, String] :status
|
|
14987
15138
|
# The status of the user profile that are to be updated.
|
|
14988
15139
|
#
|
|
15140
|
+
# @option params [String] :session_name
|
|
15141
|
+
# The session name for IAM role sessions.
|
|
15142
|
+
#
|
|
14989
15143
|
# @return [Types::UpdateUserProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
14990
15144
|
#
|
|
14991
15145
|
# * {Types::UpdateUserProfileOutput#domain_id #domain_id} => String
|
|
@@ -15001,6 +15155,7 @@ module Aws::DataZone
|
|
|
15001
15155
|
# user_identifier: "UserIdentifier", # required
|
|
15002
15156
|
# type: "IAM", # accepts IAM, SSO
|
|
15003
15157
|
# status: "ASSIGNED", # required, accepts ASSIGNED, NOT_ASSIGNED, ACTIVATED, DEACTIVATED
|
|
15158
|
+
# session_name: "UpdateUserProfileInputSessionNameString",
|
|
15004
15159
|
# })
|
|
15005
15160
|
#
|
|
15006
15161
|
# @example Response structure
|
|
@@ -15011,6 +15166,8 @@ module Aws::DataZone
|
|
|
15011
15166
|
# resp.status #=> String, one of "ASSIGNED", "NOT_ASSIGNED", "ACTIVATED", "DEACTIVATED"
|
|
15012
15167
|
# resp.details.iam.arn #=> String
|
|
15013
15168
|
# resp.details.iam.principal_id #=> String
|
|
15169
|
+
# resp.details.iam.session_name #=> String
|
|
15170
|
+
# resp.details.iam.group_profile_id #=> String
|
|
15014
15171
|
# resp.details.sso.username #=> String
|
|
15015
15172
|
# resp.details.sso.first_name #=> String
|
|
15016
15173
|
# resp.details.sso.last_name #=> String
|
|
@@ -15042,7 +15199,7 @@ module Aws::DataZone
|
|
|
15042
15199
|
tracer: tracer
|
|
15043
15200
|
)
|
|
15044
15201
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
15045
|
-
context[:gem_version] = '1.
|
|
15202
|
+
context[:gem_version] = '1.73.0'
|
|
15046
15203
|
Seahorse::Client::Request.new(handlers, context)
|
|
15047
15204
|
end
|
|
15048
15205
|
|