aws-sdk-datazone 1.56.0 → 1.58.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 +93 -7
- data/lib/aws-sdk-datazone/client_api.rb +47 -3
- data/lib/aws-sdk-datazone/types.rb +162 -26
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +34 -4
- data/sig/types.rbs +39 -8
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f39b14142bfd183df1a5f7abad839a7311a3a19e938106fabf69a54edbd219e9
|
|
4
|
+
data.tar.gz: 60a88e57b1e01017f82ca6715844b691fd800c97650175c5fb7ead19cbbf9843
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15d04918ca5b9e10fcc3ba6c60221bdff94bc212927df55e67e0a1229876a96b9075a1a42c24affab7d12fe101bd38247e1f141378d2bca9bd98b222b8ffd1a9
|
|
7
|
+
data.tar.gz: ebae11bf9e35ae61fb064bd83312e718f2dde3b0275b219debd8fcc56c6cace63447e387d3f4dfc38c90f430e9a637c5682489924504f4cca9a0455124ff524c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.58.0 (2025-11-10)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Remove trackingServerName from DataZone Connection MLflowProperties
|
|
8
|
+
|
|
9
|
+
1.57.0 (2025-11-05)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Added support for Project Resource Tags
|
|
13
|
+
|
|
4
14
|
1.56.0 (2025-10-24)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.58.0
|
|
@@ -1859,7 +1859,6 @@ module Aws::DataZone
|
|
|
1859
1859
|
# },
|
|
1860
1860
|
# mlflow_properties: {
|
|
1861
1861
|
# tracking_server_arn: "String",
|
|
1862
|
-
# tracking_server_name: "String",
|
|
1863
1862
|
# },
|
|
1864
1863
|
# redshift_properties: {
|
|
1865
1864
|
# credentials: {
|
|
@@ -1987,7 +1986,6 @@ module Aws::DataZone
|
|
|
1987
1986
|
# resp.props.iam_properties.environment_id #=> String
|
|
1988
1987
|
# resp.props.iam_properties.glue_lineage_sync_enabled #=> Boolean
|
|
1989
1988
|
# resp.props.mlflow_properties.tracking_server_arn #=> String
|
|
1990
|
-
# resp.props.mlflow_properties.tracking_server_name #=> String
|
|
1991
1989
|
# resp.props.redshift_properties.credentials.secret_arn #=> String
|
|
1992
1990
|
# resp.props.redshift_properties.credentials.username_password.password #=> String
|
|
1993
1991
|
# resp.props.redshift_properties.credentials.username_password.username #=> String
|
|
@@ -3493,6 +3491,9 @@ module Aws::DataZone
|
|
|
3493
3491
|
# @option params [String] :project_profile_id
|
|
3494
3492
|
# The ID of the project profile.
|
|
3495
3493
|
#
|
|
3494
|
+
# @option params [Hash<String,String>] :resource_tags
|
|
3495
|
+
# The resource tags of the project.
|
|
3496
|
+
#
|
|
3496
3497
|
# @option params [Array<Types::EnvironmentConfigurationUserParameter>] :user_parameters
|
|
3497
3498
|
# The user parameters of the project.
|
|
3498
3499
|
#
|
|
@@ -3511,6 +3512,7 @@ module Aws::DataZone
|
|
|
3511
3512
|
# * {Types::CreateProjectOutput#name #name} => String
|
|
3512
3513
|
# * {Types::CreateProjectOutput#project_profile_id #project_profile_id} => String
|
|
3513
3514
|
# * {Types::CreateProjectOutput#project_status #project_status} => String
|
|
3515
|
+
# * {Types::CreateProjectOutput#resource_tags #resource_tags} => Array<Types::ResourceTag>
|
|
3514
3516
|
# * {Types::CreateProjectOutput#user_parameters #user_parameters} => Array<Types::EnvironmentConfigurationUserParameter>
|
|
3515
3517
|
#
|
|
3516
3518
|
# @example Request syntax with placeholder values
|
|
@@ -3522,6 +3524,9 @@ module Aws::DataZone
|
|
|
3522
3524
|
# glossary_terms: ["GlossaryTermId"],
|
|
3523
3525
|
# name: "ProjectName", # required
|
|
3524
3526
|
# project_profile_id: "ProjectProfileId",
|
|
3527
|
+
# resource_tags: {
|
|
3528
|
+
# "TagKey" => "TagValue",
|
|
3529
|
+
# },
|
|
3525
3530
|
# user_parameters: [
|
|
3526
3531
|
# {
|
|
3527
3532
|
# environment_configuration_name: "EnvironmentConfigurationName",
|
|
@@ -3563,6 +3568,10 @@ module Aws::DataZone
|
|
|
3563
3568
|
# resp.name #=> String
|
|
3564
3569
|
# resp.project_profile_id #=> String
|
|
3565
3570
|
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED", "MOVING"
|
|
3571
|
+
# resp.resource_tags #=> Array
|
|
3572
|
+
# resp.resource_tags[0].key #=> String
|
|
3573
|
+
# resp.resource_tags[0].source #=> String, one of "PROJECT", "PROJECT_PROFILE"
|
|
3574
|
+
# resp.resource_tags[0].value #=> String
|
|
3566
3575
|
# resp.user_parameters #=> Array
|
|
3567
3576
|
# resp.user_parameters[0].environment_configuration_name #=> String
|
|
3568
3577
|
# resp.user_parameters[0].environment_id #=> String
|
|
@@ -3622,6 +3631,9 @@ module Aws::DataZone
|
|
|
3622
3631
|
|
|
3623
3632
|
# Creates a project profile.
|
|
3624
3633
|
#
|
|
3634
|
+
# @option params [Boolean] :allow_custom_project_resource_tags
|
|
3635
|
+
# Specifies whether custom project resource tags are supported.
|
|
3636
|
+
#
|
|
3625
3637
|
# @option params [String] :description
|
|
3626
3638
|
# A description of a project profile.
|
|
3627
3639
|
#
|
|
@@ -3637,11 +3649,19 @@ module Aws::DataZone
|
|
|
3637
3649
|
# @option params [required, String] :name
|
|
3638
3650
|
# Project profile name.
|
|
3639
3651
|
#
|
|
3652
|
+
# @option params [Array<Types::ResourceTagParameter>] :project_resource_tags
|
|
3653
|
+
# The resource tags of the project profile.
|
|
3654
|
+
#
|
|
3655
|
+
# @option params [String] :project_resource_tags_description
|
|
3656
|
+
# Field viewable through the UI that provides a project user with the
|
|
3657
|
+
# allowed resource tag specifications.
|
|
3658
|
+
#
|
|
3640
3659
|
# @option params [String] :status
|
|
3641
3660
|
# Project profile status.
|
|
3642
3661
|
#
|
|
3643
3662
|
# @return [Types::CreateProjectProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3644
3663
|
#
|
|
3664
|
+
# * {Types::CreateProjectProfileOutput#allow_custom_project_resource_tags #allow_custom_project_resource_tags} => Boolean
|
|
3645
3665
|
# * {Types::CreateProjectProfileOutput#created_at #created_at} => Time
|
|
3646
3666
|
# * {Types::CreateProjectProfileOutput#created_by #created_by} => String
|
|
3647
3667
|
# * {Types::CreateProjectProfileOutput#description #description} => String
|
|
@@ -3651,11 +3671,14 @@ module Aws::DataZone
|
|
|
3651
3671
|
# * {Types::CreateProjectProfileOutput#id #id} => String
|
|
3652
3672
|
# * {Types::CreateProjectProfileOutput#last_updated_at #last_updated_at} => Time
|
|
3653
3673
|
# * {Types::CreateProjectProfileOutput#name #name} => String
|
|
3674
|
+
# * {Types::CreateProjectProfileOutput#project_resource_tags #project_resource_tags} => Array<Types::ResourceTagParameter>
|
|
3675
|
+
# * {Types::CreateProjectProfileOutput#project_resource_tags_description #project_resource_tags_description} => String
|
|
3654
3676
|
# * {Types::CreateProjectProfileOutput#status #status} => String
|
|
3655
3677
|
#
|
|
3656
3678
|
# @example Request syntax with placeholder values
|
|
3657
3679
|
#
|
|
3658
3680
|
# resp = client.create_project_profile({
|
|
3681
|
+
# allow_custom_project_resource_tags: false,
|
|
3659
3682
|
# description: "Description",
|
|
3660
3683
|
# domain_identifier: "DomainId", # required
|
|
3661
3684
|
# domain_unit_identifier: "DomainUnitId",
|
|
@@ -3696,11 +3719,20 @@ module Aws::DataZone
|
|
|
3696
3719
|
# },
|
|
3697
3720
|
# ],
|
|
3698
3721
|
# name: "ProjectProfileName", # required
|
|
3722
|
+
# project_resource_tags: [
|
|
3723
|
+
# {
|
|
3724
|
+
# is_value_editable: false, # required
|
|
3725
|
+
# key: "TagKey", # required
|
|
3726
|
+
# value: "TagValue", # required
|
|
3727
|
+
# },
|
|
3728
|
+
# ],
|
|
3729
|
+
# project_resource_tags_description: "Description",
|
|
3699
3730
|
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
3700
3731
|
# })
|
|
3701
3732
|
#
|
|
3702
3733
|
# @example Response structure
|
|
3703
3734
|
#
|
|
3735
|
+
# resp.allow_custom_project_resource_tags #=> Boolean
|
|
3704
3736
|
# resp.created_at #=> Time
|
|
3705
3737
|
# resp.created_by #=> String
|
|
3706
3738
|
# resp.description #=> String
|
|
@@ -3731,6 +3763,11 @@ module Aws::DataZone
|
|
|
3731
3763
|
# resp.id #=> String
|
|
3732
3764
|
# resp.last_updated_at #=> Time
|
|
3733
3765
|
# resp.name #=> String
|
|
3766
|
+
# resp.project_resource_tags #=> Array
|
|
3767
|
+
# resp.project_resource_tags[0].is_value_editable #=> Boolean
|
|
3768
|
+
# resp.project_resource_tags[0].key #=> String
|
|
3769
|
+
# resp.project_resource_tags[0].value #=> String
|
|
3770
|
+
# resp.project_resource_tags_description #=> String
|
|
3734
3771
|
# resp.status #=> String, one of "ENABLED", "DISABLED"
|
|
3735
3772
|
#
|
|
3736
3773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectProfile AWS API Documentation
|
|
@@ -5771,7 +5808,6 @@ module Aws::DataZone
|
|
|
5771
5808
|
# resp.props.iam_properties.environment_id #=> String
|
|
5772
5809
|
# resp.props.iam_properties.glue_lineage_sync_enabled #=> Boolean
|
|
5773
5810
|
# resp.props.mlflow_properties.tracking_server_arn #=> String
|
|
5774
|
-
# resp.props.mlflow_properties.tracking_server_name #=> String
|
|
5775
5811
|
# resp.props.redshift_properties.credentials.secret_arn #=> String
|
|
5776
5812
|
# resp.props.redshift_properties.credentials.username_password.password #=> String
|
|
5777
5813
|
# resp.props.redshift_properties.credentials.username_password.username #=> String
|
|
@@ -7207,6 +7243,7 @@ module Aws::DataZone
|
|
|
7207
7243
|
# * {Types::GetProjectOutput#name #name} => String
|
|
7208
7244
|
# * {Types::GetProjectOutput#project_profile_id #project_profile_id} => String
|
|
7209
7245
|
# * {Types::GetProjectOutput#project_status #project_status} => String
|
|
7246
|
+
# * {Types::GetProjectOutput#resource_tags #resource_tags} => Array<Types::ResourceTag>
|
|
7210
7247
|
# * {Types::GetProjectOutput#user_parameters #user_parameters} => Array<Types::EnvironmentConfigurationUserParameter>
|
|
7211
7248
|
#
|
|
7212
7249
|
# @example Request syntax with placeholder values
|
|
@@ -7238,6 +7275,10 @@ module Aws::DataZone
|
|
|
7238
7275
|
# resp.name #=> String
|
|
7239
7276
|
# resp.project_profile_id #=> String
|
|
7240
7277
|
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED", "MOVING"
|
|
7278
|
+
# resp.resource_tags #=> Array
|
|
7279
|
+
# resp.resource_tags[0].key #=> String
|
|
7280
|
+
# resp.resource_tags[0].source #=> String, one of "PROJECT", "PROJECT_PROFILE"
|
|
7281
|
+
# resp.resource_tags[0].value #=> String
|
|
7241
7282
|
# resp.user_parameters #=> Array
|
|
7242
7283
|
# resp.user_parameters[0].environment_configuration_name #=> String
|
|
7243
7284
|
# resp.user_parameters[0].environment_id #=> String
|
|
@@ -7267,6 +7308,7 @@ module Aws::DataZone
|
|
|
7267
7308
|
#
|
|
7268
7309
|
# @return [Types::GetProjectProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7269
7310
|
#
|
|
7311
|
+
# * {Types::GetProjectProfileOutput#allow_custom_project_resource_tags #allow_custom_project_resource_tags} => Boolean
|
|
7270
7312
|
# * {Types::GetProjectProfileOutput#created_at #created_at} => Time
|
|
7271
7313
|
# * {Types::GetProjectProfileOutput#created_by #created_by} => String
|
|
7272
7314
|
# * {Types::GetProjectProfileOutput#description #description} => String
|
|
@@ -7276,6 +7318,8 @@ module Aws::DataZone
|
|
|
7276
7318
|
# * {Types::GetProjectProfileOutput#id #id} => String
|
|
7277
7319
|
# * {Types::GetProjectProfileOutput#last_updated_at #last_updated_at} => Time
|
|
7278
7320
|
# * {Types::GetProjectProfileOutput#name #name} => String
|
|
7321
|
+
# * {Types::GetProjectProfileOutput#project_resource_tags #project_resource_tags} => Array<Types::ResourceTagParameter>
|
|
7322
|
+
# * {Types::GetProjectProfileOutput#project_resource_tags_description #project_resource_tags_description} => String
|
|
7279
7323
|
# * {Types::GetProjectProfileOutput#status #status} => String
|
|
7280
7324
|
#
|
|
7281
7325
|
# @example Request syntax with placeholder values
|
|
@@ -7287,6 +7331,7 @@ module Aws::DataZone
|
|
|
7287
7331
|
#
|
|
7288
7332
|
# @example Response structure
|
|
7289
7333
|
#
|
|
7334
|
+
# resp.allow_custom_project_resource_tags #=> Boolean
|
|
7290
7335
|
# resp.created_at #=> Time
|
|
7291
7336
|
# resp.created_by #=> String
|
|
7292
7337
|
# resp.description #=> String
|
|
@@ -7317,6 +7362,11 @@ module Aws::DataZone
|
|
|
7317
7362
|
# resp.id #=> String
|
|
7318
7363
|
# resp.last_updated_at #=> Time
|
|
7319
7364
|
# resp.name #=> String
|
|
7365
|
+
# resp.project_resource_tags #=> Array
|
|
7366
|
+
# resp.project_resource_tags[0].is_value_editable #=> Boolean
|
|
7367
|
+
# resp.project_resource_tags[0].key #=> String
|
|
7368
|
+
# resp.project_resource_tags[0].value #=> String
|
|
7369
|
+
# resp.project_resource_tags_description #=> String
|
|
7320
7370
|
# resp.status #=> String, one of "ENABLED", "DISABLED"
|
|
7321
7371
|
#
|
|
7322
7372
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectProfile AWS API Documentation
|
|
@@ -8235,7 +8285,6 @@ module Aws::DataZone
|
|
|
8235
8285
|
# resp.items[0].props.iam_properties.environment_id #=> String
|
|
8236
8286
|
# resp.items[0].props.iam_properties.glue_lineage_sync_enabled #=> Boolean
|
|
8237
8287
|
# resp.items[0].props.mlflow_properties.tracking_server_arn #=> String
|
|
8238
|
-
# resp.items[0].props.mlflow_properties.tracking_server_name #=> String
|
|
8239
8288
|
# resp.items[0].props.redshift_properties.credentials.secret_arn #=> String
|
|
8240
8289
|
# resp.items[0].props.redshift_properties.credentials.username_password.password #=> String
|
|
8241
8290
|
# resp.items[0].props.redshift_properties.credentials.username_password.username #=> String
|
|
@@ -12361,7 +12410,6 @@ module Aws::DataZone
|
|
|
12361
12410
|
# },
|
|
12362
12411
|
# mlflow_properties: {
|
|
12363
12412
|
# tracking_server_arn: "String",
|
|
12364
|
-
# tracking_server_name: "String",
|
|
12365
12413
|
# },
|
|
12366
12414
|
# redshift_properties: {
|
|
12367
12415
|
# credentials: {
|
|
@@ -12476,7 +12524,6 @@ module Aws::DataZone
|
|
|
12476
12524
|
# resp.props.iam_properties.environment_id #=> String
|
|
12477
12525
|
# resp.props.iam_properties.glue_lineage_sync_enabled #=> Boolean
|
|
12478
12526
|
# resp.props.mlflow_properties.tracking_server_arn #=> String
|
|
12479
|
-
# resp.props.mlflow_properties.tracking_server_name #=> String
|
|
12480
12527
|
# resp.props.redshift_properties.credentials.secret_arn #=> String
|
|
12481
12528
|
# resp.props.redshift_properties.credentials.username_password.password #=> String
|
|
12482
12529
|
# resp.props.redshift_properties.credentials.username_password.username #=> String
|
|
@@ -13507,6 +13554,9 @@ module Aws::DataZone
|
|
|
13507
13554
|
# You can only specify the following string for this parameter:
|
|
13508
13555
|
# `latest`.
|
|
13509
13556
|
#
|
|
13557
|
+
# @option params [Hash<String,String>] :resource_tags
|
|
13558
|
+
# The resource tags of the project.
|
|
13559
|
+
#
|
|
13510
13560
|
# @option params [Array<Types::EnvironmentConfigurationUserParameter>] :user_parameters
|
|
13511
13561
|
# The user parameters of the project.
|
|
13512
13562
|
#
|
|
@@ -13525,6 +13575,7 @@ module Aws::DataZone
|
|
|
13525
13575
|
# * {Types::UpdateProjectOutput#name #name} => String
|
|
13526
13576
|
# * {Types::UpdateProjectOutput#project_profile_id #project_profile_id} => String
|
|
13527
13577
|
# * {Types::UpdateProjectOutput#project_status #project_status} => String
|
|
13578
|
+
# * {Types::UpdateProjectOutput#resource_tags #resource_tags} => Array<Types::ResourceTag>
|
|
13528
13579
|
# * {Types::UpdateProjectOutput#user_parameters #user_parameters} => Array<Types::EnvironmentConfigurationUserParameter>
|
|
13529
13580
|
#
|
|
13530
13581
|
# @example Request syntax with placeholder values
|
|
@@ -13548,6 +13599,9 @@ module Aws::DataZone
|
|
|
13548
13599
|
# identifier: "ProjectId", # required
|
|
13549
13600
|
# name: "ProjectName",
|
|
13550
13601
|
# project_profile_version: "String",
|
|
13602
|
+
# resource_tags: {
|
|
13603
|
+
# "TagKey" => "TagValue",
|
|
13604
|
+
# },
|
|
13551
13605
|
# user_parameters: [
|
|
13552
13606
|
# {
|
|
13553
13607
|
# environment_configuration_name: "EnvironmentConfigurationName",
|
|
@@ -13589,6 +13643,10 @@ module Aws::DataZone
|
|
|
13589
13643
|
# resp.name #=> String
|
|
13590
13644
|
# resp.project_profile_id #=> String
|
|
13591
13645
|
# resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED", "MOVING"
|
|
13646
|
+
# resp.resource_tags #=> Array
|
|
13647
|
+
# resp.resource_tags[0].key #=> String
|
|
13648
|
+
# resp.resource_tags[0].source #=> String, one of "PROJECT", "PROJECT_PROFILE"
|
|
13649
|
+
# resp.resource_tags[0].value #=> String
|
|
13592
13650
|
# resp.user_parameters #=> Array
|
|
13593
13651
|
# resp.user_parameters[0].environment_configuration_name #=> String
|
|
13594
13652
|
# resp.user_parameters[0].environment_id #=> String
|
|
@@ -13610,6 +13668,9 @@ module Aws::DataZone
|
|
|
13610
13668
|
|
|
13611
13669
|
# Updates a project profile.
|
|
13612
13670
|
#
|
|
13671
|
+
# @option params [Boolean] :allow_custom_project_resource_tags
|
|
13672
|
+
# Specifies whether custom project resource tags are supported.
|
|
13673
|
+
#
|
|
13613
13674
|
# @option params [String] :description
|
|
13614
13675
|
# The description of a project profile.
|
|
13615
13676
|
#
|
|
@@ -13628,11 +13689,19 @@ module Aws::DataZone
|
|
|
13628
13689
|
# @option params [String] :name
|
|
13629
13690
|
# The name of a project profile.
|
|
13630
13691
|
#
|
|
13692
|
+
# @option params [Array<Types::ResourceTagParameter>] :project_resource_tags
|
|
13693
|
+
# The resource tags of the project profile.
|
|
13694
|
+
#
|
|
13695
|
+
# @option params [String] :project_resource_tags_description
|
|
13696
|
+
# Field viewable through the UI that provides a project user with the
|
|
13697
|
+
# allowed resource tag specifications.
|
|
13698
|
+
#
|
|
13631
13699
|
# @option params [String] :status
|
|
13632
13700
|
# The status of a project profile.
|
|
13633
13701
|
#
|
|
13634
13702
|
# @return [Types::UpdateProjectProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
13635
13703
|
#
|
|
13704
|
+
# * {Types::UpdateProjectProfileOutput#allow_custom_project_resource_tags #allow_custom_project_resource_tags} => Boolean
|
|
13636
13705
|
# * {Types::UpdateProjectProfileOutput#created_at #created_at} => Time
|
|
13637
13706
|
# * {Types::UpdateProjectProfileOutput#created_by #created_by} => String
|
|
13638
13707
|
# * {Types::UpdateProjectProfileOutput#description #description} => String
|
|
@@ -13642,11 +13711,14 @@ module Aws::DataZone
|
|
|
13642
13711
|
# * {Types::UpdateProjectProfileOutput#id #id} => String
|
|
13643
13712
|
# * {Types::UpdateProjectProfileOutput#last_updated_at #last_updated_at} => Time
|
|
13644
13713
|
# * {Types::UpdateProjectProfileOutput#name #name} => String
|
|
13714
|
+
# * {Types::UpdateProjectProfileOutput#project_resource_tags #project_resource_tags} => Array<Types::ResourceTagParameter>
|
|
13715
|
+
# * {Types::UpdateProjectProfileOutput#project_resource_tags_description #project_resource_tags_description} => String
|
|
13645
13716
|
# * {Types::UpdateProjectProfileOutput#status #status} => String
|
|
13646
13717
|
#
|
|
13647
13718
|
# @example Request syntax with placeholder values
|
|
13648
13719
|
#
|
|
13649
13720
|
# resp = client.update_project_profile({
|
|
13721
|
+
# allow_custom_project_resource_tags: false,
|
|
13650
13722
|
# description: "Description",
|
|
13651
13723
|
# domain_identifier: "DomainId", # required
|
|
13652
13724
|
# domain_unit_identifier: "DomainUnitId",
|
|
@@ -13688,11 +13760,20 @@ module Aws::DataZone
|
|
|
13688
13760
|
# ],
|
|
13689
13761
|
# identifier: "ProjectProfileId", # required
|
|
13690
13762
|
# name: "ProjectProfileName",
|
|
13763
|
+
# project_resource_tags: [
|
|
13764
|
+
# {
|
|
13765
|
+
# is_value_editable: false, # required
|
|
13766
|
+
# key: "TagKey", # required
|
|
13767
|
+
# value: "TagValue", # required
|
|
13768
|
+
# },
|
|
13769
|
+
# ],
|
|
13770
|
+
# project_resource_tags_description: "Description",
|
|
13691
13771
|
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
13692
13772
|
# })
|
|
13693
13773
|
#
|
|
13694
13774
|
# @example Response structure
|
|
13695
13775
|
#
|
|
13776
|
+
# resp.allow_custom_project_resource_tags #=> Boolean
|
|
13696
13777
|
# resp.created_at #=> Time
|
|
13697
13778
|
# resp.created_by #=> String
|
|
13698
13779
|
# resp.description #=> String
|
|
@@ -13723,6 +13804,11 @@ module Aws::DataZone
|
|
|
13723
13804
|
# resp.id #=> String
|
|
13724
13805
|
# resp.last_updated_at #=> Time
|
|
13725
13806
|
# resp.name #=> String
|
|
13807
|
+
# resp.project_resource_tags #=> Array
|
|
13808
|
+
# resp.project_resource_tags[0].is_value_editable #=> Boolean
|
|
13809
|
+
# resp.project_resource_tags[0].key #=> String
|
|
13810
|
+
# resp.project_resource_tags[0].value #=> String
|
|
13811
|
+
# resp.project_resource_tags_description #=> String
|
|
13726
13812
|
# resp.status #=> String, one of "ENABLED", "DISABLED"
|
|
13727
13813
|
#
|
|
13728
13814
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectProfile AWS API Documentation
|
|
@@ -14210,7 +14296,7 @@ module Aws::DataZone
|
|
|
14210
14296
|
tracer: tracer
|
|
14211
14297
|
)
|
|
14212
14298
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
14213
|
-
context[:gem_version] = '1.
|
|
14299
|
+
context[:gem_version] = '1.58.0'
|
|
14214
14300
|
Seahorse::Client::Request.new(handlers, context)
|
|
14215
14301
|
end
|
|
14216
14302
|
|
|
@@ -210,6 +210,7 @@ module Aws::DataZone
|
|
|
210
210
|
CreateListingChangeSetOutput = Shapes::StructureShape.new(name: 'CreateListingChangeSetOutput')
|
|
211
211
|
CreateProjectFromProjectProfilePolicyGrantDetail = Shapes::StructureShape.new(name: 'CreateProjectFromProjectProfilePolicyGrantDetail')
|
|
212
212
|
CreateProjectInput = Shapes::StructureShape.new(name: 'CreateProjectInput')
|
|
213
|
+
CreateProjectInputResourceTagsMap = Shapes::MapShape.new(name: 'CreateProjectInputResourceTagsMap')
|
|
213
214
|
CreateProjectMembershipInput = Shapes::StructureShape.new(name: 'CreateProjectMembershipInput')
|
|
214
215
|
CreateProjectMembershipOutput = Shapes::StructureShape.new(name: 'CreateProjectMembershipOutput')
|
|
215
216
|
CreateProjectOutput = Shapes::StructureShape.new(name: 'CreateProjectOutput')
|
|
@@ -794,6 +795,7 @@ module Aws::DataZone
|
|
|
794
795
|
ProjectProfileName = Shapes::StringShape.new(name: 'ProjectProfileName')
|
|
795
796
|
ProjectProfileSummaries = Shapes::ListShape.new(name: 'ProjectProfileSummaries')
|
|
796
797
|
ProjectProfileSummary = Shapes::StructureShape.new(name: 'ProjectProfileSummary')
|
|
798
|
+
ProjectResourceTagParameters = Shapes::ListShape.new(name: 'ProjectResourceTagParameters')
|
|
797
799
|
ProjectStatus = Shapes::StringShape.new(name: 'ProjectStatus')
|
|
798
800
|
ProjectSummaries = Shapes::ListShape.new(name: 'ProjectSummaries')
|
|
799
801
|
ProjectSummary = Shapes::StructureShape.new(name: 'ProjectSummary')
|
|
@@ -864,6 +866,10 @@ module Aws::DataZone
|
|
|
864
866
|
Resource = Shapes::StructureShape.new(name: 'Resource')
|
|
865
867
|
ResourceList = Shapes::ListShape.new(name: 'ResourceList')
|
|
866
868
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
869
|
+
ResourceTag = Shapes::StructureShape.new(name: 'ResourceTag')
|
|
870
|
+
ResourceTagParameter = Shapes::StructureShape.new(name: 'ResourceTagParameter')
|
|
871
|
+
ResourceTagSource = Shapes::StringShape.new(name: 'ResourceTagSource')
|
|
872
|
+
ResourceTags = Shapes::ListShape.new(name: 'ResourceTags')
|
|
867
873
|
Revision = Shapes::StringShape.new(name: 'Revision')
|
|
868
874
|
RevisionInput = Shapes::StringShape.new(name: 'RevisionInput')
|
|
869
875
|
RevokeSubscriptionInput = Shapes::StructureShape.new(name: 'RevokeSubscriptionInput')
|
|
@@ -1086,6 +1092,7 @@ module Aws::DataZone
|
|
|
1086
1092
|
UpdateGroupProfileInput = Shapes::StructureShape.new(name: 'UpdateGroupProfileInput')
|
|
1087
1093
|
UpdateGroupProfileOutput = Shapes::StructureShape.new(name: 'UpdateGroupProfileOutput')
|
|
1088
1094
|
UpdateProjectInput = Shapes::StructureShape.new(name: 'UpdateProjectInput')
|
|
1095
|
+
UpdateProjectInputResourceTagsMap = Shapes::MapShape.new(name: 'UpdateProjectInputResourceTagsMap')
|
|
1089
1096
|
UpdateProjectOutput = Shapes::StructureShape.new(name: 'UpdateProjectOutput')
|
|
1090
1097
|
UpdateProjectProfileInput = Shapes::StructureShape.new(name: 'UpdateProjectProfileInput')
|
|
1091
1098
|
UpdateProjectProfileOutput = Shapes::StructureShape.new(name: 'UpdateProjectProfileOutput')
|
|
@@ -2123,9 +2130,13 @@ module Aws::DataZone
|
|
|
2123
2130
|
CreateProjectInput.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTerms, location_name: "glossaryTerms"))
|
|
2124
2131
|
CreateProjectInput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectName, required: true, location_name: "name"))
|
|
2125
2132
|
CreateProjectInput.add_member(:project_profile_id, Shapes::ShapeRef.new(shape: ProjectProfileId, location_name: "projectProfileId"))
|
|
2133
|
+
CreateProjectInput.add_member(:resource_tags, Shapes::ShapeRef.new(shape: CreateProjectInputResourceTagsMap, location_name: "resourceTags"))
|
|
2126
2134
|
CreateProjectInput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: EnvironmentConfigurationUserParametersList, location_name: "userParameters"))
|
|
2127
2135
|
CreateProjectInput.struct_class = Types::CreateProjectInput
|
|
2128
2136
|
|
|
2137
|
+
CreateProjectInputResourceTagsMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
|
2138
|
+
CreateProjectInputResourceTagsMap.value = Shapes::ShapeRef.new(shape: TagValue)
|
|
2139
|
+
|
|
2129
2140
|
CreateProjectMembershipInput.add_member(:designation, Shapes::ShapeRef.new(shape: UserDesignation, required: true, location_name: "designation"))
|
|
2130
2141
|
CreateProjectMembershipInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
2131
2142
|
CreateProjectMembershipInput.add_member(:member, Shapes::ShapeRef.new(shape: Member, required: true, location_name: "member"))
|
|
@@ -2147,20 +2158,25 @@ module Aws::DataZone
|
|
|
2147
2158
|
CreateProjectOutput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectName, required: true, location_name: "name"))
|
|
2148
2159
|
CreateProjectOutput.add_member(:project_profile_id, Shapes::ShapeRef.new(shape: ProjectProfileId, location_name: "projectProfileId"))
|
|
2149
2160
|
CreateProjectOutput.add_member(:project_status, Shapes::ShapeRef.new(shape: ProjectStatus, location_name: "projectStatus"))
|
|
2161
|
+
CreateProjectOutput.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTags, location_name: "resourceTags"))
|
|
2150
2162
|
CreateProjectOutput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: EnvironmentConfigurationUserParametersList, location_name: "userParameters"))
|
|
2151
2163
|
CreateProjectOutput.struct_class = Types::CreateProjectOutput
|
|
2152
2164
|
|
|
2153
2165
|
CreateProjectPolicyGrantDetail.add_member(:include_child_domain_units, Shapes::ShapeRef.new(shape: Boolean, location_name: "includeChildDomainUnits"))
|
|
2154
2166
|
CreateProjectPolicyGrantDetail.struct_class = Types::CreateProjectPolicyGrantDetail
|
|
2155
2167
|
|
|
2168
|
+
CreateProjectProfileInput.add_member(:allow_custom_project_resource_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "allowCustomProjectResourceTags"))
|
|
2156
2169
|
CreateProjectProfileInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
2157
2170
|
CreateProjectProfileInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
2158
2171
|
CreateProjectProfileInput.add_member(:domain_unit_identifier, Shapes::ShapeRef.new(shape: DomainUnitId, location_name: "domainUnitIdentifier"))
|
|
2159
2172
|
CreateProjectProfileInput.add_member(:environment_configurations, Shapes::ShapeRef.new(shape: EnvironmentConfigurationsList, location_name: "environmentConfigurations"))
|
|
2160
2173
|
CreateProjectProfileInput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectProfileName, required: true, location_name: "name"))
|
|
2174
|
+
CreateProjectProfileInput.add_member(:project_resource_tags, Shapes::ShapeRef.new(shape: ProjectResourceTagParameters, location_name: "projectResourceTags"))
|
|
2175
|
+
CreateProjectProfileInput.add_member(:project_resource_tags_description, Shapes::ShapeRef.new(shape: Description, location_name: "projectResourceTagsDescription"))
|
|
2161
2176
|
CreateProjectProfileInput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
|
2162
2177
|
CreateProjectProfileInput.struct_class = Types::CreateProjectProfileInput
|
|
2163
2178
|
|
|
2179
|
+
CreateProjectProfileOutput.add_member(:allow_custom_project_resource_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "allowCustomProjectResourceTags"))
|
|
2164
2180
|
CreateProjectProfileOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
2165
2181
|
CreateProjectProfileOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
|
|
2166
2182
|
CreateProjectProfileOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
@@ -2170,6 +2186,8 @@ module Aws::DataZone
|
|
|
2170
2186
|
CreateProjectProfileOutput.add_member(:id, Shapes::ShapeRef.new(shape: ProjectProfileId, required: true, location_name: "id"))
|
|
2171
2187
|
CreateProjectProfileOutput.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastUpdatedAt"))
|
|
2172
2188
|
CreateProjectProfileOutput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectProfileName, required: true, location_name: "name"))
|
|
2189
|
+
CreateProjectProfileOutput.add_member(:project_resource_tags, Shapes::ShapeRef.new(shape: ProjectResourceTagParameters, location_name: "projectResourceTags"))
|
|
2190
|
+
CreateProjectProfileOutput.add_member(:project_resource_tags_description, Shapes::ShapeRef.new(shape: Description, location_name: "projectResourceTagsDescription"))
|
|
2173
2191
|
CreateProjectProfileOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
|
2174
2192
|
CreateProjectProfileOutput.struct_class = Types::CreateProjectProfileOutput
|
|
2175
2193
|
|
|
@@ -3428,6 +3446,7 @@ module Aws::DataZone
|
|
|
3428
3446
|
GetProjectOutput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectName, required: true, location_name: "name"))
|
|
3429
3447
|
GetProjectOutput.add_member(:project_profile_id, Shapes::ShapeRef.new(shape: ProjectProfileId, location_name: "projectProfileId"))
|
|
3430
3448
|
GetProjectOutput.add_member(:project_status, Shapes::ShapeRef.new(shape: ProjectStatus, location_name: "projectStatus"))
|
|
3449
|
+
GetProjectOutput.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTags, location_name: "resourceTags"))
|
|
3431
3450
|
GetProjectOutput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: EnvironmentConfigurationUserParametersList, location_name: "userParameters"))
|
|
3432
3451
|
GetProjectOutput.struct_class = Types::GetProjectOutput
|
|
3433
3452
|
|
|
@@ -3435,6 +3454,7 @@ module Aws::DataZone
|
|
|
3435
3454
|
GetProjectProfileInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ProjectProfileId, required: true, location: "uri", location_name: "identifier"))
|
|
3436
3455
|
GetProjectProfileInput.struct_class = Types::GetProjectProfileInput
|
|
3437
3456
|
|
|
3457
|
+
GetProjectProfileOutput.add_member(:allow_custom_project_resource_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "allowCustomProjectResourceTags"))
|
|
3438
3458
|
GetProjectProfileOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
3439
3459
|
GetProjectProfileOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
|
|
3440
3460
|
GetProjectProfileOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
@@ -3444,6 +3464,8 @@ module Aws::DataZone
|
|
|
3444
3464
|
GetProjectProfileOutput.add_member(:id, Shapes::ShapeRef.new(shape: ProjectProfileId, required: true, location_name: "id"))
|
|
3445
3465
|
GetProjectProfileOutput.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastUpdatedAt"))
|
|
3446
3466
|
GetProjectProfileOutput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectProfileName, required: true, location_name: "name"))
|
|
3467
|
+
GetProjectProfileOutput.add_member(:project_resource_tags, Shapes::ShapeRef.new(shape: ProjectResourceTagParameters, location_name: "projectResourceTags"))
|
|
3468
|
+
GetProjectProfileOutput.add_member(:project_resource_tags_description, Shapes::ShapeRef.new(shape: Description, location_name: "projectResourceTagsDescription"))
|
|
3447
3469
|
GetProjectProfileOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
|
3448
3470
|
GetProjectProfileOutput.struct_class = Types::GetProjectProfileOutput
|
|
3449
3471
|
|
|
@@ -4383,15 +4405,12 @@ module Aws::DataZone
|
|
|
4383
4405
|
MetadataMap.value = Shapes::ShapeRef.new(shape: String)
|
|
4384
4406
|
|
|
4385
4407
|
MlflowPropertiesInput.add_member(:tracking_server_arn, Shapes::ShapeRef.new(shape: String, location_name: "trackingServerArn"))
|
|
4386
|
-
MlflowPropertiesInput.add_member(:tracking_server_name, Shapes::ShapeRef.new(shape: String, location_name: "trackingServerName"))
|
|
4387
4408
|
MlflowPropertiesInput.struct_class = Types::MlflowPropertiesInput
|
|
4388
4409
|
|
|
4389
4410
|
MlflowPropertiesOutput.add_member(:tracking_server_arn, Shapes::ShapeRef.new(shape: String, location_name: "trackingServerArn"))
|
|
4390
|
-
MlflowPropertiesOutput.add_member(:tracking_server_name, Shapes::ShapeRef.new(shape: String, location_name: "trackingServerName"))
|
|
4391
4411
|
MlflowPropertiesOutput.struct_class = Types::MlflowPropertiesOutput
|
|
4392
4412
|
|
|
4393
4413
|
MlflowPropertiesPatch.add_member(:tracking_server_arn, Shapes::ShapeRef.new(shape: String, location_name: "trackingServerArn"))
|
|
4394
|
-
MlflowPropertiesPatch.add_member(:tracking_server_name, Shapes::ShapeRef.new(shape: String, location_name: "trackingServerName"))
|
|
4395
4414
|
MlflowPropertiesPatch.struct_class = Types::MlflowPropertiesPatch
|
|
4396
4415
|
|
|
4397
4416
|
Model.add_member(:smithy, Shapes::ShapeRef.new(shape: Smithy, location_name: "smithy"))
|
|
@@ -4631,6 +4650,8 @@ module Aws::DataZone
|
|
|
4631
4650
|
ProjectProfileSummary.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
|
4632
4651
|
ProjectProfileSummary.struct_class = Types::ProjectProfileSummary
|
|
4633
4652
|
|
|
4653
|
+
ProjectResourceTagParameters.member = Shapes::ShapeRef.new(shape: ResourceTagParameter)
|
|
4654
|
+
|
|
4634
4655
|
ProjectSummaries.member = Shapes::ShapeRef.new(shape: ProjectSummary)
|
|
4635
4656
|
|
|
4636
4657
|
ProjectSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
@@ -4880,6 +4901,18 @@ module Aws::DataZone
|
|
|
4880
4901
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
|
|
4881
4902
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
4882
4903
|
|
|
4904
|
+
ResourceTag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "key"))
|
|
4905
|
+
ResourceTag.add_member(:source, Shapes::ShapeRef.new(shape: ResourceTagSource, required: true, location_name: "source"))
|
|
4906
|
+
ResourceTag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "value"))
|
|
4907
|
+
ResourceTag.struct_class = Types::ResourceTag
|
|
4908
|
+
|
|
4909
|
+
ResourceTagParameter.add_member(:is_value_editable, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isValueEditable"))
|
|
4910
|
+
ResourceTagParameter.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "key"))
|
|
4911
|
+
ResourceTagParameter.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "value"))
|
|
4912
|
+
ResourceTagParameter.struct_class = Types::ResourceTagParameter
|
|
4913
|
+
|
|
4914
|
+
ResourceTags.member = Shapes::ShapeRef.new(shape: ResourceTag)
|
|
4915
|
+
|
|
4883
4916
|
RevokeSubscriptionInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
4884
4917
|
RevokeSubscriptionInput.add_member(:identifier, Shapes::ShapeRef.new(shape: SubscriptionId, required: true, location: "uri", location_name: "identifier"))
|
|
4885
4918
|
RevokeSubscriptionInput.add_member(:retain_permissions, Shapes::ShapeRef.new(shape: Boolean, location_name: "retainPermissions"))
|
|
@@ -5776,9 +5809,13 @@ module Aws::DataZone
|
|
|
5776
5809
|
UpdateProjectInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ProjectId, required: true, location: "uri", location_name: "identifier"))
|
|
5777
5810
|
UpdateProjectInput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectName, location_name: "name"))
|
|
5778
5811
|
UpdateProjectInput.add_member(:project_profile_version, Shapes::ShapeRef.new(shape: String, location_name: "projectProfileVersion"))
|
|
5812
|
+
UpdateProjectInput.add_member(:resource_tags, Shapes::ShapeRef.new(shape: UpdateProjectInputResourceTagsMap, location_name: "resourceTags"))
|
|
5779
5813
|
UpdateProjectInput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: EnvironmentConfigurationUserParametersList, location_name: "userParameters"))
|
|
5780
5814
|
UpdateProjectInput.struct_class = Types::UpdateProjectInput
|
|
5781
5815
|
|
|
5816
|
+
UpdateProjectInputResourceTagsMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
|
5817
|
+
UpdateProjectInputResourceTagsMap.value = Shapes::ShapeRef.new(shape: TagValue)
|
|
5818
|
+
|
|
5782
5819
|
UpdateProjectOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
5783
5820
|
UpdateProjectOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
|
|
5784
5821
|
UpdateProjectOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
@@ -5792,18 +5829,23 @@ module Aws::DataZone
|
|
|
5792
5829
|
UpdateProjectOutput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectName, required: true, location_name: "name"))
|
|
5793
5830
|
UpdateProjectOutput.add_member(:project_profile_id, Shapes::ShapeRef.new(shape: ProjectProfileId, location_name: "projectProfileId"))
|
|
5794
5831
|
UpdateProjectOutput.add_member(:project_status, Shapes::ShapeRef.new(shape: ProjectStatus, location_name: "projectStatus"))
|
|
5832
|
+
UpdateProjectOutput.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTags, location_name: "resourceTags"))
|
|
5795
5833
|
UpdateProjectOutput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: EnvironmentConfigurationUserParametersList, location_name: "userParameters"))
|
|
5796
5834
|
UpdateProjectOutput.struct_class = Types::UpdateProjectOutput
|
|
5797
5835
|
|
|
5836
|
+
UpdateProjectProfileInput.add_member(:allow_custom_project_resource_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "allowCustomProjectResourceTags"))
|
|
5798
5837
|
UpdateProjectProfileInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
5799
5838
|
UpdateProjectProfileInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
|
|
5800
5839
|
UpdateProjectProfileInput.add_member(:domain_unit_identifier, Shapes::ShapeRef.new(shape: DomainUnitId, location_name: "domainUnitIdentifier"))
|
|
5801
5840
|
UpdateProjectProfileInput.add_member(:environment_configurations, Shapes::ShapeRef.new(shape: EnvironmentConfigurationsList, location_name: "environmentConfigurations"))
|
|
5802
5841
|
UpdateProjectProfileInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ProjectProfileId, required: true, location: "uri", location_name: "identifier"))
|
|
5803
5842
|
UpdateProjectProfileInput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectProfileName, location_name: "name"))
|
|
5843
|
+
UpdateProjectProfileInput.add_member(:project_resource_tags, Shapes::ShapeRef.new(shape: ProjectResourceTagParameters, location_name: "projectResourceTags"))
|
|
5844
|
+
UpdateProjectProfileInput.add_member(:project_resource_tags_description, Shapes::ShapeRef.new(shape: Description, location_name: "projectResourceTagsDescription"))
|
|
5804
5845
|
UpdateProjectProfileInput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
|
5805
5846
|
UpdateProjectProfileInput.struct_class = Types::UpdateProjectProfileInput
|
|
5806
5847
|
|
|
5848
|
+
UpdateProjectProfileOutput.add_member(:allow_custom_project_resource_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "allowCustomProjectResourceTags"))
|
|
5807
5849
|
UpdateProjectProfileOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
|
|
5808
5850
|
UpdateProjectProfileOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
|
|
5809
5851
|
UpdateProjectProfileOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
@@ -5813,6 +5855,8 @@ module Aws::DataZone
|
|
|
5813
5855
|
UpdateProjectProfileOutput.add_member(:id, Shapes::ShapeRef.new(shape: ProjectProfileId, required: true, location_name: "id"))
|
|
5814
5856
|
UpdateProjectProfileOutput.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastUpdatedAt"))
|
|
5815
5857
|
UpdateProjectProfileOutput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectProfileName, required: true, location_name: "name"))
|
|
5858
|
+
UpdateProjectProfileOutput.add_member(:project_resource_tags, Shapes::ShapeRef.new(shape: ProjectResourceTagParameters, location_name: "projectResourceTags"))
|
|
5859
|
+
UpdateProjectProfileOutput.add_member(:project_resource_tags_description, Shapes::ShapeRef.new(shape: Description, location_name: "projectResourceTagsDescription"))
|
|
5816
5860
|
UpdateProjectProfileOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
|
5817
5861
|
UpdateProjectProfileOutput.struct_class = Types::UpdateProjectProfileOutput
|
|
5818
5862
|
|
|
@@ -4541,6 +4541,10 @@ module Aws::DataZone
|
|
|
4541
4541
|
# The ID of the project profile.
|
|
4542
4542
|
# @return [String]
|
|
4543
4543
|
#
|
|
4544
|
+
# @!attribute [rw] resource_tags
|
|
4545
|
+
# The resource tags of the project.
|
|
4546
|
+
# @return [Hash<String,String>]
|
|
4547
|
+
#
|
|
4544
4548
|
# @!attribute [rw] user_parameters
|
|
4545
4549
|
# The user parameters of the project.
|
|
4546
4550
|
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
|
@@ -4554,6 +4558,7 @@ module Aws::DataZone
|
|
|
4554
4558
|
:glossary_terms,
|
|
4555
4559
|
:name,
|
|
4556
4560
|
:project_profile_id,
|
|
4561
|
+
:resource_tags,
|
|
4557
4562
|
:user_parameters)
|
|
4558
4563
|
SENSITIVE = [:description, :name]
|
|
4559
4564
|
include Aws::Structure
|
|
@@ -4645,6 +4650,10 @@ module Aws::DataZone
|
|
|
4645
4650
|
# The status of the Amazon DataZone project that was created.
|
|
4646
4651
|
# @return [String]
|
|
4647
4652
|
#
|
|
4653
|
+
# @!attribute [rw] resource_tags
|
|
4654
|
+
# The resource tags of the project.
|
|
4655
|
+
# @return [Array<Types::ResourceTag>]
|
|
4656
|
+
#
|
|
4648
4657
|
# @!attribute [rw] user_parameters
|
|
4649
4658
|
# The user parameters of the project.
|
|
4650
4659
|
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
|
@@ -4665,6 +4674,7 @@ module Aws::DataZone
|
|
|
4665
4674
|
:name,
|
|
4666
4675
|
:project_profile_id,
|
|
4667
4676
|
:project_status,
|
|
4677
|
+
:resource_tags,
|
|
4668
4678
|
:user_parameters)
|
|
4669
4679
|
SENSITIVE = [:description, :name]
|
|
4670
4680
|
include Aws::Structure
|
|
@@ -4684,6 +4694,10 @@ module Aws::DataZone
|
|
|
4684
4694
|
include Aws::Structure
|
|
4685
4695
|
end
|
|
4686
4696
|
|
|
4697
|
+
# @!attribute [rw] allow_custom_project_resource_tags
|
|
4698
|
+
# Specifies whether custom project resource tags are supported.
|
|
4699
|
+
# @return [Boolean]
|
|
4700
|
+
#
|
|
4687
4701
|
# @!attribute [rw] description
|
|
4688
4702
|
# A description of a project profile.
|
|
4689
4703
|
# @return [String]
|
|
@@ -4704,6 +4718,15 @@ module Aws::DataZone
|
|
|
4704
4718
|
# Project profile name.
|
|
4705
4719
|
# @return [String]
|
|
4706
4720
|
#
|
|
4721
|
+
# @!attribute [rw] project_resource_tags
|
|
4722
|
+
# The resource tags of the project profile.
|
|
4723
|
+
# @return [Array<Types::ResourceTagParameter>]
|
|
4724
|
+
#
|
|
4725
|
+
# @!attribute [rw] project_resource_tags_description
|
|
4726
|
+
# Field viewable through the UI that provides a project user with the
|
|
4727
|
+
# allowed resource tag specifications.
|
|
4728
|
+
# @return [String]
|
|
4729
|
+
#
|
|
4707
4730
|
# @!attribute [rw] status
|
|
4708
4731
|
# Project profile status.
|
|
4709
4732
|
# @return [String]
|
|
@@ -4711,16 +4734,23 @@ module Aws::DataZone
|
|
|
4711
4734
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectProfileInput AWS API Documentation
|
|
4712
4735
|
#
|
|
4713
4736
|
class CreateProjectProfileInput < Struct.new(
|
|
4737
|
+
:allow_custom_project_resource_tags,
|
|
4714
4738
|
:description,
|
|
4715
4739
|
:domain_identifier,
|
|
4716
4740
|
:domain_unit_identifier,
|
|
4717
4741
|
:environment_configurations,
|
|
4718
4742
|
:name,
|
|
4743
|
+
:project_resource_tags,
|
|
4744
|
+
:project_resource_tags_description,
|
|
4719
4745
|
:status)
|
|
4720
|
-
SENSITIVE = [:description, :name]
|
|
4746
|
+
SENSITIVE = [:description, :name, :project_resource_tags_description]
|
|
4721
4747
|
include Aws::Structure
|
|
4722
4748
|
end
|
|
4723
4749
|
|
|
4750
|
+
# @!attribute [rw] allow_custom_project_resource_tags
|
|
4751
|
+
# Specifies whether custom project resource tags are supported.
|
|
4752
|
+
# @return [Boolean]
|
|
4753
|
+
#
|
|
4724
4754
|
# @!attribute [rw] created_at
|
|
4725
4755
|
# A timestamp at which a project profile is created.
|
|
4726
4756
|
# @return [Time]
|
|
@@ -4757,6 +4787,15 @@ module Aws::DataZone
|
|
|
4757
4787
|
# Project profile name.
|
|
4758
4788
|
# @return [String]
|
|
4759
4789
|
#
|
|
4790
|
+
# @!attribute [rw] project_resource_tags
|
|
4791
|
+
# The resource tags of the project profile.
|
|
4792
|
+
# @return [Array<Types::ResourceTagParameter>]
|
|
4793
|
+
#
|
|
4794
|
+
# @!attribute [rw] project_resource_tags_description
|
|
4795
|
+
# Field viewable through the UI that provides a project user with the
|
|
4796
|
+
# allowed resource tag specifications.
|
|
4797
|
+
# @return [String]
|
|
4798
|
+
#
|
|
4760
4799
|
# @!attribute [rw] status
|
|
4761
4800
|
# Project profile status.
|
|
4762
4801
|
# @return [String]
|
|
@@ -4764,6 +4803,7 @@ module Aws::DataZone
|
|
|
4764
4803
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectProfileOutput AWS API Documentation
|
|
4765
4804
|
#
|
|
4766
4805
|
class CreateProjectProfileOutput < Struct.new(
|
|
4806
|
+
:allow_custom_project_resource_tags,
|
|
4767
4807
|
:created_at,
|
|
4768
4808
|
:created_by,
|
|
4769
4809
|
:description,
|
|
@@ -4773,8 +4813,10 @@ module Aws::DataZone
|
|
|
4773
4813
|
:id,
|
|
4774
4814
|
:last_updated_at,
|
|
4775
4815
|
:name,
|
|
4816
|
+
:project_resource_tags,
|
|
4817
|
+
:project_resource_tags_description,
|
|
4776
4818
|
:status)
|
|
4777
|
-
SENSITIVE = [:description, :name]
|
|
4819
|
+
SENSITIVE = [:description, :name, :project_resource_tags_description]
|
|
4778
4820
|
include Aws::Structure
|
|
4779
4821
|
end
|
|
4780
4822
|
|
|
@@ -10304,6 +10346,10 @@ module Aws::DataZone
|
|
|
10304
10346
|
# The status of the project.
|
|
10305
10347
|
# @return [String]
|
|
10306
10348
|
#
|
|
10349
|
+
# @!attribute [rw] resource_tags
|
|
10350
|
+
# The resource tags of the project.
|
|
10351
|
+
# @return [Array<Types::ResourceTag>]
|
|
10352
|
+
#
|
|
10307
10353
|
# @!attribute [rw] user_parameters
|
|
10308
10354
|
# The user parameters of a project.
|
|
10309
10355
|
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
|
@@ -10324,6 +10370,7 @@ module Aws::DataZone
|
|
|
10324
10370
|
:name,
|
|
10325
10371
|
:project_profile_id,
|
|
10326
10372
|
:project_status,
|
|
10373
|
+
:resource_tags,
|
|
10327
10374
|
:user_parameters)
|
|
10328
10375
|
SENSITIVE = [:description, :name]
|
|
10329
10376
|
include Aws::Structure
|
|
@@ -10346,6 +10393,10 @@ module Aws::DataZone
|
|
|
10346
10393
|
include Aws::Structure
|
|
10347
10394
|
end
|
|
10348
10395
|
|
|
10396
|
+
# @!attribute [rw] allow_custom_project_resource_tags
|
|
10397
|
+
# Specifies whether custom project resource tags are supported.
|
|
10398
|
+
# @return [Boolean]
|
|
10399
|
+
#
|
|
10349
10400
|
# @!attribute [rw] created_at
|
|
10350
10401
|
# The timestamp of when the project profile was created.
|
|
10351
10402
|
# @return [Time]
|
|
@@ -10382,6 +10433,15 @@ module Aws::DataZone
|
|
|
10382
10433
|
# The name of the project profile.
|
|
10383
10434
|
# @return [String]
|
|
10384
10435
|
#
|
|
10436
|
+
# @!attribute [rw] project_resource_tags
|
|
10437
|
+
# The resource tags of the project profile.
|
|
10438
|
+
# @return [Array<Types::ResourceTagParameter>]
|
|
10439
|
+
#
|
|
10440
|
+
# @!attribute [rw] project_resource_tags_description
|
|
10441
|
+
# Field viewable through the UI that provides a project user with the
|
|
10442
|
+
# allowed resource tag specifications.
|
|
10443
|
+
# @return [String]
|
|
10444
|
+
#
|
|
10385
10445
|
# @!attribute [rw] status
|
|
10386
10446
|
# The status of the project profile.
|
|
10387
10447
|
# @return [String]
|
|
@@ -10389,6 +10449,7 @@ module Aws::DataZone
|
|
|
10389
10449
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectProfileOutput AWS API Documentation
|
|
10390
10450
|
#
|
|
10391
10451
|
class GetProjectProfileOutput < Struct.new(
|
|
10452
|
+
:allow_custom_project_resource_tags,
|
|
10392
10453
|
:created_at,
|
|
10393
10454
|
:created_by,
|
|
10394
10455
|
:description,
|
|
@@ -10398,8 +10459,10 @@ module Aws::DataZone
|
|
|
10398
10459
|
:id,
|
|
10399
10460
|
:last_updated_at,
|
|
10400
10461
|
:name,
|
|
10462
|
+
:project_resource_tags,
|
|
10463
|
+
:project_resource_tags_description,
|
|
10401
10464
|
:status)
|
|
10402
|
-
SENSITIVE = [:description, :name]
|
|
10465
|
+
SENSITIVE = [:description, :name, :project_resource_tags_description]
|
|
10403
10466
|
include Aws::Structure
|
|
10404
10467
|
end
|
|
10405
10468
|
|
|
@@ -15049,16 +15112,10 @@ module Aws::DataZone
|
|
|
15049
15112
|
# connection.
|
|
15050
15113
|
# @return [String]
|
|
15051
15114
|
#
|
|
15052
|
-
# @!attribute [rw] tracking_server_name
|
|
15053
|
-
# The name of the tracking server as part of the MLflow properties of
|
|
15054
|
-
# a connection.
|
|
15055
|
-
# @return [String]
|
|
15056
|
-
#
|
|
15057
15115
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MlflowPropertiesInput AWS API Documentation
|
|
15058
15116
|
#
|
|
15059
15117
|
class MlflowPropertiesInput < Struct.new(
|
|
15060
|
-
:tracking_server_arn
|
|
15061
|
-
:tracking_server_name)
|
|
15118
|
+
:tracking_server_arn)
|
|
15062
15119
|
SENSITIVE = []
|
|
15063
15120
|
include Aws::Structure
|
|
15064
15121
|
end
|
|
@@ -15070,16 +15127,10 @@ module Aws::DataZone
|
|
|
15070
15127
|
# connection.
|
|
15071
15128
|
# @return [String]
|
|
15072
15129
|
#
|
|
15073
|
-
# @!attribute [rw] tracking_server_name
|
|
15074
|
-
# The name of the tracking server as part of the MLflow properties of
|
|
15075
|
-
# a connection.
|
|
15076
|
-
# @return [String]
|
|
15077
|
-
#
|
|
15078
15130
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MlflowPropertiesOutput AWS API Documentation
|
|
15079
15131
|
#
|
|
15080
15132
|
class MlflowPropertiesOutput < Struct.new(
|
|
15081
|
-
:tracking_server_arn
|
|
15082
|
-
:tracking_server_name)
|
|
15133
|
+
:tracking_server_arn)
|
|
15083
15134
|
SENSITIVE = []
|
|
15084
15135
|
include Aws::Structure
|
|
15085
15136
|
end
|
|
@@ -15091,16 +15142,10 @@ module Aws::DataZone
|
|
|
15091
15142
|
# connection.
|
|
15092
15143
|
# @return [String]
|
|
15093
15144
|
#
|
|
15094
|
-
# @!attribute [rw] tracking_server_name
|
|
15095
|
-
# The name of the tracking server as part of the MLflow properties of
|
|
15096
|
-
# a connection.
|
|
15097
|
-
# @return [String]
|
|
15098
|
-
#
|
|
15099
15145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MlflowPropertiesPatch AWS API Documentation
|
|
15100
15146
|
#
|
|
15101
15147
|
class MlflowPropertiesPatch < Struct.new(
|
|
15102
|
-
:tracking_server_arn
|
|
15103
|
-
:tracking_server_name)
|
|
15148
|
+
:tracking_server_arn)
|
|
15104
15149
|
SENSITIVE = []
|
|
15105
15150
|
include Aws::Structure
|
|
15106
15151
|
end
|
|
@@ -17113,6 +17158,55 @@ module Aws::DataZone
|
|
|
17113
17158
|
include Aws::Structure
|
|
17114
17159
|
end
|
|
17115
17160
|
|
|
17161
|
+
# The resource tag of the project.
|
|
17162
|
+
#
|
|
17163
|
+
# @!attribute [rw] key
|
|
17164
|
+
# The key of the resource tag of the project.
|
|
17165
|
+
# @return [String]
|
|
17166
|
+
#
|
|
17167
|
+
# @!attribute [rw] source
|
|
17168
|
+
# The source of the resource tag of the project.
|
|
17169
|
+
# @return [String]
|
|
17170
|
+
#
|
|
17171
|
+
# @!attribute [rw] value
|
|
17172
|
+
# The value of the resource tag of the project.
|
|
17173
|
+
# @return [String]
|
|
17174
|
+
#
|
|
17175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ResourceTag AWS API Documentation
|
|
17176
|
+
#
|
|
17177
|
+
class ResourceTag < Struct.new(
|
|
17178
|
+
:key,
|
|
17179
|
+
:source,
|
|
17180
|
+
:value)
|
|
17181
|
+
SENSITIVE = []
|
|
17182
|
+
include Aws::Structure
|
|
17183
|
+
end
|
|
17184
|
+
|
|
17185
|
+
# The resource tag parameter of the project profile.
|
|
17186
|
+
#
|
|
17187
|
+
# @!attribute [rw] is_value_editable
|
|
17188
|
+
# Specifies whether the value of the resource tag parameter of the
|
|
17189
|
+
# project profile is editable at the project level.
|
|
17190
|
+
# @return [Boolean]
|
|
17191
|
+
#
|
|
17192
|
+
# @!attribute [rw] key
|
|
17193
|
+
# The key of the resource tag parameter of the project profile.
|
|
17194
|
+
# @return [String]
|
|
17195
|
+
#
|
|
17196
|
+
# @!attribute [rw] value
|
|
17197
|
+
# The value of the resource tag parameter key of the project profile.
|
|
17198
|
+
# @return [String]
|
|
17199
|
+
#
|
|
17200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ResourceTagParameter AWS API Documentation
|
|
17201
|
+
#
|
|
17202
|
+
class ResourceTagParameter < Struct.new(
|
|
17203
|
+
:is_value_editable,
|
|
17204
|
+
:key,
|
|
17205
|
+
:value)
|
|
17206
|
+
SENSITIVE = []
|
|
17207
|
+
include Aws::Structure
|
|
17208
|
+
end
|
|
17209
|
+
|
|
17116
17210
|
# @!attribute [rw] domain_identifier
|
|
17117
17211
|
# The identifier of the Amazon DataZone domain where you want to
|
|
17118
17212
|
# revoke a subscription.
|
|
@@ -21093,6 +21187,10 @@ module Aws::DataZone
|
|
|
21093
21187
|
# `latest`.
|
|
21094
21188
|
# @return [String]
|
|
21095
21189
|
#
|
|
21190
|
+
# @!attribute [rw] resource_tags
|
|
21191
|
+
# The resource tags of the project.
|
|
21192
|
+
# @return [Hash<String,String>]
|
|
21193
|
+
#
|
|
21096
21194
|
# @!attribute [rw] user_parameters
|
|
21097
21195
|
# The user parameters of the project.
|
|
21098
21196
|
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
|
@@ -21108,6 +21206,7 @@ module Aws::DataZone
|
|
|
21108
21206
|
:identifier,
|
|
21109
21207
|
:name,
|
|
21110
21208
|
:project_profile_version,
|
|
21209
|
+
:resource_tags,
|
|
21111
21210
|
:user_parameters)
|
|
21112
21211
|
SENSITIVE = [:description, :name]
|
|
21113
21212
|
include Aws::Structure
|
|
@@ -21167,6 +21266,10 @@ module Aws::DataZone
|
|
|
21167
21266
|
# The status of the project.
|
|
21168
21267
|
# @return [String]
|
|
21169
21268
|
#
|
|
21269
|
+
# @!attribute [rw] resource_tags
|
|
21270
|
+
# The resource tags of the project.
|
|
21271
|
+
# @return [Array<Types::ResourceTag>]
|
|
21272
|
+
#
|
|
21170
21273
|
# @!attribute [rw] user_parameters
|
|
21171
21274
|
# The user parameters of the project.
|
|
21172
21275
|
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
|
@@ -21187,11 +21290,16 @@ module Aws::DataZone
|
|
|
21187
21290
|
:name,
|
|
21188
21291
|
:project_profile_id,
|
|
21189
21292
|
:project_status,
|
|
21293
|
+
:resource_tags,
|
|
21190
21294
|
:user_parameters)
|
|
21191
21295
|
SENSITIVE = [:description, :name]
|
|
21192
21296
|
include Aws::Structure
|
|
21193
21297
|
end
|
|
21194
21298
|
|
|
21299
|
+
# @!attribute [rw] allow_custom_project_resource_tags
|
|
21300
|
+
# Specifies whether custom project resource tags are supported.
|
|
21301
|
+
# @return [Boolean]
|
|
21302
|
+
#
|
|
21195
21303
|
# @!attribute [rw] description
|
|
21196
21304
|
# The description of a project profile.
|
|
21197
21305
|
# @return [String]
|
|
@@ -21216,6 +21324,15 @@ module Aws::DataZone
|
|
|
21216
21324
|
# The name of a project profile.
|
|
21217
21325
|
# @return [String]
|
|
21218
21326
|
#
|
|
21327
|
+
# @!attribute [rw] project_resource_tags
|
|
21328
|
+
# The resource tags of the project profile.
|
|
21329
|
+
# @return [Array<Types::ResourceTagParameter>]
|
|
21330
|
+
#
|
|
21331
|
+
# @!attribute [rw] project_resource_tags_description
|
|
21332
|
+
# Field viewable through the UI that provides a project user with the
|
|
21333
|
+
# allowed resource tag specifications.
|
|
21334
|
+
# @return [String]
|
|
21335
|
+
#
|
|
21219
21336
|
# @!attribute [rw] status
|
|
21220
21337
|
# The status of a project profile.
|
|
21221
21338
|
# @return [String]
|
|
@@ -21223,17 +21340,24 @@ module Aws::DataZone
|
|
|
21223
21340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectProfileInput AWS API Documentation
|
|
21224
21341
|
#
|
|
21225
21342
|
class UpdateProjectProfileInput < Struct.new(
|
|
21343
|
+
:allow_custom_project_resource_tags,
|
|
21226
21344
|
:description,
|
|
21227
21345
|
:domain_identifier,
|
|
21228
21346
|
:domain_unit_identifier,
|
|
21229
21347
|
:environment_configurations,
|
|
21230
21348
|
:identifier,
|
|
21231
21349
|
:name,
|
|
21350
|
+
:project_resource_tags,
|
|
21351
|
+
:project_resource_tags_description,
|
|
21232
21352
|
:status)
|
|
21233
|
-
SENSITIVE = [:description, :name]
|
|
21353
|
+
SENSITIVE = [:description, :name, :project_resource_tags_description]
|
|
21234
21354
|
include Aws::Structure
|
|
21235
21355
|
end
|
|
21236
21356
|
|
|
21357
|
+
# @!attribute [rw] allow_custom_project_resource_tags
|
|
21358
|
+
# Specifies whether custom project resource tags are supported.
|
|
21359
|
+
# @return [Boolean]
|
|
21360
|
+
#
|
|
21237
21361
|
# @!attribute [rw] created_at
|
|
21238
21362
|
# The timestamp at which a project profile is created.
|
|
21239
21363
|
# @return [Time]
|
|
@@ -21270,6 +21394,15 @@ module Aws::DataZone
|
|
|
21270
21394
|
# The name of the project profile.
|
|
21271
21395
|
# @return [String]
|
|
21272
21396
|
#
|
|
21397
|
+
# @!attribute [rw] project_resource_tags
|
|
21398
|
+
# The resource tags of the project profile.
|
|
21399
|
+
# @return [Array<Types::ResourceTagParameter>]
|
|
21400
|
+
#
|
|
21401
|
+
# @!attribute [rw] project_resource_tags_description
|
|
21402
|
+
# Field viewable through the UI that provides a project user with the
|
|
21403
|
+
# allowed resource tag specifications.
|
|
21404
|
+
# @return [String]
|
|
21405
|
+
#
|
|
21273
21406
|
# @!attribute [rw] status
|
|
21274
21407
|
# The status of the project profile.
|
|
21275
21408
|
# @return [String]
|
|
@@ -21277,6 +21410,7 @@ module Aws::DataZone
|
|
|
21277
21410
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectProfileOutput AWS API Documentation
|
|
21278
21411
|
#
|
|
21279
21412
|
class UpdateProjectProfileOutput < Struct.new(
|
|
21413
|
+
:allow_custom_project_resource_tags,
|
|
21280
21414
|
:created_at,
|
|
21281
21415
|
:created_by,
|
|
21282
21416
|
:description,
|
|
@@ -21286,8 +21420,10 @@ module Aws::DataZone
|
|
|
21286
21420
|
:id,
|
|
21287
21421
|
:last_updated_at,
|
|
21288
21422
|
:name,
|
|
21423
|
+
:project_resource_tags,
|
|
21424
|
+
:project_resource_tags_description,
|
|
21289
21425
|
:status)
|
|
21290
|
-
SENSITIVE = [:description, :name]
|
|
21426
|
+
SENSITIVE = [:description, :name, :project_resource_tags_description]
|
|
21291
21427
|
include Aws::Structure
|
|
21292
21428
|
end
|
|
21293
21429
|
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -637,8 +637,7 @@ module Aws
|
|
|
637
637
|
glue_lineage_sync_enabled: bool?
|
|
638
638
|
}?,
|
|
639
639
|
mlflow_properties: {
|
|
640
|
-
tracking_server_arn: ::String
|
|
641
|
-
tracking_server_name: ::String?
|
|
640
|
+
tracking_server_arn: ::String?
|
|
642
641
|
}?,
|
|
643
642
|
redshift_properties: {
|
|
644
643
|
credentials: {
|
|
@@ -1199,6 +1198,7 @@ module Aws
|
|
|
1199
1198
|
def name: () -> ::String
|
|
1200
1199
|
def project_profile_id: () -> ::String
|
|
1201
1200
|
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
|
|
1201
|
+
def resource_tags: () -> ::Array[Types::ResourceTag]
|
|
1202
1202
|
def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
1203
1203
|
end
|
|
1204
1204
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project-instance_method
|
|
@@ -1209,6 +1209,7 @@ module Aws
|
|
|
1209
1209
|
?glossary_terms: Array[::String],
|
|
1210
1210
|
name: ::String,
|
|
1211
1211
|
?project_profile_id: ::String,
|
|
1212
|
+
?resource_tags: Hash[::String, ::String],
|
|
1212
1213
|
?user_parameters: Array[
|
|
1213
1214
|
{
|
|
1214
1215
|
environment_configuration_name: ::String?,
|
|
@@ -1246,6 +1247,7 @@ module Aws
|
|
|
1246
1247
|
|
|
1247
1248
|
interface _CreateProjectProfileResponseSuccess
|
|
1248
1249
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectProfileOutput]
|
|
1250
|
+
def allow_custom_project_resource_tags: () -> bool
|
|
1249
1251
|
def created_at: () -> ::Time
|
|
1250
1252
|
def created_by: () -> ::String
|
|
1251
1253
|
def description: () -> ::String
|
|
@@ -1255,10 +1257,13 @@ module Aws
|
|
|
1255
1257
|
def id: () -> ::String
|
|
1256
1258
|
def last_updated_at: () -> ::Time
|
|
1257
1259
|
def name: () -> ::String
|
|
1260
|
+
def project_resource_tags: () -> ::Array[Types::ResourceTagParameter]
|
|
1261
|
+
def project_resource_tags_description: () -> ::String
|
|
1258
1262
|
def status: () -> ("ENABLED" | "DISABLED")
|
|
1259
1263
|
end
|
|
1260
1264
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project_profile-instance_method
|
|
1261
1265
|
def create_project_profile: (
|
|
1266
|
+
?allow_custom_project_resource_tags: bool,
|
|
1262
1267
|
?description: ::String,
|
|
1263
1268
|
domain_identifier: ::String,
|
|
1264
1269
|
?domain_unit_identifier: ::String,
|
|
@@ -1299,6 +1304,14 @@ module Aws
|
|
|
1299
1304
|
},
|
|
1300
1305
|
],
|
|
1301
1306
|
name: ::String,
|
|
1307
|
+
?project_resource_tags: Array[
|
|
1308
|
+
{
|
|
1309
|
+
is_value_editable: bool,
|
|
1310
|
+
key: ::String,
|
|
1311
|
+
value: ::String
|
|
1312
|
+
},
|
|
1313
|
+
],
|
|
1314
|
+
?project_resource_tags_description: ::String,
|
|
1302
1315
|
?status: ("ENABLED" | "DISABLED")
|
|
1303
1316
|
) -> _CreateProjectProfileResponseSuccess
|
|
1304
1317
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectProfileResponseSuccess
|
|
@@ -2382,6 +2395,7 @@ module Aws
|
|
|
2382
2395
|
def name: () -> ::String
|
|
2383
2396
|
def project_profile_id: () -> ::String
|
|
2384
2397
|
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
|
|
2398
|
+
def resource_tags: () -> ::Array[Types::ResourceTag]
|
|
2385
2399
|
def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
2386
2400
|
end
|
|
2387
2401
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_project-instance_method
|
|
@@ -2393,6 +2407,7 @@ module Aws
|
|
|
2393
2407
|
|
|
2394
2408
|
interface _GetProjectProfileResponseSuccess
|
|
2395
2409
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetProjectProfileOutput]
|
|
2410
|
+
def allow_custom_project_resource_tags: () -> bool
|
|
2396
2411
|
def created_at: () -> ::Time
|
|
2397
2412
|
def created_by: () -> ::String
|
|
2398
2413
|
def description: () -> ::String
|
|
@@ -2402,6 +2417,8 @@ module Aws
|
|
|
2402
2417
|
def id: () -> ::String
|
|
2403
2418
|
def last_updated_at: () -> ::Time
|
|
2404
2419
|
def name: () -> ::String
|
|
2420
|
+
def project_resource_tags: () -> ::Array[Types::ResourceTagParameter]
|
|
2421
|
+
def project_resource_tags_description: () -> ::String
|
|
2405
2422
|
def status: () -> ("ENABLED" | "DISABLED")
|
|
2406
2423
|
end
|
|
2407
2424
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_project_profile-instance_method
|
|
@@ -3700,8 +3717,7 @@ module Aws
|
|
|
3700
3717
|
glue_lineage_sync_enabled: bool?
|
|
3701
3718
|
}?,
|
|
3702
3719
|
mlflow_properties: {
|
|
3703
|
-
tracking_server_arn: ::String
|
|
3704
|
-
tracking_server_name: ::String?
|
|
3720
|
+
tracking_server_arn: ::String?
|
|
3705
3721
|
}?,
|
|
3706
3722
|
redshift_properties: {
|
|
3707
3723
|
credentials: {
|
|
@@ -4107,6 +4123,7 @@ module Aws
|
|
|
4107
4123
|
def name: () -> ::String
|
|
4108
4124
|
def project_profile_id: () -> ::String
|
|
4109
4125
|
def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
|
|
4126
|
+
def resource_tags: () -> ::Array[Types::ResourceTag]
|
|
4110
4127
|
def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
4111
4128
|
end
|
|
4112
4129
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_project-instance_method
|
|
@@ -4127,6 +4144,7 @@ module Aws
|
|
|
4127
4144
|
identifier: ::String,
|
|
4128
4145
|
?name: ::String,
|
|
4129
4146
|
?project_profile_version: ::String,
|
|
4147
|
+
?resource_tags: Hash[::String, ::String],
|
|
4130
4148
|
?user_parameters: Array[
|
|
4131
4149
|
{
|
|
4132
4150
|
environment_configuration_name: ::String?,
|
|
@@ -4149,6 +4167,7 @@ module Aws
|
|
|
4149
4167
|
|
|
4150
4168
|
interface _UpdateProjectProfileResponseSuccess
|
|
4151
4169
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProjectProfileOutput]
|
|
4170
|
+
def allow_custom_project_resource_tags: () -> bool
|
|
4152
4171
|
def created_at: () -> ::Time
|
|
4153
4172
|
def created_by: () -> ::String
|
|
4154
4173
|
def description: () -> ::String
|
|
@@ -4158,10 +4177,13 @@ module Aws
|
|
|
4158
4177
|
def id: () -> ::String
|
|
4159
4178
|
def last_updated_at: () -> ::Time
|
|
4160
4179
|
def name: () -> ::String
|
|
4180
|
+
def project_resource_tags: () -> ::Array[Types::ResourceTagParameter]
|
|
4181
|
+
def project_resource_tags_description: () -> ::String
|
|
4161
4182
|
def status: () -> ("ENABLED" | "DISABLED")
|
|
4162
4183
|
end
|
|
4163
4184
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_project_profile-instance_method
|
|
4164
4185
|
def update_project_profile: (
|
|
4186
|
+
?allow_custom_project_resource_tags: bool,
|
|
4165
4187
|
?description: ::String,
|
|
4166
4188
|
domain_identifier: ::String,
|
|
4167
4189
|
?domain_unit_identifier: ::String,
|
|
@@ -4203,6 +4225,14 @@ module Aws
|
|
|
4203
4225
|
],
|
|
4204
4226
|
identifier: ::String,
|
|
4205
4227
|
?name: ::String,
|
|
4228
|
+
?project_resource_tags: Array[
|
|
4229
|
+
{
|
|
4230
|
+
is_value_editable: bool,
|
|
4231
|
+
key: ::String,
|
|
4232
|
+
value: ::String
|
|
4233
|
+
},
|
|
4234
|
+
],
|
|
4235
|
+
?project_resource_tags_description: ::String,
|
|
4206
4236
|
?status: ("ENABLED" | "DISABLED")
|
|
4207
4237
|
) -> _UpdateProjectProfileResponseSuccess
|
|
4208
4238
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectProfileResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -1223,6 +1223,7 @@ module Aws::DataZone
|
|
|
1223
1223
|
attr_accessor glossary_terms: ::Array[::String]
|
|
1224
1224
|
attr_accessor name: ::String
|
|
1225
1225
|
attr_accessor project_profile_id: ::String
|
|
1226
|
+
attr_accessor resource_tags: ::Hash[::String, ::String]
|
|
1226
1227
|
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
1227
1228
|
SENSITIVE: [:description, :name]
|
|
1228
1229
|
end
|
|
@@ -1252,6 +1253,7 @@ module Aws::DataZone
|
|
|
1252
1253
|
attr_accessor name: ::String
|
|
1253
1254
|
attr_accessor project_profile_id: ::String
|
|
1254
1255
|
attr_accessor project_status: ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
|
|
1256
|
+
attr_accessor resource_tags: ::Array[Types::ResourceTag]
|
|
1255
1257
|
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
1256
1258
|
SENSITIVE: [:description, :name]
|
|
1257
1259
|
end
|
|
@@ -1262,16 +1264,20 @@ module Aws::DataZone
|
|
|
1262
1264
|
end
|
|
1263
1265
|
|
|
1264
1266
|
class CreateProjectProfileInput
|
|
1267
|
+
attr_accessor allow_custom_project_resource_tags: bool
|
|
1265
1268
|
attr_accessor description: ::String
|
|
1266
1269
|
attr_accessor domain_identifier: ::String
|
|
1267
1270
|
attr_accessor domain_unit_identifier: ::String
|
|
1268
1271
|
attr_accessor environment_configurations: ::Array[Types::EnvironmentConfiguration]
|
|
1269
1272
|
attr_accessor name: ::String
|
|
1273
|
+
attr_accessor project_resource_tags: ::Array[Types::ResourceTagParameter]
|
|
1274
|
+
attr_accessor project_resource_tags_description: ::String
|
|
1270
1275
|
attr_accessor status: ("ENABLED" | "DISABLED")
|
|
1271
|
-
SENSITIVE: [:description, :name]
|
|
1276
|
+
SENSITIVE: [:description, :name, :project_resource_tags_description]
|
|
1272
1277
|
end
|
|
1273
1278
|
|
|
1274
1279
|
class CreateProjectProfileOutput
|
|
1280
|
+
attr_accessor allow_custom_project_resource_tags: bool
|
|
1275
1281
|
attr_accessor created_at: ::Time
|
|
1276
1282
|
attr_accessor created_by: ::String
|
|
1277
1283
|
attr_accessor description: ::String
|
|
@@ -1281,8 +1287,10 @@ module Aws::DataZone
|
|
|
1281
1287
|
attr_accessor id: ::String
|
|
1282
1288
|
attr_accessor last_updated_at: ::Time
|
|
1283
1289
|
attr_accessor name: ::String
|
|
1290
|
+
attr_accessor project_resource_tags: ::Array[Types::ResourceTagParameter]
|
|
1291
|
+
attr_accessor project_resource_tags_description: ::String
|
|
1284
1292
|
attr_accessor status: ("ENABLED" | "DISABLED")
|
|
1285
|
-
SENSITIVE: [:description, :name]
|
|
1293
|
+
SENSITIVE: [:description, :name, :project_resource_tags_description]
|
|
1286
1294
|
end
|
|
1287
1295
|
|
|
1288
1296
|
class CreateRuleInput
|
|
@@ -2793,6 +2801,7 @@ module Aws::DataZone
|
|
|
2793
2801
|
attr_accessor name: ::String
|
|
2794
2802
|
attr_accessor project_profile_id: ::String
|
|
2795
2803
|
attr_accessor project_status: ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
|
|
2804
|
+
attr_accessor resource_tags: ::Array[Types::ResourceTag]
|
|
2796
2805
|
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
2797
2806
|
SENSITIVE: [:description, :name]
|
|
2798
2807
|
end
|
|
@@ -2804,6 +2813,7 @@ module Aws::DataZone
|
|
|
2804
2813
|
end
|
|
2805
2814
|
|
|
2806
2815
|
class GetProjectProfileOutput
|
|
2816
|
+
attr_accessor allow_custom_project_resource_tags: bool
|
|
2807
2817
|
attr_accessor created_at: ::Time
|
|
2808
2818
|
attr_accessor created_by: ::String
|
|
2809
2819
|
attr_accessor description: ::String
|
|
@@ -2813,8 +2823,10 @@ module Aws::DataZone
|
|
|
2813
2823
|
attr_accessor id: ::String
|
|
2814
2824
|
attr_accessor last_updated_at: ::Time
|
|
2815
2825
|
attr_accessor name: ::String
|
|
2826
|
+
attr_accessor project_resource_tags: ::Array[Types::ResourceTagParameter]
|
|
2827
|
+
attr_accessor project_resource_tags_description: ::String
|
|
2816
2828
|
attr_accessor status: ("ENABLED" | "DISABLED")
|
|
2817
|
-
SENSITIVE: [:description, :name]
|
|
2829
|
+
SENSITIVE: [:description, :name, :project_resource_tags_description]
|
|
2818
2830
|
end
|
|
2819
2831
|
|
|
2820
2832
|
class GetRuleInput
|
|
@@ -4017,19 +4029,16 @@ module Aws::DataZone
|
|
|
4017
4029
|
|
|
4018
4030
|
class MlflowPropertiesInput
|
|
4019
4031
|
attr_accessor tracking_server_arn: ::String
|
|
4020
|
-
attr_accessor tracking_server_name: ::String
|
|
4021
4032
|
SENSITIVE: []
|
|
4022
4033
|
end
|
|
4023
4034
|
|
|
4024
4035
|
class MlflowPropertiesOutput
|
|
4025
4036
|
attr_accessor tracking_server_arn: ::String
|
|
4026
|
-
attr_accessor tracking_server_name: ::String
|
|
4027
4037
|
SENSITIVE: []
|
|
4028
4038
|
end
|
|
4029
4039
|
|
|
4030
4040
|
class MlflowPropertiesPatch
|
|
4031
4041
|
attr_accessor tracking_server_arn: ::String
|
|
4032
|
-
attr_accessor tracking_server_name: ::String
|
|
4033
4042
|
SENSITIVE: []
|
|
4034
4043
|
end
|
|
4035
4044
|
|
|
@@ -4664,6 +4673,20 @@ module Aws::DataZone
|
|
|
4664
4673
|
SENSITIVE: []
|
|
4665
4674
|
end
|
|
4666
4675
|
|
|
4676
|
+
class ResourceTag
|
|
4677
|
+
attr_accessor key: ::String
|
|
4678
|
+
attr_accessor source: ("PROJECT" | "PROJECT_PROFILE")
|
|
4679
|
+
attr_accessor value: ::String
|
|
4680
|
+
SENSITIVE: []
|
|
4681
|
+
end
|
|
4682
|
+
|
|
4683
|
+
class ResourceTagParameter
|
|
4684
|
+
attr_accessor is_value_editable: bool
|
|
4685
|
+
attr_accessor key: ::String
|
|
4686
|
+
attr_accessor value: ::String
|
|
4687
|
+
SENSITIVE: []
|
|
4688
|
+
end
|
|
4689
|
+
|
|
4667
4690
|
class RevokeSubscriptionInput
|
|
4668
4691
|
attr_accessor domain_identifier: ::String
|
|
4669
4692
|
attr_accessor identifier: ::String
|
|
@@ -5739,6 +5762,7 @@ module Aws::DataZone
|
|
|
5739
5762
|
attr_accessor identifier: ::String
|
|
5740
5763
|
attr_accessor name: ::String
|
|
5741
5764
|
attr_accessor project_profile_version: ::String
|
|
5765
|
+
attr_accessor resource_tags: ::Hash[::String, ::String]
|
|
5742
5766
|
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
5743
5767
|
SENSITIVE: [:description, :name]
|
|
5744
5768
|
end
|
|
@@ -5757,22 +5781,27 @@ module Aws::DataZone
|
|
|
5757
5781
|
attr_accessor name: ::String
|
|
5758
5782
|
attr_accessor project_profile_id: ::String
|
|
5759
5783
|
attr_accessor project_status: ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
|
|
5784
|
+
attr_accessor resource_tags: ::Array[Types::ResourceTag]
|
|
5760
5785
|
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
5761
5786
|
SENSITIVE: [:description, :name]
|
|
5762
5787
|
end
|
|
5763
5788
|
|
|
5764
5789
|
class UpdateProjectProfileInput
|
|
5790
|
+
attr_accessor allow_custom_project_resource_tags: bool
|
|
5765
5791
|
attr_accessor description: ::String
|
|
5766
5792
|
attr_accessor domain_identifier: ::String
|
|
5767
5793
|
attr_accessor domain_unit_identifier: ::String
|
|
5768
5794
|
attr_accessor environment_configurations: ::Array[Types::EnvironmentConfiguration]
|
|
5769
5795
|
attr_accessor identifier: ::String
|
|
5770
5796
|
attr_accessor name: ::String
|
|
5797
|
+
attr_accessor project_resource_tags: ::Array[Types::ResourceTagParameter]
|
|
5798
|
+
attr_accessor project_resource_tags_description: ::String
|
|
5771
5799
|
attr_accessor status: ("ENABLED" | "DISABLED")
|
|
5772
|
-
SENSITIVE: [:description, :name]
|
|
5800
|
+
SENSITIVE: [:description, :name, :project_resource_tags_description]
|
|
5773
5801
|
end
|
|
5774
5802
|
|
|
5775
5803
|
class UpdateProjectProfileOutput
|
|
5804
|
+
attr_accessor allow_custom_project_resource_tags: bool
|
|
5776
5805
|
attr_accessor created_at: ::Time
|
|
5777
5806
|
attr_accessor created_by: ::String
|
|
5778
5807
|
attr_accessor description: ::String
|
|
@@ -5782,8 +5811,10 @@ module Aws::DataZone
|
|
|
5782
5811
|
attr_accessor id: ::String
|
|
5783
5812
|
attr_accessor last_updated_at: ::Time
|
|
5784
5813
|
attr_accessor name: ::String
|
|
5814
|
+
attr_accessor project_resource_tags: ::Array[Types::ResourceTagParameter]
|
|
5815
|
+
attr_accessor project_resource_tags_description: ::String
|
|
5785
5816
|
attr_accessor status: ("ENABLED" | "DISABLED")
|
|
5786
|
-
SENSITIVE: [:description, :name]
|
|
5817
|
+
SENSITIVE: [:description, :name, :project_resource_tags_description]
|
|
5787
5818
|
end
|
|
5788
5819
|
|
|
5789
5820
|
class UpdateRuleInput
|