aws-sdk-datazone 1.47.0 → 1.48.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: 7785fca777ed39a654accdc233eddf0092a323360d4a6acce3f51e1eb72bc2a3
4
- data.tar.gz: ce7ec741ab7da7778e7a0943b94b257f59540101a2fb17a0ebbdc7f7d569f678
3
+ metadata.gz: 853f5bf31394901d8ccaa2aeb35447a35cc0652d3740c9f315006b5771b8f884
4
+ data.tar.gz: 19b9fabfddcd2f4001e4fe40fbfb25116064e94d769babccd0e6cdea7ba2580a
5
5
  SHA512:
6
- metadata.gz: 2f548ebd8a2ee369e4950e97c3d175f5d37131e971bb55cfa368293bcd2f1a16a432da82d37b5880a56ae2fbef0da2716754b70b7fbba50e0ad70c316dacc1b8
7
- data.tar.gz: b45b78946c42fc9e51e458fc1e205b68fabd63504288f18f1893db57ba80cd2429ed623b0c34bc72b5a8e84cf143ac2421f8d57b8af3f8fe91e431584607fdae
6
+ metadata.gz: ad449d371c95e57b68d773cd882c9cd02d34555f1e59e753753f189fae6233dfbfebaa4d9cb0d40567faf355c05d5f49fc10721fba1de1aede341381fe46135b
7
+ data.tar.gz: 615b24a37256506d2a439b243dfcbeb14ec025fe9add3aa542f1ebe0554600dee675ef4c6376d12abc9b4e3517abc006dcc914e5e429b50a333e469a16cd6bcc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.48.0 (2025-08-20)
5
+ ------------------
6
+
7
+ * Feature - This release supports policy grant identifier for cloud formation integration
8
+
4
9
  1.47.0 (2025-08-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.48.0
@@ -733,7 +733,9 @@ module Aws::DataZone
733
733
  # @option params [required, Types::PolicyGrantPrincipal] :principal
734
734
  # The principal to whom the permissions are granted.
735
735
  #
736
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
736
+ # @return [Types::AddPolicyGrantOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
737
+ #
738
+ # * {Types::AddPolicyGrantOutput#grant_id #grant_id} => String
737
739
  #
738
740
  # @example Request syntax with placeholder values
739
741
  #
@@ -815,6 +817,10 @@ module Aws::DataZone
815
817
  # },
816
818
  # })
817
819
  #
820
+ # @example Response structure
821
+ #
822
+ # resp.grant_id #=> String
823
+ #
818
824
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AddPolicyGrant AWS API Documentation
819
825
  #
820
826
  # @overload add_policy_grant(params = {})
@@ -8906,6 +8912,7 @@ module Aws::DataZone
8906
8912
  # resp.grant_list[0].detail.override_domain_unit_owners.include_child_domain_units #=> Boolean
8907
8913
  # resp.grant_list[0].detail.override_project_owners.include_child_domain_units #=> Boolean
8908
8914
  # resp.grant_list[0].detail.use_asset_type.domain_unit_id #=> String
8915
+ # resp.grant_list[0].grant_id #=> String
8909
8916
  # resp.grant_list[0].principal.domain_unit.domain_unit_designation #=> String, one of "OWNER"
8910
8917
  # resp.grant_list[0].principal.domain_unit.domain_unit_identifier #=> String
8911
8918
  # resp.grant_list[0].principal.group.group_identifier #=> String
@@ -10221,6 +10228,10 @@ module Aws::DataZone
10221
10228
  # @option params [required, String] :entity_type
10222
10229
  # The type of the entity from which you want to remove a policy grant.
10223
10230
  #
10231
+ # @option params [String] :grant_identifier
10232
+ # The ID of the policy grant that is to be removed from a specified
10233
+ # entity.
10234
+ #
10224
10235
  # @option params [required, String] :policy_type
10225
10236
  # The type of the policy that you want to remove.
10226
10237
  #
@@ -10236,6 +10247,7 @@ module Aws::DataZone
10236
10247
  # domain_identifier: "DomainId", # required
10237
10248
  # entity_identifier: "String", # required
10238
10249
  # entity_type: "DOMAIN_UNIT", # required, accepts DOMAIN_UNIT, ENVIRONMENT_BLUEPRINT_CONFIGURATION, ENVIRONMENT_PROFILE, ASSET_TYPE
10250
+ # grant_identifier: "GrantIdentifier",
10239
10251
  # 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
10240
10252
  # principal: { # required
10241
10253
  # domain_unit: {
@@ -13219,7 +13231,7 @@ module Aws::DataZone
13219
13231
  tracer: tracer
13220
13232
  )
13221
13233
  context[:gem_name] = 'aws-sdk-datazone'
13222
- context[:gem_version] = '1.47.0'
13234
+ context[:gem_version] = '1.48.0'
13223
13235
  Seahorse::Client::Request.new(handlers, context)
13224
13236
  end
13225
13237
 
@@ -525,6 +525,7 @@ module Aws::DataZone
525
525
  GlueRunConfigurationOutputRegionString = Shapes::StringShape.new(name: 'GlueRunConfigurationOutputRegionString')
526
526
  GlueSelfGrantStatusOutput = Shapes::StructureShape.new(name: 'GlueSelfGrantStatusOutput')
527
527
  GovernanceType = Shapes::StringShape.new(name: 'GovernanceType')
528
+ GrantIdentifier = Shapes::StringShape.new(name: 'GrantIdentifier')
528
529
  GrantedEntity = Shapes::UnionShape.new(name: 'GrantedEntity')
529
530
  GrantedEntityInput = Shapes::UnionShape.new(name: 'GrantedEntityInput')
530
531
  GreaterThanExpression = Shapes::StructureShape.new(name: 'GreaterThanExpression')
@@ -1194,6 +1195,7 @@ module Aws::DataZone
1194
1195
  AddPolicyGrantInput.add_member(:principal, Shapes::ShapeRef.new(shape: PolicyGrantPrincipal, required: true, location_name: "principal"))
1195
1196
  AddPolicyGrantInput.struct_class = Types::AddPolicyGrantInput
1196
1197
 
1198
+ AddPolicyGrantOutput.add_member(:grant_id, Shapes::ShapeRef.new(shape: GrantIdentifier, location_name: "grantId"))
1197
1199
  AddPolicyGrantOutput.struct_class = Types::AddPolicyGrantOutput
1198
1200
 
1199
1201
  AddToProjectMemberPoolPolicyGrantDetail.add_member(:include_child_domain_units, Shapes::ShapeRef.new(shape: Boolean, location_name: "includeChildDomainUnits"))
@@ -4382,6 +4384,7 @@ module Aws::DataZone
4382
4384
  PolicyGrantMember.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
4383
4385
  PolicyGrantMember.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
4384
4386
  PolicyGrantMember.add_member(:detail, Shapes::ShapeRef.new(shape: PolicyGrantDetail, location_name: "detail"))
4387
+ PolicyGrantMember.add_member(:grant_id, Shapes::ShapeRef.new(shape: GrantIdentifier, location_name: "grantId"))
4385
4388
  PolicyGrantMember.add_member(:principal, Shapes::ShapeRef.new(shape: PolicyGrantPrincipal, location_name: "principal"))
4386
4389
  PolicyGrantMember.struct_class = Types::PolicyGrantMember
4387
4390
 
@@ -4692,6 +4695,7 @@ module Aws::DataZone
4692
4695
  RemovePolicyGrantInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
4693
4696
  RemovePolicyGrantInput.add_member(:entity_identifier, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "entityIdentifier"))
4694
4697
  RemovePolicyGrantInput.add_member(:entity_type, Shapes::ShapeRef.new(shape: TargetEntityType, required: true, location: "uri", location_name: "entityType"))
4698
+ RemovePolicyGrantInput.add_member(:grant_identifier, Shapes::ShapeRef.new(shape: GrantIdentifier, location_name: "grantIdentifier"))
4695
4699
  RemovePolicyGrantInput.add_member(:policy_type, Shapes::ShapeRef.new(shape: ManagedPolicyType, required: true, location_name: "policyType"))
4696
4700
  RemovePolicyGrantInput.add_member(:principal, Shapes::ShapeRef.new(shape: PolicyGrantPrincipal, required: true, location_name: "principal"))
4697
4701
  RemovePolicyGrantInput.struct_class = Types::RemovePolicyGrantInput
@@ -5777,9 +5781,11 @@ module Aws::DataZone
5777
5781
 
5778
5782
  api.metadata = {
5779
5783
  "apiVersion" => "2018-05-10",
5784
+ "auth" => ["aws.auth#sigv4"],
5780
5785
  "endpointPrefix" => "datazone",
5781
5786
  "jsonVersion" => "1.1",
5782
5787
  "protocol" => "rest-json",
5788
+ "protocols" => ["rest-json"],
5783
5789
  "serviceFullName" => "Amazon DataZone",
5784
5790
  "serviceId" => "DataZone",
5785
5791
  "signatureVersion" => "v4",
@@ -482,9 +482,17 @@ module Aws::DataZone
482
482
  include Aws::Structure
483
483
  end
484
484
 
485
+ # @!attribute [rw] grant_id
486
+ # The ID of the policy grant that was added to a specified entity.
487
+ # @return [String]
488
+ #
485
489
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AddPolicyGrantOutput AWS API Documentation
486
490
  #
487
- class AddPolicyGrantOutput < Aws::EmptyStructure; end
491
+ class AddPolicyGrantOutput < Struct.new(
492
+ :grant_id)
493
+ SENSITIVE = []
494
+ include Aws::Structure
495
+ end
488
496
 
489
497
  # The details of the policy grant.
490
498
  #
@@ -15241,6 +15249,10 @@ module Aws::DataZone
15241
15249
  # The details of the policy grant member.
15242
15250
  # @return [Types::PolicyGrantDetail]
15243
15251
  #
15252
+ # @!attribute [rw] grant_id
15253
+ # The ID of the policy grant.
15254
+ # @return [String]
15255
+ #
15244
15256
  # @!attribute [rw] principal
15245
15257
  # The principal of the policy grant member.
15246
15258
  # @return [Types::PolicyGrantPrincipal]
@@ -15251,6 +15263,7 @@ module Aws::DataZone
15251
15263
  :created_at,
15252
15264
  :created_by,
15253
15265
  :detail,
15266
+ :grant_id,
15254
15267
  :principal)
15255
15268
  SENSITIVE = []
15256
15269
  include Aws::Structure
@@ -16538,6 +16551,11 @@ module Aws::DataZone
16538
16551
  # The type of the entity from which you want to remove a policy grant.
16539
16552
  # @return [String]
16540
16553
  #
16554
+ # @!attribute [rw] grant_identifier
16555
+ # The ID of the policy grant that is to be removed from a specified
16556
+ # entity.
16557
+ # @return [String]
16558
+ #
16541
16559
  # @!attribute [rw] policy_type
16542
16560
  # The type of the policy that you want to remove.
16543
16561
  # @return [String]
@@ -16553,6 +16571,7 @@ module Aws::DataZone
16553
16571
  :domain_identifier,
16554
16572
  :entity_identifier,
16555
16573
  :entity_type,
16574
+ :grant_identifier,
16556
16575
  :policy_type,
16557
16576
  :principal)
16558
16577
  SENSITIVE = []
@@ -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.47.0'
57
+ GEM_VERSION = '1.48.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -157,6 +157,7 @@ module Aws
157
157
 
158
158
  interface _AddPolicyGrantResponseSuccess
159
159
  include ::Seahorse::Client::_ResponseSuccess[Types::AddPolicyGrantOutput]
160
+ def grant_id: () -> ::String
160
161
  end
161
162
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#add_policy_grant-instance_method
162
163
  def add_policy_grant: (
@@ -3157,6 +3158,7 @@ module Aws
3157
3158
  domain_identifier: ::String,
3158
3159
  entity_identifier: ::String,
3159
3160
  entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE"),
3161
+ ?grant_identifier: ::String,
3160
3162
  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"),
3161
3163
  principal: {
3162
3164
  domain_unit: {
data/sig/types.rbs CHANGED
@@ -141,7 +141,9 @@ module Aws::DataZone
141
141
  SENSITIVE: []
142
142
  end
143
143
 
144
- class AddPolicyGrantOutput < Aws::EmptyStructure
144
+ class AddPolicyGrantOutput
145
+ attr_accessor grant_id: ::String
146
+ SENSITIVE: []
145
147
  end
146
148
 
147
149
  class AddToProjectMemberPoolPolicyGrantDetail
@@ -4109,6 +4111,7 @@ module Aws::DataZone
4109
4111
  attr_accessor created_at: ::Time
4110
4112
  attr_accessor created_by: ::String
4111
4113
  attr_accessor detail: Types::PolicyGrantDetail
4114
+ attr_accessor grant_id: ::String
4112
4115
  attr_accessor principal: Types::PolicyGrantPrincipal
4113
4116
  SENSITIVE: []
4114
4117
  end
@@ -4502,6 +4505,7 @@ module Aws::DataZone
4502
4505
  attr_accessor domain_identifier: ::String
4503
4506
  attr_accessor entity_identifier: ::String
4504
4507
  attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE")
4508
+ attr_accessor grant_identifier: ::String
4505
4509
  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")
4506
4510
  attr_accessor principal: Types::PolicyGrantPrincipal
4507
4511
  SENSITIVE: []
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.47.0
4
+ version: 1.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -35,14 +35,14 @@ dependencies:
35
35
  requirements:
36
36
  - - "~>"
37
37
  - !ruby/object:Gem::Version
38
- version: '1.1'
38
+ version: '1.5'
39
39
  type: :runtime
40
40
  prerelease: false
41
41
  version_requirements: !ruby/object:Gem::Requirement
42
42
  requirements:
43
43
  - - "~>"
44
44
  - !ruby/object:Gem::Version
45
- version: '1.1'
45
+ version: '1.5'
46
46
  description: Official AWS Ruby gem for Amazon DataZone. This gem is part of the AWS
47
47
  SDK for Ruby.
48
48
  email: