aws-sdk-datazone 1.86.0 → 1.88.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: ef18f06bc0580fa956604cbf70b7aaf231ffd1c3e46bd95e98e41e4fb3711979
4
- data.tar.gz: 418941d3cf90231ea51bdfd172d57aad39c4927ea4662d352c2640582a31f082
3
+ metadata.gz: cabbf6cb6e00774ea94599ab094b014953128f658ff3654247ce1b34b794ae9d
4
+ data.tar.gz: 561d1df765c9a33671f248b1579a05cee9a861bea90d748f120207bb4459d273
5
5
  SHA512:
6
- metadata.gz: 41fdaabf0296b4e75c65b63517c126d603abc0c2584bd2190713769179102f9b16d7894d93e184d9f15b3f2f976eefd741a844f873af60eb74da5f2ecabd07d0
7
- data.tar.gz: 209ce6feb22a73a5a2c49ccbfd949b9f7b1ee10d9d16614ad04ccef1b2166607d7d053a0bb2d9e0dbecf79504b22365f2faf84d21ef23af2dafa1d3a3e4081d8
6
+ metadata.gz: 683266a958bb90f0216223849749b54e4dec588d9dcf055253636e52c4e4e9107b6bb36c671e5c715cd49e0f48b06285aa0663d509d8a37e7c6a92aec3de6edc
7
+ data.tar.gz: eb5b117d1ab4f7cc929f8977df113b68ce34456d4eec4eefdd3c753e94d90fb1d09eab211705e21be64ccde563c3af16f15a73b1d2e87ceec9f77175a75fac0f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.88.0 (2026-08-27)
5
+ ------------------
6
+
7
+ * Feature - Add cascadeDelete to DeleteDomain. When specified, DataZone recursively deletes all projects, environments, subscriptions, and their underlying AWS resources before removing the domain. Deletion progress is reported via deleteProgress and resource failures via failureReasons on GetDomain.
8
+
9
+ 1.87.0 (2026-08-11)
10
+ ------------------
11
+
12
+ * Feature - GetSubscriptionGrant now returns materialized asset scope name for mapping Lake Formation data cell filters or Redshift views to subscription grants.
13
+
4
14
  1.86.0 (2026-07-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.86.0
1
+ 1.88.0
@@ -642,6 +642,7 @@ module Aws::DataZone
642
642
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.filter_ids #=> Array
643
643
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.filter_ids[0] #=> String
644
644
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.status #=> String
645
+ # resp.subscribed_listings[0].item.asset_listing.asset_scope.scope_name #=> String
645
646
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.error_message #=> String
646
647
  # resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
647
648
  # resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -1143,6 +1144,7 @@ module Aws::DataZone
1143
1144
  # resp.subscribed_listing.item.asset_listing.asset_scope.filter_ids #=> Array
1144
1145
  # resp.subscribed_listing.item.asset_listing.asset_scope.filter_ids[0] #=> String
1145
1146
  # resp.subscribed_listing.item.asset_listing.asset_scope.status #=> String
1147
+ # resp.subscribed_listing.item.asset_listing.asset_scope.scope_name #=> String
1146
1148
  # resp.subscribed_listing.item.asset_listing.asset_scope.error_message #=> String
1147
1149
  # resp.subscribed_listing.item.asset_listing.permissions.s3 #=> Array
1148
1150
  # resp.subscribed_listing.item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -4446,6 +4448,7 @@ module Aws::DataZone
4446
4448
  # resp.assets[0].asset_scope.filter_ids #=> Array
4447
4449
  # resp.assets[0].asset_scope.filter_ids[0] #=> String
4448
4450
  # resp.assets[0].asset_scope.status #=> String
4451
+ # resp.assets[0].asset_scope.scope_name #=> String
4449
4452
  # resp.assets[0].asset_scope.error_message #=> String
4450
4453
  # resp.assets[0].permissions.s3 #=> Array
4451
4454
  # resp.assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -4600,6 +4603,7 @@ module Aws::DataZone
4600
4603
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.filter_ids #=> Array
4601
4604
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.filter_ids[0] #=> String
4602
4605
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.status #=> String
4606
+ # resp.subscribed_listings[0].item.asset_listing.asset_scope.scope_name #=> String
4603
4607
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.error_message #=> String
4604
4608
  # resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
4605
4609
  # resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -5196,8 +5200,24 @@ module Aws::DataZone
5196
5200
  # not need to pass this option.**
5197
5201
  #
5198
5202
  # @option params [Boolean] :skip_deletion_check
5199
- # Specifies the optional flag to delete all child entities within the
5200
- # domain.
5203
+ # Specifies whether to skip the check that prevents deletion of a domain
5204
+ # that still contains resources. When you use this parameter, Amazon
5205
+ # DataZone deletes the domain but might not remove its associated
5206
+ # resources, which can leave orphaned resources behind. To delete a
5207
+ # domain and fully clean up its associated resources, use
5208
+ # `cascadeDelete` instead. You can't use this parameter together with
5209
+ # `cascadeDelete`.
5210
+ #
5211
+ # @option params [Boolean] :cascade_delete
5212
+ # Specifies whether to delete the domain along with all of its
5213
+ # associated resources. When you use this parameter, Amazon DataZone
5214
+ # deletes the domain and cleanly removes its associated resources
5215
+ # without leaving orphaned resources behind. Amazon DataZone reports
5216
+ # deletion progress in the `deleteProgress` field. Amazon DataZone
5217
+ # reports any resources that it can't delete in the `failureReasons`
5218
+ # field of the `GetDomain` response. You can't use this parameter
5219
+ # together with `skipDeletionCheck`. If you don't specify a value, the
5220
+ # default is `false`.
5201
5221
  #
5202
5222
  # @return [Types::DeleteDomainOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5203
5223
  #
@@ -5209,6 +5229,7 @@ module Aws::DataZone
5209
5229
  # identifier: "DomainId", # required
5210
5230
  # client_token: "String",
5211
5231
  # skip_deletion_check: false,
5232
+ # cascade_delete: false,
5212
5233
  # })
5213
5234
  #
5214
5235
  # @example Response structure
@@ -5782,6 +5803,7 @@ module Aws::DataZone
5782
5803
  # resp.assets[0].asset_scope.filter_ids #=> Array
5783
5804
  # resp.assets[0].asset_scope.filter_ids[0] #=> String
5784
5805
  # resp.assets[0].asset_scope.status #=> String
5806
+ # resp.assets[0].asset_scope.scope_name #=> String
5785
5807
  # resp.assets[0].asset_scope.error_message #=> String
5786
5808
  # resp.assets[0].permissions.s3 #=> Array
5787
5809
  # resp.assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -6840,6 +6862,8 @@ module Aws::DataZone
6840
6862
  # * {Types::GetDomainOutput#tags #tags} => Hash<String,String>
6841
6863
  # * {Types::GetDomainOutput#domain_version #domain_version} => String
6842
6864
  # * {Types::GetDomainOutput#service_role #service_role} => String
6865
+ # * {Types::GetDomainOutput#failure_reasons #failure_reasons} => Array<Types::FailureReason>
6866
+ # * {Types::GetDomainOutput#delete_progress #delete_progress} => Types::DeleteProgress
6843
6867
  #
6844
6868
  # @example Request syntax with placeholder values
6845
6869
  #
@@ -6867,6 +6891,10 @@ module Aws::DataZone
6867
6891
  # resp.tags["TagKey"] #=> String
6868
6892
  # resp.domain_version #=> String, one of "V1", "V2"
6869
6893
  # resp.service_role #=> String
6894
+ # resp.failure_reasons #=> Array
6895
+ # resp.failure_reasons[0].id #=> String
6896
+ # resp.failure_reasons[0].message #=> String
6897
+ # resp.delete_progress.successfully_deleted_project_count #=> Integer
6870
6898
  #
6871
6899
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetDomain AWS API Documentation
6872
6900
  #
@@ -8481,6 +8509,7 @@ module Aws::DataZone
8481
8509
  # resp.subscribed_listing.item.asset_listing.asset_scope.filter_ids #=> Array
8482
8510
  # resp.subscribed_listing.item.asset_listing.asset_scope.filter_ids[0] #=> String
8483
8511
  # resp.subscribed_listing.item.asset_listing.asset_scope.status #=> String
8512
+ # resp.subscribed_listing.item.asset_listing.asset_scope.scope_name #=> String
8484
8513
  # resp.subscribed_listing.item.asset_listing.asset_scope.error_message #=> String
8485
8514
  # resp.subscribed_listing.item.asset_listing.permissions.s3 #=> Array
8486
8515
  # resp.subscribed_listing.item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -8565,6 +8594,7 @@ module Aws::DataZone
8565
8594
  # resp.assets[0].asset_scope.filter_ids #=> Array
8566
8595
  # resp.assets[0].asset_scope.filter_ids[0] #=> String
8567
8596
  # resp.assets[0].asset_scope.status #=> String
8597
+ # resp.assets[0].asset_scope.scope_name #=> String
8568
8598
  # resp.assets[0].asset_scope.error_message #=> String
8569
8599
  # resp.assets[0].permissions.s3 #=> Array
8570
8600
  # resp.assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -8653,6 +8683,7 @@ module Aws::DataZone
8653
8683
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.filter_ids #=> Array
8654
8684
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.filter_ids[0] #=> String
8655
8685
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.status #=> String
8686
+ # resp.subscribed_listings[0].item.asset_listing.asset_scope.scope_name #=> String
8656
8687
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.error_message #=> String
8657
8688
  # resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
8658
8689
  # resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -11314,6 +11345,7 @@ module Aws::DataZone
11314
11345
  # resp.items[0].assets[0].asset_scope.filter_ids #=> Array
11315
11346
  # resp.items[0].assets[0].asset_scope.filter_ids[0] #=> String
11316
11347
  # resp.items[0].assets[0].asset_scope.status #=> String
11348
+ # resp.items[0].assets[0].asset_scope.scope_name #=> String
11317
11349
  # resp.items[0].assets[0].asset_scope.error_message #=> String
11318
11350
  # resp.items[0].assets[0].permissions.s3 #=> Array
11319
11351
  # resp.items[0].assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -11448,6 +11480,7 @@ module Aws::DataZone
11448
11480
  # resp.items[0].subscribed_listings[0].item.asset_listing.asset_scope.filter_ids #=> Array
11449
11481
  # resp.items[0].subscribed_listings[0].item.asset_listing.asset_scope.filter_ids[0] #=> String
11450
11482
  # resp.items[0].subscribed_listings[0].item.asset_listing.asset_scope.status #=> String
11483
+ # resp.items[0].subscribed_listings[0].item.asset_listing.asset_scope.scope_name #=> String
11451
11484
  # resp.items[0].subscribed_listings[0].item.asset_listing.asset_scope.error_message #=> String
11452
11485
  # resp.items[0].subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
11453
11486
  # resp.items[0].subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -11689,6 +11722,7 @@ module Aws::DataZone
11689
11722
  # resp.items[0].subscribed_listing.item.asset_listing.asset_scope.filter_ids #=> Array
11690
11723
  # resp.items[0].subscribed_listing.item.asset_listing.asset_scope.filter_ids[0] #=> String
11691
11724
  # resp.items[0].subscribed_listing.item.asset_listing.asset_scope.status #=> String
11725
+ # resp.items[0].subscribed_listing.item.asset_listing.asset_scope.scope_name #=> String
11692
11726
  # resp.items[0].subscribed_listing.item.asset_listing.asset_scope.error_message #=> String
11693
11727
  # resp.items[0].subscribed_listing.item.asset_listing.permissions.s3 #=> Array
11694
11728
  # resp.items[0].subscribed_listing.item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -12391,6 +12425,7 @@ module Aws::DataZone
12391
12425
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.filter_ids #=> Array
12392
12426
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.filter_ids[0] #=> String
12393
12427
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.status #=> String
12428
+ # resp.subscribed_listings[0].item.asset_listing.asset_scope.scope_name #=> String
12394
12429
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.error_message #=> String
12395
12430
  # resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
12396
12431
  # resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -12624,6 +12659,7 @@ module Aws::DataZone
12624
12659
  # resp.subscribed_listing.item.asset_listing.asset_scope.filter_ids #=> Array
12625
12660
  # resp.subscribed_listing.item.asset_listing.asset_scope.filter_ids[0] #=> String
12626
12661
  # resp.subscribed_listing.item.asset_listing.asset_scope.status #=> String
12662
+ # resp.subscribed_listing.item.asset_listing.asset_scope.scope_name #=> String
12627
12663
  # resp.subscribed_listing.item.asset_listing.asset_scope.error_message #=> String
12628
12664
  # resp.subscribed_listing.item.asset_listing.permissions.s3 #=> Array
12629
12665
  # resp.subscribed_listing.item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -16304,6 +16340,7 @@ module Aws::DataZone
16304
16340
  # resp.assets[0].asset_scope.filter_ids #=> Array
16305
16341
  # resp.assets[0].asset_scope.filter_ids[0] #=> String
16306
16342
  # resp.assets[0].asset_scope.status #=> String
16343
+ # resp.assets[0].asset_scope.scope_name #=> String
16307
16344
  # resp.assets[0].asset_scope.error_message #=> String
16308
16345
  # resp.assets[0].permissions.s3 #=> Array
16309
16346
  # resp.assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -16395,6 +16432,7 @@ module Aws::DataZone
16395
16432
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.filter_ids #=> Array
16396
16433
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.filter_ids[0] #=> String
16397
16434
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.status #=> String
16435
+ # resp.subscribed_listings[0].item.asset_listing.asset_scope.scope_name #=> String
16398
16436
  # resp.subscribed_listings[0].item.asset_listing.asset_scope.error_message #=> String
16399
16437
  # resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
16400
16438
  # resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
@@ -16619,7 +16657,7 @@ module Aws::DataZone
16619
16657
  tracer: tracer
16620
16658
  )
