aws-sdk-datazone 1.56.0 → 1.57.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f00563b3985ee0a61bd74d5ade896a68e3cebb33d2b482dcecf6408e9d404c4b
4
- data.tar.gz: eeb133c98a158e5fad33b85631aa0eae73c95f3f4749abb7dfde0349d3469ba4
3
+ metadata.gz: 6b16930e2dd6b51cd3f05c738b06b10261aa7f0f6301b997b235e8b612509aa6
4
+ data.tar.gz: 8a06048e0d614f26cd7a14e74543922083ae64327d52302a1b0ea81379f2594d
5
5
  SHA512:
6
- metadata.gz: 610b8c481768f85260bd1cb4b04c423cd13e1df3a6fc81d0dca62463e28dfe9c9498eee4f3ea316a6a5962850535e6bd83fc968ff845dad13fe7612c771da395
7
- data.tar.gz: 2aaf7bf633be6df8b81ed3d3693c1d309424debbbc844c98bc747ab0e7406e0a1fee6cb69c11c9f4421ba9b788f5fa3dfee84c3597db005bf71d6fdad115d960
6
+ metadata.gz: 880c092434cbf56a9d8e2280c3e99760112ce41613cdc86e7a92e9ffd794e95fe344ff7fa7721fc7dd00cff529cf6ea9a3e95aad204a6b87d36df1e9b29eaed0
7
+ data.tar.gz: 6e3ed564327f502eb0d860f4baf1dfddcd854d6e8d735f99d23ec5fabe28ce23660c25d8dcead23199eef042e4fa0bf0d71b73006e2c3f42cceef7333cc84d7e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.57.0 (2025-11-05)
5
+ ------------------
6
+
7
+ * Feature - Added support for Project Resource Tags
8
+
4
9
  1.56.0 (2025-10-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.57.0
@@ -3493,6 +3493,9 @@ module Aws::DataZone
3493
3493
  # @option params [String] :project_profile_id
3494
3494
  # The ID of the project profile.
3495
3495
  #
3496
+ # @option params [Hash<String,String>] :resource_tags
3497
+ # The resource tags of the project.
3498
+ #
3496
3499
  # @option params [Array<Types::EnvironmentConfigurationUserParameter>] :user_parameters
3497
3500
  # The user parameters of the project.
3498
3501
  #
@@ -3511,6 +3514,7 @@ module Aws::DataZone
3511
3514
  # * {Types::CreateProjectOutput#name #name} => String
3512
3515
  # * {Types::CreateProjectOutput#project_profile_id #project_profile_id} => String
3513
3516
  # * {Types::CreateProjectOutput#project_status #project_status} => String
3517
+ # * {Types::CreateProjectOutput#resource_tags #resource_tags} => Array&lt;Types::ResourceTag&gt;
3514
3518
  # * {Types::CreateProjectOutput#user_parameters #user_parameters} => Array&lt;Types::EnvironmentConfigurationUserParameter&gt;
3515
3519
  #
3516
3520
  # @example Request syntax with placeholder values
@@ -3522,6 +3526,9 @@ module Aws::DataZone
3522
3526
  # glossary_terms: ["GlossaryTermId"],
3523
3527
  # name: "ProjectName", # required
3524
3528
  # project_profile_id: "ProjectProfileId",
3529
+ # resource_tags: {
3530
+ # "TagKey" => "TagValue",
3531
+ # },
3525
3532
  # user_parameters: [
3526
3533
  # {
3527
3534
  # environment_configuration_name: "EnvironmentConfigurationName",
@@ -3563,6 +3570,10 @@ module Aws::DataZone
3563
3570
  # resp.name #=> String
3564
3571
  # resp.project_profile_id #=> String
3565
3572
  # resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED", "MOVING"
3573
+ # resp.resource_tags #=> Array
3574
+ # resp.resource_tags[0].key #=> String
3575
+ # resp.resource_tags[0].source #=> String, one of "PROJECT", "PROJECT_PROFILE"
3576
+ # resp.resource_tags[0].value #=> String
3566
3577
  # resp.user_parameters #=> Array
3567
3578
  # resp.user_parameters[0].environment_configuration_name #=> String
3568
3579
  # resp.user_parameters[0].environment_id #=> String
@@ -3622,6 +3633,9 @@ module Aws::DataZone
3622
3633
 
3623
3634
  # Creates a project profile.
3624
3635
  #
3636
+ # @option params [Boolean] :allow_custom_project_resource_tags
3637
+ # Specifies whether custom project resource tags are supported.
3638
+ #
3625
3639
  # @option params [String] :description
3626
3640
  # A description of a project profile.
3627
3641
  #
@@ -3637,11 +3651,19 @@ module Aws::DataZone
3637
3651
  # @option params [required, String] :name
3638
3652
  # Project profile name.
3639
3653
  #
3654
+ # @option params [Array<Types::ResourceTagParameter>] :project_resource_tags
3655
+ # The resource tags of the project profile.
3656
+ #
3657
+ # @option params [String] :project_resource_tags_description
3658
+ # Field viewable through the UI that provides a project user with the
3659
+ # allowed resource tag specifications.
3660
+ #
3640
3661
  # @option params [String] :status
3641
3662
  # Project profile status.
3642
3663
  #
3643
3664
  # @return [Types::CreateProjectProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3644
3665
  #
3666
+ # * {Types::CreateProjectProfileOutput#allow_custom_project_resource_tags #allow_custom_project_resource_tags} => Boolean
3645
3667
  # * {Types::CreateProjectProfileOutput#created_at #created_at} => Time
3646
3668
  # * {Types::CreateProjectProfileOutput#created_by #created_by} => String
3647
3669
  # * {Types::CreateProjectProfileOutput#description #description} => String
@@ -3651,11 +3673,14 @@ module Aws::DataZone
3651
3673
  # * {Types::CreateProjectProfileOutput#id #id} => String
3652
3674
  # * {Types::CreateProjectProfileOutput#last_updated_at #last_updated_at} => Time
3653
3675
  # * {Types::CreateProjectProfileOutput#name #name} => String
3676
+ # * {Types::CreateProjectProfileOutput#project_resource_tags #project_resource_tags} => Array&lt;Types::ResourceTagParameter&gt;
3677
+ # * {Types::CreateProjectProfileOutput#project_resource_tags_description #project_resource_tags_description} => String
3654
3678
  # * {Types::CreateProjectProfileOutput#status #status} => String
3655
3679
  #
3656
3680
  # @example Request syntax with placeholder values
3657
3681
  #
3658
3682
  # resp = client.create_project_profile({
3683
+ # allow_custom_project_resource_tags: false,
3659
3684
  # description: "Description",
3660
3685
  # domain_identifier: "DomainId", # required
3661
3686
  # domain_unit_identifier: "DomainUnitId",
@@ -3696,11 +3721,20 @@ module Aws::DataZone
3696
3721
  # },
3697
3722
  # ],
3698
3723
  # name: "ProjectProfileName", # required
3724
+ # project_resource_tags: [
3725
+ # {
3726
+ # is_value_editable: false, # required
3727
+ # key: "TagKey", # required
3728
+ # value: "TagValue", # required
3729
+ # },
3730
+ # ],
3731
+ # project_resource_tags_description: "Description",
3699
3732
  # status: "ENABLED", # accepts ENABLED, DISABLED
3700
3733
  # })
3701
3734
  #
3702
3735
  # @example Response structure
3703
3736
  #
3737
+ # resp.allow_custom_project_resource_tags #=> Boolean
3704
3738
  # resp.created_at #=> Time
3705
3739
  # resp.created_by #=> String
3706
3740
  # resp.description #=> String
@@ -3731,6 +3765,11 @@ module Aws::DataZone
3731
3765
  # resp.id #=> String
3732
3766
  # resp.last_updated_at #=> Time
3733
3767
  # resp.name #=> String
3768
+ # resp.project_resource_tags #=> Array
3769
+ # resp.project_resource_tags[0].is_value_editable #=> Boolean
3770
+ # resp.project_resource_tags[0].key #=> String
3771
+ # resp.project_resource_tags[0].value #=> String
3772
+ # resp.project_resource_tags_description #=> String
3734
3773
  # resp.status #=> String, one of "ENABLED", "DISABLED"
3735
3774
  #
3736
3775
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectProfile AWS API Documentation
@@ -7207,6 +7246,7 @@ module Aws::DataZone
7207
7246
  # * {Types::GetProjectOutput#name #name} => String
7208
7247
  # * {Types::GetProjectOutput#project_profile_id #project_profile_id} => String
7209
7248
  # * {Types::GetProjectOutput#project_status #project_status} => String
7249
+ # * {Types::GetProjectOutput#resource_tags #resource_tags} => Array&lt;Types::ResourceTag&gt;
7210
7250
  # * {Types::GetProjectOutput#user_parameters #user_parameters} => Array&lt;Types::EnvironmentConfigurationUserParameter&gt;
7211
7251
  #
7212
7252
  # @example Request syntax with placeholder values
@@ -7238,6 +7278,10 @@ module Aws::DataZone
7238
7278
  # resp.name #=> String
7239
7279
  # resp.project_profile_id #=> String
7240
7280
  # resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED", "MOVING"
7281
+ # resp.resource_tags #=> Array
7282
+ # resp.resource_tags[0].key #=> String
7283
+ # resp.resource_tags[0].source #=> String, one of "PROJECT", "PROJECT_PROFILE"
7284
+ # resp.resource_tags[0].value #=> String
7241
7285
  # resp.user_parameters #=> Array
7242
7286
  # resp.user_parameters[0].environment_configuration_name #=> String
7243
7287
  # resp.user_parameters[0].environment_id #=> String
@@ -7267,6 +7311,7 @@ module Aws::DataZone
7267
7311
  #
7268
7312
  # @return [Types::GetProjectProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7269
7313
  #
7314
+ # * {Types::GetProjectProfileOutput#allow_custom_project_resource_tags #allow_custom_project_resource_tags} => Boolean
7270
7315
  # * {Types::GetProjectProfileOutput#created_at #created_at} => Time
7271
7316
  # * {Types::GetProjectProfileOutput#created_by #created_by} => String
7272
7317
  # * {Types::GetProjectProfileOutput#description #description} => String
@@ -7276,6 +7321,8 @@ module Aws::DataZone
7276
7321
  # * {Types::GetProjectProfileOutput#id #id} => String
7277
7322
  # * {Types::GetProjectProfileOutput#last_updated_at #last_updated_at} => Time
7278
7323
  # * {Types::GetProjectProfileOutput#name #name} => String
7324
+ # * {Types::GetProjectProfileOutput#project_resource_tags #project_resource_tags} => Array&lt;Types::ResourceTagParameter&gt;
7325
+ # * {Types::GetProjectProfileOutput#project_resource_tags_description #project_resource_tags_description} => String
7279
7326
  # * {Types::GetProjectProfileOutput#status #status} => String
7280
7327
  #
7281
7328
  # @example Request syntax with placeholder values
@@ -7287,6 +7334,7 @@ module Aws::DataZone
7287
7334
  #
7288
7335
  # @example Response structure
7289
7336
  #
7337
+ # resp.allow_custom_project_resource_tags #=> Boolean
7290
7338
  # resp.created_at #=> Time
7291
7339
  # resp.created_by #=> String
7292
7340
  # resp.description #=> String
@@ -7317,6 +7365,11 @@ module Aws::DataZone
7317
7365
  # resp.id #=> String
7318
7366
  # resp.last_updated_at #=> Time
7319
7367
  # resp.name #=> String
7368
+ # resp.project_resource_tags #=> Array
7369
+ # resp.project_resource_tags[0].is_value_editable #=> Boolean
7370
+ # resp.project_resource_tags[0].key #=> String
7371
+ # resp.project_resource_tags[0].value #=> String
7372
+ # resp.project_resource_tags_description #=> String
7320
7373
  # resp.status #=> String, one of "ENABLED", "DISABLED"
7321
7374
  #
7322
7375
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectProfile AWS API Documentation
@@ -13507,6 +13560,9 @@ module Aws::DataZone
13507
13560
  # You can only specify the following string for this parameter:
13508
13561
  # `latest`.
13509
13562
  #
13563
+ # @option params [Hash<String,String>] :resource_tags
13564
+ # The resource tags of the project.
13565
+ #
13510
13566
  # @option params [Array<Types::EnvironmentConfigurationUserParameter>] :user_parameters
13511
13567
  # The user parameters of the project.
13512
13568
  #
@@ -13525,6 +13581,7 @@ module Aws::DataZone
13525
13581
  # * {Types::UpdateProjectOutput#name #name} => String
13526
13582
  # * {Types::UpdateProjectOutput#project_profile_id #project_profile_id} => String
13527
13583
  # * {Types::UpdateProjectOutput#project_status #project_status} => String
13584
+ # * {Types::UpdateProjectOutput#resource_tags #resource_tags} => Array&lt;Types::ResourceTag&gt;
13528
13585
  # * {Types::UpdateProjectOutput#user_parameters #user_parameters} => Array&lt;Types::EnvironmentConfigurationUserParameter&gt;
13529
13586
  #
13530
13587
  # @example Request syntax with placeholder values
@@ -13548,6 +13605,9 @@ module Aws::DataZone
13548
13605
  # identifier: "ProjectId", # required
13549
13606
  # name: "ProjectName",
13550
13607
  # project_profile_version: "String",
13608
+ # resource_tags: {
13609
+ # "TagKey" => "TagValue",
13610
+ # },
13551
13611
  # user_parameters: [
13552
13612
  # {
13553
13613
  # environment_configuration_name: "EnvironmentConfigurationName",
@@ -13589,6 +13649,10 @@ module Aws::DataZone
13589
13649
  # resp.name #=> String
13590
13650
  # resp.project_profile_id #=> String
13591
13651
  # resp.project_status #=> String, one of "ACTIVE", "DELETING", "DELETE_FAILED", "UPDATING", "UPDATE_FAILED", "MOVING"
13652
+ # resp.resource_tags #=> Array
13653
+ # resp.resource_tags[0].key #=> String
13654
+ # resp.resource_tags[0].source #=> String, one of "PROJECT", "PROJECT_PROFILE"
13655
+ # resp.resource_tags[0].value #=> String
13592
13656
  # resp.user_parameters #=> Array
13593
13657
  # resp.user_parameters[0].environment_configuration_name #=> String
13594
13658
  # resp.user_parameters[0].environment_id #=> String
@@ -13610,6 +13674,9 @@ module Aws::DataZone
13610
13674
 
13611
13675
  # Updates a project profile.
13612
13676
  #
13677
+ # @option params [Boolean] :allow_custom_project_resource_tags
13678
+ # Specifies whether custom project resource tags are supported.
13679
+ #
13613
13680
  # @option params [String] :description
13614
13681
  # The description of a project profile.
13615
13682
  #
@@ -13628,11 +13695,19 @@ module Aws::DataZone
13628
13695
  # @option params [String] :name
13629
13696
  # The name of a project profile.
13630
13697
  #
13698
+ # @option params [Array<Types::ResourceTagParameter>] :project_resource_tags
13699
+ # The resource tags of the project profile.
13700
+ #
13701
+ # @option params [String] :project_resource_tags_description
13702
+ # Field viewable through the UI that provides a project user with the
13703
+ # allowed resource tag specifications.
13704
+ #
13631
13705
  # @option params [String] :status
13632
13706
  # The status of a project profile.
13633
13707
  #
13634
13708
  # @return [Types::UpdateProjectProfileOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13635
13709
  #
13710
+ # * {Types::UpdateProjectProfileOutput#allow_custom_project_resource_tags #allow_custom_project_resource_tags} => Boolean
13636
13711
  # * {Types::UpdateProjectProfileOutput#created_at #created_at} => Time
13637
13712
  # * {Types::UpdateProjectProfileOutput#created_by #created_by} => String
13638
13713
  # * {Types::UpdateProjectProfileOutput#description #description} => String
@@ -13642,11 +13717,14 @@ module Aws::DataZone
13642
13717
  # * {Types::UpdateProjectProfileOutput#id #id} => String
13643
13718
  # * {Types::UpdateProjectProfileOutput#last_updated_at #last_updated_at} => Time
13644
13719
  # * {Types::UpdateProjectProfileOutput#name #name} => String
13720
+ # * {Types::UpdateProjectProfileOutput#project_resource_tags #project_resource_tags} => Array&lt;Types::ResourceTagParameter&gt;
13721
+ # * {Types::UpdateProjectProfileOutput#project_resource_tags_description #project_resource_tags_description} => String
13645
13722
  # * {Types::UpdateProjectProfileOutput#status #status} => String
13646
13723
  #
13647
13724
  # @example Request syntax with placeholder values
13648
13725
  #
13649
13726
  # resp = client.update_project_profile({
13727
+ # allow_custom_project_resource_tags: false,
13650
13728
  # description: "Description",
13651
13729
  # domain_identifier: "DomainId", # required
13652
13730
  # domain_unit_identifier: "DomainUnitId",
@@ -13688,11 +13766,20 @@ module Aws::DataZone
13688
13766
  # ],
13689
13767
  # identifier: "ProjectProfileId", # required
13690
13768
  # name: "ProjectProfileName",
13769
+ # project_resource_tags: [
13770
+ # {
13771
+ # is_value_editable: false, # required
13772
+ # key: "TagKey", # required
13773
+ # value: "TagValue", # required
13774
+ # },
13775
+ # ],
13776
+ # project_resource_tags_description: "Description",
13691
13777
  # status: "ENABLED", # accepts ENABLED, DISABLED
13692
13778
  # })
13693
13779
  #
13694
13780
  # @example Response structure
13695
13781
  #
13782
+ # resp.allow_custom_project_resource_tags #=> Boolean
13696
13783
  # resp.created_at #=> Time
13697
13784
  # resp.created_by #=> String
13698
13785
  # resp.description #=> String
@@ -13723,6 +13810,11 @@ module Aws::DataZone
13723
13810
  # resp.id #=> String
13724
13811
  # resp.last_updated_at #=> Time
13725
13812
  # resp.name #=> String
13813
+ # resp.project_resource_tags #=> Array
13814
+ # resp.project_resource_tags[0].is_value_editable #=> Boolean
13815
+ # resp.project_resource_tags[0].key #=> String
13816
+ # resp.project_resource_tags[0].value #=> String
13817
+ # resp.project_resource_tags_description #=> String
13726
13818
  # resp.status #=> String, one of "ENABLED", "DISABLED"
13727
13819
  #
13728
13820
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectProfile AWS API Documentation
@@ -14210,7 +14302,7 @@ module Aws::DataZone
14210
14302
  tracer: tracer
14211
14303
  )
