aws-sdk-datazone 1.8.0 → 1.10.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 +389 -3
- data/lib/aws-sdk-datazone/client_api.rb +262 -4
- data/lib/aws-sdk-datazone/endpoints.rb +91 -0
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +14 -0
- data/lib/aws-sdk-datazone/types.rb +568 -1
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +119 -1
- data/sig/types.rbs +165 -0
- metadata +4 -4
@@ -237,6 +237,29 @@ module Aws::DataZone
|
|
237
237
|
include Aws::Structure
|
238
238
|
end
|
239
239
|
|
240
|
+
# The parameters of the environment action.
|
241
|
+
#
|
242
|
+
# @note ActionParameters is a union - when making an API calls you must set exactly one of the members.
|
243
|
+
#
|
244
|
+
# @note ActionParameters is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ActionParameters corresponding to the set member.
|
245
|
+
#
|
246
|
+
# @!attribute [rw] aws_console_link
|
247
|
+
# The console link specified as part of the environment action.
|
248
|
+
# @return [Types::AwsConsoleLinkParameters]
|
249
|
+
#
|
250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ActionParameters AWS API Documentation
|
251
|
+
#
|
252
|
+
class ActionParameters < Struct.new(
|
253
|
+
:aws_console_link,
|
254
|
+
:unknown)
|
255
|
+
SENSITIVE = []
|
256
|
+
include Aws::Structure
|
257
|
+
include Aws::Structure::Union
|
258
|
+
|
259
|
+
class AwsConsoleLink < ActionParameters; end
|
260
|
+
class Unknown < ActionParameters; end
|
261
|
+
end
|
262
|
+
|
240
263
|
# A Amazon DataZone inventory asset.
|
241
264
|
#
|
242
265
|
# @!attribute [rw] additional_attributes
|
@@ -647,6 +670,49 @@ module Aws::DataZone
|
|
647
670
|
include Aws::Structure
|
648
671
|
end
|
649
672
|
|
673
|
+
# @!attribute [rw] domain_identifier
|
674
|
+
# The ID of the Amazon DataZone domain in which the environment role
|
675
|
+
# is associated.
|
676
|
+
# @return [String]
|
677
|
+
#
|
678
|
+
# @!attribute [rw] environment_identifier
|
679
|
+
# The ID of the Amazon DataZone environment.
|
680
|
+
# @return [String]
|
681
|
+
#
|
682
|
+
# @!attribute [rw] environment_role_arn
|
683
|
+
# The ARN of the environment role.
|
684
|
+
# @return [String]
|
685
|
+
#
|
686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssociateEnvironmentRoleInput AWS API Documentation
|
687
|
+
#
|
688
|
+
class AssociateEnvironmentRoleInput < Struct.new(
|
689
|
+
:domain_identifier,
|
690
|
+
:environment_identifier,
|
691
|
+
:environment_role_arn)
|
692
|
+
SENSITIVE = []
|
693
|
+
include Aws::Structure
|
694
|
+
end
|
695
|
+
|
696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssociateEnvironmentRoleOutput AWS API Documentation
|
697
|
+
#
|
698
|
+
class AssociateEnvironmentRoleOutput < Aws::EmptyStructure; end
|
699
|
+
|
700
|
+
# The parameters of the console link specified as part of the
|
701
|
+
# environment action.
|
702
|
+
#
|
703
|
+
# @!attribute [rw] uri
|
704
|
+
# The URI of the console link specified as part of the environment
|
705
|
+
# action.
|
706
|
+
# @return [String]
|
707
|
+
#
|
708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AwsConsoleLinkParameters AWS API Documentation
|
709
|
+
#
|
710
|
+
class AwsConsoleLinkParameters < Struct.new(
|
711
|
+
:uri)
|
712
|
+
SENSITIVE = []
|
713
|
+
include Aws::Structure
|
714
|
+
end
|
715
|
+
|
650
716
|
# The configuration of the business name generation.
|
651
717
|
#
|
652
718
|
# @!attribute [rw] enabled
|
@@ -1596,6 +1662,78 @@ module Aws::DataZone
|
|
1596
1662
|
include Aws::Structure
|
1597
1663
|
end
|
1598
1664
|
|
1665
|
+
# @!attribute [rw] description
|
1666
|
+
# The description of the environment action that is being created in
|
1667
|
+
# the environment.
|
1668
|
+
# @return [String]
|
1669
|
+
#
|
1670
|
+
# @!attribute [rw] domain_identifier
|
1671
|
+
# The ID of the Amazon DataZone domain in which the environment action
|
1672
|
+
# is created.
|
1673
|
+
# @return [String]
|
1674
|
+
#
|
1675
|
+
# @!attribute [rw] environment_identifier
|
1676
|
+
# The ID of the environment in which the environment action is
|
1677
|
+
# created.
|
1678
|
+
# @return [String]
|
1679
|
+
#
|
1680
|
+
# @!attribute [rw] name
|
1681
|
+
# The name of the environment action.
|
1682
|
+
# @return [String]
|
1683
|
+
#
|
1684
|
+
# @!attribute [rw] parameters
|
1685
|
+
# The parameters of the environment action.
|
1686
|
+
# @return [Types::ActionParameters]
|
1687
|
+
#
|
1688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentActionInput AWS API Documentation
|
1689
|
+
#
|
1690
|
+
class CreateEnvironmentActionInput < Struct.new(
|
1691
|
+
:description,
|
1692
|
+
:domain_identifier,
|
1693
|
+
:environment_identifier,
|
1694
|
+
:name,
|
1695
|
+
:parameters)
|
1696
|
+
SENSITIVE = []
|
1697
|
+
include Aws::Structure
|
1698
|
+
end
|
1699
|
+
|
1700
|
+
# @!attribute [rw] description
|
1701
|
+
# The description of the environment action.
|
1702
|
+
# @return [String]
|
1703
|
+
#
|
1704
|
+
# @!attribute [rw] domain_id
|
1705
|
+
# The ID of the domain in which the environment action is created.
|
1706
|
+
# @return [String]
|
1707
|
+
#
|
1708
|
+
# @!attribute [rw] environment_id
|
1709
|
+
# The ID of the environment in which the environment is created.
|
1710
|
+
# @return [String]
|
1711
|
+
#
|
1712
|
+
# @!attribute [rw] id
|
1713
|
+
# The ID of the environment action.
|
1714
|
+
# @return [String]
|
1715
|
+
#
|
1716
|
+
# @!attribute [rw] name
|
1717
|
+
# The name of the environment action.
|
1718
|
+
# @return [String]
|
1719
|
+
#
|
1720
|
+
# @!attribute [rw] parameters
|
1721
|
+
# The parameters of the environment action.
|
1722
|
+
# @return [Types::ActionParameters]
|
1723
|
+
#
|
1724
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentActionOutput AWS API Documentation
|
1725
|
+
#
|
1726
|
+
class CreateEnvironmentActionOutput < Struct.new(
|
1727
|
+
:description,
|
1728
|
+
:domain_id,
|
1729
|
+
:environment_id,
|
1730
|
+
:id,
|
1731
|
+
:name,
|
1732
|
+
:parameters)
|
1733
|
+
SENSITIVE = []
|
1734
|
+
include Aws::Structure
|
1735
|
+
end
|
1736
|
+
|
1599
1737
|
# @!attribute [rw] description
|
1600
1738
|
# The description of the Amazon DataZone environment.
|
1601
1739
|
# @return [String]
|
@@ -1605,6 +1743,18 @@ module Aws::DataZone
|
|
1605
1743
|
# environment is created.
|
1606
1744
|
# @return [String]
|
1607
1745
|
#
|
1746
|
+
# @!attribute [rw] environment_account_identifier
|
1747
|
+
# The ID of the account in which the environment is being created.
|
1748
|
+
# @return [String]
|
1749
|
+
#
|
1750
|
+
# @!attribute [rw] environment_account_region
|
1751
|
+
# The region of the account in which the environment is being created.
|
1752
|
+
# @return [String]
|
1753
|
+
#
|
1754
|
+
# @!attribute [rw] environment_blueprint_identifier
|
1755
|
+
# The ID of the blueprint with which the environment is being created.
|
1756
|
+
# @return [String]
|
1757
|
+
#
|
1608
1758
|
# @!attribute [rw] environment_profile_identifier
|
1609
1759
|
# The identifier of the environment profile that is used to create
|
1610
1760
|
# this Amazon DataZone environment.
|
@@ -1633,6 +1783,9 @@ module Aws::DataZone
|
|
1633
1783
|
class CreateEnvironmentInput < Struct.new(
|
1634
1784
|
:description,
|
1635
1785
|
:domain_identifier,
|
1786
|
+
:environment_account_identifier,
|
1787
|
+
:environment_account_region,
|
1788
|
+
:environment_blueprint_identifier,
|
1636
1789
|
:environment_profile_identifier,
|
1637
1790
|
:glossary_terms,
|
1638
1791
|
:name,
|
@@ -3265,12 +3418,18 @@ module Aws::DataZone
|
|
3265
3418
|
# The identifier of the data source that is deleted.
|
3266
3419
|
# @return [String]
|
3267
3420
|
#
|
3421
|
+
# @!attribute [rw] retain_permissions_on_revoke_failure
|
3422
|
+
# Specifies that the granted permissions are retained in case of a
|
3423
|
+
# self-subscribe functionality failure for a data source.
|
3424
|
+
# @return [Boolean]
|
3425
|
+
#
|
3268
3426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDataSourceInput AWS API Documentation
|
3269
3427
|
#
|
3270
3428
|
class DeleteDataSourceInput < Struct.new(
|
3271
3429
|
:client_token,
|
3272
3430
|
:domain_identifier,
|
3273
|
-
:identifier
|
3431
|
+
:identifier,
|
3432
|
+
:retain_permissions_on_revoke_failure)
|
3274
3433
|
SENSITIVE = []
|
3275
3434
|
include Aws::Structure
|
3276
3435
|
end
|
@@ -3341,10 +3500,19 @@ module Aws::DataZone
|
|
3341
3500
|
# inventory are to be also automatically published to the catalog.
|
3342
3501
|
# @return [Boolean]
|
3343
3502
|
#
|
3503
|
+
# @!attribute [rw] retain_permissions_on_revoke_failure
|
3504
|
+
# Specifies that the granted permissions are retained in case of a
|
3505
|
+
# self-subscribe functionality failure for a data source.
|
3506
|
+
# @return [Boolean]
|
3507
|
+
#
|
3344
3508
|
# @!attribute [rw] schedule
|
3345
3509
|
# The schedule of runs for this data source.
|
3346
3510
|
# @return [Types::ScheduleConfiguration]
|
3347
3511
|
#
|
3512
|
+
# @!attribute [rw] self_grant_status
|
3513
|
+
# Specifies the status of the self-granting functionality.
|
3514
|
+
# @return [Types::SelfGrantStatusOutput]
|
3515
|
+
#
|
3348
3516
|
# @!attribute [rw] status
|
3349
3517
|
# The status of this data source.
|
3350
3518
|
# @return [String]
|
@@ -3375,7 +3543,9 @@ module Aws::DataZone
|
|
3375
3543
|
:name,
|
3376
3544
|
:project_id,
|
3377
3545
|
:publish_on_import,
|
3546
|
+
:retain_permissions_on_revoke_failure,
|
3378
3547
|
:schedule,
|
3548
|
+
:self_grant_status,
|
3379
3549
|
:status,
|
3380
3550
|
:type,
|
3381
3551
|
:updated_at)
|
@@ -3423,6 +3593,29 @@ module Aws::DataZone
|
|
3423
3593
|
include Aws::Structure
|
3424
3594
|
end
|
3425
3595
|
|
3596
|
+
# @!attribute [rw] domain_identifier
|
3597
|
+
# The ID of the Amazon DataZone domain in which an environment action
|
3598
|
+
# is deleted.
|
3599
|
+
# @return [String]
|
3600
|
+
#
|
3601
|
+
# @!attribute [rw] environment_identifier
|
3602
|
+
# The ID of the environment where an environment action is deleted.
|
3603
|
+
# @return [String]
|
3604
|
+
#
|
3605
|
+
# @!attribute [rw] identifier
|
3606
|
+
# The ID of the environment action that is deleted.
|
3607
|
+
# @return [String]
|
3608
|
+
#
|
3609
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteEnvironmentActionInput AWS API Documentation
|
3610
|
+
#
|
3611
|
+
class DeleteEnvironmentActionInput < Struct.new(
|
3612
|
+
:domain_identifier,
|
3613
|
+
:environment_identifier,
|
3614
|
+
:identifier)
|
3615
|
+
SENSITIVE = []
|
3616
|
+
include Aws::Structure
|
3617
|
+
end
|
3618
|
+
|
3426
3619
|
# @!attribute [rw] domain_identifier
|
3427
3620
|
# The ID of the Amazon DataZone domain in which the blueprint
|
3428
3621
|
# configuration is deleted.
|
@@ -3875,6 +4068,33 @@ module Aws::DataZone
|
|
3875
4068
|
include Aws::Structure
|
3876
4069
|
end
|
3877
4070
|
|
4071
|
+
# @!attribute [rw] domain_identifier
|
4072
|
+
# The ID of the Amazon DataZone domain in which an environment role is
|
4073
|
+
# disassociated.
|
4074
|
+
# @return [String]
|
4075
|
+
#
|
4076
|
+
# @!attribute [rw] environment_identifier
|
4077
|
+
# The ID of the environment.
|
4078
|
+
# @return [String]
|
4079
|
+
#
|
4080
|
+
# @!attribute [rw] environment_role_arn
|
4081
|
+
# The ARN of the environment role.
|
4082
|
+
# @return [String]
|
4083
|
+
#
|
4084
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DisassociateEnvironmentRoleInput AWS API Documentation
|
4085
|
+
#
|
4086
|
+
class DisassociateEnvironmentRoleInput < Struct.new(
|
4087
|
+
:domain_identifier,
|
4088
|
+
:environment_identifier,
|
4089
|
+
:environment_role_arn)
|
4090
|
+
SENSITIVE = []
|
4091
|
+
include Aws::Structure
|
4092
|
+
end
|
4093
|
+
|
4094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DisassociateEnvironmentRoleOutput AWS API Documentation
|
4095
|
+
#
|
4096
|
+
class DisassociateEnvironmentRoleOutput < Aws::EmptyStructure; end
|
4097
|
+
|
3878
4098
|
# A summary of a Amazon DataZone domain.
|
3879
4099
|
#
|
3880
4100
|
# @!attribute [rw] arn
|
@@ -3930,6 +4150,47 @@ module Aws::DataZone
|
|
3930
4150
|
include Aws::Structure
|
3931
4151
|
end
|
3932
4152
|
|
4153
|
+
# The details about the specified action configured for an environment.
|
4154
|
+
# For example, the details of the specified console links for an
|
4155
|
+
# analytics tool that is available in this environment.
|
4156
|
+
#
|
4157
|
+
# @!attribute [rw] description
|
4158
|
+
# The environment action description.
|
4159
|
+
# @return [String]
|
4160
|
+
#
|
4161
|
+
# @!attribute [rw] domain_id
|
4162
|
+
# The Amazon DataZone domain ID of the environment action.
|
4163
|
+
# @return [String]
|
4164
|
+
#
|
4165
|
+
# @!attribute [rw] environment_id
|
4166
|
+
# The environment ID of the environment action.
|
4167
|
+
# @return [String]
|
4168
|
+
#
|
4169
|
+
# @!attribute [rw] id
|
4170
|
+
# The ID of the environment action.
|
4171
|
+
# @return [String]
|
4172
|
+
#
|
4173
|
+
# @!attribute [rw] name
|
4174
|
+
# The name of the environment action.
|
4175
|
+
# @return [String]
|
4176
|
+
#
|
4177
|
+
# @!attribute [rw] parameters
|
4178
|
+
# The parameters of the environment action.
|
4179
|
+
# @return [Types::ActionParameters]
|
4180
|
+
#
|
4181
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentActionSummary AWS API Documentation
|
4182
|
+
#
|
4183
|
+
class EnvironmentActionSummary < Struct.new(
|
4184
|
+
:description,
|
4185
|
+
:domain_id,
|
4186
|
+
:environment_id,
|
4187
|
+
:id,
|
4188
|
+
:name,
|
4189
|
+
:parameters)
|
4190
|
+
SENSITIVE = []
|
4191
|
+
include Aws::Structure
|
4192
|
+
end
|
4193
|
+
|
3933
4194
|
# The configuration details of an environment blueprint.
|
3934
4195
|
#
|
3935
4196
|
# @!attribute [rw] created_at
|
@@ -4785,6 +5046,10 @@ module Aws::DataZone
|
|
4785
5046
|
# The schedule of the data source runs.
|
4786
5047
|
# @return [Types::ScheduleConfiguration]
|
4787
5048
|
#
|
5049
|
+
# @!attribute [rw] self_grant_status
|
5050
|
+
# Specifies the status of the self-granting functionality.
|
5051
|
+
# @return [Types::SelfGrantStatusOutput]
|
5052
|
+
#
|
4788
5053
|
# @!attribute [rw] status
|
4789
5054
|
# The status of the data source.
|
4790
5055
|
# @return [String]
|
@@ -4818,6 +5083,7 @@ module Aws::DataZone
|
|
4818
5083
|
:publish_on_import,
|
4819
5084
|
:recommendation,
|
4820
5085
|
:schedule,
|
5086
|
+
:self_grant_status,
|
4821
5087
|
:status,
|
4822
5088
|
:type,
|
4823
5089
|
:updated_at)
|
@@ -4997,6 +5263,67 @@ module Aws::DataZone
|
|
4997
5263
|
include Aws::Structure
|
4998
5264
|
end
|
4999
5265
|
|
5266
|
+
# @!attribute [rw] domain_identifier
|
5267
|
+
# The ID of the Amazon DataZone domain in which the
|
5268
|
+
# `GetEnvironmentAction` API is invoked.
|
5269
|
+
# @return [String]
|
5270
|
+
#
|
5271
|
+
# @!attribute [rw] environment_identifier
|
5272
|
+
# The environment ID of the environment action.
|
5273
|
+
# @return [String]
|
5274
|
+
#
|
5275
|
+
# @!attribute [rw] identifier
|
5276
|
+
# The ID of the environment action
|
5277
|
+
# @return [String]
|
5278
|
+
#
|
5279
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetEnvironmentActionInput AWS API Documentation
|
5280
|
+
#
|
5281
|
+
class GetEnvironmentActionInput < Struct.new(
|
5282
|
+
:domain_identifier,
|
5283
|
+
:environment_identifier,
|
5284
|
+
:identifier)
|
5285
|
+
SENSITIVE = []
|
5286
|
+
include Aws::Structure
|
5287
|
+
end
|
5288
|
+
|
5289
|
+
# @!attribute [rw] description
|
5290
|
+
# The description of the environment action.
|
5291
|
+
# @return [String]
|
5292
|
+
#
|
5293
|
+
# @!attribute [rw] domain_id
|
5294
|
+
# The ID of the Amazon DataZone domain in which the environment action
|
5295
|
+
# lives.
|
5296
|
+
# @return [String]
|
5297
|
+
#
|
5298
|
+
# @!attribute [rw] environment_id
|
5299
|
+
# The environment ID of the environment action.
|
5300
|
+
# @return [String]
|
5301
|
+
#
|
5302
|
+
# @!attribute [rw] id
|
5303
|
+
# The ID of the environment action.
|
5304
|
+
# @return [String]
|
5305
|
+
#
|
5306
|
+
# @!attribute [rw] name
|
5307
|
+
# The name of the environment action.
|
5308
|
+
# @return [String]
|
5309
|
+
#
|
5310
|
+
# @!attribute [rw] parameters
|
5311
|
+
# The parameters of the environment action.
|
5312
|
+
# @return [Types::ActionParameters]
|
5313
|
+
#
|
5314
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetEnvironmentActionOutput AWS API Documentation
|
5315
|
+
#
|
5316
|
+
class GetEnvironmentActionOutput < Struct.new(
|
5317
|
+
:description,
|
5318
|
+
:domain_id,
|
5319
|
+
:environment_id,
|
5320
|
+
:id,
|
5321
|
+
:name,
|
5322
|
+
:parameters)
|
5323
|
+
SENSITIVE = []
|
5324
|
+
include Aws::Structure
|
5325
|
+
end
|
5326
|
+
|
5000
5327
|
# @!attribute [rw] domain_identifier
|
5001
5328
|
# The ID of the Amazon DataZone domain where this blueprint exists.
|
5002
5329
|
# @return [String]
|
@@ -6596,6 +6923,20 @@ module Aws::DataZone
|
|
6596
6923
|
include Aws::Structure
|
6597
6924
|
end
|
6598
6925
|
|
6926
|
+
# The details of the self granting status.
|
6927
|
+
#
|
6928
|
+
# @!attribute [rw] self_grant_status_details
|
6929
|
+
# The details for the self granting status for a Glue data source.
|
6930
|
+
# @return [Array<Types::SelfGrantStatusDetail>]
|
6931
|
+
#
|
6932
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlueSelfGrantStatusOutput AWS API Documentation
|
6933
|
+
#
|
6934
|
+
class GlueSelfGrantStatusOutput < Struct.new(
|
6935
|
+
:self_grant_status_details)
|
6936
|
+
SENSITIVE = []
|
6937
|
+
include Aws::Structure
|
6938
|
+
end
|
6939
|
+
|
6599
6940
|
# The details of a listing for which a subscription is granted.
|
6600
6941
|
#
|
6601
6942
|
# @note GrantedEntity is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of GrantedEntity corresponding to the set member.
|
@@ -7046,6 +7387,68 @@ module Aws::DataZone
|
|
7046
7387
|
include Aws::Structure
|
7047
7388
|
end
|
7048
7389
|
|
7390
|
+
# @!attribute [rw] domain_identifier
|
7391
|
+
# The ID of the Amazon DataZone domain in which the environment
|
7392
|
+
# actions are listed.
|
7393
|
+
# @return [String]
|
7394
|
+
#
|
7395
|
+
# @!attribute [rw] environment_identifier
|
7396
|
+
# The ID of the envrironment whose environment actions are listed.
|
7397
|
+
# @return [String]
|
7398
|
+
#
|
7399
|
+
# @!attribute [rw] max_results
|
7400
|
+
# The maximum number of environment actions to return in a single call
|
7401
|
+
# to `ListEnvironmentActions`. When the number of environment actions
|
7402
|
+
# to be listed is greater than the value of `MaxResults`, the response
|
7403
|
+
# contains a `NextToken` value that you can use in a subsequent call
|
7404
|
+
# to `ListEnvironmentActions` to list the next set of environment
|
7405
|
+
# actions.
|
7406
|
+
# @return [Integer]
|
7407
|
+
#
|
7408
|
+
# @!attribute [rw] next_token
|
7409
|
+
# When the number of environment actions is greater than the default
|
7410
|
+
# value for the `MaxResults` parameter, or if you explicitly specify a
|
7411
|
+
# value for `MaxResults` that is less than the number of environment
|
7412
|
+
# actions, the response includes a pagination token named `NextToken`.
|
7413
|
+
# You can specify this `NextToken` value in a subsequent call to
|
7414
|
+
# `ListEnvironmentActions` to list the next set of environment
|
7415
|
+
# actions.
|
7416
|
+
# @return [String]
|
7417
|
+
#
|
7418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListEnvironmentActionsInput AWS API Documentation
|
7419
|
+
#
|
7420
|
+
class ListEnvironmentActionsInput < Struct.new(
|
7421
|
+
:domain_identifier,
|
7422
|
+
:environment_identifier,
|
7423
|
+
:max_results,
|
7424
|
+
:next_token)
|
7425
|
+
SENSITIVE = []
|
7426
|
+
include Aws::Structure
|
7427
|
+
end
|
7428
|
+
|
7429
|
+
# @!attribute [rw] items
|
7430
|
+
# The results of `ListEnvironmentActions`.
|
7431
|
+
# @return [Array<Types::EnvironmentActionSummary>]
|
7432
|
+
#
|
7433
|
+
# @!attribute [rw] next_token
|
7434
|
+
# When the number of environment actions is greater than the default
|
7435
|
+
# value for the `MaxResults` parameter, or if you explicitly specify a
|
7436
|
+
# value for `MaxResults` that is less than the number of environment
|
7437
|
+
# actions, the response includes a pagination token named `NextToken`.
|
7438
|
+
# You can specify this `NextToken` value in a subsequent call to
|
7439
|
+
# `ListEnvironmentActions` to list the next set of environment
|
7440
|
+
# actions.
|
7441
|
+
# @return [String]
|
7442
|
+
#
|
7443
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListEnvironmentActionsOutput AWS API Documentation
|
7444
|
+
#
|
7445
|
+
class ListEnvironmentActionsOutput < Struct.new(
|
7446
|
+
:items,
|
7447
|
+
:next_token)
|
7448
|
+
SENSITIVE = []
|
7449
|
+
include Aws::Structure
|
7450
|
+
end
|
7451
|
+
|
7049
7452
|
# @!attribute [rw] domain_identifier
|
7050
7453
|
# The identifier of the Amazon DataZone domain.
|
7051
7454
|
# @return [String]
|
@@ -8779,6 +9182,22 @@ module Aws::DataZone
|
|
8779
9182
|
include Aws::Structure
|
8780
9183
|
end
|
8781
9184
|
|
9185
|
+
# The details for the self granting status for an Amazon Redshift data
|
9186
|
+
# source.
|
9187
|
+
#
|
9188
|
+
# @!attribute [rw] self_grant_status_details
|
9189
|
+
# The details for the self granting status for an Amazon Redshift data
|
9190
|
+
# source.
|
9191
|
+
# @return [Array<Types::SelfGrantStatusDetail>]
|
9192
|
+
#
|
9193
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RedshiftSelfGrantStatusOutput AWS API Documentation
|
9194
|
+
#
|
9195
|
+
class RedshiftSelfGrantStatusOutput < Struct.new(
|
9196
|
+
:self_grant_status_details)
|
9197
|
+
SENSITIVE = []
|
9198
|
+
include Aws::Structure
|
9199
|
+
end
|
9200
|
+
|
8782
9201
|
# The details of the Amazon Redshift Serverless workgroup storage.
|
8783
9202
|
#
|
8784
9203
|
# @!attribute [rw] workgroup_name
|
@@ -9754,6 +10173,63 @@ module Aws::DataZone
|
|
9754
10173
|
include Aws::Structure
|
9755
10174
|
end
|
9756
10175
|
|
10176
|
+
# The details for the self granting status.
|
10177
|
+
#
|
10178
|
+
# @!attribute [rw] database_name
|
10179
|
+
# The name of the database used for the data source.
|
10180
|
+
# @return [String]
|
10181
|
+
#
|
10182
|
+
# @!attribute [rw] failure_cause
|
10183
|
+
# The reason for why the operation failed.
|
10184
|
+
# @return [String]
|
10185
|
+
#
|
10186
|
+
# @!attribute [rw] schema_name
|
10187
|
+
# The name of the schema used in the data source.
|
10188
|
+
# @return [String]
|
10189
|
+
#
|
10190
|
+
# @!attribute [rw] status
|
10191
|
+
# The self granting status of the data source.
|
10192
|
+
# @return [String]
|
10193
|
+
#
|
10194
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SelfGrantStatusDetail AWS API Documentation
|
10195
|
+
#
|
10196
|
+
class SelfGrantStatusDetail < Struct.new(
|
10197
|
+
:database_name,
|
10198
|
+
:failure_cause,
|
10199
|
+
:schema_name,
|
10200
|
+
:status)
|
10201
|
+
SENSITIVE = []
|
10202
|
+
include Aws::Structure
|
10203
|
+
end
|
10204
|
+
|
10205
|
+
# The details for the self granting status for a data source.
|
10206
|
+
#
|
10207
|
+
# @note SelfGrantStatusOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SelfGrantStatusOutput corresponding to the set member.
|
10208
|
+
#
|
10209
|
+
# @!attribute [rw] glue_self_grant_status
|
10210
|
+
# The details for the self granting status for a Glue data source.
|
10211
|
+
# @return [Types::GlueSelfGrantStatusOutput]
|
10212
|
+
#
|
10213
|
+
# @!attribute [rw] redshift_self_grant_status
|
10214
|
+
# The details for the self granting status for an Amazon Redshift data
|
10215
|
+
# source.
|
10216
|
+
# @return [Types::RedshiftSelfGrantStatusOutput]
|
10217
|
+
#
|
10218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SelfGrantStatusOutput AWS API Documentation
|
10219
|
+
#
|
10220
|
+
class SelfGrantStatusOutput < Struct.new(
|
10221
|
+
:glue_self_grant_status,
|
10222
|
+
:redshift_self_grant_status,
|
10223
|
+
:unknown)
|
10224
|
+
SENSITIVE = []
|
10225
|
+
include Aws::Structure
|
10226
|
+
include Aws::Structure::Union
|
10227
|
+
|
10228
|
+
class GlueSelfGrantStatus < SelfGrantStatusOutput; end
|
10229
|
+
class RedshiftSelfGrantStatus < SelfGrantStatusOutput; end
|
10230
|
+
class Unknown < SelfGrantStatusOutput; end
|
10231
|
+
end
|
10232
|
+
|
9757
10233
|
# The request has exceeded the specified service quota.
|
9758
10234
|
#
|
9759
10235
|
# @!attribute [rw] message
|
@@ -10819,6 +11295,11 @@ module Aws::DataZone
|
|
10819
11295
|
# action.
|
10820
11296
|
# @return [Types::RecommendationConfiguration]
|
10821
11297
|
#
|
11298
|
+
# @!attribute [rw] retain_permissions_on_revoke_failure
|
11299
|
+
# Specifies that the granted permissions are retained in case of a
|
11300
|
+
# self-subscribe functionality failure for a data source.
|
11301
|
+
# @return [Boolean]
|
11302
|
+
#
|
10822
11303
|
# @!attribute [rw] schedule
|
10823
11304
|
# The schedule to be updated as part of the `UpdateDataSource` action.
|
10824
11305
|
# @return [Types::ScheduleConfiguration]
|
@@ -10835,6 +11316,7 @@ module Aws::DataZone
|
|
10835
11316
|
:name,
|
10836
11317
|
:publish_on_import,
|
10837
11318
|
:recommendation,
|
11319
|
+
:retain_permissions_on_revoke_failure,
|
10838
11320
|
:schedule)
|
10839
11321
|
SENSITIVE = [:asset_forms_input, :description, :name, :schedule]
|
10840
11322
|
include Aws::Structure
|
@@ -10913,10 +11395,19 @@ module Aws::DataZone
|
|
10913
11395
|
# action.
|
10914
11396
|
# @return [Types::RecommendationConfiguration]
|
10915
11397
|
#
|
11398
|
+
# @!attribute [rw] retain_permissions_on_revoke_failure
|
11399
|
+
# Specifies that the granted permissions are retained in case of a
|
11400
|
+
# self-subscribe functionality failure for a data source.
|
11401
|
+
# @return [Boolean]
|
11402
|
+
#
|
10916
11403
|
# @!attribute [rw] schedule
|
10917
11404
|
# The schedule to be updated as part of the `UpdateDataSource` action.
|
10918
11405
|
# @return [Types::ScheduleConfiguration]
|
10919
11406
|
#
|
11407
|
+
# @!attribute [rw] self_grant_status
|
11408
|
+
# Specifies the status of the self-granting functionality.
|
11409
|
+
# @return [Types::SelfGrantStatusOutput]
|
11410
|
+
#
|
10920
11411
|
# @!attribute [rw] status
|
10921
11412
|
# The status to be updated as part of the `UpdateDataSource` action.
|
10922
11413
|
# @return [String]
|
@@ -10948,7 +11439,9 @@ module Aws::DataZone
|
|
10948
11439
|
:project_id,
|
10949
11440
|
:publish_on_import,
|
10950
11441
|
:recommendation,
|
11442
|
+
:retain_permissions_on_revoke_failure,
|
10951
11443
|
:schedule,
|
11444
|
+
:self_grant_status,
|
10952
11445
|
:status,
|
10953
11446
|
:type,
|
10954
11447
|
:updated_at)
|
@@ -11037,6 +11530,80 @@ module Aws::DataZone
|
|
11037
11530
|
include Aws::Structure
|
11038
11531
|
end
|
11039
11532
|
|
11533
|
+
# @!attribute [rw] description
|
11534
|
+
# The description of the environment action.
|
11535
|
+
# @return [String]
|
11536
|
+
#
|
11537
|
+
# @!attribute [rw] domain_identifier
|
11538
|
+
# The domain ID of the environment action.
|
11539
|
+
# @return [String]
|
11540
|
+
#
|
11541
|
+
# @!attribute [rw] environment_identifier
|
11542
|
+
# The environment ID of the environment action.
|
11543
|
+
# @return [String]
|
11544
|
+
#
|
11545
|
+
# @!attribute [rw] identifier
|
11546
|
+
# The ID of the environment action.
|
11547
|
+
# @return [String]
|
11548
|
+
#
|
11549
|
+
# @!attribute [rw] name
|
11550
|
+
# The name of the environment action.
|
11551
|
+
# @return [String]
|
11552
|
+
#
|
11553
|
+
# @!attribute [rw] parameters
|
11554
|
+
# The parameters of the environment action.
|
11555
|
+
# @return [Types::ActionParameters]
|
11556
|
+
#
|
11557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentActionInput AWS API Documentation
|
11558
|
+
#
|
11559
|
+
class UpdateEnvironmentActionInput < Struct.new(
|
11560
|
+
:description,
|
11561
|
+
:domain_identifier,
|
11562
|
+
:environment_identifier,
|
11563
|
+
:identifier,
|
11564
|
+
:name,
|
11565
|
+
:parameters)
|
11566
|
+
SENSITIVE = []
|
11567
|
+
include Aws::Structure
|
11568
|
+
end
|
11569
|
+
|
11570
|
+
# @!attribute [rw] description
|
11571
|
+
# The description of the environment action.
|
11572
|
+
# @return [String]
|
11573
|
+
#
|
11574
|
+
# @!attribute [rw] domain_id
|
11575
|
+
# The domain ID of the environment action.
|
11576
|
+
# @return [String]
|
11577
|
+
#
|
11578
|
+
# @!attribute [rw] environment_id
|
11579
|
+
# The environment ID of the environment action.
|
11580
|
+
# @return [String]
|
11581
|
+
#
|
11582
|
+
# @!attribute [rw] id
|
11583
|
+
# The ID of the environment action.
|
11584
|
+
# @return [String]
|
11585
|
+
#
|
11586
|
+
# @!attribute [rw] name
|
11587
|
+
# The name of the environment action.
|
11588
|
+
# @return [String]
|
11589
|
+
#
|
11590
|
+
# @!attribute [rw] parameters
|
11591
|
+
# The parameters of the environment action.
|
11592
|
+
# @return [Types::ActionParameters]
|
11593
|
+
#
|
11594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentActionOutput AWS API Documentation
|
11595
|
+
#
|
11596
|
+
class UpdateEnvironmentActionOutput < Struct.new(
|
11597
|
+
:description,
|
11598
|
+
:domain_id,
|
11599
|
+
:environment_id,
|
11600
|
+
:id,
|
11601
|
+
:name,
|
11602
|
+
:parameters)
|
11603
|
+
SENSITIVE = []
|
11604
|
+
include Aws::Structure
|
11605
|
+
end
|
11606
|
+
|
11040
11607
|
# @!attribute [rw] description
|
11041
11608
|
# The description to be updated as part of the `UpdateEnvironment`
|
11042
11609
|
# action.
|