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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +431 -6
- data/lib/aws-sdk-datazone/client_api.rb +262 -2
- data/lib/aws-sdk-datazone/types.rb +618 -2
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +154 -6
- data/sig/types.rbs +161 -1
- metadata +3 -3
@@ -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.
|
@@ -381,9 +482,17 @@ module Aws::DataZone
|
|
381
482
|
include Aws::Structure
|
382
483
|
end
|
383
484
|
|
485
|
+
# @!attribute [rw] grant_id
|
486
|
+
# The ID of the policy grant that was added to a specified entity.
|
487
|
+
# @return [String]
|
488
|
+
#
|
384
489
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AddPolicyGrantOutput AWS API Documentation
|
385
490
|
#
|
386
|
-
class AddPolicyGrantOutput <
|
491
|
+
class AddPolicyGrantOutput < Struct.new(
|
492
|
+
:grant_id)
|
493
|
+
SENSITIVE = []
|
494
|
+
include Aws::Structure
|
495
|
+
end
|
387
496
|
|
388
497
|
# The details of the policy grant.
|
389
498
|
#
|
@@ -1798,6 +1907,106 @@ module Aws::DataZone
|
|
1798
1907
|
include Aws::Structure
|
1799
1908
|
end
|
1800
1909
|
|
1910
|
+
# @!attribute [rw] account_source
|
1911
|
+
# The source of accounts for the account pool. In the current release,
|
1912
|
+
# it's either a static list of accounts provided by the customer or a
|
1913
|
+
# custom Amazon Web Services Lambda handler.
|
1914
|
+
# @return [Types::AccountSource]
|
1915
|
+
#
|
1916
|
+
# @!attribute [rw] description
|
1917
|
+
# The description of the account pool.
|
1918
|
+
# @return [String]
|
1919
|
+
#
|
1920
|
+
# @!attribute [rw] domain_identifier
|
1921
|
+
# The ID of the domain where the account pool is created.
|
1922
|
+
# @return [String]
|
1923
|
+
#
|
1924
|
+
# @!attribute [rw] name
|
1925
|
+
# The name of the account pool.
|
1926
|
+
# @return [String]
|
1927
|
+
#
|
1928
|
+
# @!attribute [rw] resolution_strategy
|
1929
|
+
# The mechanism used to resolve the account selection from the account
|
1930
|
+
# pool.
|
1931
|
+
# @return [String]
|
1932
|
+
#
|
1933
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateAccountPoolInput AWS API Documentation
|
1934
|
+
#
|
1935
|
+
class CreateAccountPoolInput < Struct.new(
|
1936
|
+
:account_source,
|
1937
|
+
:description,
|
1938
|
+
:domain_identifier,
|
1939
|
+
:name,
|
1940
|
+
:resolution_strategy)
|
1941
|
+
SENSITIVE = [:description, :name]
|
1942
|
+
include Aws::Structure
|
1943
|
+
end
|
1944
|
+
|
1945
|
+
# @!attribute [rw] account_source
|
1946
|
+
# The source of accounts for the account pool. In the current release,
|
1947
|
+
# it's either a static list of accounts provided by the customer or a
|
1948
|
+
# custom Amazon Web Services Lambda handler.
|
1949
|
+
# @return [Types::AccountSource]
|
1950
|
+
#
|
1951
|
+
# @!attribute [rw] created_at
|
1952
|
+
# The timestamp at which the account pool was created.
|
1953
|
+
# @return [Time]
|
1954
|
+
#
|
1955
|
+
# @!attribute [rw] created_by
|
1956
|
+
# The user who created the account pool.
|
1957
|
+
# @return [String]
|
1958
|
+
#
|
1959
|
+
# @!attribute [rw] description
|
1960
|
+
# The description of the account pool.
|
1961
|
+
# @return [String]
|
1962
|
+
#
|
1963
|
+
# @!attribute [rw] domain_id
|
1964
|
+
# The ID of the domain where the account pool is created.
|
1965
|
+
# @return [String]
|
1966
|
+
#
|
1967
|
+
# @!attribute [rw] domain_unit_id
|
1968
|
+
# The ID of the domain where the account pool is created.
|
1969
|
+
# @return [String]
|
1970
|
+
#
|
1971
|
+
# @!attribute [rw] id
|
1972
|
+
# The ID of the account pool.
|
1973
|
+
# @return [String]
|
1974
|
+
#
|
1975
|
+
# @!attribute [rw] last_updated_at
|
1976
|
+
# The timestamp at which the account pool was last updated.
|
1977
|
+
# @return [Time]
|
1978
|
+
#
|
1979
|
+
# @!attribute [rw] name
|
1980
|
+
# The name of the account pool.
|
1981
|
+
# @return [String]
|
1982
|
+
#
|
1983
|
+
# @!attribute [rw] resolution_strategy
|
1984
|
+
# The mechanism used to resolve the account selection from the account
|
1985
|
+
# pool.
|
1986
|
+
# @return [String]
|
1987
|
+
#
|
1988
|
+
# @!attribute [rw] updated_by
|
1989
|
+
# The user who last updated the account pool.
|
1990
|
+
# @return [String]
|
1991
|
+
#
|
1992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateAccountPoolOutput AWS API Documentation
|
1993
|
+
#
|
1994
|
+
class CreateAccountPoolOutput < Struct.new(
|
1995
|
+
:account_source,
|
1996
|
+
:created_at,
|
1997
|
+
:created_by,
|
1998
|
+
:description,
|
1999
|
+
:domain_id,
|
2000
|
+
:domain_unit_id,
|
2001
|
+
:id,
|
2002
|
+
:last_updated_at,
|
2003
|
+
:name,
|
2004
|
+
:resolution_strategy,
|
2005
|
+
:updated_by)
|
2006
|
+
SENSITIVE = [:description, :name]
|
2007
|
+
include Aws::Structure
|
2008
|
+
end
|
2009
|
+
|
1801
2010
|
# @!attribute [rw] asset_identifier
|
1802
2011
|
# The ID of the data asset.
|
1803
2012
|
# @return [String]
|
@@ -4835,6 +5044,28 @@ module Aws::DataZone
|
|
4835
5044
|
include Aws::Structure
|
4836
5045
|
end
|
4837
5046
|
|
5047
|
+
# The custom Amazon Web Services Lambda handler within an account pool.
|
5048
|
+
#
|
5049
|
+
# @!attribute [rw] lambda_execution_role_arn
|
5050
|
+
# The ARN of the IAM role that enables Amazon SageMaker Unified Studio
|
5051
|
+
# to invoke the Amazon Web Services Lambda funtion if the account
|
5052
|
+
# source is the custom account pool handler.
|
5053
|
+
# @return [String]
|
5054
|
+
#
|
5055
|
+
# @!attribute [rw] lambda_function_arn
|
5056
|
+
# The ARN of the Amazon Web Services Lambda function for the custom
|
5057
|
+
# Amazon Web Services Lambda handler.
|
5058
|
+
# @return [String]
|
5059
|
+
#
|
5060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CustomAccountPoolHandler AWS API Documentation
|
5061
|
+
#
|
5062
|
+
class CustomAccountPoolHandler < Struct.new(
|
5063
|
+
:lambda_execution_role_arn,
|
5064
|
+
:lambda_function_arn)
|
5065
|
+
SENSITIVE = []
|
5066
|
+
include Aws::Structure
|
5067
|
+
end
|
5068
|
+
|
4838
5069
|
# The details of user parameters of an environment blueprint.
|
4839
5070
|
#
|
4840
5071
|
# @!attribute [rw] default_value
|
@@ -5484,6 +5715,27 @@ module Aws::DataZone
|
|
5484
5715
|
include Aws::Structure
|
5485
5716
|
end
|
5486
5717
|
|
5718
|
+
# @!attribute [rw] domain_identifier
|
5719
|
+
# The ID of the domain where the account pool is deleted.
|
5720
|
+
# @return [String]
|
5721
|
+
#
|
5722
|
+
# @!attribute [rw] identifier
|
5723
|
+
# The ID of the account pool to be deleted.
|
5724
|
+
# @return [String]
|
5725
|
+
#
|
5726
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteAccountPoolInput AWS API Documentation
|
5727
|
+
#
|
5728
|
+
class DeleteAccountPoolInput < Struct.new(
|
5729
|
+
:domain_identifier,
|
5730
|
+
:identifier)
|
5731
|
+
SENSITIVE = []
|
5732
|
+
include Aws::Structure
|
5733
|
+
end
|
5734
|
+
|
5735
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteAccountPoolOutput AWS API Documentation
|
5736
|
+
#
|
5737
|
+
class DeleteAccountPoolOutput < Aws::EmptyStructure; end
|
5738
|
+
|
5487
5739
|
# @!attribute [rw] asset_identifier
|
5488
5740
|
# The ID of the data asset.
|
5489
5741
|
# @return [String]
|
@@ -6733,6 +6985,10 @@ module Aws::DataZone
|
|
6733
6985
|
|
6734
6986
|
# The configuration of an environment.
|
6735
6987
|
#
|
6988
|
+
# @!attribute [rw] account_pools
|
6989
|
+
# The account pools used by a custom project profile.
|
6990
|
+
# @return [Array<String>]
|
6991
|
+
#
|
6736
6992
|
# @!attribute [rw] aws_account
|
6737
6993
|
# The Amazon Web Services account of the environment.
|
6738
6994
|
# @return [Types::AwsAccount]
|
@@ -6772,6 +7028,7 @@ module Aws::DataZone
|
|
6772
7028
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentConfiguration AWS API Documentation
|
6773
7029
|
#
|
6774
7030
|
class EnvironmentConfiguration < Struct.new(
|
7031
|
+
:account_pools,
|
6775
7032
|
:aws_account,
|
6776
7033
|
:aws_region,
|
6777
7034
|
:configuration_parameters,
|
@@ -6847,12 +7104,18 @@ module Aws::DataZone
|
|
6847
7104
|
# The environment parameters.
|
6848
7105
|
# @return [Array<Types::EnvironmentParameter>]
|
6849
7106
|
#
|
7107
|
+
# @!attribute [rw] environment_resolved_account
|
7108
|
+
# Specifies the account/Region that is to be used during project
|
7109
|
+
# creation for a particular blueprint.
|
7110
|
+
# @return [Types::EnvironmentResolvedAccount]
|
7111
|
+
#
|
6850
7112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentConfigurationUserParameter AWS API Documentation
|
6851
7113
|
#
|
6852
7114
|
class EnvironmentConfigurationUserParameter < Struct.new(
|
6853
7115
|
:environment_configuration_name,
|
6854
7116
|
:environment_id,
|
6855
|
-
:environment_parameters
|
7117
|
+
:environment_parameters,
|
7118
|
+
:environment_resolved_account)
|
6856
7119
|
SENSITIVE = [:environment_configuration_name]
|
6857
7120
|
include Aws::Structure
|
6858
7121
|
end
|
@@ -6984,6 +7247,31 @@ module Aws::DataZone
|
|
6984
7247
|
include Aws::Structure
|
6985
7248
|
end
|
6986
7249
|
|
7250
|
+
# Specifies the account/Region that is to be used during project
|
7251
|
+
# creation for a particular blueprint.
|
7252
|
+
#
|
7253
|
+
# @!attribute [rw] aws_account_id
|
7254
|
+
# The ID of the resolved account.
|
7255
|
+
# @return [String]
|
7256
|
+
#
|
7257
|
+
# @!attribute [rw] region_name
|
7258
|
+
# The name of the resolved Region.
|
7259
|
+
# @return [String]
|
7260
|
+
#
|
7261
|
+
# @!attribute [rw] source_account_pool_id
|
7262
|
+
# The ID of the account pool.
|
7263
|
+
# @return [String]
|
7264
|
+
#
|
7265
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentResolvedAccount AWS API Documentation
|
7266
|
+
#
|
7267
|
+
class EnvironmentResolvedAccount < Struct.new(
|
7268
|
+
:aws_account_id,
|
7269
|
+
:region_name,
|
7270
|
+
:source_account_pool_id)
|
7271
|
+
SENSITIVE = []
|
7272
|
+
include Aws::Structure
|
7273
|
+
end
|
7274
|
+
|
6987
7275
|
# The details of an environment.
|
6988
7276
|
#
|
6989
7277
|
# @!attribute [rw] aws_account_id
|
@@ -7370,6 +7658,90 @@ module Aws::DataZone
|
|
7370
7658
|
include Aws::Structure
|
7371
7659
|
end
|
7372
7660
|
|
7661
|
+
# @!attribute [rw] domain_identifier
|
7662
|
+
# The ID of the domain in which the account pool lives whose details
|
7663
|
+
# are to be displayed.
|
7664
|
+
# @return [String]
|
7665
|
+
#
|
7666
|
+
# @!attribute [rw] identifier
|
7667
|
+
# The ID of the account pool whose details are to be displayed.
|
7668
|
+
# @return [String]
|
7669
|
+
#
|
7670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetAccountPoolInput AWS API Documentation
|
7671
|
+
#
|
7672
|
+
class GetAccountPoolInput < Struct.new(
|
7673
|
+
:domain_identifier,
|
7674
|
+
:identifier)
|
7675
|
+
SENSITIVE = []
|
7676
|
+
include Aws::Structure
|
7677
|
+
end
|
7678
|
+
|
7679
|
+
# @!attribute [rw] account_source
|
7680
|
+
# The source of accounts for the account pool. In the current release,
|
7681
|
+
# it's either a static list of accounts provided by the customer or a
|
7682
|
+
# custom Amazon Web Services Lambda handler.
|
7683
|
+
# @return [Types::AccountSource]
|
7684
|
+
#
|
7685
|
+
# @!attribute [rw] created_at
|
7686
|
+
# The timestamp at which the account pool was created.
|
7687
|
+
# @return [Time]
|
7688
|
+
#
|
7689
|
+
# @!attribute [rw] created_by
|
7690
|
+
# The user who created the account pool.
|
7691
|
+
# @return [String]
|
7692
|
+
#
|
7693
|
+
# @!attribute [rw] description
|
7694
|
+
# The description of the account pool.
|
7695
|
+
# @return [String]
|
7696
|
+
#
|
7697
|
+
# @!attribute [rw] domain_id
|
7698
|
+
# The ID of the domain in which the account pool lives whose details
|
7699
|
+
# are to be displayed.
|
7700
|
+
# @return [String]
|
7701
|
+
#
|
7702
|
+
# @!attribute [rw] domain_unit_id
|
7703
|
+
# The domain unit ID of the account pool.
|
7704
|
+
# @return [String]
|
7705
|
+
#
|
7706
|
+
# @!attribute [rw] id
|
7707
|
+
# The ID of the account pool.
|
7708
|
+
# @return [String]
|
7709
|
+
#
|
7710
|
+
# @!attribute [rw] last_updated_at
|
7711
|
+
# The timestamp at which the account pool was last updated.
|
7712
|
+
# @return [Time]
|
7713
|
+
#
|
7714
|
+
# @!attribute [rw] name
|
7715
|
+
# The name of the account pool.
|
7716
|
+
# @return [String]
|
7717
|
+
#
|
7718
|
+
# @!attribute [rw] resolution_strategy
|
7719
|
+
# The mechanism used to resolve the account selection from the account
|
7720
|
+
# pool.
|
7721
|
+
# @return [String]
|
7722
|
+
#
|
7723
|
+
# @!attribute [rw] updated_by
|
7724
|
+
# The user who last updated the account pool.
|
7725
|
+
# @return [String]
|
7726
|
+
#
|
7727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetAccountPoolOutput AWS API Documentation
|
7728
|
+
#
|
7729
|
+
class GetAccountPoolOutput < Struct.new(
|
7730
|
+
:account_source,
|
7731
|
+
:created_at,
|
7732
|
+
:created_by,
|
7733
|
+
:description,
|
7734
|
+
:domain_id,
|
7735
|
+
:domain_unit_id,
|
7736
|
+
:id,
|
7737
|
+
:last_updated_at,
|
7738
|
+
:name,
|
7739
|
+
:resolution_strategy,
|
7740
|
+
:updated_by)
|
7741
|
+
SENSITIVE = [:description, :name]
|
7742
|
+
include Aws::Structure
|
7743
|
+
end
|
7744
|
+
|
7373
7745
|
# @!attribute [rw] asset_identifier
|
7374
7746
|
# The ID of the data asset.
|
7375
7747
|
# @return [String]
|
@@ -11580,6 +11952,134 @@ module Aws::DataZone
|
|
11580
11952
|
include Aws::Structure
|
11581
11953
|
end
|
11582
11954
|
|
11955
|
+
# @!attribute [rw] domain_identifier
|
11956
|
+
# The ID of the domain where exsting account pools are to be listed.
|
11957
|
+
# @return [String]
|
11958
|
+
#
|
11959
|
+
# @!attribute [rw] max_results
|
11960
|
+
# The maximum number of account pools to return in a single call to
|
11961
|
+
# ListAccountPools. When the number of account pools to be listed is
|
11962
|
+
# greater than the value of MaxResults, the response contains a
|
11963
|
+
# NextToken value that you can use in a subsequent call to
|
11964
|
+
# ListAccountPools to list the next set of account pools.
|
11965
|
+
# @return [Integer]
|
11966
|
+
#
|
11967
|
+
# @!attribute [rw] name
|
11968
|
+
# The name of the account pool to be listed.
|
11969
|
+
# @return [String]
|
11970
|
+
#
|
11971
|
+
# @!attribute [rw] next_token
|
11972
|
+
# When the number of account pools is greater than the default value
|
11973
|
+
# for the MaxResults parameter, or if you explicitly specify a value
|
11974
|
+
# for MaxResults that is less than the number of account pools, the
|
11975
|
+
# response includes a pagination token named NextToken. You can
|
11976
|
+
# specify this NextToken value in a subsequent call to
|
11977
|
+
# ListAccountPools to list the next set of account pools.
|
11978
|
+
# @return [String]
|
11979
|
+
#
|
11980
|
+
# @!attribute [rw] sort_by
|
11981
|
+
# The sort by mechanism in which the existing account pools are to be
|
11982
|
+
# listed.
|
11983
|
+
# @return [String]
|
11984
|
+
#
|
11985
|
+
# @!attribute [rw] sort_order
|
11986
|
+
# The sort order in which the existing account pools are to be listed.
|
11987
|
+
# @return [String]
|
11988
|
+
#
|
11989
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAccountPoolsInput AWS API Documentation
|
11990
|
+
#
|
11991
|
+
class ListAccountPoolsInput < Struct.new(
|
11992
|
+
:domain_identifier,
|
11993
|
+
:max_results,
|
11994
|
+
:name,
|
11995
|
+
:next_token,
|
11996
|
+
:sort_by,
|
11997
|
+
:sort_order)
|
11998
|
+
SENSITIVE = [:name]
|
11999
|
+
include Aws::Structure
|
12000
|
+
end
|
12001
|
+
|
12002
|
+
# @!attribute [rw] items
|
12003
|
+
# The results of the ListAccountPools operation.
|
12004
|
+
# @return [Array<Types::AccountPoolSummary>]
|
12005
|
+
#
|
12006
|
+
# @!attribute [rw] next_token
|
12007
|
+
# When the number of account pools is greater than the default value
|
12008
|
+
# for the MaxResults parameter, or if you explicitly specify a value
|
12009
|
+
# for MaxResults that is less than the number of account pools, the
|
12010
|
+
# response includes a pagination token named NextToken. You can
|
12011
|
+
# specify this NextToken value in a subsequent call to
|
12012
|
+
# ListAccountPools to list the next set of account pools.
|
12013
|
+
# @return [String]
|
12014
|
+
#
|
12015
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAccountPoolsOutput AWS API Documentation
|
12016
|
+
#
|
12017
|
+
class ListAccountPoolsOutput < Struct.new(
|
12018
|
+
:items,
|
12019
|
+
:next_token)
|
12020
|
+
SENSITIVE = []
|
12021
|
+
include Aws::Structure
|
12022
|
+
end
|
12023
|
+
|
12024
|
+
# @!attribute [rw] domain_identifier
|
12025
|
+
# The ID of the domain in which the accounts in the specified account
|
12026
|
+
# pool are to be listed.
|
12027
|
+
# @return [String]
|
12028
|
+
#
|
12029
|
+
# @!attribute [rw] identifier
|
12030
|
+
# The ID of the account pool whose accounts are to be listed.
|
12031
|
+
# @return [String]
|
12032
|
+
#
|
12033
|
+
# @!attribute [rw] max_results
|
12034
|
+
# The maximum number of accounts to return in a single call to
|
12035
|
+
# ListAccountsInAccountPool. When the number of accounts to be listed
|
12036
|
+
# is greater than the value of MaxResults, the response contains a
|
12037
|
+
# NextToken value that you can use in a subsequent call to
|
12038
|
+
# ListAccountsInAccountPool to list the next set of accounts.
|
12039
|
+
# @return [Integer]
|
12040
|
+
#
|
12041
|
+
# @!attribute [rw] next_token
|
12042
|
+
# When the number of accounts is greater than the default value for
|
12043
|
+
# the MaxResults parameter, or if you explicitly specify a value for
|
12044
|
+
# MaxResults that is less than the number of accounts, the response
|
12045
|
+
# includes a pagination token named NextToken. You can specify this
|
12046
|
+
# NextToken value in a subsequent call to ListAccountsInAccountPool to
|
12047
|
+
# list the next set of accounts.
|
12048
|
+
# @return [String]
|
12049
|
+
#
|
12050
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAccountsInAccountPoolInput AWS API Documentation
|
12051
|
+
#
|
12052
|
+
class ListAccountsInAccountPoolInput < Struct.new(
|
12053
|
+
:domain_identifier,
|
12054
|
+
:identifier,
|
12055
|
+
:max_results,
|
12056
|
+
:next_token)
|
12057
|
+
SENSITIVE = []
|
12058
|
+
include Aws::Structure
|
12059
|
+
end
|
12060
|
+
|
12061
|
+
# @!attribute [rw] items
|
12062
|
+
# The results of the ListAccountsInAccountPool operation.
|
12063
|
+
# @return [Array<Types::AccountInfo>]
|
12064
|
+
#
|
12065
|
+
# @!attribute [rw] next_token
|
12066
|
+
# When the number of accounts is greater than the default value for
|
12067
|
+
# the MaxResults parameter, or if you explicitly specify a value for
|
12068
|
+
# MaxResults that is less than the number of accounts, the response
|
12069
|
+
# includes a pagination token named NextToken. You can specify this
|
12070
|
+
# NextToken value in a subsequent call to ListAccountsInAccountPool to
|
12071
|
+
# list the next set of accounts.
|
12072
|
+
# @return [String]
|
12073
|
+
#
|
12074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAccountsInAccountPoolOutput AWS API Documentation
|
12075
|
+
#
|
12076
|
+
class ListAccountsInAccountPoolOutput < Struct.new(
|
12077
|
+
:items,
|
12078
|
+
:next_token)
|
12079
|
+
SENSITIVE = []
|
12080
|
+
include Aws::Structure
|
12081
|
+
end
|
12082
|
+
|
11583
12083
|
# @!attribute [rw] asset_identifier
|
11584
12084
|
# The ID of the data asset.
|
11585
12085
|
# @return [String]
|
@@ -14749,6 +15249,10 @@ module Aws::DataZone
|
|
14749
15249
|
# The details of the policy grant member.
|
14750
15250
|
# @return [Types::PolicyGrantDetail]
|
14751
15251
|
#
|
15252
|
+
# @!attribute [rw] grant_id
|
15253
|
+
# The ID of the policy grant.
|
15254
|
+
# @return [String]
|
15255
|
+
#
|
14752
15256
|
# @!attribute [rw] principal
|
14753
15257
|
# The principal of the policy grant member.
|
14754
15258
|
# @return [Types::PolicyGrantPrincipal]
|
@@ -14759,6 +15263,7 @@ module Aws::DataZone
|
|
14759
15263
|
:created_at,
|
14760
15264
|
:created_by,
|
14761
15265
|
:detail,
|
15266
|
+
:grant_id,
|
14762
15267
|
:principal)
|
14763
15268
|
SENSITIVE = []
|
14764
15269
|
include Aws::Structure
|
@@ -16046,6 +16551,11 @@ module Aws::DataZone
|
|
16046
16551
|
# The type of the entity from which you want to remove a policy grant.
|
16047
16552
|
# @return [String]
|
16048
16553
|
#
|
16554
|
+
# @!attribute [rw] grant_identifier
|
16555
|
+
# The ID of the policy grant that is to be removed from a specified
|
16556
|
+
# entity.
|
16557
|
+
# @return [String]
|
16558
|
+
#
|
16049
16559
|
# @!attribute [rw] policy_type
|
16050
16560
|
# The type of the policy that you want to remove.
|
16051
16561
|
# @return [String]
|
@@ -16061,6 +16571,7 @@ module Aws::DataZone
|
|
16061
16571
|
:domain_identifier,
|
16062
16572
|
:entity_identifier,
|
16063
16573
|
:entity_type,
|
16574
|
+
:grant_identifier,
|
16064
16575
|
:policy_type,
|
16065
16576
|
:principal)
|
16066
16577
|
SENSITIVE = []
|
@@ -18639,6 +19150,111 @@ module Aws::DataZone
|
|
18639
19150
|
#
|
18640
19151
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
18641
19152
|
|
19153
|
+
# @!attribute [rw] account_source
|
19154
|
+
# The source of accounts for the account pool. In the current release,
|
19155
|
+
# it's either a static list of accounts provided by the customer or a
|
19156
|
+
# custom Amazon Web Services Lambda handler.
|
19157
|
+
# @return [Types::AccountSource]
|
19158
|
+
#
|
19159
|
+
# @!attribute [rw] description
|
19160
|
+
# The description of the account pool that is to be udpated.
|
19161
|
+
# @return [String]
|
19162
|
+
#
|
19163
|
+
# @!attribute [rw] domain_identifier
|
19164
|
+
# The domain ID where the account pool that is to be updated lives.
|
19165
|
+
# @return [String]
|
19166
|
+
#
|
19167
|
+
# @!attribute [rw] identifier
|
19168
|
+
# The ID of the account pool that is to be updated.
|
19169
|
+
# @return [String]
|
19170
|
+
#
|
19171
|
+
# @!attribute [rw] name
|
19172
|
+
# The name of the account pool that is to be updated.
|
19173
|
+
# @return [String]
|
19174
|
+
#
|
19175
|
+
# @!attribute [rw] resolution_strategy
|
19176
|
+
# The mechanism used to resolve the account selection from the account
|
19177
|
+
# pool.
|
19178
|
+
# @return [String]
|
19179
|
+
#
|
19180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateAccountPoolInput AWS API Documentation
|
19181
|
+
#
|
19182
|
+
class UpdateAccountPoolInput < Struct.new(
|
19183
|
+
:account_source,
|
19184
|
+
:description,
|
19185
|
+
:domain_identifier,
|
19186
|
+
:identifier,
|
19187
|
+
:name,
|
19188
|
+
:resolution_strategy)
|
19189
|
+
SENSITIVE = [:description, :name]
|
19190
|
+
include Aws::Structure
|
19191
|
+
end
|
19192
|
+
|
19193
|
+
# @!attribute [rw] account_source
|
19194
|
+
# The source of accounts for the account pool. In the current release,
|
19195
|
+
# it's either a static list of accounts provided by the customer or a
|
19196
|
+
# custom Amazon Web Services Lambda handler.
|
19197
|
+
# @return [Types::AccountSource]
|
19198
|
+
#
|
19199
|
+
# @!attribute [rw] created_at
|
19200
|
+
# The timestamp at which the account pool was created.
|
19201
|
+
# @return [Time]
|
19202
|
+
#
|
19203
|
+
# @!attribute [rw] created_by
|
19204
|
+
# The user who created the account pool.
|
19205
|
+
# @return [String]
|
19206
|
+
#
|
19207
|
+
# @!attribute [rw] description
|
19208
|
+
# The description of the account pool that is to be udpated.
|
19209
|
+
# @return [String]
|
19210
|
+
#
|
19211
|
+
# @!attribute [rw] domain_id
|
19212
|
+
# The domain ID where the account pool that is to be updated lives.
|
19213
|
+
# @return [String]
|
19214
|
+
#
|
19215
|
+
# @!attribute [rw] domain_unit_id
|
19216
|
+
# The domain ID in which the account pool that is to be updated lives.
|
19217
|
+
# @return [String]
|
19218
|
+
#
|
19219
|
+
# @!attribute [rw] id
|
19220
|
+
# The ID of the account pool that is to be updated.
|
19221
|
+
# @return [String]
|
19222
|
+
#
|
19223
|
+
# @!attribute [rw] last_updated_at
|
19224
|
+
# The timestamp at which the account pool was last updated.
|
19225
|
+
# @return [Time]
|
19226
|
+
#
|
19227
|
+
# @!attribute [rw] name
|
19228
|
+
# The name of the account pool that is to be updated.
|
19229
|
+
# @return [String]
|
19230
|
+
#
|
19231
|
+
# @!attribute [rw] resolution_strategy
|
19232
|
+
# The mechanism used to resolve the account selection from the account
|
19233
|
+
# pool.
|
19234
|
+
# @return [String]
|
19235
|
+
#
|
19236
|
+
# @!attribute [rw] updated_by
|
19237
|
+
# The user who last updated the account pool.
|
19238
|
+
# @return [String]
|
19239
|
+
#
|
19240
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateAccountPoolOutput AWS API Documentation
|
19241
|
+
#
|
19242
|
+
class UpdateAccountPoolOutput < Struct.new(
|
19243
|
+
:account_source,
|
19244
|
+
:created_at,
|
19245
|
+
:created_by,
|
19246
|
+
:description,
|
19247
|
+
:domain_id,
|
19248
|
+
:domain_unit_id,
|
19249
|
+
:id,
|
19250
|
+
:last_updated_at,
|
19251
|
+
:name,
|
19252
|
+
:resolution_strategy,
|
19253
|
+
:updated_by)
|
19254
|
+
SENSITIVE = [:description, :name]
|
19255
|
+
include Aws::Structure
|
19256
|
+
end
|
19257
|
+
|
18642
19258
|
# @!attribute [rw] asset_identifier
|
18643
19259
|
# The ID of the data asset.
|
18644
19260
|
# @return [String]
|