aws-sdk-datazone 1.80.0 → 1.81.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: 0fe53e66ab647fae5c7366c60d58b2023b7a2dc8827b2ff461e690ec4fe40fbd
4
- data.tar.gz: 324990f70e7b810a4dea7338456ee50fb7f0b39cb5a99481b8eb354555d414a1
3
+ metadata.gz: 6589c535adbe090c87c764f0d0683656036951c3d9bdb1fe1a5491a516ec3346
4
+ data.tar.gz: cfc54c7284926422acf93eb6f157236ea5be42c8edf3d716522f68be9c9b4ccc
5
5
  SHA512:
6
- metadata.gz: abe8d89885b0afd3c405c6f4d34709aa6f9b5318e7486b31966ff7e571012e968b4d1564035ca29b430b2e9880d6b39efa1e8438fdbfe77d60356a064ceded00
7
- data.tar.gz: a219e5bad15388e0474051abbde3e534c0b36fbe120fea2af0c0a7c1896d8431a7568efecbf3ce404eb187d605db0ee76f223a30041fb9716d6184a267bbfe85
6
+ metadata.gz: 946f2567ccc78497a936d62075a206795e4af033d2e1b0821e9d3a20ad82dca994c6aa4ee941411bc82882637ea19af047f5e23dd25d45fbd714317f75dface2
7
+ data.tar.gz: 2175348f1c7ad98bd911e2ffe07083b0db5a378789843462ed8c7c2c56e56c148e22fd6aa2822073eeeb3c8316e070b6ff4c022d767a510182af603220257ffc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.81.0 (2026-05-26)
5
+ ------------------
6
+
7
+ * Feature - Added resourceConfigurations and allowUserProvidedConfigurations fields to environment blueprint configuration APIs, enabling customers who migrated from V1 to V2 domains to update resource configurations (such as lineage schedules) programmatically via the SDK.
8
+
4
9
  1.80.0 (2026-05-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.80.0
1
+ 1.81.0
@@ -7002,8 +7002,10 @@ module Aws::DataZone
7002
7002
  # * {Types::GetEnvironmentBlueprintConfigurationOutput#manage_access_role_arn #manage_access_role_arn} => String
7003
7003
  # * {Types::GetEnvironmentBlueprintConfigurationOutput#enabled_regions #enabled_regions} => Array<String>
7004
7004
  # * {Types::GetEnvironmentBlueprintConfigurationOutput#regional_parameters #regional_parameters} => Hash<String,Hash<String,String>>
7005
+ # * {Types::GetEnvironmentBlueprintConfigurationOutput#allow_user_provided_configurations #allow_user_provided_configurations} => Boolean
7005
7006
  # * {Types::GetEnvironmentBlueprintConfigurationOutput#created_at #created_at} => Time
7006
7007
  # * {Types::GetEnvironmentBlueprintConfigurationOutput#updated_at #updated_at} => Time
7008
+ # * {Types::GetEnvironmentBlueprintConfigurationOutput#resource_configurations #resource_configurations} => Array<Types::ResourceConfiguration>
7007
7009
  # * {Types::GetEnvironmentBlueprintConfigurationOutput#provisioning_configurations #provisioning_configurations} => Array<Types::ProvisioningConfiguration>
7008
7010
  #
7009
7011
  # @example Request syntax with placeholder values
@@ -7025,8 +7027,16 @@ module Aws::DataZone
7025
7027
  # resp.regional_parameters #=> Hash
7026
7028
  # resp.regional_parameters["RegionName"] #=> Hash
7027
7029
  # resp.regional_parameters["RegionName"]["String"] #=> String
7030
+ # resp.allow_user_provided_configurations #=> Boolean
7028
7031
  # resp.created_at #=> Time
7029
7032
  # resp.updated_at #=> Time
7033
+ # resp.resource_configurations #=> Array
7034
+ # resp.resource_configurations[0].identifier #=> String
7035
+ # resp.resource_configurations[0].name #=> String
7036
+ # resp.resource_configurations[0].description #=> String
7037
+ # resp.resource_configurations[0].region #=> String
7038
+ # resp.resource_configurations[0].parameters #=> Hash
7039
+ # resp.resource_configurations[0].parameters["String"] #=> String
7030
7040
  # resp.provisioning_configurations #=> Array
7031
7041
  # resp.provisioning_configurations[0].lake_formation_configuration.location_registration_role #=> String
7032
7042
  # resp.provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations #=> Array
@@ -9777,8 +9787,16 @@ module Aws::DataZone
9777
9787
  # resp.items[0].regional_parameters #=> Hash
9778
9788
  # resp.items[0].regional_parameters["RegionName"] #=> Hash
9779
9789
  # resp.items[0].regional_parameters["RegionName"]["String"] #=> String
9790
+ # resp.items[0].allow_user_provided_configurations #=> Boolean
9780
9791
  # resp.items[0].created_at #=> Time
9781
9792
  # resp.items[0].updated_at #=> Time
9793
+ # resp.items[0].resource_configurations #=> Array
9794
+ # resp.items[0].resource_configurations[0].identifier #=> String
9795
+ # resp.items[0].resource_configurations[0].name #=> String
9796
+ # resp.items[0].resource_configurations[0].description #=> String
9797
+ # resp.items[0].resource_configurations[0].region #=> String
9798
+ # resp.items[0].resource_configurations[0].parameters #=> Hash
9799
+ # resp.items[0].resource_configurations[0].parameters["String"] #=> String
9782
9800
  # resp.items[0].provisioning_configurations #=> Array
9783
9801
  # resp.items[0].provisioning_configurations[0].lake_formation_configuration.location_registration_role #=> String
9784
9802
  # resp.items[0].provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations #=> Array
@@ -11842,6 +11860,13 @@ module Aws::DataZone
11842
11860
  # @option params [Hash<String,Hash>] :regional_parameters
11843
11861
  # The regional parameters in the environment blueprint.
11844
11862
  #
11863
+ # @option params [Array<Types::PutResourceConfiguration>] :resource_configurations
11864
+ # The resource configurations of the environment blueprint.
11865
+ #
11866
+ # @option params [Boolean] :allow_user_provided_configurations
11867
+ # Specifies whether user-provided resource configurations are allowed
11868
+ # for the environment blueprint.
11869
+ #
11845
11870
  # @option params [Hash<String,String>] :global_parameters
11846
11871
  # Region-agnostic environment blueprint parameters.
11847
11872
  #
@@ -11857,8 +11882,10 @@ module Aws::DataZone
11857
11882
  # * {Types::PutEnvironmentBlueprintConfigurationOutput#manage_access_role_arn #manage_access_role_arn} => String
11858
11883
  # * {Types::PutEnvironmentBlueprintConfigurationOutput#enabled_regions #enabled_regions} => Array&lt;String&gt;
11859
11884
  # * {Types::PutEnvironmentBlueprintConfigurationOutput#regional_parameters #regional_parameters} => Hash&lt;String,Hash&lt;String,String&gt;&gt;
11885
+ # * {Types::PutEnvironmentBlueprintConfigurationOutput#allow_user_provided_configurations #allow_user_provided_configurations} => Boolean
11860
11886
  # * {Types::PutEnvironmentBlueprintConfigurationOutput#created_at #created_at} => Time
11861
11887
  # * {Types::PutEnvironmentBlueprintConfigurationOutput#updated_at #updated_at} => Time
11888
+ # * {Types::PutEnvironmentBlueprintConfigurationOutput#resource_configurations #resource_configurations} => Array&lt;Types::ResourceConfiguration&gt;
11862
11889
  # * {Types::PutEnvironmentBlueprintConfigurationOutput#provisioning_configurations #provisioning_configurations} => Array&lt;Types::ProvisioningConfiguration&gt;
11863
11890
  #
11864
11891
  # @example Request syntax with placeholder values
@@ -11875,6 +11902,17 @@ module Aws::DataZone
11875
11902
  # "String" => "String",
11876
11903
  # },
11877
11904
  # },
11905
+ # resource_configurations: [
11906
+ # {
11907
+ # name: "PutResourceConfigurationNameString", # required
11908
+ # description: "String",
11909
+ # region: "RegionName", # required
11910
+ # parameters: { # required
11911
+ # "String" => "String",
11912
+ # },
11913
+ # },
11914
+ # ],
11915
+ # allow_user_provided_configurations: false,
11878
11916
  # global_parameters: {
11879
11917
  # "String" => "String",
11880
11918
  # },
@@ -11900,8 +11938,16 @@ module Aws::DataZone
11900
11938
  # resp.regional_parameters #=> Hash
11901
11939
  # resp.regional_parameters["RegionName"] #=> Hash
11902
11940
  # resp.regional_parameters["RegionName"]["String"] #=> String
11941
+ # resp.allow_user_provided_configurations #=> Boolean
11903
11942
  # resp.created_at #=> Time
11904
11943
  # resp.updated_at #=> Time
11944
+ # resp.resource_configurations #=> Array
11945
+ # resp.resource_configurations[0].identifier #=> String
11946
+ # resp.resource_configurations[0].name #=> String
11947
+ # resp.resource_configurations[0].description #=> String
11948
+ # resp.resource_configurations[0].region #=> String
11949
+ # resp.resource_configurations[0].parameters #=> Hash
11950
+ # resp.resource_configurations[0].parameters["String"] #=> String
11905
11951
  # resp.provisioning_configurations #=> Array
11906
11952
  # resp.provisioning_configurations[0].lake_formation_configuration.location_registration_role #=> String
11907
11953
  # resp.provisioning_configurations[0].lake_formation_configuration.location_registration_exclude_s3_locations #=> Array
@@ -16253,7 +16299,7 @@ module Aws::DataZone
16253
16299
  tracer: tracer
16254
16300
  )
16255
16301
  context[:gem_name] = 'aws-sdk-datazone'
16256
- context[:gem_version] = '1.80.0'
16302
+ context[:gem_version] = '1.81.0'
16257
16303
  Seahorse::Client::Request.new(handlers, context)
16258
16304
  end
16259
16305
 
@@ -916,6 +916,9 @@ module Aws::DataZone
916
916
  PutDataExportConfigurationOutput = Shapes::StructureShape.new(name: 'PutDataExportConfigurationOutput')
917
917
  PutEnvironmentBlueprintConfigurationInput = Shapes::StructureShape.new(name: 'PutEnvironmentBlueprintConfigurationInput')
918
918
  PutEnvironmentBlueprintConfigurationOutput = Shapes::StructureShape.new(name: 'PutEnvironmentBlueprintConfigurationOutput')
919
+ PutResourceConfiguration = Shapes::StructureShape.new(name: 'PutResourceConfiguration')
920
+ PutResourceConfigurationNameString = Shapes::StringShape.new(name: 'PutResourceConfigurationNameString')
921
+ PutResourceConfigurations = Shapes::ListShape.new(name: 'PutResourceConfigurations')
919
922
  QueryGraphInput = Shapes::StructureShape.new(name: 'QueryGraphInput')
920
923
  QueryGraphOutput = Shapes::StructureShape.new(name: 'QueryGraphOutput')