14212
14304
  context[:gem_name] = 'aws-sdk-datazone'
14213
- context[:gem_version] = '1.56.0'
14305
+ context[:gem_version] = '1.57.0'
14214
14306
  Seahorse::Client::Request.new(handlers, context)
14215
14307
  end
14216
14308
 
@@ -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
 
@@ -4631,6 +4653,8 @@ module Aws::DataZone
4631
4653
  ProjectProfileSummary.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
4632
4654
  ProjectProfileSummary.struct_class = Types::ProjectProfileSummary
4633
4655
 
4656
+ ProjectResourceTagParameters.member = Shapes::ShapeRef.new(shape: ResourceTagParameter)
4657
+
4634
4658
  ProjectSummaries.member = Shapes::ShapeRef.new(shape: ProjectSummary)
4635
4659
 
4636
4660
  ProjectSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
@@ -4880,6 +4904,18 @@ module Aws::DataZone
4880
4904
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
4881
4905
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
4882
4906
 
4907
+ ResourceTag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "key"))
4908
+ ResourceTag.add_member(:source, Shapes::ShapeRef.new(shape: ResourceTagSource, required: true, location_name: "source"))
4909
+ ResourceTag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "value"))
4910
+ ResourceTag.struct_class = Types::ResourceTag
4911
+
4912
+ ResourceTagParameter.add_member(:is_value_editable, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isValueEditable"))
4913
+ ResourceTagParameter.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "key"))
4914
+ ResourceTagParameter.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "value"))
4915
+ ResourceTagParameter.struct_class = Types::ResourceTagParameter
4916
+
4917
+ ResourceTags.member = Shapes::ShapeRef.new(shape: ResourceTag)
4918
+
4883
4919
  RevokeSubscriptionInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
