aws-sdk-datazone 1.37.0 → 1.38.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +11 -7
- data/lib/aws-sdk-datazone/client_api.rb +6 -0
- data/lib/aws-sdk-datazone/types.rb +24 -1
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +9 -6
- data/sig/types.rbs +14 -6
- 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: eabf1c6f81bc9fe28d7c8b146957fa579d4a92393bdcfff63cba03656f1160ad
|
4
|
+
data.tar.gz: a453f49f7a68ce0897e2e68fab8237e7e60069d1af7119cacd7b9cf0ffc14250
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 385f6c09559e8d9346ca7190d4ffc6b215d5023982bb859ac14e81ceb2a5b8834be6ef72cb896f4da2605960507f758706b9ce38a37af97a1fce5407216ab58d
|
7
|
+
data.tar.gz: f518fca3bdd23fc9b1d2006d4f8ac8cba8f96e6200bcb34d8925b7429d23818e8e6a2d4e8d48d8a94dfd5d79c6bd7db6d05d4419664c162c5e10d1bbcd127ec8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.38.0 (2025-05-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds a new authorization policy to control the usage of custom AssetType when creating an Asset. Customer can now add new grant(s) of policyType USE_ASSET_TYPE for custom AssetTypes to apply authorization policy to projects members and domain unit owners.
|
8
|
+
|
4
9
|
1.37.0 (2025-05-01)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.38.0
|
@@ -771,11 +771,14 @@ module Aws::DataZone
|
|
771
771
|
# override_project_owners: {
|
772
772
|
# include_child_domain_units: false,
|
773
773
|
# },
|
774
|
+
# use_asset_type: {
|
775
|
+
# domain_unit_id: "DomainUnitId",
|
776
|
+
# },
|
774
777
|
# },
|
775
778
|
# domain_identifier: "DomainId", # required
|
776
779
|
# entity_identifier: "String", # required
|
777
|
-
# entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE
|
778
|
-
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT, CREATE_ENVIRONMENT_FROM_BLUEPRINT, CREATE_PROJECT_FROM_PROJECT_PROFILE
|
780
|
+
# entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE, ASSET_TYPE
|
781
|
+
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT, CREATE_ENVIRONMENT_FROM_BLUEPRINT, CREATE_PROJECT_FROM_PROJECT_PROFILE, USE_ASSET_TYPE
|
779
782
|
# principal: { # required
|
780
783
|
# domain_unit: {
|
781
784
|
# domain_unit_designation: "OWNER", # required, accepts OWNER
|
@@ -8536,10 +8539,10 @@ module Aws::DataZone
|
|
8536
8539
|
# resp = client.list_policy_grants({
|
8537
8540
|
# domain_identifier: "DomainId", # required
|
8538
8541
|
# entity_identifier: "String", # required
|
8539
|
-
# entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE
|
8542
|
+
# entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE, ASSET_TYPE
|
8540
8543
|
# max_results: 1,
|
8541
8544
|
# next_token: "PaginationToken",
|
8542
|
-
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT, CREATE_ENVIRONMENT_FROM_BLUEPRINT, CREATE_PROJECT_FROM_PROJECT_PROFILE
|
8545
|
+
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT, CREATE_ENVIRONMENT_FROM_BLUEPRINT, CREATE_PROJECT_FROM_PROJECT_PROFILE, USE_ASSET_TYPE
|
8543
8546
|
# })
|
8544
8547
|
#
|
8545
8548
|
# @example Response structure
|
@@ -8559,6 +8562,7 @@ module Aws::DataZone
|
|
8559
8562
|
# resp.grant_list[0].detail.create_project_from_project_profile.project_profiles[0] #=> String
|
8560
8563
|
# resp.grant_list[0].detail.override_domain_unit_owners.include_child_domain_units #=> Boolean
|
8561
8564
|
# resp.grant_list[0].detail.override_project_owners.include_child_domain_units #=> Boolean
|
8565
|
+
# resp.grant_list[0].detail.use_asset_type.domain_unit_id #=> String
|
8562
8566
|
# resp.grant_list[0].principal.domain_unit.domain_unit_designation #=> String, one of "OWNER"
|
8563
8567
|
# resp.grant_list[0].principal.domain_unit.domain_unit_identifier #=> String
|
8564
8568
|
# resp.grant_list[0].principal.group.group_identifier #=> String
|
@@ -9888,8 +9892,8 @@ module Aws::DataZone
|
|
9888
9892
|
# client_token: "ClientToken",
|
9889
9893
|
# domain_identifier: "DomainId", # required
|
9890
9894
|
# entity_identifier: "String", # required
|
9891
|
-
# entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE
|
9892
|
-
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT, CREATE_ENVIRONMENT_FROM_BLUEPRINT, CREATE_PROJECT_FROM_PROJECT_PROFILE
|
9895
|
+
# entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE, ASSET_TYPE
|
9896
|
+
# policy_type: "CREATE_DOMAIN_UNIT", # required, accepts CREATE_DOMAIN_UNIT, OVERRIDE_DOMAIN_UNIT_OWNERS, ADD_TO_PROJECT_MEMBER_POOL, OVERRIDE_PROJECT_OWNERS, CREATE_GLOSSARY, CREATE_FORM_TYPE, CREATE_ASSET_TYPE, CREATE_PROJECT, CREATE_ENVIRONMENT_PROFILE, DELEGATE_CREATE_ENVIRONMENT_PROFILE, CREATE_ENVIRONMENT, CREATE_ENVIRONMENT_FROM_BLUEPRINT, CREATE_PROJECT_FROM_PROJECT_PROFILE, USE_ASSET_TYPE
|
9893
9897
|
# principal: { # required
|
9894
9898
|
# domain_unit: {
|
9895
9899
|
# domain_unit_designation: "OWNER", # required, accepts OWNER
|
@@ -12700,7 +12704,7 @@ module Aws::DataZone
|
|
12700
12704
|
tracer: tracer
|
12701
12705
|
)
|
12702
12706
|
context[:gem_name] = 'aws-sdk-datazone'
|
12703
|
-
context[:gem_version] = '1.
|
12707
|
+
context[:gem_version] = '1.38.0'
|
12704
12708
|
Seahorse::Client::Request.new(handlers, context)
|
12705
12709
|
end
|
12706
12710
|
|
@@ -1011,6 +1011,7 @@ module Aws::DataZone
|
|
1011
1011
|
UpdateUserProfileOutput = Shapes::StructureShape.new(name: 'UpdateUserProfileOutput')
|
1012
1012
|
UpdatedAt = Shapes::TimestampShape.new(name: 'UpdatedAt')
|
1013
1013
|
UpdatedBy = Shapes::StringShape.new(name: 'UpdatedBy')
|
1014
|
+
UseAssetTypePolicyGrantDetail = Shapes::StructureShape.new(name: 'UseAssetTypePolicyGrantDetail')
|
1014
1015
|
UserAssignment = Shapes::StringShape.new(name: 'UserAssignment')
|
1015
1016
|
UserDesignation = Shapes::StringShape.new(name: 'UserDesignation')
|
1016
1017
|
UserDetails = Shapes::StructureShape.new(name: 'UserDetails')
|
@@ -4144,6 +4145,7 @@ module Aws::DataZone
|
|
4144
4145
|
PolicyGrantDetail.add_member(:delegate_create_environment_profile, Shapes::ShapeRef.new(shape: Unit, location_name: "delegateCreateEnvironmentProfile"))
|
4145
4146
|
PolicyGrantDetail.add_member(:override_domain_unit_owners, Shapes::ShapeRef.new(shape: OverrideDomainUnitOwnersPolicyGrantDetail, location_name: "overrideDomainUnitOwners"))
|
4146
4147
|
PolicyGrantDetail.add_member(:override_project_owners, Shapes::ShapeRef.new(shape: OverrideProjectOwnersPolicyGrantDetail, location_name: "overrideProjectOwners"))
|
4148
|
+
PolicyGrantDetail.add_member(:use_asset_type, Shapes::ShapeRef.new(shape: UseAssetTypePolicyGrantDetail, location_name: "useAssetType"))
|
4147
4149
|
PolicyGrantDetail.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
4148
4150
|
PolicyGrantDetail.add_member_subclass(:add_to_project_member_pool, Types::PolicyGrantDetail::AddToProjectMemberPool)
|
4149
4151
|
PolicyGrantDetail.add_member_subclass(:create_asset_type, Types::PolicyGrantDetail::CreateAssetType)
|
@@ -4158,6 +4160,7 @@ module Aws::DataZone
|
|
4158
4160
|
PolicyGrantDetail.add_member_subclass(:delegate_create_environment_profile, Types::PolicyGrantDetail::DelegateCreateEnvironmentProfile)
|
4159
4161
|
PolicyGrantDetail.add_member_subclass(:override_domain_unit_owners, Types::PolicyGrantDetail::OverrideDomainUnitOwners)
|
4160
4162
|
PolicyGrantDetail.add_member_subclass(:override_project_owners, Types::PolicyGrantDetail::OverrideProjectOwners)
|
4163
|
+
PolicyGrantDetail.add_member_subclass(:use_asset_type, Types::PolicyGrantDetail::UseAssetType)
|
4161
4164
|
PolicyGrantDetail.add_member_subclass(:unknown, Types::PolicyGrantDetail::Unknown)
|
4162
4165
|
PolicyGrantDetail.struct_class = Types::PolicyGrantDetail
|
4163
4166
|
|
@@ -5470,6 +5473,9 @@ module Aws::DataZone
|
|
5470
5473
|
UpdateUserProfileOutput.add_member(:type, Shapes::ShapeRef.new(shape: UserProfileType, location_name: "type"))
|
5471
5474
|
UpdateUserProfileOutput.struct_class = Types::UpdateUserProfileOutput
|
5472
5475
|
|
5476
|
+
UseAssetTypePolicyGrantDetail.add_member(:domain_unit_id, Shapes::ShapeRef.new(shape: DomainUnitId, location_name: "domainUnitId"))
|
5477
|
+
UseAssetTypePolicyGrantDetail.struct_class = Types::UseAssetTypePolicyGrantDetail
|
5478
|
+
|
5473
5479
|
UserDetails.add_member(:user_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "userId"))
|
5474
5480
|
UserDetails.struct_class = Types::UserDetails
|
5475
5481
|
|
@@ -14481,6 +14481,11 @@ module Aws::DataZone
|
|
14481
14481
|
# Specifies whether to override project owners.
|
14482
14482
|
# @return [Types::OverrideProjectOwnersPolicyGrantDetail]
|
14483
14483
|
#
|
14484
|
+
# @!attribute [rw] use_asset_type
|
14485
|
+
# Specifies the domain unit(s) whose projects can use this asset type
|
14486
|
+
# while creating asset or asset revisions.
|
14487
|
+
# @return [Types::UseAssetTypePolicyGrantDetail]
|
14488
|
+
#
|
14484
14489
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PolicyGrantDetail AWS API Documentation
|
14485
14490
|
#
|
14486
14491
|
class PolicyGrantDetail < Struct.new(
|
@@ -14497,6 +14502,7 @@ module Aws::DataZone
|
|
14497
14502
|
:delegate_create_environment_profile,
|
14498
14503
|
:override_domain_unit_owners,
|
14499
14504
|
:override_project_owners,
|
14505
|
+
:use_asset_type,
|
14500
14506
|
:unknown)
|
14501
14507
|
SENSITIVE = []
|
14502
14508
|
include Aws::Structure
|
@@ -14515,6 +14521,7 @@ module Aws::DataZone
|
|
14515
14521
|
class DelegateCreateEnvironmentProfile < PolicyGrantDetail; end
|
14516
14522
|
class OverrideDomainUnitOwners < PolicyGrantDetail; end
|
14517
14523
|
class OverrideProjectOwners < PolicyGrantDetail; end
|
14524
|
+
class UseAssetType < PolicyGrantDetail; end
|
14518
14525
|
class Unknown < PolicyGrantDetail; end
|
14519
14526
|
end
|
14520
14527
|
|
@@ -20116,7 +20123,8 @@ module Aws::DataZone
|
|
20116
20123
|
#
|
20117
20124
|
# @!attribute [rw] authorized_principals
|
20118
20125
|
# The authorized principals to be updated as part of the
|
20119
|
-
# `UpdateSubscriptionTarget` action.
|
20126
|
+
# `UpdateSubscriptionTarget` action. Updates are supported in batches
|
20127
|
+
# of 5 at a time.
|
20120
20128
|
# @return [Array<String>]
|
20121
20129
|
#
|
20122
20130
|
# @!attribute [rw] created_at
|
@@ -20262,6 +20270,21 @@ module Aws::DataZone
|
|
20262
20270
|
include Aws::Structure
|
20263
20271
|
end
|
20264
20272
|
|
20273
|
+
# Specifies the domain unit(s) whose projects can use this asset type
|
20274
|
+
# while creating asset or asset revisions.
|
20275
|
+
#
|
20276
|
+
# @!attribute [rw] domain_unit_id
|
20277
|
+
# The ID of the domain unit.
|
20278
|
+
# @return [String]
|
20279
|
+
#
|
20280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UseAssetTypePolicyGrantDetail AWS API Documentation
|
20281
|
+
#
|
20282
|
+
class UseAssetTypePolicyGrantDetail < Struct.new(
|
20283
|
+
:domain_unit_id)
|
20284
|
+
SENSITIVE = []
|
20285
|
+
include Aws::Structure
|
20286
|
+
end
|
20287
|
+
|
20265
20288
|
# The user details of a project member.
|
20266
20289
|
#
|
20267
20290
|
# @!attribute [rw] user_id
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -197,12 +197,15 @@ module Aws
|
|
197
197
|
}?,
|
198
198
|
override_project_owners: {
|
199
199
|
include_child_domain_units: bool?
|
200
|
+
}?,
|
201
|
+
use_asset_type: {
|
202
|
+
domain_unit_id: ::String?
|
200
203
|
}?
|
201
204
|
},
|
202
205
|
domain_identifier: ::String,
|
203
206
|
entity_identifier: ::String,
|
204
|
-
entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE"),
|
205
|
-
policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE"),
|
207
|
+
entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE"),
|
208
|
+
policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE" | "USE_ASSET_TYPE"),
|
206
209
|
principal: {
|
207
210
|
domain_unit: {
|
208
211
|
domain_unit_designation: ("OWNER"),
|
@@ -2717,10 +2720,10 @@ module Aws
|
|
2717
2720
|
def list_policy_grants: (
|
2718
2721
|
domain_identifier: ::String,
|
2719
2722
|
entity_identifier: ::String,
|
2720
|
-
entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE"),
|
2723
|
+
entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE"),
|
2721
2724
|
?max_results: ::Integer,
|
2722
2725
|
?next_token: ::String,
|
2723
|
-
policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE")
|
2726
|
+
policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE" | "USE_ASSET_TYPE")
|
2724
2727
|
) -> _ListPolicyGrantsResponseSuccess
|
2725
2728
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPolicyGrantsResponseSuccess
|
2726
2729
|
|
@@ -3045,8 +3048,8 @@ module Aws
|
|
3045
3048
|
?client_token: ::String,
|
3046
3049
|
domain_identifier: ::String,
|
3047
3050
|
entity_identifier: ::String,
|
3048
|
-
entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE"),
|
3049
|
-
policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE"),
|
3051
|
+
entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE"),
|
3052
|
+
policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE" | "USE_ASSET_TYPE"),
|
3050
3053
|
principal: {
|
3051
3054
|
domain_unit: {
|
3052
3055
|
domain_unit_designation: ("OWNER"),
|
data/sig/types.rbs
CHANGED
@@ -103,8 +103,8 @@ module Aws::DataZone
|
|
103
103
|
attr_accessor detail: Types::PolicyGrantDetail
|
104
104
|
attr_accessor domain_identifier: ::String
|
105
105
|
attr_accessor entity_identifier: ::String
|
106
|
-
attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE")
|
107
|
-
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE")
|
106
|
+
attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE")
|
107
|
+
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE" | "USE_ASSET_TYPE")
|
108
108
|
attr_accessor principal: Types::PolicyGrantPrincipal
|
109
109
|
SENSITIVE: []
|
110
110
|
end
|
@@ -3408,10 +3408,10 @@ module Aws::DataZone
|
|
3408
3408
|
class ListPolicyGrantsInput
|
3409
3409
|
attr_accessor domain_identifier: ::String
|
3410
3410
|
attr_accessor entity_identifier: ::String
|
3411
|
-
attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE")
|
3411
|
+
attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE")
|
3412
3412
|
attr_accessor max_results: ::Integer
|
3413
3413
|
attr_accessor next_token: ::String
|
3414
|
-
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE")
|
3414
|
+
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE" | "USE_ASSET_TYPE")
|
3415
3415
|
SENSITIVE: []
|
3416
3416
|
end
|
3417
3417
|
|
@@ -3871,6 +3871,7 @@ module Aws::DataZone
|
|
3871
3871
|
attr_accessor delegate_create_environment_profile: Types::Unit
|
3872
3872
|
attr_accessor override_domain_unit_owners: Types::OverrideDomainUnitOwnersPolicyGrantDetail
|
3873
3873
|
attr_accessor override_project_owners: Types::OverrideProjectOwnersPolicyGrantDetail
|
3874
|
+
attr_accessor use_asset_type: Types::UseAssetTypePolicyGrantDetail
|
3874
3875
|
attr_accessor unknown: untyped
|
3875
3876
|
SENSITIVE: []
|
3876
3877
|
|
@@ -3900,6 +3901,8 @@ module Aws::DataZone
|
|
3900
3901
|
end
|
3901
3902
|
class OverrideProjectOwners < PolicyGrantDetail
|
3902
3903
|
end
|
3904
|
+
class UseAssetType < PolicyGrantDetail
|
3905
|
+
end
|
3903
3906
|
class Unknown < PolicyGrantDetail
|
3904
3907
|
end
|
3905
3908
|
end
|
@@ -4300,8 +4303,8 @@ module Aws::DataZone
|
|
4300
4303
|
attr_accessor client_token: ::String
|
4301
4304
|
attr_accessor domain_identifier: ::String
|
4302
4305
|
attr_accessor entity_identifier: ::String
|
4303
|
-
attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE")
|
4304
|
-
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE")
|
4306
|
+
attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE")
|
4307
|
+
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE" | "USE_ASSET_TYPE")
|
4305
4308
|
attr_accessor principal: Types::PolicyGrantPrincipal
|
4306
4309
|
SENSITIVE: []
|
4307
4310
|
end
|
@@ -5485,6 +5488,11 @@ module Aws::DataZone
|
|
5485
5488
|
SENSITIVE: []
|
5486
5489
|
end
|
5487
5490
|
|
5491
|
+
class UseAssetTypePolicyGrantDetail
|
5492
|
+
attr_accessor domain_unit_id: ::String
|
5493
|
+
SENSITIVE: []
|
5494
|
+
end
|
5495
|
+
|
5488
5496
|
class UserDetails
|
5489
5497
|
attr_accessor user_id: ::String
|
5490
5498
|
SENSITIVE: []
|