aws-sdk-datazone 1.40.0 → 1.41.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: 856a073ded817a8605bf15327703f5280cc85f60114673984f5cab2a10196ea7
4
- data.tar.gz: 8c0eaa7cba05ccf6d13189fef11c9aa4bff300833d1e161e7553866ce00564ef
3
+ metadata.gz: add743493e3c6f52317f0f32ea81f204696acd35a09cbb4410064a5b42508909
4
+ data.tar.gz: 81aea3a80344b68493f50f513088d078b9aa6f2d366e68c4778154afde6c46ca
5
5
  SHA512:
6
- metadata.gz: 34119bfd07a209e8bea6f0d861ebb332b38f0d133ab8865010fc5faa11ea60ea88f0a85ef0c21a68260af0f8351376f250761197126c6739cb0fbf9f01587eff
7
- data.tar.gz: dbf4605c60778b7f9dcede3f8f6a9bf80487b57f4357f3a21ba7252cd6efb632f8a8b84b80fb170d0a5863c22d5cf82532c620007d5c81eff5572d4153a8bc0c
6
+ metadata.gz: ed030424f5abcfeee69353544a956ea2b8a3a01788657248e5b578553b3a0fe588bc94a99001d57dd0e2993fbe3c8d4ac8169302d7870a504abc849ebdbc164b
7
+ data.tar.gz: 338068dde0714f189d7f4f0306a8c69037aeafc0ed5a545ff3906616bc0486c963888eb3fd79f70ba4bdc19b53a4ef37bc87fad68fb54b5caf3971fac3dd5158
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2025-07-01)
5
+ ------------------
6
+
7
+ * Feature - Add support for the new optional domain-unit-id parameter in the UpdateProject API.
8
+
4
9
  1.40.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.41.0
@@ -11995,6 +11995,9 @@ module Aws::DataZone
11995
11995
  # @option params [required, String] :domain_identifier
11996
11996
  # The ID of the Amazon DataZone domain where a project is being updated.
11997
11997
  #
11998
+ # @option params [String] :domain_unit_id
11999
+ # The ID of the domain unit.
12000
+ #
11998
12001
  # @option params [Types::EnvironmentDeploymentDetails] :environment_deployment_details
11999
12002
  # The environment deployment details of the project.
12000
12003
  #
@@ -12038,6 +12041,7 @@ module Aws::DataZone
12038
12041
  # resp = client.update_project({
12039
12042
  # description: "Description",
12040
12043
  # domain_identifier: "DomainId", # required
12044
+ # domain_unit_id: "DomainUnitId",
12041
12045
  # environment_deployment_details: {
12042
12046
  # environment_failure_reasons: {
12043
12047
  # "String" => [
@@ -12703,7 +12707,7 @@ module Aws::DataZone
12703
12707
  tracer: tracer
12704
12708
  )
12705
12709
  context[:gem_name] = 'aws-sdk-datazone'
12706
- context[:gem_version] = '1.40.0'
12710
+ context[:gem_version] = '1.41.0'
12707
12711
  Seahorse::Client::Request.new(handlers, context)
12708
12712
  end
12709
12713
 
@@ -5317,6 +5317,7 @@ module Aws::DataZone
5317
5317
 
5318
5318
  UpdateProjectInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
5319
5319
  UpdateProjectInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
5320
+ UpdateProjectInput.add_member(:domain_unit_id, Shapes::ShapeRef.new(shape: DomainUnitId, location_name: "domainUnitId"))
5320
5321
  UpdateProjectInput.add_member(:environment_deployment_details, Shapes::ShapeRef.new(shape: EnvironmentDeploymentDetails, location_name: "environmentDeploymentDetails"))
5321
5322
  UpdateProjectInput.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTerms, location_name: "glossaryTerms"))
5322
5323
  UpdateProjectInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ProjectId, required: true, location: "uri", location_name: "identifier"))
@@ -19508,6 +19508,10 @@ module Aws::DataZone
19508
19508
  # updated.
19509
19509
  # @return [String]
19510
19510
  #
19511
+ # @!attribute [rw] domain_unit_id
19512
+ # The ID of the domain unit.
19513
+ # @return [String]
19514
+ #
19511
19515
  # @!attribute [rw] environment_deployment_details
19512
19516
  # The environment deployment details of the project.
19513
19517
  # @return [Types::EnvironmentDeploymentDetails]
@@ -19540,6 +19544,7 @@ module Aws::DataZone
19540
19544
  class UpdateProjectInput < Struct.new(
19541
19545
  :description,
19542
19546
  :domain_identifier,
19547
+ :domain_unit_id,
19543
19548
  :environment_deployment_details,
19544
19549
  :glossary_terms,
19545
19550
  :identifier,
@@ -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.40.0'
57
+ GEM_VERSION = '1.41.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -3813,6 +3813,7 @@ module Aws
3813
3813
  def update_project: (
3814
3814
  ?description: ::String,
3815
3815
  domain_identifier: ::String,
3816
+ ?domain_unit_id: ::String,
3816
3817
  ?environment_deployment_details: {
3817
3818
  environment_failure_reasons: Hash[::String, Array[
3818
3819
  {
data/sig/types.rbs CHANGED
@@ -5309,6 +5309,7 @@ module Aws::DataZone
5309
5309
  class UpdateProjectInput
5310
5310
  attr_accessor description: ::String
5311
5311
  attr_accessor domain_identifier: ::String
5312
+ attr_accessor domain_unit_id: ::String
5312
5313
  attr_accessor environment_deployment_details: Types::EnvironmentDeploymentDetails
5313
5314
  attr_accessor glossary_terms: ::Array[::String]
5314
5315
  attr_accessor identifier: ::String
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.40.0
4
+ version: 1.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services