4884
4920
  RevokeSubscriptionInput.add_member(:identifier, Shapes::ShapeRef.new(shape: SubscriptionId, required: true, location: "uri", location_name: "identifier"))
4885
4921
  RevokeSubscriptionInput.add_member(:retain_permissions, Shapes::ShapeRef.new(shape: Boolean, location_name: "retainPermissions"))
@@ -5776,9 +5812,13 @@ module Aws::DataZone
5776
5812
  UpdateProjectInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ProjectId, required: true, location: "uri", location_name: "identifier"))
5777
5813
  UpdateProjectInput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectName, location_name: "name"))
5778
5814
  UpdateProjectInput.add_member(:project_profile_version, Shapes::ShapeRef.new(shape: String, location_name: "projectProfileVersion"))
5815
+ UpdateProjectInput.add_member(:resource_tags, Shapes::ShapeRef.new(shape: UpdateProjectInputResourceTagsMap, location_name: "resourceTags"))
5779
5816
  UpdateProjectInput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: EnvironmentConfigurationUserParametersList, location_name: "userParameters"))
5780
5817
  UpdateProjectInput.struct_class = Types::UpdateProjectInput
5781
5818
 
5819
+ UpdateProjectInputResourceTagsMap.key = Shapes::ShapeRef.new(shape: TagKey)
5820
+ UpdateProjectInputResourceTagsMap.value = Shapes::ShapeRef.new(shape: TagValue)
5821
+
5782
5822
  UpdateProjectOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
