aws-sdk-datazone 1.45.0 → 1.47.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +427 -17
- data/lib/aws-sdk-datazone/client_api.rb +256 -2
- data/lib/aws-sdk-datazone/types.rb +598 -1
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +152 -6
- data/sig/types.rbs +156 -0
- metadata +1 -1
@@ -271,6 +271,107 @@ module Aws::DataZone
|
|
271
271
|
include Aws::Structure
|
272
272
|
end
|
273
273
|
|
274
|
+
# The account information within an account pool.
|
275
|
+
#
|
276
|
+
# @!attribute [rw] aws_account_id
|
277
|
+
# The account ID.
|
278
|
+
# @return [String]
|
279
|
+
#
|
280
|
+
# @!attribute [rw] aws_account_name
|
281
|
+
# The account name.
|
282
|
+
# @return [String]
|
283
|
+
#
|
284
|
+
# @!attribute [rw] supported_regions
|
285
|
+
# The regions supported for an account within an account pool.
|
286
|
+
# @return [Array<String>]
|
287
|
+
#
|
288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AccountInfo AWS API Documentation
|
289
|
+
#
|
290
|
+
class AccountInfo < Struct.new(
|
291
|
+
:aws_account_id,
|
292
|
+
:aws_account_name,
|
293
|
+
:supported_regions)
|
294
|
+
SENSITIVE = [:aws_account_name]
|
295
|
+
include Aws::Structure
|
296
|
+
end
|
297
|
+
|
298
|
+
# The summary of the account pool.
|
299
|
+
#
|
300
|
+
# @!attribute [rw] created_by
|
301
|
+
# The user who created the account pool.
|
302
|
+
# @return [String]
|
303
|
+
#
|
304
|
+
# @!attribute [rw] domain_id
|
305
|
+
# The ID of the domain.
|
306
|
+
# @return [String]
|
307
|
+
#
|
308
|
+
# @!attribute [rw] domain_unit_id
|
309
|
+
# The ID of the domain unit.
|
310
|
+
# @return [String]
|
311
|
+
#
|
312
|
+
# @!attribute [rw] id
|
313
|
+
# The ID of the account pool.
|
314
|
+
# @return [String]
|
315
|
+
#
|
316
|
+
# @!attribute [rw] name
|
317
|
+
# The name of the account pool.
|
318
|
+
# @return [String]
|
319
|
+
#
|
320
|
+
# @!attribute [rw] resolution_strategy
|
321
|
+
# The mechanism used to resolve the account selection from the account
|
322
|
+
# pool.
|
323
|
+
# @return [String]
|
324
|
+
#
|
325
|
+
# @!attribute [rw] updated_by
|
326
|
+
# The user who updated the account pool.
|
327
|
+
# @return [String]
|
328
|
+
#
|
329
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AccountPoolSummary AWS API Documentation
|
330
|
+
#
|
331
|
+
class AccountPoolSummary < Struct.new(
|
332
|
+
:created_by,
|
333
|
+
:domain_id,
|
334
|
+
:domain_unit_id,
|
335
|
+
:id,
|
336
|
+
:name,
|
337
|
+
:resolution_strategy,
|
338
|
+
:updated_by)
|
339
|
+
SENSITIVE = [:name]
|
340
|
+
include Aws::Structure
|
341
|
+
end
|
342
|
+
|
343
|
+
# The source of accounts for the account pool. In the current release,
|
344
|
+
# it's either a static list of accounts provided by the customer or a
|
345
|
+
# custom Amazon Web Services Lambda handler.
|
346
|
+
#
|
347
|
+
# @note AccountSource is a union - when making an API calls you must set exactly one of the members.
|
348
|
+
#
|
349
|
+
# @note AccountSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AccountSource corresponding to the set member.
|
350
|
+
#
|
351
|
+
# @!attribute [rw] accounts
|
352
|
+
# The static list of accounts within an account pool.
|
353
|
+
# @return [Array<Types::AccountInfo>]
|
354
|
+
#
|
355
|
+
# @!attribute [rw] custom_account_pool_handler
|
356
|
+
# The custom Amazon Web Services Lambda handler within an account
|
357
|
+
# pool.
|
358
|
+
# @return [Types::CustomAccountPoolHandler]
|
359
|
+
#
|
360
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AccountSource AWS API Documentation
|
361
|
+
#
|
362
|
+
class AccountSource < Struct.new(
|
363
|
+
:accounts,
|
364
|
+
:custom_account_pool_handler,
|
365
|
+
:unknown)
|
366
|
+
SENSITIVE = []
|
367
|
+
include Aws::Structure
|
368
|
+
include Aws::Structure::Union
|
369
|
+
|
370
|
+
class Accounts < AccountSource; end
|
371
|
+
class CustomAccountPoolHandler < AccountSource; end
|
372
|
+
class Unknown < AccountSource; end
|
373
|
+
end
|
374
|
+
|
274
375
|
# The parameters of the environment action.
|
275
376
|
#
|
276
377
|
# @note ActionParameters is a union - when making an API calls you must set exactly one of the members.
|
@@ -1798,6 +1899,106 @@ module Aws::DataZone
|
|
1798
1899
|
include Aws::Structure
|
1799
1900
|
end
|
1800
1901
|
|
1902
|
+
# @!attribute [rw] account_source
|
1903
|
+
# The source of accounts for the account pool. In the current release,
|
1904
|
+
# it's either a static list of accounts provided by the customer or a
|
1905
|
+
# custom Amazon Web Services Lambda handler.
|
1906
|
+
# @return [Types::AccountSource]
|
1907
|
+
#
|
1908
|
+
# @!attribute [rw] description
|
1909
|
+
# The description of the account pool.
|
1910
|
+
# @return [String]
|
1911
|
+
#
|
1912
|
+
# @!attribute [rw] domain_identifier
|
1913
|
+
# The ID of the domain where the account pool is created.
|
1914
|
+
# @return [String]
|
1915
|
+
#
|
1916
|
+
# @!attribute [rw] name
|
1917
|
+
# The name of the account pool.
|
1918
|
+
# @return [String]
|
1919
|
+
#
|
1920
|
+
# @!attribute [rw] resolution_strategy
|
1921
|
+
# The mechanism used to resolve the account selection from the account
|
1922
|
+
# pool.
|
1923
|
+
# @return [String]
|
1924
|
+
#
|
1925
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateAccountPoolInput AWS API Documentation
|
1926
|
+
#
|
1927
|
+
class CreateAccountPoolInput < Struct.new(
|
1928
|
+
:account_source,
|
1929
|
+
:description,
|
1930
|
+
:domain_identifier,
|
1931
|
+
:name,
|
1932
|
+
:resolution_strategy)
|
1933
|
+
SENSITIVE = [:description, :name]
|
1934
|
+
include Aws::Structure
|
1935
|
+
end
|
1936
|
+
|
1937
|
+
# @!attribute [rw] account_source
|
1938
|
+
# The source of accounts for the account pool. In the current release,
|
1939
|
+
# it's either a static list of accounts provided by the customer or a
|
1940
|
+
# custom Amazon Web Services Lambda handler.
|
1941
|
+
# @return [Types::AccountSource]
|
1942
|
+
#
|
1943
|
+
# @!attribute [rw] created_at
|
1944
|
+
# The timestamp at which the account pool was created.
|
1945
|
+
# @return [Time]
|
1946
|
+
#
|
1947
|
+
# @!attribute [rw] created_by
|
1948
|
+
# The user who created the account pool.
|
1949
|
+
# @return [String]
|
1950
|
+
#
|
1951
|
+
# @!attribute [rw] description
|
1952
|
+
# The description of the account pool.
|
1953
|
+
# @return [String]
|
1954
|
+
#
|
1955
|
+
# @!attribute [rw] domain_id
|
1956
|
+
# The ID of the domain where the account pool is created.
|
1957
|
+
# @return [String]
|
1958
|
+
#
|
1959
|
+
# @!attribute [rw] domain_unit_id
|
1960
|
+
# The ID of the domain where the account pool is created.
|
1961
|
+
# @return [String]
|
1962
|
+
#
|
1963
|
+
# @!attribute [rw] id
|
1964
|
+
# The ID of the account pool.
|
1965
|
+
# @return [String]
|
1966
|
+
#
|
1967
|
+
# @!attribute [rw] last_updated_at
|
1968
|
+
# The timestamp at which the account pool was last updated.
|
1969
|
+
# @return [Time]
|
1970
|
+
#
|
1971
|
+
# @!attribute [rw] name
|
1972
|
+
# The name of the account pool.
|
1973
|
+
# @return [String]
|
1974
|
+
#
|
1975
|
+
# @!attribute [rw] resolution_strategy
|
1976
|
+
# The mechanism used to resolve the account selection from the account
|
1977
|
+
# pool.
|
1978
|
+
# @return [String]
|
1979
|
+
#
|
1980
|
+
# @!attribute [rw] updated_by
|
1981
|
+
# The user who last updated the account pool.
|
1982
|
+
# @return [String]
|
1983
|
+
#
|
1984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateAccountPoolOutput AWS API Documentation
|
1985
|
+
#
|
1986
|
+
class CreateAccountPoolOutput < Struct.new(
|
1987
|
+
:account_source,
|
1988
|
+
:created_at,
|
1989
|
+
:created_by,
|
1990
|
+
:description,
|
1991
|
+
:domain_id,
|
1992
|
+
:domain_unit_id,
|
1993
|
+
:id,
|
1994
|
+
:last_updated_at,
|
1995
|
+
:name,
|
1996
|
+
:resolution_strategy,
|
1997
|
+
:updated_by)
|
1998
|
+
SENSITIVE = [:description, :name]
|
1999
|
+
include Aws::Structure
|
2000
|
+
end
|
2001
|
+
|
1801
2002
|
# @!attribute [rw] asset_identifier
|
1802
2003
|
# The ID of the data asset.
|
1803
2004
|
# @return [String]
|
@@ -4835,6 +5036,28 @@ module Aws::DataZone
|
|
4835
5036
|
include Aws::Structure
|
4836
5037
|
end
|
4837
5038
|
|
5039
|
+
# The custom Amazon Web Services Lambda handler within an account pool.
|
5040
|
+
#
|
5041
|
+
# @!attribute [rw] lambda_execution_role_arn
|
5042
|
+
# The ARN of the IAM role that enables Amazon SageMaker Unified Studio
|
5043
|
+
# to invoke the Amazon Web Services Lambda funtion if the account
|
5044
|
+
# source is the custom account pool handler.
|
5045
|
+
# @return [String]
|
5046
|
+
#
|
5047
|
+
# @!attribute [rw] lambda_function_arn
|
5048
|
+
# The ARN of the Amazon Web Services Lambda function for the custom
|
5049
|
+
# Amazon Web Services Lambda handler.
|
5050
|
+
# @return [String]
|
5051
|
+
#
|
5052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CustomAccountPoolHandler AWS API Documentation
|
5053
|
+
#
|
5054
|
+
class CustomAccountPoolHandler < Struct.new(
|
5055
|
+
:lambda_execution_role_arn,
|
5056
|
+
:lambda_function_arn)
|
5057
|
+
SENSITIVE = []
|
5058
|
+
include Aws::Structure
|
5059
|
+
end
|
5060
|
+
|
4838
5061
|
# The details of user parameters of an environment blueprint.
|
4839
5062
|
#
|
4840
5063
|
# @!attribute [rw] default_value
|
@@ -5484,6 +5707,27 @@ module Aws::DataZone
|
|
5484
5707
|
include Aws::Structure
|
5485
5708
|
end
|
5486
5709
|
|
5710
|
+
# @!attribute [rw] domain_identifier
|
5711
|
+
# The ID of the domain where the account pool is deleted.
|
5712
|
+
# @return [String]
|
5713
|
+
#
|
5714
|
+
# @!attribute [rw] identifier
|
5715
|
+
# The ID of the account pool to be deleted.
|
5716
|
+
# @return [String]
|
5717
|
+
#
|
5718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteAccountPoolInput AWS API Documentation
|
5719
|
+
#
|
5720
|
+
class DeleteAccountPoolInput < Struct.new(
|
5721
|
+
:domain_identifier,
|
5722
|
+
:identifier)
|
5723
|
+
SENSITIVE = []
|
5724
|
+
include Aws::Structure
|
5725
|
+
end
|
5726
|
+
|
5727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteAccountPoolOutput AWS API Documentation
|
5728
|
+
#
|
5729
|
+
class DeleteAccountPoolOutput < Aws::EmptyStructure; end
|
5730
|
+
|
5487
5731
|
# @!attribute [rw] asset_identifier
|
5488
5732
|
# The ID of the data asset.
|
5489
5733
|
# @return [String]
|
@@ -6733,6 +6977,10 @@ module Aws::DataZone
|
|
6733
6977
|
|
6734
6978
|
# The configuration of an environment.
|
6735
6979
|
#
|
6980
|
+
# @!attribute [rw] account_pools
|
6981
|
+
# The account pools used by a custom project profile.
|
6982
|
+
# @return [Array<String>]
|
6983
|
+
#
|
6736
6984
|
# @!attribute [rw] aws_account
|
6737
6985
|
# The Amazon Web Services account of the environment.
|
6738
6986
|
# @return [Types::AwsAccount]
|
@@ -6772,6 +7020,7 @@ module Aws::DataZone
|
|
6772
7020
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentConfiguration AWS API Documentation
|
6773
7021
|
#
|
6774
7022
|
class EnvironmentConfiguration < Struct.new(
|
7023
|
+
:account_pools,
|
6775
7024
|
:aws_account,
|
6776
7025
|
:aws_region,
|
6777
7026
|
:configuration_parameters,
|
@@ -6847,12 +7096,18 @@ module Aws::DataZone
|
|
6847
7096
|
# The environment parameters.
|
6848
7097
|
# @return [Array<Types::EnvironmentParameter>]
|
6849
7098
|
#
|
7099
|
+
# @!attribute [rw] environment_resolved_account
|
7100
|
+
# Specifies the account/Region that is to be used during project
|
7101
|
+
# creation for a particular blueprint.
|
7102
|
+
# @return [Types::EnvironmentResolvedAccount]
|
7103
|
+
#
|
6850
7104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentConfigurationUserParameter AWS API Documentation
|
6851
7105
|
#
|
6852
7106
|
class EnvironmentConfigurationUserParameter < Struct.new(
|
6853
7107
|
:environment_configuration_name,
|
6854
7108
|
:environment_id,
|
6855
|
-
:environment_parameters
|
7109
|
+
:environment_parameters,
|
7110
|
+
:environment_resolved_account)
|
6856
7111
|
SENSITIVE = [:environment_configuration_name]
|
6857
7112
|
include Aws::Structure
|
6858
7113
|
end
|
@@ -6984,6 +7239,31 @@ module Aws::DataZone
|
|
6984
7239
|
include Aws::Structure
|
6985
7240
|
end
|
6986
7241
|
|
7242
|
+
# Specifies the account/Region that is to be used during project
|
7243
|
+
# creation for a particular blueprint.
|
7244
|
+
#
|
7245
|
+
# @!attribute [rw] aws_account_id
|
7246
|
+
# The ID of the resolved account.
|
7247
|
+
# @return [String]
|
7248
|
+
#
|
7249
|
+
# @!attribute [rw] region_name
|
7250
|
+
# The name of the resolved Region.
|
7251
|
+
# @return [String]
|
7252
|
+
#
|
7253
|
+
# @!attribute [rw] source_account_pool_id
|
7254
|
+
# The ID of the account pool.
|
7255
|
+
# @return [String]
|
7256
|
+
#
|
7257
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentResolvedAccount AWS API Documentation
|
7258
|
+
#
|
7259
|
+
class EnvironmentResolvedAccount < Struct.new(
|
7260
|
+
:aws_account_id,
|
7261
|
+
:region_name,
|
7262
|
+
:source_account_pool_id)
|
7263
|
+
SENSITIVE = []
|
7264
|
+
include Aws::Structure
|
7265
|
+
end
|
7266
|
+
|
6987
7267
|
# The details of an environment.
|
6988
7268
|
#
|
6989
7269
|
# @!attribute [rw] aws_account_id
|
@@ -7370,6 +7650,90 @@ module Aws::DataZone
|
|
7370
7650
|
include Aws::Structure
|
7371
7651
|
end
|
7372
7652
|
|
7653
|
+
# @!attribute [rw] domain_identifier
|
7654
|
+
# The ID of the domain in which the account pool lives whose details
|
7655
|
+
# are to be displayed.
|
7656
|
+
# @return [String]
|
7657
|
+
#
|
7658
|
+
# @!attribute [rw] identifier
|
7659
|
+
# The ID of the account pool whose details are to be displayed.
|
7660
|
+
# @return [String]
|
7661
|
+
#
|
7662
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetAccountPoolInput AWS API Documentation
|
7663
|
+
#
|
7664
|
+
class GetAccountPoolInput < Struct.new(
|
7665
|
+
:domain_identifier,
|
7666
|
+
:identifier)
|
7667
|
+
SENSITIVE = []
|
7668
|
+
include Aws::Structure
|
7669
|
+
end
|
7670
|
+
|
7671
|
+
# @!attribute [rw] account_source
|
7672
|
+
# The source of accounts for the account pool. In the current release,
|
7673
|
+
# it's either a static list of accounts provided by the customer or a
|
7674
|
+
# custom Amazon Web Services Lambda handler.
|
7675
|
+
# @return [Types::AccountSource]
|
7676
|
+
#
|
7677
|
+
# @!attribute [rw] created_at
|
7678
|
+
# The timestamp at which the account pool was created.
|
7679
|
+
# @return [Time]
|
7680
|
+
#
|
7681
|
+
# @!attribute [rw] created_by
|
7682
|
+
# The user who created the account pool.
|
7683
|
+
# @return [String]
|
7684
|
+
#
|
7685
|
+
# @!attribute [rw] description
|
7686
|
+
# The description of the account pool.
|
7687
|
+
# @return [String]
|
7688
|
+
#
|
7689
|
+
# @!attribute [rw] domain_id
|
7690
|
+
# The ID of the domain in which the account pool lives whose details
|
7691
|
+
# are to be displayed.
|
7692
|
+
# @return [String]
|
7693
|
+
#
|
7694
|
+
# @!attribute [rw] domain_unit_id
|
7695
|
+
# The domain unit ID of the account pool.
|
7696
|
+
# @return [String]
|
7697
|
+
#
|
7698
|
+
# @!attribute [rw] id
|
7699
|
+
# The ID of the account pool.
|
7700
|
+
# @return [String]
|
7701
|
+
#
|
7702
|
+
# @!attribute [rw] last_updated_at
|
7703
|
+
# The timestamp at which the account pool was last updated.
|
7704
|
+
# @return [Time]
|
7705
|
+
#
|
7706
|
+
# @!attribute [rw] name
|
7707
|
+
# The name of the account pool.
|
7708
|
+
# @return [String]
|
7709
|
+
#
|
7710
|
+
# @!attribute [rw] resolution_strategy
|
7711
|
+
# The mechanism used to resolve the account selection from the account
|
7712
|
+
# pool.
|
7713
|
+
# @return [String]
|
7714
|
+
#
|
7715
|
+
# @!attribute [rw] updated_by
|
7716
|
+
# The user who last updated the account pool.
|
7717
|
+
# @return [String]
|
7718
|
+
#
|
7719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetAccountPoolOutput AWS API Documentation
|
7720
|
+
#
|
7721
|
+
class GetAccountPoolOutput < Struct.new(
|
7722
|
+
:account_source,
|
7723
|
+
:created_at,
|
7724
|
+
:created_by,
|
7725
|
+
:description,
|
7726
|
+
:domain_id,
|
7727
|
+
:domain_unit_id,
|
7728
|
+
:id,
|
7729
|
+
:last_updated_at,
|
7730
|
+
:name,
|
7731
|
+
:resolution_strategy,
|
7732
|
+
:updated_by)
|
7733
|
+
SENSITIVE = [:description, :name]
|
7734
|
+
include Aws::Structure
|
7735
|
+
end
|
7736
|
+
|
7373
7737
|
# @!attribute [rw] asset_identifier
|
7374
7738
|
# The ID of the data asset.
|
7375
7739
|
# @return [String]
|
@@ -11580,6 +11944,134 @@ module Aws::DataZone
|
|
11580
11944
|
include Aws::Structure
|
11581
11945
|
end
|
11582
11946
|
|
11947
|
+
# @!attribute [rw] domain_identifier
|
11948
|
+
# The ID of the domain where exsting account pools are to be listed.
|
11949
|
+
# @return [String]
|
11950
|
+
#
|
11951
|
+
# @!attribute [rw] max_results
|
11952
|
+
# The maximum number of account pools to return in a single call to
|
11953
|
+
# ListAccountPools. When the number of account pools to be listed is
|
11954
|
+
# greater than the value of MaxResults, the response contains a
|
11955
|
+
# NextToken value that you can use in a subsequent call to
|
11956
|
+
# ListAccountPools to list the next set of account pools.
|
11957
|
+
# @return [Integer]
|
11958
|
+
#
|
11959
|
+
# @!attribute [rw] name
|
11960
|
+
# The name of the account pool to be listed.
|
11961
|
+
# @return [String]
|
11962
|
+
#
|
11963
|
+
# @!attribute [rw] next_token
|
11964
|
+
# When the number of account pools is greater than the default value
|
11965
|
+
# for the MaxResults parameter, or if you explicitly specify a value
|
11966
|
+
# for MaxResults that is less than the number of account pools, the
|
11967
|
+
# response includes a pagination token named NextToken. You can
|
11968
|
+
# specify this NextToken value in a subsequent call to
|
11969
|
+
# ListAccountPools to list the next set of account pools.
|
11970
|
+
# @return [String]
|
11971
|
+
#
|
11972
|
+
# @!attribute [rw] sort_by
|
11973
|
+
# The sort by mechanism in which the existing account pools are to be
|
11974
|
+
# listed.
|
11975
|
+
# @return [String]
|
11976
|
+
#
|
11977
|
+
# @!attribute [rw] sort_order
|
11978
|
+
# The sort order in which the existing account pools are to be listed.
|
11979
|
+
# @return [String]
|
11980
|
+
#
|
11981
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAccountPoolsInput AWS API Documentation
|
11982
|
+
#
|
11983
|
+
class ListAccountPoolsInput < Struct.new(
|
11984
|
+
:domain_identifier,
|
11985
|
+
:max_results,
|
11986
|
+
:name,
|
11987
|
+
:next_token,
|
11988
|
+
:sort_by,
|
11989
|
+
:sort_order)
|
11990
|
+
SENSITIVE = [:name]
|
11991
|
+
include Aws::Structure
|
11992
|
+
end
|
11993
|
+
|
11994
|
+
# @!attribute [rw] items
|
11995
|
+
# The results of the ListAccountPools operation.
|
11996
|
+
# @return [Array<Types::AccountPoolSummary>]
|
11997
|
+
#
|
11998
|
+
# @!attribute [rw] next_token
|
11999
|
+
# When the number of account pools is greater than the default value
|
12000
|
+
# for the MaxResults parameter, or if you explicitly specify a value
|
12001
|
+
# for MaxResults that is less than the number of account pools, the
|
12002
|
+
# response includes a pagination token named NextToken. You can
|
12003
|
+
# specify this NextToken value in a subsequent call to
|
12004
|
+
# ListAccountPools to list the next set of account pools.
|
12005
|
+
# @return [String]
|
12006
|
+
#
|
12007
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAccountPoolsOutput AWS API Documentation
|
12008
|
+
#
|
12009
|
+
class ListAccountPoolsOutput < Struct.new(
|
12010
|
+
:items,
|
12011
|
+
:next_token)
|
12012
|
+
SENSITIVE = []
|
12013
|
+
include Aws::Structure
|
12014
|
+
end
|
12015
|
+
|
12016
|
+
# @!attribute [rw] domain_identifier
|
12017
|
+
# The ID of the domain in which the accounts in the specified account
|
12018
|
+
# pool are to be listed.
|
12019
|
+
# @return [String]
|
12020
|
+
#
|
12021
|
+
# @!attribute [rw] identifier
|
12022
|
+
# The ID of the account pool whose accounts are to be listed.
|
12023
|
+
# @return [String]
|
12024
|
+
#
|
12025
|
+
# @!attribute [rw] max_results
|
12026
|
+
# The maximum number of accounts to return in a single call to
|
12027
|
+
# ListAccountsInAccountPool. When the number of accounts to be listed
|
12028
|
+
# is greater than the value of MaxResults, the response contains a
|
12029
|
+
# NextToken value that you can use in a subsequent call to
|
12030
|
+
# ListAccountsInAccountPool to list the next set of accounts.
|
12031
|
+
# @return [Integer]
|
12032
|
+
#
|
12033
|
+
# @!attribute [rw] next_token
|
12034
|
+
# When the number of accounts is greater than the default value for
|
12035
|
+
# the MaxResults parameter, or if you explicitly specify a value for
|
12036
|
+
# MaxResults that is less than the number of accounts, the response
|
12037
|
+
# includes a pagination token named NextToken. You can specify this
|
12038
|
+
# NextToken value in a subsequent call to ListAccountsInAccountPool to
|
12039
|
+
# list the next set of accounts.
|
12040
|
+
# @return [String]
|
12041
|
+
#
|
12042
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAccountsInAccountPoolInput AWS API Documentation
|
12043
|
+
#
|
12044
|
+
class ListAccountsInAccountPoolInput < Struct.new(
|
12045
|
+
:domain_identifier,
|
12046
|
+
:identifier,
|
12047
|
+
:max_results,
|
12048
|
+
:next_token)
|
12049
|
+
SENSITIVE = []
|
12050
|
+
include Aws::Structure
|
12051
|
+
end
|
12052
|
+
|
12053
|
+
# @!attribute [rw] items
|
12054
|
+
# The results of the ListAccountsInAccountPool operation.
|
12055
|
+
# @return [Array<Types::AccountInfo>]
|
12056
|
+
#
|
12057
|
+
# @!attribute [rw] next_token
|
12058
|
+
# When the number of accounts is greater than the default value for
|
12059
|
+
# the MaxResults parameter, or if you explicitly specify a value for
|
12060
|
+
# MaxResults that is less than the number of accounts, the response
|
12061
|
+
# includes a pagination token named NextToken. You can specify this
|
12062
|
+
# NextToken value in a subsequent call to ListAccountsInAccountPool to
|
12063
|
+
# list the next set of accounts.
|
12064
|
+
# @return [String]
|
12065
|
+
#
|
12066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAccountsInAccountPoolOutput AWS API Documentation
|
12067
|
+
#
|
12068
|
+
class ListAccountsInAccountPoolOutput < Struct.new(
|
12069
|
+
:items,
|
12070
|
+
:next_token)
|
12071
|
+
SENSITIVE = []
|
12072
|
+
include Aws::Structure
|
12073
|
+
end
|
12074
|
+
|
11583
12075
|
# @!attribute [rw] asset_identifier
|
11584
12076
|
# The ID of the data asset.
|
11585
12077
|
# @return [String]
|
@@ -18639,6 +19131,111 @@ module Aws::DataZone
|
|
18639
19131
|
#
|
18640
19132
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
18641
19133
|
|
19134
|
+
# @!attribute [rw] account_source
|
19135
|
+
# The source of accounts for the account pool. In the current release,
|
19136
|
+
# it's either a static list of accounts provided by the customer or a
|
19137
|
+
# custom Amazon Web Services Lambda handler.
|
19138
|
+
# @return [Types::AccountSource]
|
19139
|
+
#
|
19140
|
+
# @!attribute [rw] description
|
19141
|
+
# The description of the account pool that is to be udpated.
|
19142
|
+
# @return [String]
|
19143
|
+
#
|
19144
|
+
# @!attribute [rw] domain_identifier
|
19145
|
+
# The domain ID where the account pool that is to be updated lives.
|
19146
|
+
# @return [String]
|
19147
|
+
#
|
19148
|
+
# @!attribute [rw] identifier
|
19149
|
+
# The ID of the account pool that is to be updated.
|
19150
|
+
# @return [String]
|
19151
|
+
#
|
19152
|
+
# @!attribute [rw] name
|
19153
|
+
# The name of the account pool that is to be updated.
|
19154
|
+
# @return [String]
|
19155
|
+
#
|
19156
|
+
# @!attribute [rw] resolution_strategy
|
19157
|
+
# The mechanism used to resolve the account selection from the account
|
19158
|
+
# pool.
|
19159
|
+
# @return [String]
|
19160
|
+
#
|
19161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateAccountPoolInput AWS API Documentation
|
19162
|
+
#
|
19163
|
+
class UpdateAccountPoolInput < Struct.new(
|
19164
|
+
:account_source,
|
19165
|
+
:description,
|
19166
|
+
:domain_identifier,
|
19167
|
+
:identifier,
|
19168
|
+
:name,
|
19169
|
+
:resolution_strategy)
|
19170
|
+
SENSITIVE = [:description, :name]
|
19171
|
+
include Aws::Structure
|
19172
|
+
end
|
19173
|
+
|
19174
|
+
# @!attribute [rw] account_source
|
19175
|
+
# The source of accounts for the account pool. In the current release,
|
19176
|
+
# it's either a static list of accounts provided by the customer or a
|
19177
|
+
# custom Amazon Web Services Lambda handler.
|
19178
|
+
# @return [Types::AccountSource]
|
19179
|
+
#
|
19180
|
+
# @!attribute [rw] created_at
|
19181
|
+
# The timestamp at which the account pool was created.
|
19182
|
+
# @return [Time]
|
19183
|
+
#
|
19184
|
+
# @!attribute [rw] created_by
|
19185
|
+
# The user who created the account pool.
|
19186
|
+
# @return [String]
|
19187
|
+
#
|
19188
|
+
# @!attribute [rw] description
|
19189
|
+
# The description of the account pool that is to be udpated.
|
19190
|
+
# @return [String]
|
19191
|
+
#
|
19192
|
+
# @!attribute [rw] domain_id
|
19193
|
+
# The domain ID where the account pool that is to be updated lives.
|
19194
|
+
# @return [String]
|
19195
|
+
#
|
19196
|
+
# @!attribute [rw] domain_unit_id
|
19197
|
+
# The domain ID in which the account pool that is to be updated lives.
|
19198
|
+
# @return [String]
|
19199
|
+
#
|
19200
|
+
# @!attribute [rw] id
|
19201
|
+
# The ID of the account pool that is to be updated.
|
19202
|
+
# @return [String]
|
19203
|
+
#
|
19204
|
+
# @!attribute [rw] last_updated_at
|
19205
|
+
# The timestamp at which the account pool was last updated.
|
19206
|
+
# @return [Time]
|
19207
|
+
#
|
19208
|
+
# @!attribute [rw] name
|
19209
|
+
# The name of the account pool that is to be updated.
|
19210
|
+
# @return [String]
|
19211
|
+
#
|
19212
|
+
# @!attribute [rw] resolution_strategy
|
19213
|
+
# The mechanism used to resolve the account selection from the account
|
19214
|
+
# pool.
|
19215
|
+
# @return [String]
|
19216
|
+
#
|
19217
|
+
# @!attribute [rw] updated_by
|
19218
|
+
# The user who last updated the account pool.
|
19219
|
+
# @return [String]
|
19220
|
+
#
|
19221
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateAccountPoolOutput AWS API Documentation
|
19222
|
+
#
|
19223
|
+
class UpdateAccountPoolOutput < Struct.new(
|
19224
|
+
:account_source,
|
19225
|
+
:created_at,
|
19226
|
+
:created_by,
|
19227
|
+
:description,
|
19228
|
+
:domain_id,
|
19229
|
+
:domain_unit_id,
|
19230
|
+
:id,
|
19231
|
+
:last_updated_at,
|
19232
|
+
:name,
|
19233
|
+
:resolution_strategy,
|
19234
|
+
:updated_by)
|
19235
|
+
SENSITIVE = [:description, :name]
|
19236
|
+
include Aws::Structure
|
19237
|
+
end
|
19238
|
+
|
18642
19239
|
# @!attribute [rw] asset_identifier
|
18643
19240
|
# The ID of the data asset.
|
18644
19241
|
# @return [String]
|