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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +5 -1
- data/lib/aws-sdk-datazone/client_api.rb +1 -0
- data/lib/aws-sdk-datazone/types.rb +5 -0
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/types.rbs +1 -0
- 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: add743493e3c6f52317f0f32ea81f204696acd35a09cbb4410064a5b42508909
|
4
|
+
data.tar.gz: 81aea3a80344b68493f50f513088d078b9aa6f2d366e68c4778154afde6c46ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed030424f5abcfeee69353544a956ea2b8a3a01788657248e5b578553b3a0fe588bc94a99001d57dd0e2993fbe3c8d4ac8169302d7870a504abc849ebdbc164b
|
7
|
+
data.tar.gz: 338068dde0714f189d7f4f0306a8c69037aeafc0ed5a545ff3906616bc0486c963888eb3fd79f70ba4bdc19b53a4ef37bc87fad68fb54b5caf3971fac3dd5158
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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.
|
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,
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
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
|