5783
5823
  UpdateProjectOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
5784
5824
  UpdateProjectOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
@@ -5792,18 +5832,23 @@ module Aws::DataZone
5792
5832
  UpdateProjectOutput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectName, required: true, location_name: "name"))
5793
5833
  UpdateProjectOutput.add_member(:project_profile_id, Shapes::ShapeRef.new(shape: ProjectProfileId, location_name: "projectProfileId"))
5794
5834
  UpdateProjectOutput.add_member(:project_status, Shapes::ShapeRef.new(shape: ProjectStatus, location_name: "projectStatus"))
5835
+ UpdateProjectOutput.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTags, location_name: "resourceTags"))
5795
5836
  UpdateProjectOutput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: EnvironmentConfigurationUserParametersList, location_name: "userParameters"))
5796
5837
  UpdateProjectOutput.struct_class = Types::UpdateProjectOutput
5797
5838
 
5839
+ UpdateProjectProfileInput.add_member(:allow_custom_project_resource_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "allowCustomProjectResourceTags"))
5798
5840
  UpdateProjectProfileInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
5799
5841
  UpdateProjectProfileInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
5800
5842
  UpdateProjectProfileInput.add_member(:domain_unit_identifier, Shapes::ShapeRef.new(shape: DomainUnitId, location_name: "domainUnitIdentifier"))
5801
5843
  UpdateProjectProfileInput.add_member(:environment_configurations, Shapes::ShapeRef.new(shape: EnvironmentConfigurationsList, location_name: "environmentConfigurations"))
5802
5844
  UpdateProjectProfileInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ProjectProfileId, required: true, location: "uri", location_name: "identifier"))
5803
5845
  UpdateProjectProfileInput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectProfileName, location_name: "name"))
5846
+ UpdateProjectProfileInput.add_member(:project_resource_tags, Shapes::ShapeRef.new(shape: ProjectResourceTagParameters, location_name: "projectResourceTags"))
5847
+ UpdateProjectProfileInput.add_member(:project_resource_tags_description, Shapes::ShapeRef.new(shape: Description, location_name: "projectResourceTagsDescription"))
5804
5848
  UpdateProjectProfileInput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
5805
5849
  UpdateProjectProfileInput.struct_class = Types::UpdateProjectProfileInput
5806
5850
 
5851
+ UpdateProjectProfileOutput.add_member(:allow_custom_project_resource_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "allowCustomProjectResourceTags"))
5807
5852
  UpdateProjectProfileOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
5808
5853
  UpdateProjectProfileOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
5809
5854
  UpdateProjectProfileOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
@@ -5813,6 +5858,8 @@ module Aws::DataZone
5813
5858
  UpdateProjectProfileOutput.add_member(:id, Shapes::ShapeRef.new(shape: ProjectProfileId, required: true, location_name: "id"))
5814
5859
  UpdateProjectProfileOutput.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastUpdatedAt"))
5815
5860
  UpdateProjectProfileOutput.add_member(:name, Shapes::ShapeRef.new(shape: ProjectProfileName, required: true, location_name: "name"))
5861
+ UpdateProjectProfileOutput.add_member(:project_resource_tags, Shapes::ShapeRef.new(shape: ProjectResourceTagParameters, location_name: "projectResourceTags"))
5862
+ UpdateProjectProfileOutput.add_member(:project_resource_tags_description, Shapes::ShapeRef.new(shape: Description, location_name: "projectResourceTagsDescription"))
5816
5863
  UpdateProjectProfileOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
5817
5864
  UpdateProjectProfileOutput.struct_class = Types::UpdateProjectProfileOutput
5818
5865
 
@@ -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
 
@@ -17113,6 +17176,55 @@ module Aws::DataZone
17113
17176
  include Aws::Structure
17114
17177
  end
17115
17178
 
17179
+ # The resource tag of the project.
17180
+ #
17181
+ # @!attribute [rw] key
17182
+ # The key of the resource tag of the project.
17183
+ # @return [String]
17184
+ #
17185
+ # @!attribute [rw] source
17186
+ # The source of the resource tag of the project.
17187
+ # @return [String]
17188
+ #
17189
+ # @!attribute [rw] value
17190
+ # The value of the resource tag of the project.
17191
+ # @return [String]
17192
+ #
17193
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ResourceTag AWS API Documentation
17194
+ #
17195
+ class ResourceTag < Struct.new(
17196
+ :key,
17197
+ :source,
17198
+ :value)
17199
+ SENSITIVE = []
17200
+ include Aws::Structure
17201
+ end
17202
+
17203
+ # The resource tag parameter of the project profile.
17204
+ #
17205
+ # @!attribute [rw] is_value_editable
17206
+ # Specifies whether the value of the resource tag parameter of the
17207
+ # project profile is editable at the project level.
17208
+ # @return [Boolean]
17209
+ #
17210
+ # @!attribute [rw] key
17211
+ # The key of the resource tag parameter of the project profile.
17212
+ # @return [String]
17213
+ #
17214
+ # @!attribute [rw] value
17215
+ # The value of the resource tag parameter key of the project profile.
17216
+ # @return [String]
17217
+ #
17218
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ResourceTagParameter AWS API Documentation
17219
+ #
17220
+ class ResourceTagParameter < Struct.new(
17221
+ :is_value_editable,
17222
+ :key,
17223
+ :value)
17224
+ SENSITIVE = []
17225
+ include Aws::Structure
17226
+ end
17227
+
17116
17228
  # @!attribute [rw] domain_identifier
17117
17229
  # The identifier of the Amazon DataZone domain where you want to
17118
17230
  # revoke a subscription.
@@ -21093,6 +21205,10 @@ module Aws::DataZone
21093
21205
  # `latest`.
21094
21206
  # @return [String]
21095
21207
  #
21208
+ # @!attribute [rw] resource_tags
21209
+ # The resource tags of the project.
21210
+ # @return [Hash<String,String>]
21211
+ #
21096
21212
  # @!attribute [rw] user_parameters
21097
21213
  # The user parameters of the project.
21098
21214
  # @return [Array<Types::EnvironmentConfigurationUserParameter>]
@@ -21108,6 +21224,7 @@ module Aws::DataZone
21108
21224
  :identifier,
21109
21225
  :name,
21110
21226
  :project_profile_version,
21227
+ :resource_tags,
21111
21228
  :user_parameters)
21112
21229
  SENSITIVE = [:description, :name]
21113
21230
  include Aws::Structure
@@ -21167,6 +21284,10 @@ module Aws::DataZone
21167
21284
  # The status of the project.
21168
21285
  # @return [String]
21169
21286
  #
21287
+ # @!attribute [rw] resource_tags
21288
+ # The resource tags of the project.
21289
+ # @return [Array<Types::ResourceTag>]
21290
+ #
21170
21291
  # @!attribute [rw] user_parameters
21171
21292
  # The user parameters of the project.
21172
21293
  # @return [Array<Types::EnvironmentConfigurationUserParameter>]
@@ -21187,11 +21308,16 @@ module Aws::DataZone
21187
21308
  :name,
21188
21309
  :project_profile_id,
21189
21310
  :project_status,
21311
+ :resource_tags,
21190
21312
  :user_parameters)
21191
21313
  SENSITIVE = [:description, :name]
21192
21314
  include Aws::Structure
21193
21315
  end
21194
21316
 
21317
+ # @!attribute [rw] allow_custom_project_resource_tags
21318
+ # Specifies whether custom project resource tags are supported.
21319
+ # @return [Boolean]
21320
+ #
21195
21321
  # @!attribute [rw] description
21196
21322
  # The description of a project profile.
21197
21323
  # @return [String]
@@ -21216,6 +21342,15 @@ module Aws::DataZone
21216
21342
  # The name of a project profile.
21217
21343
  # @return [String]
21218
21344
  #
21345
+ # @!attribute [rw] project_resource_tags
21346
+ # The resource tags of the project profile.
21347
+ # @return [Array<Types::ResourceTagParameter>]
21348
+ #
21349
+ # @!attribute [rw] project_resource_tags_description
21350
+ # Field viewable through the UI that provides a project user with the
21351
+ # allowed resource tag specifications.
21352
+ # @return [String]
21353
+ #
21219
21354
  # @!attribute [rw] status
21220
21355
  # The status of a project profile.
21221
21356
  # @return [String]
@@ -21223,17 +21358,24 @@ module Aws::DataZone
21223
21358
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectProfileInput AWS API Documentation
21224
21359
  #
21225
21360
  class UpdateProjectProfileInput < Struct.new(
21361
+ :allow_custom_project_resource_tags,
21226
21362
  :description,
21227
21363
  :domain_identifier,
21228
21364
  :domain_unit_identifier,
21229
21365
  :environment_configurations,
21230
21366
  :identifier,
21231
21367
  :name,
21368
+ :project_resource_tags,
21369
+ :project_resource_tags_description,
21232
21370
  :status)
21233
- SENSITIVE = [:description, :name]
21371
+ SENSITIVE = [:description, :name, :project_resource_tags_description]
21234
21372
  include Aws::Structure
21235
21373
  end
21236
21374
 
21375
+ # @!attribute [rw] allow_custom_project_resource_tags
21376
+ # Specifies whether custom project resource tags are supported.
21377
+ # @return [Boolean]
21378
+ #
21237
21379
  # @!attribute [rw] created_at
21238
21380
  # The timestamp at which a project profile is created.
21239
21381
  # @return [Time]
@@ -21270,6 +21412,15 @@ module Aws::DataZone
21270
21412
  # The name of the project profile.
21271
21413
  # @return [String]
21272
21414
  #
21415
+ # @!attribute [rw] project_resource_tags
21416
+ # The resource tags of the project profile.
21417
+ # @return [Array<Types::ResourceTagParameter>]
21418
+ #
21419
+ # @!attribute [rw] project_resource_tags_description
21420
+ # Field viewable through the UI that provides a project user with the
21421
+ # allowed resource tag specifications.
21422
+ # @return [String]
21423
+ #
21273
21424
  # @!attribute [rw] status
21274
21425
  # The status of the project profile.
21275
21426
  # @return [String]
@@ -21277,6 +21428,7 @@ module Aws::DataZone
21277
21428
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectProfileOutput AWS API Documentation
21278
21429
  #
21279
21430
  class UpdateProjectProfileOutput < Struct.new(
21431
+ :allow_custom_project_resource_tags,
21280
21432
  :created_at,
21281
21433
  :created_by,
21282
21434
  :description,
@@ -21286,8 +21438,10 @@ module Aws::DataZone
21286
21438
  :id,
21287
21439
  :last_updated_at,
21288
21440
  :name,
21441
+ :project_resource_tags,
21442
+ :project_resource_tags_description,
21289
21443
  :status)
21290
- SENSITIVE = [:description, :name]
21444
+ SENSITIVE = [:description, :name, :project_resource_tags_description]
21291
21445
  include Aws::Structure
21292
21446
  end
21293
21447
 
@@ -54,7 +54,7 @@ module Aws::DataZone
54
54
  autoload :EndpointProvider, 'aws-sdk-datazone/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-datazone/endpoints'
56
56
 
57
- GEM_VERSION = '1.56.0'
57
+ GEM_VERSION = '1.57.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1199,6 +1199,7 @@ module Aws
1199
1199
  def name: () -> ::String
1200
1200
  def project_profile_id: () -> ::String
1201
1201
  def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
1202
+ def resource_tags: () -> ::Array[Types::ResourceTag]
1202
1203
  def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
1203
1204
  end
1204
1205
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project-instance_method
@@ -1209,6 +1210,7 @@ module Aws
1209
1210
  ?glossary_terms: Array[::String],
1210
1211
  name: ::String,
1211
1212
  ?project_profile_id: ::String,
1213
+ ?resource_tags: Hash[::String, ::String],
1212
1214
  ?user_parameters: Array[
1213
1215
  {
1214
1216
  environment_configuration_name: ::String?,
@@ -1246,6 +1248,7 @@ module Aws
1246
1248
 
1247
1249
  interface _CreateProjectProfileResponseSuccess
1248
1250
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectProfileOutput]
1251
+ def allow_custom_project_resource_tags: () -> bool
1249
1252
  def created_at: () -> ::Time
1250
1253
  def created_by: () -> ::String
1251
1254
  def description: () -> ::String
@@ -1255,10 +1258,13 @@ module Aws
1255
1258
  def id: () -> ::String
1256
1259
  def last_updated_at: () -> ::Time
1257
1260
  def name: () -> ::String
1261
+ def project_resource_tags: () -> ::Array[Types::ResourceTagParameter]
1262
+ def project_resource_tags_description: () -> ::String
1258
1263
  def status: () -> ("ENABLED" | "DISABLED")
1259
1264
  end
1260
1265
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project_profile-instance_method
1261
1266
  def create_project_profile: (
1267
+ ?allow_custom_project_resource_tags: bool,
1262
1268
  ?description: ::String,
1263
1269
  domain_identifier: ::String,
1264
1270
  ?domain_unit_identifier: ::String,
@@ -1299,6 +1305,14 @@ module Aws
1299
1305
  },
1300
1306
  ],
1301
1307
  name: ::String,
1308
+ ?project_resource_tags: Array[
1309
+ {
1310
+ is_value_editable: bool,
1311
+ key: ::String,
1312
+ value: ::String
1313
+ },
1314
+ ],
1315
+ ?project_resource_tags_description: ::String,
1302
1316
  ?status: ("ENABLED" | "DISABLED")
1303
1317
  ) -> _CreateProjectProfileResponseSuccess
1304
1318
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectProfileResponseSuccess
@@ -2382,6 +2396,7 @@ module Aws
2382
2396
  def name: () -> ::String
2383
2397
  def project_profile_id: () -> ::String
2384
2398
  def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
2399
+ def resource_tags: () -> ::Array[Types::ResourceTag]
2385
2400
  def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
2386
2401
  end
2387
2402
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_project-instance_method
@@ -2393,6 +2408,7 @@ module Aws
2393
2408
 
2394
2409
  interface _GetProjectProfileResponseSuccess
2395
2410
  include ::Seahorse::Client::_ResponseSuccess[Types::GetProjectProfileOutput]
2411
+ def allow_custom_project_resource_tags: () -> bool
2396
2412
  def created_at: () -> ::Time
2397
2413
  def created_by: () -> ::String
2398
2414
  def description: () -> ::String
@@ -2402,6 +2418,8 @@ module Aws
2402
2418
  def id: () -> ::String
2403
2419
  def last_updated_at: () -> ::Time
2404
2420
  def name: () -> ::String
2421
+ def project_resource_tags: () -> ::Array[Types::ResourceTagParameter]
2422
+ def project_resource_tags_description: () -> ::String
2405
2423
  def status: () -> ("ENABLED" | "DISABLED")
2406
2424
  end
2407
2425
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_project_profile-instance_method
@@ -4107,6 +4125,7 @@ module Aws
4107
4125
  def name: () -> ::String
4108
4126
  def project_profile_id: () -> ::String
4109
4127
  def project_status: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
4128
+ def resource_tags: () -> ::Array[Types::ResourceTag]
4110
4129
  def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
4111
4130
  end
4112
4131
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_project-instance_method
@@ -4127,6 +4146,7 @@ module Aws
4127
4146
  identifier: ::String,
4128
4147
  ?name: ::String,
4129
4148
  ?project_profile_version: ::String,
4149
+ ?resource_tags: Hash[::String, ::String],
4130
4150
  ?user_parameters: Array[
4131
4151
  {
4132
4152
  environment_configuration_name: ::String?,
@@ -4149,6 +4169,7 @@ module Aws
4149
4169
 
4150
4170
  interface _UpdateProjectProfileResponseSuccess
4151
4171
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProjectProfileOutput]
4172
+ def allow_custom_project_resource_tags: () -> bool
4152
4173
  def created_at: () -> ::Time
4153
4174
  def created_by: () -> ::String
4154
4175
  def description: () -> ::String
@@ -4158,10 +4179,13 @@ module Aws
4158
4179
  def id: () -> ::String
4159
4180
  def last_updated_at: () -> ::Time
4160
4181
  def name: () -> ::String
4182
+ def project_resource_tags: () -> ::Array[Types::ResourceTagParameter]
4183
+ def project_resource_tags_description: () -> ::String
4161
4184
  def status: () -> ("ENABLED" | "DISABLED")
4162
4185
  end
4163
4186
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_project_profile-instance_method
4164
4187
  def update_project_profile: (
4188
+ ?allow_custom_project_resource_tags: bool,
4165
4189
  ?description: ::String,
4166
4190
  domain_identifier: ::String,
4167
4191
  ?domain_unit_identifier: ::String,
@@ -4203,6 +4227,14 @@ module Aws
4203
4227
  ],
4204
4228
  identifier: ::String,
4205
4229
  ?name: ::String,
4230
+ ?project_resource_tags: Array[
4231
+ {
4232
+ is_value_editable: bool,
4233
+ key: ::String,
4234
+ value: ::String
4235
+ },
4236
+ ],
4237
+ ?project_resource_tags_description: ::String,
4206
4238
  ?status: ("ENABLED" | "DISABLED")
4207
4239
  ) -> _UpdateProjectProfileResponseSuccess
4208
4240
  | (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
@@ -4664,6 +4676,20 @@ module Aws::DataZone
4664
4676
  SENSITIVE: []
4665
4677
  end
4666
4678
 
4679
+ class ResourceTag
4680
+ attr_accessor key: ::String
4681
+ attr_accessor source: ("PROJECT" | "PROJECT_PROFILE")
4682
+ attr_accessor value: ::String
4683
+ SENSITIVE: []
4684
+ end
4685
+
4686
+ class ResourceTagParameter
4687
+ attr_accessor is_value_editable: bool
4688
+ attr_accessor key: ::String
4689
+ attr_accessor value: ::String
4690
+ SENSITIVE: []
4691
+ end
4692
+
4667
4693
  class RevokeSubscriptionInput
4668
4694
  attr_accessor domain_identifier: ::String
4669
4695
  attr_accessor identifier: ::String
@@ -5739,6 +5765,7 @@ module Aws::DataZone
5739
5765
  attr_accessor identifier: ::String
5740
5766
  attr_accessor name: ::String
5741
5767
  attr_accessor project_profile_version: ::String
5768
+ attr_accessor resource_tags: ::Hash[::String, ::String]
5742
5769
  attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
5743
5770
  SENSITIVE: [:description, :name]
5744
5771
  end
@@ -5757,22 +5784,27 @@ module Aws::DataZone
5757
5784
  attr_accessor name: ::String
5758
5785
  attr_accessor project_profile_id: ::String
5759
5786
  attr_accessor project_status: ("ACTIVE" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "MOVING")
5787
+ attr_accessor resource_tags: ::Array[Types::ResourceTag]
5760
5788
  attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
5761
5789
  SENSITIVE: [:description, :name]
5762
5790
  end
5763
5791
 
5764
5792
  class UpdateProjectProfileInput
5793
+ attr_accessor allow_custom_project_resource_tags: bool
5765
5794
  attr_accessor description: ::String
5766
5795
  attr_accessor domain_identifier: ::String
5767
5796
  attr_accessor domain_unit_identifier: ::String
5768
5797
  attr_accessor environment_configurations: ::Array[Types::EnvironmentConfiguration]
5769
5798
  attr_accessor identifier: ::String
5770
5799
  attr_accessor name: ::String
5800
+ attr_accessor project_resource_tags: ::Array[Types::ResourceTagParameter]
5801
+ attr_accessor project_resource_tags_description: ::String
5771
5802
  attr_accessor status: ("ENABLED" | "DISABLED")
5772
- SENSITIVE: [:description, :name]
5803
+ SENSITIVE: [:description, :name, :project_resource_tags_description]
5773
5804
  end
5774
5805
 
5775
5806
  class UpdateProjectProfileOutput
5807
+ attr_accessor allow_custom_project_resource_tags: bool
5776
5808
  attr_accessor created_at: ::Time
5777
5809
  attr_accessor created_by: ::String
5778
5810
  attr_accessor description: ::String
@@ -5782,8 +5814,10 @@ module Aws::DataZone
5782
5814
  attr_accessor id: ::String
5783
5815
  attr_accessor last_updated_at: ::Time
5784
5816
  attr_accessor name: ::String
5817
+ attr_accessor project_resource_tags: ::Array[Types::ResourceTagParameter]
5818
+ attr_accessor project_resource_tags_description: ::String
5785
5819
  attr_accessor status: ("ENABLED" | "DISABLED")
5786
- SENSITIVE: [:description, :name]
5820
+ SENSITIVE: [:description, :name, :project_resource_tags_description]
5787
5821
  end
5788
5822
 
5789
5823
  class UpdateRuleInput
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-datazone
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.56.0
4
+ version: 1.57.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services