aws-sdk-datazone 1.46.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.
@@ -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.46.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: (
@@ -280,6 +281,42 @@ module Aws
280
281
  ) -> _CancelSubscriptionResponseSuccess
281
282
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelSubscriptionResponseSuccess
282
283
 
284
+ interface _CreateAccountPoolResponseSuccess
285
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAccountPoolOutput]
286
+ def account_source: () -> Types::AccountSource
287
+ def created_at: () -> ::Time
288
+ def created_by: () -> ::String
289
+ def description: () -> ::String
290
+ def domain_id: () -> ::String
291
+ def domain_unit_id: () -> ::String
292
+ def id: () -> ::String
293
+ def last_updated_at: () -> ::Time
294
+ def name: () -> ::String
295
+ def resolution_strategy: () -> ("MANUAL")
296
+ def updated_by: () -> ::String
297
+ end
298
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_account_pool-instance_method
299
+ def create_account_pool: (
300
+ account_source: {
301
+ accounts: Array[
302
+ {
303
+ aws_account_id: ::String,
304
+ aws_account_name: ::String?,
305
+ supported_regions: Array[::String]
306
+ },
307
+ ]?,
308
+ custom_account_pool_handler: {
309
+ lambda_execution_role_arn: ::String?,
310
+ lambda_function_arn: ::String
311
+ }?
312
+ },
313
+ ?description: ::String,
314
+ domain_identifier: ::String,
315
+ name: ::String,
316
+ resolution_strategy: ("MANUAL")
317
+ ) -> _CreateAccountPoolResponseSuccess
318
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccountPoolResponseSuccess
319
+
283
320
  interface _CreateAssetResponseSuccess
284
321
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateAssetOutput]
285
322
  def created_at: () -> ::Time
@@ -1114,7 +1151,12 @@ module Aws
1114
1151
  name: ::String?,
1115
1152
  value: ::String?
1116
1153
  },
1117
- ]?
1154
+ ]?,
1155
+ environment_resolved_account: {
1156
+ aws_account_id: ::String,
1157
+ region_name: ::String,
1158
+ source_account_pool_id: ::String?
1159
+ }?
1118
1160
  },
1119
1161
  ]
1120
1162
  ) -> _CreateProjectResponseSuccess
@@ -1155,14 +1197,15 @@ module Aws
1155
1197
  ?domain_unit_identifier: ::String,
1156
1198
  ?environment_configurations: Array[
1157
1199
  {
1200
+ account_pools: Array[::String]?,
1158
1201
  aws_account: {
1159
1202
  aws_account_id: ::String?,
1160
1203
  aws_account_id_path: ::String?
1161
- },
1204
+ }?,
1162
1205
  aws_region: {
1163
1206
  region_name: ::String?,
1164
1207
  region_name_path: ::String?
1165
- },
1208
+ }?,
1166
1209
  configuration_parameters: {
1167
1210
  parameter_overrides: Array[
1168
1211
  {
@@ -1379,6 +1422,16 @@ module Aws
1379
1422
  ) -> _CreateUserProfileResponseSuccess
1380
1423
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserProfileResponseSuccess
1381
1424
 
1425
+ interface _DeleteAccountPoolResponseSuccess
1426
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAccountPoolOutput]
1427
+ end
1428
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_account_pool-instance_method
1429
+ def delete_account_pool: (
1430
+ domain_identifier: ::String,
1431
+ identifier: ::String
1432
+ ) -> _DeleteAccountPoolResponseSuccess
1433
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAccountPoolResponseSuccess
1434
+
1382
1435
  interface _DeleteAssetResponseSuccess
1383
1436
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAssetOutput]
1384
1437
  end
@@ -1661,6 +1714,27 @@ module Aws
1661
1714
  ) -> _DisassociateEnvironmentRoleResponseSuccess
1662
1715
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateEnvironmentRoleResponseSuccess
1663
1716
 