16621
16659
  context[:gem_name] = 'aws-sdk-datazone'
16622
- context[:gem_version] = '1.86.0'
16660
+ context[:gem_version] = '1.88.0'
16623
16661
  Seahorse::Client::Request.new(handlers, context)
16624
16662
  end
16625
16663
 
@@ -349,6 +349,7 @@ module Aws::DataZone
349
349
  DeleteListingOutput = Shapes::StructureShape.new(name: 'DeleteListingOutput')
350
350
  DeleteNotebookInput = Shapes::StructureShape.new(name: 'DeleteNotebookInput')
351
351
  DeleteNotebookOutput = Shapes::StructureShape.new(name: 'DeleteNotebookOutput')
352
+ DeleteProgress = Shapes::StructureShape.new(name: 'DeleteProgress')
352
353
  DeleteProjectInput = Shapes::StructureShape.new(name: 'DeleteProjectInput')
353
354
  DeleteProjectMembershipInput = Shapes::StructureShape.new(name: 'DeleteProjectMembershipInput')
354
355
  DeleteProjectMembershipOutput = Shapes::StructureShape.new(name: 'DeleteProjectMembershipOutput')
@@ -457,7 +458,9 @@ module Aws::DataZone
457
458
  ExternalIdentifier = Shapes::StringShape.new(name: 'ExternalIdentifier')
458
459
  FailedQueryProcessingErrorMessages = Shapes::ListShape.new(name: 'FailedQueryProcessingErrorMessages')
459
460
  FailureCause = Shapes::StructureShape.new(name: 'FailureCause')
461
+ FailureReason = Shapes::StructureShape.new(name: 'FailureReason')
460
462
  FailureReasons = Shapes::ListShape.new(name: 'FailureReasons')
463
+ FailureReasonsList = Shapes::ListShape.new(name: 'FailureReasonsList')
461
464
  FileFormat = Shapes::StringShape.new(name: 'FileFormat')
462
465
  FileName = Shapes::StringShape.new(name: 'FileName')
463
466
  Filter = Shapes::StructureShape.new(name: 'Filter')
@@ -1604,6 +1607,7 @@ module Aws::DataZone
1604
1607
  AssetScope.add_member(:asset_id, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "assetId"))
1605
1608
  AssetScope.add_member(:filter_ids, Shapes::ShapeRef.new(shape: FilterIds, required: true, location_name: "filterIds"))
1606
1609
  AssetScope.add_member(:status, Shapes::ShapeRef.new(shape: String, required: true, location_name: "status"))
1610
+ AssetScope.add_member(:scope_name, Shapes::ShapeRef.new(shape: String, location_name: "scopeName"))
1607
1611
  AssetScope.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "errorMessage"))
1608
1612
  AssetScope.struct_class = Types::AssetScope
1609
1613
 
@@ -2906,6 +2910,7 @@ module Aws::DataZone
2906
2910
  DeleteDomainInput.add_member(:identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "identifier"))
2907
2911
  DeleteDomainInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
2908
2912
  DeleteDomainInput.add_member(:skip_deletion_check, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "skipDeletionCheck"))
2913
+ DeleteDomainInput.add_member(:cascade_delete, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "cascadeDelete"))
2909
2914
  DeleteDomainInput.struct_class = Types::DeleteDomainInput
2910
2915
 
2911
2916
  DeleteDomainOutput.add_member(:status, Shapes::ShapeRef.new(shape: DomainStatus, required: true, location_name: "status"))
@@ -2979,6 +2984,9 @@ module Aws::DataZone
2979
2984
 
2980
2985
  DeleteNotebookOutput.struct_class = Types::DeleteNotebookOutput
2981
2986
 
2987
+ DeleteProgress.add_member(:successfully_deleted_project_count, Shapes::ShapeRef.new(shape: Integer, location_name: "successfullyDeletedProjectCount"))
2988
+ DeleteProgress.struct_class = Types::DeleteProgress
2989
+
2982
2990
  DeleteProjectInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
2983
2991
  DeleteProjectInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ProjectId, required: true, location: "uri", location_name: "identifier"))
2984
2992
  DeleteProjectInput.add_member(:skip_deletion_check, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "skipDeletionCheck"))
@@ -3296,8 +3304,14 @@ module Aws::DataZone
3296
3304
  FailureCause.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
3297
3305
  FailureCause.struct_class = Types::FailureCause
3298
3306
 
3307
+ FailureReason.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "id"))
3308
+ FailureReason.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
3309
+ FailureReason.struct_class = Types::FailureReason
3310
+
3299
3311
  FailureReasons.member = Shapes::ShapeRef.new(shape: ProjectDeletionError)
3300
3312
 
3313
+ FailureReasonsList.member = Shapes::ShapeRef.new(shape: FailureReason)
3314
+
3301
3315
  Filter.add_member(:attribute, Shapes::ShapeRef.new(shape: Attribute, required: true, location_name: "attribute"))
3302
3316
  Filter.add_member(:value, Shapes::ShapeRef.new(shape: FilterValueString, location_name: "value"))
3303
3317
  Filter.add_member(:int_value, Shapes::ShapeRef.new(shape: Long, location_name: "intValue"))
@@ -3574,6 +3588,8 @@ module Aws::DataZone
3574
3588
  GetDomainOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
3575
3589
  GetDomainOutput.add_member(:domain_version, Shapes::ShapeRef.new(shape: DomainVersion, location_name: "domainVersion"))
3576
3590
  GetDomainOutput.add_member(:service_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "serviceRole"))
3591
+ GetDomainOutput.add_member(:failure_reasons, Shapes::ShapeRef.new(shape: FailureReasonsList, location_name: "failureReasons"))
3592
+ GetDomainOutput.add_member(:delete_progress, Shapes::ShapeRef.new(shape: DeleteProgress, location_name: "deleteProgress"))
3577
3593
  GetDomainOutput.struct_class = Types::GetDomainOutput
3578
3594
 
3579
3595
  GetDomainUnitInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
@@ -1175,6 +1175,10 @@ module Aws::DataZone
1175
1175
  # The status of the asset scope.
1176
1176
  # @return [String]
1177
1177
  #
1178
+ # @!attribute [rw] scope_name
1179
+ # The name of the materialized asset scope.
1180
+ # @return [String]
1181
+ #
1178
1182
  # @!attribute [rw] error_message
1179
1183
  # The error message of the asset scope.
1180
1184
  # @return [String]
@@ -1185,6 +1189,7 @@ module Aws::DataZone
1185
1189
  :asset_id,
1186
1190
  :filter_ids,
1187
1191
  :status,
1192
+ :scope_name,
1188
1193
  :error_message)
1189
1194
  SENSITIVE = []
1190
1195
  include Aws::Structure
@@ -7100,8 +7105,25 @@ module Aws::DataZone
7100
7105
  # @return [String]
7101
7106
  #
7102
7107
  # @!attribute [rw] skip_deletion_check
7103
- # Specifies the optional flag to delete all child entities within the
7104
- # domain.
7108
+ # Specifies whether to skip the check that prevents deletion of a
7109
+ # domain that still contains resources. When you use this parameter,
7110
+ # Amazon DataZone deletes the domain but might not remove its
7111
+ # associated resources, which can leave orphaned resources behind. To
7112
+ # delete a domain and fully clean up its associated resources, use
7113
+ # `cascadeDelete` instead. You can't use this parameter together with
7114
+ # `cascadeDelete`.
7115
+ # @return [Boolean]
7116
+ #
7117
+ # @!attribute [rw] cascade_delete
7118
+ # Specifies whether to delete the domain along with all of its
7119
+ # associated resources. When you use this parameter, Amazon DataZone
7120
+ # deletes the domain and cleanly removes its associated resources
7121
+ # without leaving orphaned resources behind. Amazon DataZone reports
7122
+ # deletion progress in the `deleteProgress` field. Amazon DataZone
7123
+ # reports any resources that it can't delete in the `failureReasons`
7124
+ # field of the `GetDomain` response. You can't use this parameter
7125
+ # together with `skipDeletionCheck`. If you don't specify a value,
7126
+ # the default is `false`.
7105
7127
  # @return [Boolean]
7106
7128
  #
7107
7129
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDomainInput AWS API Documentation
@@ -7109,7 +7131,8 @@ module Aws::DataZone
7109
7131
  class DeleteDomainInput < Struct.new(
7110
7132
  :identifier,
7111
7133
  :client_token,
7112
- :skip_deletion_check)
7134
+ :skip_deletion_check,
7135
+ :cascade_delete)
7113
7136
  SENSITIVE = []
7114
7137
  include Aws::Structure
7115
7138
  end
@@ -7394,6 +7417,24 @@ module Aws::DataZone
7394
7417
  #
7395
7418
  class DeleteNotebookOutput < Aws::EmptyStructure; end
7396
7419
 
7420
+ # The progress of a domain deletion, including the number of projects
7421
+ # that Amazon DataZone successfully deleted. Amazon DataZone returns
7422
+ # this structure in the response to a `GetDomain` request while a
7423
+ # cascade deletion is in progress.
7424
+ #
7425
+ # @!attribute [rw] successfully_deleted_project_count
7426
+ # The number of projects that Amazon DataZone successfully deleted
7427
+ # during the domain deletion.
7428
+ # @return [Integer]
7429
+ #
7430
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteProgress AWS API Documentation
7431
+ #
7432
+ class DeleteProgress < Struct.new(
7433
+ :successfully_deleted_project_count)
7434
+ SENSITIVE = []
7435
+ include Aws::Structure
7436
+ end
7437
+
7397
7438
  # @!attribute [rw] domain_identifier
7398
7439
  # The ID of the Amazon DataZone domain in which the project is
7399
7440
  # deleted.
@@ -8697,6 +8738,27 @@ module Aws::DataZone
8697
8738
  include Aws::Structure
8698
8739
  end
8699
8740
 
8741
+ # The details of a resource deletion failure during a cascade deletion
8742
+ # of the domain.
8743
+ #
8744
+ # @!attribute [rw] id
8745
+ # The identifier of the resource that failed to delete.
8746
+ # @return [String]
8747
+ #
8748
+ # @!attribute [rw] message
8749
+ # The error message associated with the resource that failed to
8750
+ # delete.
8751
+ # @return [String]
8752
+ #
8753
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/FailureReason AWS API Documentation
8754
+ #
8755
+ class FailureReason < Struct.new(
8756
+ :id,
8757
+ :message)
8758
+ SENSITIVE = []
8759
+ include Aws::Structure
8760
+ end
8761
+
8700
8762
  # A search filter in Amazon DataZone.
8701
8763
  #
8702
8764
  # @!attribute [rw] attribute
@@ -9917,6 +9979,16 @@ module Aws::DataZone
9917
9979
  # The service role of the domain.
9918
9980
  # @return [String]
9919
9981
  #
9982
+ # @!attribute [rw] failure_reasons
9983
+ # The list of failure reasons for resources that Amazon DataZone could
9984
+ # not delete during a cascade deletion of the domain.
9985
+ # @return [Array<Types::FailureReason>]
9986
+ #
9987
+ # @!attribute [rw] delete_progress
9988
+ # The progress of the current domain deletion, including the number of
9989
+ # projects that Amazon DataZone successfully deleted.
9990
+ # @return [Types::DeleteProgress]
9991
+ #
9920
9992
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetDomainOutput AWS API Documentation
9921
9993
  #
9922
9994
  class GetDomainOutput < Struct.new(
@@ -9934,7 +10006,9 @@ module Aws::DataZone
9934
10006
  :last_updated_at,
9935
10007
  :tags,
9936
10008
  :domain_version,
9937
- :service_role)
10009
+ :service_role,
10010
+ :failure_reasons,
10011
+ :delete_progress)
9938
10012
  SENSITIVE = []
9939
10013
  include Aws::Structure
9940
10014
  end
@@ -55,7 +55,7 @@ module Aws::DataZone
55
55
  autoload :EndpointProvider, 'aws-sdk-datazone/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-datazone/endpoints'
57
57
 
58
- GEM_VERSION = '1.86.0'
58
+ GEM_VERSION = '1.88.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1538,7 +1538,8 @@ module Aws
1538
1538
  def delete_domain: (
1539
1539
  identifier: ::String,
1540
1540
  ?client_token: ::String,
1541
- ?skip_deletion_check: bool
1541
+ ?skip_deletion_check: bool,
1542
+ ?cascade_delete: bool
1542
1543
  ) -> _DeleteDomainResponseSuccess
1543
1544
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainResponseSuccess
1544
1545
 
@@ -2007,6 +2008,8 @@ module Aws
2007
2008
  def tags: () -> ::Hash[::String, ::String]
2008
2009
  def domain_version: () -> ("V1" | "V2")
2009
2010
  def service_role: () -> ::String
2011
+ def failure_reasons: () -> ::Array[Types::FailureReason]
2012
+ def delete_progress: () -> Types::DeleteProgress
2010
2013
  end
2011
2014
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_domain-instance_method
2012
2015
  def get_domain: (
data/sig/types.rbs CHANGED
@@ -329,6 +329,7 @@ module Aws::DataZone
329
329
  attr_accessor asset_id: ::String
330
330
  attr_accessor filter_ids: ::Array[::String]
331
331
  attr_accessor status: ::String
332
+ attr_accessor scope_name: ::String
332
333
  attr_accessor error_message: ::String
333
334
  SENSITIVE: []
334
335
  end
@@ -1910,6 +1911,7 @@ module Aws::DataZone
1910
1911
  attr_accessor identifier: ::String
1911
1912
  attr_accessor client_token: ::String
1912
1913
  attr_accessor skip_deletion_check: bool
1914
+ attr_accessor cascade_delete: bool
1913
1915
  SENSITIVE: []
1914
1916
  end
1915
1917
 
@@ -2019,6 +2021,11 @@ module Aws::DataZone
2019
2021
  class DeleteNotebookOutput < Aws::EmptyStructure
2020
2022
  end
2021
2023
 
2024
+ class DeleteProgress
2025
+ attr_accessor successfully_deleted_project_count: ::Integer
2026
+ SENSITIVE: []
2027
+ end
2028
+
2022
2029
  class DeleteProjectInput
2023
2030
  attr_accessor domain_identifier: ::String
2024
2031
  attr_accessor identifier: ::String
@@ -2394,6 +2401,12 @@ module Aws::DataZone
2394
2401
  SENSITIVE: []
2395
2402
  end
2396
2403
 
2404
+ class FailureReason
2405
+ attr_accessor id: ::String
2406
+ attr_accessor message: ::String
2407
+ SENSITIVE: []
2408
+ end
2409
+
2397
2410
  class Filter
2398
2411
  attr_accessor attribute: ::String
2399
2412
  attr_accessor value: ::String
@@ -2710,6 +2723,8 @@ module Aws::DataZone
2710
2723
  attr_accessor tags: ::Hash[::String, ::String]
2711
2724
  attr_accessor domain_version: ("V1" | "V2")
2712
2725
  attr_accessor service_role: ::String
2726
+ attr_accessor failure_reasons: ::Array[Types::FailureReason]
2727
+ attr_accessor delete_progress: Types::DeleteProgress
2713
2728
  SENSITIVE: []
2714
2729
  end
2715
2730
 
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.86.0
4
+ version: 1.88.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services