921
924
  RecommendationConfiguration = Shapes::StructureShape.new(name: 'RecommendationConfiguration')
@@ -977,6 +980,9 @@ module Aws::DataZone
977
980
  RequiredMetadataFormList = Shapes::ListShape.new(name: 'RequiredMetadataFormList')
978
981
  ResolutionStrategy = Shapes::StringShape.new(name: 'ResolutionStrategy')
979
982
  Resource = Shapes::StructureShape.new(name: 'Resource')
983
+ ResourceConfiguration = Shapes::StructureShape.new(name: 'ResourceConfiguration')
984
+ ResourceConfigurationParameterMap = Shapes::MapShape.new(name: 'ResourceConfigurationParameterMap')
985
+ ResourceConfigurations = Shapes::ListShape.new(name: 'ResourceConfigurations')
980
986
  ResourceList = Shapes::ListShape.new(name: 'ResourceList')
981
987
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
982
988
  ResourceTag = Shapes::StructureShape.new(name: 'ResourceTag')
@@ -3085,8 +3091,10 @@ module Aws::DataZone
3085
3091
  EnvironmentBlueprintConfigurationItem.add_member(:manage_access_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "manageAccessRoleArn"))
3086
3092
  EnvironmentBlueprintConfigurationItem.add_member(:enabled_regions, Shapes::ShapeRef.new(shape: EnabledRegionList, location_name: "enabledRegions"))
3087
3093
  EnvironmentBlueprintConfigurationItem.add_member(:regional_parameters, Shapes::ShapeRef.new(shape: RegionalParameterMap, location_name: "regionalParameters"))
3094
+ EnvironmentBlueprintConfigurationItem.add_member(:allow_user_provided_configurations, Shapes::ShapeRef.new(shape: Boolean, location_name: "allowUserProvidedConfigurations"))
3088
3095
  EnvironmentBlueprintConfigurationItem.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
3089
3096
  EnvironmentBlueprintConfigurationItem.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
3097
+ EnvironmentBlueprintConfigurationItem.add_member(:resource_configurations, Shapes::ShapeRef.new(shape: ResourceConfigurations, location_name: "resourceConfigurations"))
3090
3098
  EnvironmentBlueprintConfigurationItem.add_member(:provisioning_configurations, Shapes::ShapeRef.new(shape: ProvisioningConfigurationList, location_name: "provisioningConfigurations"))
3091
3099
  EnvironmentBlueprintConfigurationItem.struct_class = Types::EnvironmentBlueprintConfigurationItem
3092
3100
 
@@ -3534,8 +3542,10 @@ module Aws::DataZone
3534
3542
  GetEnvironmentBlueprintConfigurationOutput.add_member(:manage_access_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "manageAccessRoleArn"))
3535
3543
  GetEnvironmentBlueprintConfigurationOutput.add_member(:enabled_regions, Shapes::ShapeRef.new(shape: EnabledRegionList, location_name: "enabledRegions"))
3536
3544
  GetEnvironmentBlueprintConfigurationOutput.add_member(:regional_parameters, Shapes::ShapeRef.new(shape: RegionalParameterMap, location_name: "regionalParameters"))
3545
+ GetEnvironmentBlueprintConfigurationOutput.add_member(:allow_user_provided_configurations, Shapes::ShapeRef.new(shape: Boolean, location_name: "allowUserProvidedConfigurations"))
3537
3546
  GetEnvironmentBlueprintConfigurationOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
3538
3547
  GetEnvironmentBlueprintConfigurationOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
3548
+ GetEnvironmentBlueprintConfigurationOutput.add_member(:resource_configurations, Shapes::ShapeRef.new(shape: ResourceConfigurations, location_name: "resourceConfigurations"))
3539
3549
  GetEnvironmentBlueprintConfigurationOutput.add_member(:provisioning_configurations, Shapes::ShapeRef.new(shape: ProvisioningConfigurationList, location_name: "provisioningConfigurations"))
3540
3550
  GetEnvironmentBlueprintConfigurationOutput.struct_class = Types::GetEnvironmentBlueprintConfigurationOutput
3541
3551
 
@@ -5296,6 +5306,8 @@ module Aws::DataZone
5296
5306
  PutEnvironmentBlueprintConfigurationInput.add_member(:environment_role_permission_boundary, Shapes::ShapeRef.new(shape: PolicyArn, location_name: "environmentRolePermissionBoundary"))
5297
5307
  PutEnvironmentBlueprintConfigurationInput.add_member(:enabled_regions, Shapes::ShapeRef.new(shape: EnabledRegionList, required: true, location_name: "enabledRegions"))
5298
5308
  PutEnvironmentBlueprintConfigurationInput.add_member(:regional_parameters, Shapes::ShapeRef.new(shape: RegionalParameterMap, location_name: "regionalParameters"))
5309
+ PutEnvironmentBlueprintConfigurationInput.add_member(:resource_configurations, Shapes::ShapeRef.new(shape: PutResourceConfigurations, location_name: "resourceConfigurations"))
5310
+ PutEnvironmentBlueprintConfigurationInput.add_member(:allow_user_provided_configurations, Shapes::ShapeRef.new(shape: Boolean, location_name: "allowUserProvidedConfigurations"))
5299
5311
  PutEnvironmentBlueprintConfigurationInput.add_member(:global_parameters, Shapes::ShapeRef.new(shape: GlobalParameterMap, location_name: "globalParameters"))
5300
5312
  PutEnvironmentBlueprintConfigurationInput.add_member(:provisioning_configurations, Shapes::ShapeRef.new(shape: ProvisioningConfigurationList, location_name: "provisioningConfigurations"))
5301
5313
  PutEnvironmentBlueprintConfigurationInput.struct_class = Types::PutEnvironmentBlueprintConfigurationInput
@@ -5307,11 +5319,21 @@ module Aws::DataZone
5307
5319
  PutEnvironmentBlueprintConfigurationOutput.add_member(:manage_access_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "manageAccessRoleArn"))
5308
5320
  PutEnvironmentBlueprintConfigurationOutput.add_member(:enabled_regions, Shapes::ShapeRef.new(shape: EnabledRegionList, location_name: "enabledRegions"))
5309
5321
  PutEnvironmentBlueprintConfigurationOutput.add_member(:regional_parameters, Shapes::ShapeRef.new(shape: RegionalParameterMap, location_name: "regionalParameters"))
5322
+ PutEnvironmentBlueprintConfigurationOutput.add_member(:allow_user_provided_configurations, Shapes::ShapeRef.new(shape: Boolean, location_name: "allowUserProvidedConfigurations"))
5310
5323
  PutEnvironmentBlueprintConfigurationOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
5311
5324
  PutEnvironmentBlueprintConfigurationOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
5325
+ PutEnvironmentBlueprintConfigurationOutput.add_member(:resource_configurations, Shapes::ShapeRef.new(shape: ResourceConfigurations, location_name: "resourceConfigurations"))
5312
5326
  PutEnvironmentBlueprintConfigurationOutput.add_member(:provisioning_configurations, Shapes::ShapeRef.new(shape: ProvisioningConfigurationList, location_name: "provisioningConfigurations"))
5313
5327
  PutEnvironmentBlueprintConfigurationOutput.struct_class = Types::PutEnvironmentBlueprintConfigurationOutput
5314
5328
 
5329
+ PutResourceConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: PutResourceConfigurationNameString, required: true, location_name: "name"))
5330
+ PutResourceConfiguration.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
5331
+ PutResourceConfiguration.add_member(:region, Shapes::ShapeRef.new(shape: RegionName, required: true, location_name: "region"))
5332
+ PutResourceConfiguration.add_member(:parameters, Shapes::ShapeRef.new(shape: ResourceConfigurationParameterMap, required: true, location_name: "parameters"))
5333
+ PutResourceConfiguration.struct_class = Types::PutResourceConfiguration
5334
+
5335
+ PutResourceConfigurations.member = Shapes::ShapeRef.new(shape: PutResourceConfiguration)
5336
+
5315
5337
  QueryGraphInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
5316
5338
  QueryGraphInput.add_member(:match, Shapes::ShapeRef.new(shape: MatchClauses, required: true, location_name: "match"))
5317
5339
  QueryGraphInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
@@ -5514,6 +5536,18 @@ module Aws::DataZone
5514
5536
  Resource.add_member(:type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "type"))
5515
5537
  Resource.struct_class = Types::Resource
5516
5538
 
5539
+ ResourceConfiguration.add_member(:identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "identifier"))
5540
+ ResourceConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "name"))
5541
+ ResourceConfiguration.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
5542
+ ResourceConfiguration.add_member(:region, Shapes::ShapeRef.new(shape: RegionName, required: true, location_name: "region"))
5543
+ ResourceConfiguration.add_member(:parameters, Shapes::ShapeRef.new(shape: ResourceConfigurationParameterMap, required: true, location_name: "parameters"))
5544
+ ResourceConfiguration.struct_class = Types::ResourceConfiguration
5545
+
5546
+ ResourceConfigurationParameterMap.key = Shapes::ShapeRef.new(shape: String)
5547
+ ResourceConfigurationParameterMap.value = Shapes::ShapeRef.new(shape: String)
5548
+
5549
+ ResourceConfigurations.member = Shapes::ShapeRef.new(shape: ResourceConfiguration)
5550
+
5517
5551
  ResourceList.member = Shapes::ShapeRef.new(shape: Resource)
5518
5552
 
5519
5553
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
@@ -7984,6 +7984,11 @@ module Aws::DataZone
7984
7984
  # The regional parameters of the environment blueprint.
7985
7985
  # @return [Hash<String,Hash<String,String>>]
7986
7986
  #
7987
+ # @!attribute [rw] allow_user_provided_configurations
7988
+ # Specifies whether user-provided resource configurations are allowed
7989
+ # for the environment blueprint.
7990
+ # @return [Boolean]
7991
+ #
7987
7992
  # @!attribute [rw] created_at
7988
7993
  # The timestamp of when an environment blueprint was created.
7989
7994
  # @return [Time]
@@ -7992,6 +7997,10 @@ module Aws::DataZone
7992
7997
  # The timestamp of when the environment blueprint was updated.
7993
7998
  # @return [Time]
7994
7999
  #
8000
+ # @!attribute [rw] resource_configurations
8001
+ # The resource configurations of the environment blueprint.
8002
+ # @return [Array<Types::ResourceConfiguration>]
8003
+ #
7995
8004
  # @!attribute [rw] provisioning_configurations
7996
8005
  # The provisioning configuration of a blueprint.
7997
8006
  # @return [Array<Types::ProvisioningConfiguration>]
@@ -8006,8 +8015,10 @@ module Aws::DataZone
8006
8015
  :manage_access_role_arn,
8007
8016
  :enabled_regions,
8008
8017
  :regional_parameters,
8018
+ :allow_user_provided_configurations,
8009
8019
  :created_at,
8010
8020
  :updated_at,
8021
+ :resource_configurations,
8011
8022
  :provisioning_configurations)
8012
8023
  SENSITIVE = []
8013
8024
  include Aws::Structure
@@ -9932,6 +9943,11 @@ module Aws::DataZone
9932
9943
  # The regional parameters of the blueprint.
9933
9944
  # @return [Hash<String,Hash<String,String>>]
9934
9945
  #
9946
+ # @!attribute [rw] allow_user_provided_configurations
9947
+ # Specifies whether user-provided resource configurations are allowed
9948
+ # for the environment blueprint.
9949
+ # @return [Boolean]
9950
+ #
9935
9951
  # @!attribute [rw] created_at
9936
9952
  # The timestamp of when this blueprint was created.
9937
9953
  # @return [Time]
@@ -9940,6 +9956,10 @@ module Aws::DataZone
9940
9956
  # The timestamp of when this blueprint was upated.
9941
9957
  # @return [Time]
9942
9958
  #
9959
+ # @!attribute [rw] resource_configurations
9960
+ # The resource configurations of the environment blueprint.
9961
+ # @return [Array<Types::ResourceConfiguration>]
9962
+ #
9943
9963
  # @!attribute [rw] provisioning_configurations
9944
9964
  # The provisioning configuration of a blueprint.
9945
9965
  # @return [Array<Types::ProvisioningConfiguration>]
@@ -9954,8 +9974,10 @@ module Aws::DataZone
9954
9974
  :manage_access_role_arn,
9955
9975
  :enabled_regions,
9956
9976
  :regional_parameters,
9977
+ :allow_user_provided_configurations,
9957
9978
  :created_at,
9958
9979
  :updated_at,
9980
+ :resource_configurations,
9959
9981
  :provisioning_configurations)
9960
9982
  SENSITIVE = []
9961
9983
  include Aws::Structure
@@ -18205,6 +18227,15 @@ module Aws::DataZone
18205
18227
  # The regional parameters in the environment blueprint.
18206
18228
  # @return [Hash<String,Hash<String,String>>]
18207
18229
  #
18230
+ # @!attribute [rw] resource_configurations
18231
+ # The resource configurations of the environment blueprint.
18232
+ # @return [Array<Types::PutResourceConfiguration>]
18233
+ #
18234
+ # @!attribute [rw] allow_user_provided_configurations
18235
+ # Specifies whether user-provided resource configurations are allowed
18236
+ # for the environment blueprint.
18237
+ # @return [Boolean]
18238
+ #
18208
18239
  # @!attribute [rw] global_parameters
18209
18240
  # Region-agnostic environment blueprint parameters.
18210
18241
  # @return [Hash<String,String>]
@@ -18223,6 +18254,8 @@ module Aws::DataZone
18223
18254
  :environment_role_permission_boundary,
18224
18255
  :enabled_regions,
18225
18256
  :regional_parameters,
18257
+ :resource_configurations,
18258
+ :allow_user_provided_configurations,
18226
18259
  :global_parameters,
18227
18260
  :provisioning_configurations)
18228
18261
  SENSITIVE = []
@@ -18257,6 +18290,11 @@ module Aws::DataZone
18257
18290
  # The regional parameters in the environment blueprint.
18258
18291
  # @return [Hash<String,Hash<String,String>>]
18259
18292
  #
18293
+ # @!attribute [rw] allow_user_provided_configurations
18294
+ # Specifies whether user-provided resource configurations are allowed
18295
+ # for the environment blueprint.
18296
+ # @return [Boolean]
18297
+ #
18260
18298
  # @!attribute [rw] created_at
18261
18299
  # The timestamp of when the environment blueprint was created.
18262
18300
  # @return [Time]
@@ -18265,6 +18303,10 @@ module Aws::DataZone
18265
18303
  # The timestamp of when the environment blueprint was updated.
18266
18304
  # @return [Time]
18267
18305
  #
18306
+ # @!attribute [rw] resource_configurations
18307
+ # The resource configurations of the environment blueprint.
18308
+ # @return [Array<Types::ResourceConfiguration>]
18309
+ #
18268
18310
  # @!attribute [rw] provisioning_configurations
18269
18311
  # The provisioning configuration of a blueprint.
18270
18312
  # @return [Array<Types::ProvisioningConfiguration>]
@@ -18279,13 +18321,45 @@ module Aws::DataZone
18279
18321
  :manage_access_role_arn,
18280
18322
  :enabled_regions,
18281
18323
  :regional_parameters,
18324
+ :allow_user_provided_configurations,
18282
18325
  :created_at,
18283
18326
  :updated_at,
18327
+ :resource_configurations,
18284
18328
  :provisioning_configurations)
18285
18329
  SENSITIVE = []
18286
18330
  include Aws::Structure
18287
18331
  end
18288
18332
 
18333
+ # The resource configuration that is used to configure the environment
18334
+ # blueprint.
18335
+ #
18336
+ # @!attribute [rw] name
18337
+ # The name of the resource configuration.
18338
+ # @return [String]
18339
+ #
18340
+ # @!attribute [rw] description
18341
+ # The description of the resource configuration.
18342
+ # @return [String]
18343
+ #
18344
+ # @!attribute [rw] region
18345
+ # The Amazon Web Services Region of the resource configuration.
18346
+ # @return [String]
18347
+ #
18348
+ # @!attribute [rw] parameters
18349
+ # The parameters of the resource configuration.
18350
+ # @return [Hash<String,String>]
18351
+ #
18352
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PutResourceConfiguration AWS API Documentation
18353
+ #
18354
+ class PutResourceConfiguration < Struct.new(
18355
+ :name,
18356
+ :description,
18357
+ :region,
18358
+ :parameters)
18359
+ SENSITIVE = []
18360
+ include Aws::Structure
18361
+ end
18362
+
18289
18363
  # @!attribute [rw] domain_identifier
18290
18364
  # The identifier of the Amazon DataZone domain.
18291
18365
  # @return [String]
@@ -19187,6 +19261,40 @@ module Aws::DataZone
19187
19261
  include Aws::Structure
19188
19262
  end
19189
19263
 
19264
+ # The details of the resource configuration.
19265
+ #
19266
+ # @!attribute [rw] identifier
19267
+ # The identifier of the resource configuration.
19268
+ # @return [String]
19269
+ #
19270
+ # @!attribute [rw] name
19271
+ # The name of the resource configuration.
19272
+ # @return [String]
19273
+ #
19274
+ # @!attribute [rw] description
19275
+ # The description of the resource configuration.
19276
+ # @return [String]
19277
+ #
19278
+ # @!attribute [rw] region
19279
+ # The Amazon Web Services Region of the resource configuration.
19280
+ # @return [String]
19281
+ #
19282
+ # @!attribute [rw] parameters
19283
+ # The parameters of the resource configuration.
19284
+ # @return [Hash<String,String>]
19285
+ #
19286
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ResourceConfiguration AWS API Documentation
19287
+ #
19288
+ class ResourceConfiguration < Struct.new(
19289
+ :identifier,
19290
+ :name,
19291
+ :description,
19292
+ :region,
19293
+ :parameters)
19294
+ SENSITIVE = []
19295
+ include Aws::Structure
19296
+ end
19297
+
19190
19298
  # The specified resource cannot be found.
19191
19299
  #
19192
19300
  # @!attribute [rw] message
@@ -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.80.0'
58
+ GEM_VERSION = '1.81.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -2093,8 +2093,10 @@ module Aws
2093
2093
  def manage_access_role_arn: () -> ::String
2094
2094
  def enabled_regions: () -> ::Array[::String]
2095
2095
  def regional_parameters: () -> ::Hash[::String, ::Hash[::String, ::String]]
2096
+ def allow_user_provided_configurations: () -> bool
2096
2097
  def created_at: () -> ::Time
2097
2098
  def updated_at: () -> ::Time
2099
+ def resource_configurations: () -> ::Array[Types::ResourceConfiguration]
2098
2100
  def provisioning_configurations: () -> ::Array[Types::ProvisioningConfiguration]
2099
2101
  end
2100
2102
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment_blueprint_configuration-instance_method
@@ -3268,8 +3270,10 @@ module Aws
3268
3270
  def manage_access_role_arn: () -> ::String
3269
3271
  def enabled_regions: () -> ::Array[::String]
3270
3272
  def regional_parameters: () -> ::Hash[::String, ::Hash[::String, ::String]]
3273
+ def allow_user_provided_configurations: () -> bool
3271
3274
  def created_at: () -> ::Time
3272
3275
  def updated_at: () -> ::Time
3276
+ def resource_configurations: () -> ::Array[Types::ResourceConfiguration]
3273
3277
  def provisioning_configurations: () -> ::Array[Types::ProvisioningConfiguration]
3274
3278
  end
3275
3279
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#put_environment_blueprint_configuration-instance_method
@@ -3281,6 +3285,15 @@ module Aws
3281
3285
  ?environment_role_permission_boundary: ::String,
3282
3286
  enabled_regions: Array[::String],
3283
3287
  ?regional_parameters: Hash[::String, Hash[::String, ::String]],
3288
+ ?resource_configurations: Array[
3289
+ {
3290
+ name: ::String,
3291
+ description: ::String?,
3292
+ region: ::String,
3293
+ parameters: Hash[::String, ::String]
3294
+ }
3295
+ ],
3296
+ ?allow_user_provided_configurations: bool,
3284
3297
  ?global_parameters: Hash[::String, ::String],
3285
3298
  ?provisioning_configurations: Array[
3286
3299
  {
data/sig/types.rbs CHANGED
@@ -2199,8 +2199,10 @@ module Aws::DataZone
2199
2199
  attr_accessor manage_access_role_arn: ::String
2200
2200
  attr_accessor enabled_regions: ::Array[::String]
2201
2201
  attr_accessor regional_parameters: ::Hash[::String, ::Hash[::String, ::String]]
2202
+ attr_accessor allow_user_provided_configurations: bool
2202
2203
  attr_accessor created_at: ::Time
2203
2204
  attr_accessor updated_at: ::Time
2205
+ attr_accessor resource_configurations: ::Array[Types::ResourceConfiguration]
2204
2206
  attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
2205
2207
  SENSITIVE: []
2206
2208
  end
@@ -2709,8 +2711,10 @@ module Aws::DataZone
2709
2711
  attr_accessor manage_access_role_arn: ::String
2710
2712
  attr_accessor enabled_regions: ::Array[::String]
2711
2713
  attr_accessor regional_parameters: ::Hash[::String, ::Hash[::String, ::String]]
2714
+ attr_accessor allow_user_provided_configurations: bool
2712
2715
  attr_accessor created_at: ::Time
2713
2716
  attr_accessor updated_at: ::Time
2717
+ attr_accessor resource_configurations: ::Array[Types::ResourceConfiguration]
2714
2718
  attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
2715
2719
  SENSITIVE: []
2716
2720
  end
@@ -4932,6 +4936,8 @@ module Aws::DataZone
4932
4936
  attr_accessor environment_role_permission_boundary: ::String
4933
4937
  attr_accessor enabled_regions: ::Array[::String]
4934
4938
  attr_accessor regional_parameters: ::Hash[::String, ::Hash[::String, ::String]]
4939
+ attr_accessor resource_configurations: ::Array[Types::PutResourceConfiguration]
4940
+ attr_accessor allow_user_provided_configurations: bool
4935
4941
  attr_accessor global_parameters: ::Hash[::String, ::String]
4936
4942
  attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
4937
4943
  SENSITIVE: []
@@ -4945,12 +4951,22 @@ module Aws::DataZone
4945
4951
  attr_accessor manage_access_role_arn: ::String
4946
4952
  attr_accessor enabled_regions: ::Array[::String]
4947
4953
  attr_accessor regional_parameters: ::Hash[::String, ::Hash[::String, ::String]]
4954
+ attr_accessor allow_user_provided_configurations: bool
4948
4955
  attr_accessor created_at: ::Time
4949
4956
  attr_accessor updated_at: ::Time
4957
+ attr_accessor resource_configurations: ::Array[Types::ResourceConfiguration]
4950
4958
  attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
4951
4959
  SENSITIVE: []
4952
4960
  end
4953
4961
 
4962
+ class PutResourceConfiguration
4963
+ attr_accessor name: ::String
4964
+ attr_accessor description: ::String
4965
+ attr_accessor region: ::String
4966
+ attr_accessor parameters: ::Hash[::String, ::String]
4967
+ SENSITIVE: []
4968
+ end
4969
+
4954
4970
  class QueryGraphInput
4955
4971
  attr_accessor domain_identifier: ::String
4956
4972
  attr_accessor match: ::Array[Types::MatchClause]
@@ -5213,6 +5229,15 @@ module Aws::DataZone
5213
5229
  SENSITIVE: []
5214
5230
  end
5215
5231
 
5232
+ class ResourceConfiguration
5233
+ attr_accessor identifier: ::String
5234
+ attr_accessor name: ::String
5235
+ attr_accessor description: ::String
5236
+ attr_accessor region: ::String
5237
+ attr_accessor parameters: ::Hash[::String, ::String]
5238
+ SENSITIVE: []
5239
+ end
5240
+
5216
5241
  class ResourceNotFoundException
5217
5242
  attr_accessor message: ::String
5218
5243
  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.80.0
4
+ version: 1.81.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services