1717
+ interface _GetAccountPoolResponseSuccess
1718
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountPoolOutput]
1719
+ def account_source: () -> Types::AccountSource
1720
+ def created_at: () -> ::Time
1721
+ def created_by: () -> ::String
1722
+ def description: () -> ::String
1723
+ def domain_id: () -> ::String
1724
+ def domain_unit_id: () -> ::String
1725
+ def id: () -> ::String
1726
+ def last_updated_at: () -> ::Time
1727
+ def name: () -> ::String
1728
+ def resolution_strategy: () -> ("MANUAL")
1729
+ def updated_by: () -> ::String
1730
+ end
1731
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_account_pool-instance_method
1732
+ def get_account_pool: (
1733
+ domain_identifier: ::String,
1734
+ identifier: ::String
1735
+ ) -> _GetAccountPoolResponseSuccess
1736
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountPoolResponseSuccess
1737
+
1664
1738
  interface _GetAssetResponseSuccess
1665
1739
  include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetOutput]
1666
1740
  def created_at: () -> ::Time
@@ -2398,6 +2472,36 @@ module Aws
2398
2472
  ) -> _GetUserProfileResponseSuccess
2399
2473
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserProfileResponseSuccess
2400
2474
 
2475
+ interface _ListAccountPoolsResponseSuccess
2476
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAccountPoolsOutput]
2477
+ def items: () -> ::Array[Types::AccountPoolSummary]
2478
+ def next_token: () -> ::String
2479
+ end
2480
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_account_pools-instance_method
2481
+ def list_account_pools: (
2482
+ domain_identifier: ::String,
2483
+ ?max_results: ::Integer,
2484
+ ?name: ::String,
2485
+ ?next_token: ::String,
2486
+ ?sort_by: ("NAME"),
2487
+ ?sort_order: ("ASCENDING" | "DESCENDING")
2488
+ ) -> _ListAccountPoolsResponseSuccess
2489
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccountPoolsResponseSuccess
2490
+
2491
+ interface _ListAccountsInAccountPoolResponseSuccess
2492
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAccountsInAccountPoolOutput]
2493
+ def items: () -> ::Array[Types::AccountInfo]
2494
+ def next_token: () -> ::String
2495
+ end
2496
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_accounts_in_account_pool-instance_method
2497
+ def list_accounts_in_account_pool: (
2498
+ domain_identifier: ::String,
2499
+ identifier: ::String,
2500
+ ?max_results: ::Integer,
2501
+ ?next_token: ::String
2502
+ ) -> _ListAccountsInAccountPoolResponseSuccess
2503
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccountsInAccountPoolResponseSuccess
2504
+
2401
2505
  interface _ListAssetFiltersResponseSuccess
2402
2506
  include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetFiltersOutput]
2403
2507
  def items: () -> ::Array[Types::AssetFilterSummary]
@@ -3054,6 +3158,7 @@ module Aws
3054
3158
  domain_identifier: ::String,
3055
3159
  entity_identifier: ::String,
3056
3160
  entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE"),
3161
+ ?grant_identifier: ::String,
3057
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"),
3058
3163
  principal: {
3059
3164
  domain_unit: {
@@ -3327,6 +3432,43 @@ module Aws
3327
3432
  ) -> _UntagResourceResponseSuccess
3328
3433
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
3329
3434
 
3435
+ interface _UpdateAccountPoolResponseSuccess
3436
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAccountPoolOutput]
3437
+ def account_source: () -> Types::AccountSource
3438
+ def created_at: () -> ::Time
3439
+ def created_by: () -> ::String
3440
+ def description: () -> ::String
3441
+ def domain_id: () -> ::String
3442
+ def domain_unit_id: () -> ::String
3443
+ def id: () -> ::String
3444
+ def last_updated_at: () -> ::Time
3445
+ def name: () -> ::String
3446
+ def resolution_strategy: () -> ("MANUAL")
3447
+ def updated_by: () -> ::String
3448
+ end
3449
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_account_pool-instance_method
3450
+ def update_account_pool: (
3451
+ ?account_source: {
3452
+ accounts: Array[
3453
+ {
3454
+ aws_account_id: ::String,
3455
+ aws_account_name: ::String?,
3456
+ supported_regions: Array[::String]
3457
+ },
3458
+ ]?,
3459
+ custom_account_pool_handler: {
3460
+ lambda_execution_role_arn: ::String?,
3461
+ lambda_function_arn: ::String
3462
+ }?
3463
+ },
3464
+ ?description: ::String,
3465
+ domain_identifier: ::String,
3466
+ identifier: ::String,
3467
+ ?name: ::String,
3468
+ ?resolution_strategy: ("MANUAL")
3469
+ ) -> _UpdateAccountPoolResponseSuccess
3470
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAccountPoolResponseSuccess
3471
+
3330
3472
  interface _UpdateAssetFilterResponseSuccess
3331
3473
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAssetFilterOutput]
3332
3474
  def asset_id: () -> ::String
@@ -3852,7 +3994,12 @@ module Aws
3852
3994
  name: ::String?,
3853
3995
  value: ::String?
3854
3996
  },
3855
- ]?
3997
+ ]?,
3998
+ environment_resolved_account: {
3999
+ aws_account_id: ::String,
4000
+ region_name: ::String,
4001
+ source_account_pool_id: ::String?
4002
+ }?
3856
4003
  },
3857
4004
  ]
3858
4005
  ) -> _UpdateProjectResponseSuccess
@@ -3878,14 +4025,15 @@ module Aws
3878
4025
  ?domain_unit_identifier: ::String,
3879
4026
  ?environment_configurations: Array[
3880
4027
  {
4028
+ account_pools: Array[::String]?,
3881
4029
  aws_account: {
3882
4030
  aws_account_id: ::String?,
3883
4031
  aws_account_id_path: ::String?
3884
- },
4032
+ }?,
3885
4033
  aws_region: {
3886
4034
  region_name: ::String?,
3887
4035
  region_name_path: ::String?
3888
- },
4036
+ }?,
3889
4037
  configuration_parameters: {
3890
4038
  parameter_overrides: Array[
3891
4039
  {
data/sig/types.rbs CHANGED
@@ -75,6 +75,38 @@ module Aws::DataZone
75
75
  SENSITIVE: []
76
76
  end
77
77
 
78
+ class AccountInfo
79
+ attr_accessor aws_account_id: ::String
80
+ attr_accessor aws_account_name: ::String
81
+ attr_accessor supported_regions: ::Array[::String]
82
+ SENSITIVE: [:aws_account_name]
83
+ end
84
+
85
+ class AccountPoolSummary
86
+ attr_accessor created_by: ::String
87
+ attr_accessor domain_id: ::String
88
+ attr_accessor domain_unit_id: ::String
89
+ attr_accessor id: ::String
90
+ attr_accessor name: ::String
91
+ attr_accessor resolution_strategy: ("MANUAL")
92
+ attr_accessor updated_by: ::String
93
+ SENSITIVE: [:name]
94
+ end
95
+
96
+ class AccountSource
97
+ attr_accessor accounts: ::Array[Types::AccountInfo]
98
+ attr_accessor custom_account_pool_handler: Types::CustomAccountPoolHandler
99
+ attr_accessor unknown: untyped
100
+ SENSITIVE: []
101
+
102
+ class Accounts < AccountSource
103
+ end
104
+ class CustomAccountPoolHandler < AccountSource
105
+ end
106
+ class Unknown < AccountSource
107
+ end
108
+ end
109
+
78
110
  class ActionParameters
79
111
  attr_accessor aws_console_link: Types::AwsConsoleLinkParameters
80
112
  attr_accessor unknown: untyped
@@ -109,7 +141,9 @@ module Aws::DataZone
109
141
  SENSITIVE: []
110
142
  end
111
143
 
112
- class AddPolicyGrantOutput < Aws::EmptyStructure
144
+ class AddPolicyGrantOutput
145
+ attr_accessor grant_id: ::String
146
+ SENSITIVE: []
113
147
  end
114
148
 
115
149
  class AddToProjectMemberPoolPolicyGrantDetail
@@ -552,6 +586,30 @@ module Aws::DataZone
552
586
  SENSITIVE: []
553
587
  end
554
588
 
589
+ class CreateAccountPoolInput
590
+ attr_accessor account_source: Types::AccountSource
591
+ attr_accessor description: ::String
592
+ attr_accessor domain_identifier: ::String
593
+ attr_accessor name: ::String
594
+ attr_accessor resolution_strategy: ("MANUAL")
595
+ SENSITIVE: [:description, :name]
596
+ end
597
+
598
+ class CreateAccountPoolOutput
599
+ attr_accessor account_source: Types::AccountSource
600
+ attr_accessor created_at: ::Time
601
+ attr_accessor created_by: ::String
602
+ attr_accessor description: ::String
603
+ attr_accessor domain_id: ::String
604
+ attr_accessor domain_unit_id: ::String
605
+ attr_accessor id: ::String
606
+ attr_accessor last_updated_at: ::Time
607
+ attr_accessor name: ::String
608
+ attr_accessor resolution_strategy: ("MANUAL")
609
+ attr_accessor updated_by: ::String
610
+ SENSITIVE: [:description, :name]
611
+ end
612
+
555
613
  class CreateAssetFilterInput
556
614
  attr_accessor asset_identifier: ::String
557
615
  attr_accessor client_token: ::String
@@ -1272,6 +1330,12 @@ module Aws::DataZone
1272
1330
  SENSITIVE: []
1273
1331
  end
1274
1332
 
1333
+ class CustomAccountPoolHandler
1334
+ attr_accessor lambda_execution_role_arn: ::String
1335
+ attr_accessor lambda_function_arn: ::String
1336
+ SENSITIVE: []
1337
+ end
1338
+
1275
1339
  class CustomParameter
1276
1340
  attr_accessor default_value: ::String
1277
1341
  attr_accessor description: ::String
@@ -1449,6 +1513,15 @@ module Aws::DataZone
1449
1513
  SENSITIVE: [:description, :name, :schedule]
1450
1514
  end
1451
1515
 
1516
+ class DeleteAccountPoolInput
1517
+ attr_accessor domain_identifier: ::String
1518
+ attr_accessor identifier: ::String
1519
+ SENSITIVE: []
1520
+ end
1521
+
1522
+ class DeleteAccountPoolOutput < Aws::EmptyStructure
1523
+ end
1524
+
1452
1525
  class DeleteAssetFilterInput
1453
1526
  attr_accessor asset_identifier: ::String
1454
1527
  attr_accessor domain_identifier: ::String
@@ -1839,6 +1912,7 @@ module Aws::DataZone
1839
1912
  end
1840
1913
 
1841
1914
  class EnvironmentConfiguration
1915
+ attr_accessor account_pools: ::Array[::String]
1842
1916
  attr_accessor aws_account: Types::AwsAccount
1843
1917
  attr_accessor aws_region: Types::Region
1844
1918
  attr_accessor configuration_parameters: Types::EnvironmentConfigurationParametersDetails
@@ -1869,6 +1943,7 @@ module Aws::DataZone
1869
1943
  attr_accessor environment_configuration_name: ::String
1870
1944
  attr_accessor environment_id: ::String
1871
1945
  attr_accessor environment_parameters: ::Array[Types::EnvironmentParameter]
1946
+ attr_accessor environment_resolved_account: Types::EnvironmentResolvedAccount
1872
1947
  SENSITIVE: [:environment_configuration_name]
1873
1948
  end
1874
1949
 
@@ -1905,6 +1980,13 @@ module Aws::DataZone
1905
1980
  SENSITIVE: [:description, :name]
1906
1981
  end
1907
1982
 
1983
+ class EnvironmentResolvedAccount
1984
+ attr_accessor aws_account_id: ::String
1985
+ attr_accessor region_name: ::String
1986
+ attr_accessor source_account_pool_id: ::String
1987
+ SENSITIVE: []
1988
+ end
1989
+
1908
1990
  class EnvironmentSummary
1909
1991
  attr_accessor aws_account_id: ::String
1910
1992
  attr_accessor aws_account_region: ::String
@@ -2020,6 +2102,27 @@ module Aws::DataZone
2020
2102
  SENSITIVE: [:description, :model, :name]
2021
2103
  end
2022
2104
 
2105
+ class GetAccountPoolInput
2106
+ attr_accessor domain_identifier: ::String
2107
+ attr_accessor identifier: ::String
2108
+ SENSITIVE: []
2109
+ end
2110
+
2111
+ class GetAccountPoolOutput
2112
+ attr_accessor account_source: Types::AccountSource
2113
+ attr_accessor created_at: ::Time
2114
+ attr_accessor created_by: ::String
2115
+ attr_accessor description: ::String
2116
+ attr_accessor domain_id: ::String
2117
+ attr_accessor domain_unit_id: ::String
2118
+ attr_accessor id: ::String
2119
+ attr_accessor last_updated_at: ::Time
2120
+ attr_accessor name: ::String
2121
+ attr_accessor resolution_strategy: ("MANUAL")
2122
+ attr_accessor updated_by: ::String
2123
+ SENSITIVE: [:description, :name]
2124
+ end
2125
+
2023
2126
  class GetAssetFilterInput
2024
2127
  attr_accessor asset_identifier: ::String
2025
2128
  attr_accessor domain_identifier: ::String
@@ -3137,6 +3240,36 @@ module Aws::DataZone
3137
3240
  SENSITIVE: []
3138
3241
  end
3139
3242
 
3243
+ class ListAccountPoolsInput
3244
+ attr_accessor domain_identifier: ::String
3245
+ attr_accessor max_results: ::Integer
3246
+ attr_accessor name: ::String
3247
+ attr_accessor next_token: ::String
3248
+ attr_accessor sort_by: ("NAME")
3249
+ attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
3250
+ SENSITIVE: [:name]
3251
+ end
3252
+
3253
+ class ListAccountPoolsOutput
3254
+ attr_accessor items: ::Array[Types::AccountPoolSummary]
3255
+ attr_accessor next_token: ::String
3256
+ SENSITIVE: []
3257
+ end
3258
+
3259
+ class ListAccountsInAccountPoolInput
3260
+ attr_accessor domain_identifier: ::String
3261
+ attr_accessor identifier: ::String
3262
+ attr_accessor max_results: ::Integer
3263
+ attr_accessor next_token: ::String
3264
+ SENSITIVE: []
3265
+ end
3266
+
3267
+ class ListAccountsInAccountPoolOutput
3268
+ attr_accessor items: ::Array[Types::AccountInfo]
3269
+ attr_accessor next_token: ::String
3270
+ SENSITIVE: []
3271
+ end
3272
+
3140
3273
  class ListAssetFiltersInput
3141
3274
  attr_accessor asset_identifier: ::String
3142
3275
  attr_accessor domain_identifier: ::String
@@ -3978,6 +4111,7 @@ module Aws::DataZone
3978
4111
  attr_accessor created_at: ::Time
3979
4112
  attr_accessor created_by: ::String
3980
4113
  attr_accessor detail: Types::PolicyGrantDetail
4114
+ attr_accessor grant_id: ::String
3981
4115
  attr_accessor principal: Types::PolicyGrantPrincipal
3982
4116
  SENSITIVE: []
3983
4117
  end
@@ -4371,6 +4505,7 @@ module Aws::DataZone
4371
4505
  attr_accessor domain_identifier: ::String
4372
4506
  attr_accessor entity_identifier: ::String
4373
4507
  attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE" | "ASSET_TYPE")
4508
+ attr_accessor grant_identifier: ::String
4374
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")
4375
4510
  attr_accessor principal: Types::PolicyGrantPrincipal
4376
4511
  SENSITIVE: []
@@ -5124,6 +5259,31 @@ module Aws::DataZone
5124
5259
  class UntagResourceResponse < Aws::EmptyStructure
5125
5260
  end
5126
5261
 
5262
+ class UpdateAccountPoolInput
5263
+ attr_accessor account_source: Types::AccountSource
5264
+ attr_accessor description: ::String
5265
+ attr_accessor domain_identifier: ::String
5266
+ attr_accessor identifier: ::String
5267
+ attr_accessor name: ::String
5268
+ attr_accessor resolution_strategy: ("MANUAL")
5269
+ SENSITIVE: [:description, :name]
5270
+ end
5271
+
5272
+ class UpdateAccountPoolOutput
5273
+ attr_accessor account_source: Types::AccountSource
5274
+ attr_accessor created_at: ::Time
5275
+ attr_accessor created_by: ::String
5276
+ attr_accessor description: ::String
5277
+ attr_accessor domain_id: ::String
5278
+ attr_accessor domain_unit_id: ::String
5279
+ attr_accessor id: ::String
5280
+ attr_accessor last_updated_at: ::Time
5281
+ attr_accessor name: ::String
5282
+ attr_accessor resolution_strategy: ("MANUAL")
5283
+ attr_accessor updated_by: ::String
5284
+ SENSITIVE: [:description, :name]
5285
+ end
5286
+
5127
5287
  class UpdateAssetFilterInput
5128
5288
  attr_accessor asset_identifier: ::String
5129
5289
  attr_accessor configuration: Types::AssetFilterConfiguration
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.46.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: