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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57e80e5de70842ef0862fdc2674a828a0a829b1a9383f0ee5828f12a1cee702a
|
4
|
+
data.tar.gz: 4f4fb5df68ccf9fa55ab90795b522ed529677aa0bb949ac8fe7057d1d17613fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d8ea3ec84c91461a70bc972cdf38fe8fc66f086a9fd98e8da60f244fde871cb08960b13f775e7b6e9f937fbe37799d2900059fafe9abceac45a9d4e480da3b0
|
7
|
+
data.tar.gz: b616863f274bbbf394cca4ea166b12b514f067690de83a407e24a0de0172e0e30d64f2166bc6234ebd05853009dd064e63d3a537a832b2c7e583703c653f218d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.10.0 (2024-06-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.9.0 (2024-06-14)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release introduces a new default service blueprint for custom environment creation.
|
13
|
+
|
4
14
|
1.8.0 (2024-06-05)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.10.0
|
@@ -89,6 +89,11 @@ module Aws::DataZone
|
|
89
89
|
|
90
90
|
# @overload initialize(options)
|
91
91
|
# @param [Hash] options
|
92
|
+
#
|
93
|
+
# @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
|
94
|
+
# A list of plugins to apply to the client. Each plugin is either a
|
95
|
+
# class name or an instance of a plugin class.
|
96
|
+
#
|
92
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
93
98
|
# Your AWS credentials. This can be an instance of any one of the
|
94
99
|
# following classes:
|
@@ -209,7 +214,6 @@ module Aws::DataZone
|
|
209
214
|
# 'https://example.com'
|
210
215
|
# 'http://example.com:123'
|
211
216
|
#
|
212
|
-
#
|
213
217
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
214
218
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
215
219
|
# for endpoint discovery enabled operations. Defaults to 1000.
|
@@ -298,7 +302,6 @@ module Aws::DataZone
|
|
298
302
|
# throttling. This is a provisional mode that may change behavior
|
299
303
|
# in the future.
|
300
304
|
#
|
301
|
-
#
|
302
305
|
# @option options [String] :sdk_ua_app_id
|
303
306
|
# A unique and opaque application ID that is appended to the
|
304
307
|
# User-Agent header as app/sdk_ua_app_id. It should have a
|
@@ -558,6 +561,37 @@ module Aws::DataZone
|
|
558
561
|
req.send_request(options)
|
559
562
|
end
|
560
563
|
|
564
|
+
# Associates the environment role in Amazon DataZone.
|
565
|
+
#
|
566
|
+
# @option params [required, String] :domain_identifier
|
567
|
+
# The ID of the Amazon DataZone domain in which the environment role is
|
568
|
+
# associated.
|
569
|
+
#
|
570
|
+
# @option params [required, String] :environment_identifier
|
571
|
+
# The ID of the Amazon DataZone environment.
|
572
|
+
#
|
573
|
+
# @option params [required, String] :environment_role_arn
|
574
|
+
# The ARN of the environment role.
|
575
|
+
#
|
576
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
577
|
+
#
|
578
|
+
# @example Request syntax with placeholder values
|
579
|
+
#
|
580
|
+
# resp = client.associate_environment_role({
|
581
|
+
# domain_identifier: "DomainId", # required
|
582
|
+
# environment_identifier: "EnvironmentId", # required
|
583
|
+
# environment_role_arn: "String", # required
|
584
|
+
# })
|
585
|
+
#
|
586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssociateEnvironmentRole AWS API Documentation
|
587
|
+
#
|
588
|
+
# @overload associate_environment_role(params = {})
|
589
|
+
# @param [Hash] params ({})
|
590
|
+
def associate_environment_role(params = {}, options = {})
|
591
|
+
req = build_request(:associate_environment_role, params)
|
592
|
+
req.send_request(options)
|
593
|
+
end
|
594
|
+
|
561
595
|
# Cancels the metadata generation run.
|
562
596
|
#
|
563
597
|
# @option params [required, String] :domain_identifier
|
@@ -1295,6 +1329,15 @@ module Aws::DataZone
|
|
1295
1329
|
# The identifier of the Amazon DataZone domain in which the environment
|
1296
1330
|
# is created.
|
1297
1331
|
#
|
1332
|
+
# @option params [String] :environment_account_identifier
|
1333
|
+
# The ID of the account in which the environment is being created.
|
1334
|
+
#
|
1335
|
+
# @option params [String] :environment_account_region
|
1336
|
+
# The region of the account in which the environment is being created.
|
1337
|
+
#
|
1338
|
+
# @option params [String] :environment_blueprint_identifier
|
1339
|
+
# The ID of the blueprint with which the environment is being created.
|
1340
|
+
#
|
1298
1341
|
# @option params [required, String] :environment_profile_identifier
|
1299
1342
|
# The identifier of the environment profile that is used to create this
|
1300
1343
|
# Amazon DataZone environment.
|
@@ -1342,6 +1385,9 @@ module Aws::DataZone
|
|
1342
1385
|
# resp = client.create_environment({
|
1343
1386
|
# description: "String",
|
1344
1387
|
# domain_identifier: "DomainId", # required
|
1388
|
+
# environment_account_identifier: "String",
|
1389
|
+
# environment_account_region: "String",
|
1390
|
+
# environment_blueprint_identifier: "String",
|
1345
1391
|
# environment_profile_identifier: "EnvironmentProfileId", # required
|
1346
1392
|
# glossary_terms: ["GlossaryTermId"],
|
1347
1393
|
# name: "String", # required
|
@@ -1411,6 +1457,67 @@ module Aws::DataZone
|
|
1411
1457
|
req.send_request(options)
|
1412
1458
|
end
|
1413
1459
|
|
1460
|
+
# Creates an action for the environment, for example, creates a console
|
1461
|
+
# link for an analytics tool that is available in this environment.
|
1462
|
+
#
|
1463
|
+
# @option params [String] :description
|
1464
|
+
# The description of the environment action that is being created in the
|
1465
|
+
# environment.
|
1466
|
+
#
|
1467
|
+
# @option params [required, String] :domain_identifier
|
1468
|
+
# The ID of the Amazon DataZone domain in which the environment action
|
1469
|
+
# is created.
|
1470
|
+
#
|
1471
|
+
# @option params [required, String] :environment_identifier
|
1472
|
+
# The ID of the environment in which the environment action is created.
|
1473
|
+
#
|
1474
|
+
# @option params [required, String] :name
|
1475
|
+
# The name of the environment action.
|
1476
|
+
#
|
1477
|
+
# @option params [required, Types::ActionParameters] :parameters
|
1478
|
+
# The parameters of the environment action.
|
1479
|
+
#
|
1480
|
+
# @return [Types::CreateEnvironmentActionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1481
|
+
#
|
1482
|
+
# * {Types::CreateEnvironmentActionOutput#description #description} => String
|
1483
|
+
# * {Types::CreateEnvironmentActionOutput#domain_id #domain_id} => String
|
1484
|
+
# * {Types::CreateEnvironmentActionOutput#environment_id #environment_id} => String
|
1485
|
+
# * {Types::CreateEnvironmentActionOutput#id #id} => String
|
1486
|
+
# * {Types::CreateEnvironmentActionOutput#name #name} => String
|
1487
|
+
# * {Types::CreateEnvironmentActionOutput#parameters #parameters} => Types::ActionParameters
|
1488
|
+
#
|
1489
|
+
# @example Request syntax with placeholder values
|
1490
|
+
#
|
1491
|
+
# resp = client.create_environment_action({
|
1492
|
+
# description: "String",
|
1493
|
+
# domain_identifier: "DomainId", # required
|
1494
|
+
# environment_identifier: "EnvironmentId", # required
|
1495
|
+
# name: "String", # required
|
1496
|
+
# parameters: { # required
|
1497
|
+
# aws_console_link: {
|
1498
|
+
# uri: "String",
|
1499
|
+
# },
|
1500
|
+
# },
|
1501
|
+
# })
|
1502
|
+
#
|
1503
|
+
# @example Response structure
|
1504
|
+
#
|
1505
|
+
# resp.description #=> String
|
1506
|
+
# resp.domain_id #=> String
|
1507
|
+
# resp.environment_id #=> String
|
1508
|
+
# resp.id #=> String
|
1509
|
+
# resp.name #=> String
|
1510
|
+
# resp.parameters.aws_console_link.uri #=> String
|
1511
|
+
#
|
1512
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentAction AWS API Documentation
|
1513
|
+
#
|
1514
|
+
# @overload create_environment_action(params = {})
|
1515
|
+
# @param [Hash] params ({})
|
1516
|
+
def create_environment_action(params = {}, options = {})
|
1517
|
+
req = build_request(:create_environment_action, params)
|
1518
|
+
req.send_request(options)
|
1519
|
+
end
|
1520
|
+
|
1414
1521
|
# Creates an Amazon DataZone environment profile.
|
1415
1522
|
#
|
1416
1523
|
# @option params [String] :aws_account_id
|
@@ -2336,6 +2443,10 @@ module Aws::DataZone
|
|
2336
2443
|
# @option params [required, String] :identifier
|
2337
2444
|
# The identifier of the data source that is deleted.
|
2338
2445
|
#
|
2446
|
+
# @option params [Boolean] :retain_permissions_on_revoke_failure
|
2447
|
+
# Specifies that the granted permissions are retained in case of a
|
2448
|
+
# self-subscribe functionality failure for a data source.
|
2449
|
+
#
|
2339
2450
|
# @return [Types::DeleteDataSourceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2340
2451
|
#
|
2341
2452
|
# * {Types::DeleteDataSourceOutput#asset_forms_output #asset_forms_output} => Array<Types::FormOutput>
|
@@ -2353,7 +2464,9 @@ module Aws::DataZone
|
|
2353
2464
|
# * {Types::DeleteDataSourceOutput#name #name} => String
|
2354
2465
|
# * {Types::DeleteDataSourceOutput#project_id #project_id} => String
|
2355
2466
|
# * {Types::DeleteDataSourceOutput#publish_on_import #publish_on_import} => Boolean
|
2467
|
+
# * {Types::DeleteDataSourceOutput#retain_permissions_on_revoke_failure #retain_permissions_on_revoke_failure} => Boolean
|
2356
2468
|
# * {Types::DeleteDataSourceOutput#schedule #schedule} => Types::ScheduleConfiguration
|
2469
|
+
# * {Types::DeleteDataSourceOutput#self_grant_status #self_grant_status} => Types::SelfGrantStatusOutput
|
2357
2470
|
# * {Types::DeleteDataSourceOutput#status #status} => String
|
2358
2471
|
# * {Types::DeleteDataSourceOutput#type #type} => String
|
2359
2472
|
# * {Types::DeleteDataSourceOutput#updated_at #updated_at} => Time
|
@@ -2364,6 +2477,7 @@ module Aws::DataZone
|
|
2364
2477
|
# client_token: "String",
|
2365
2478
|
# domain_identifier: "DomainId", # required
|
2366
2479
|
# identifier: "DataSourceId", # required
|
2480
|
+
# retain_permissions_on_revoke_failure: false,
|
2367
2481
|
# })
|
2368
2482
|
#
|
2369
2483
|
# @example Response structure
|
@@ -2410,8 +2524,19 @@ module Aws::DataZone
|
|
2410
2524
|
# resp.name #=> String
|
2411
2525
|
# resp.project_id #=> String
|
2412
2526
|
# resp.publish_on_import #=> Boolean
|
2527
|
+
# resp.retain_permissions_on_revoke_failure #=> Boolean
|
2413
2528
|
# resp.schedule.schedule #=> String
|
2414
2529
|
# resp.schedule.timezone #=> String, one of "UTC", "AFRICA_JOHANNESBURG", "AMERICA_MONTREAL", "AMERICA_SAO_PAULO", "ASIA_BAHRAIN", "ASIA_BANGKOK", "ASIA_CALCUTTA", "ASIA_DUBAI", "ASIA_HONG_KONG", "ASIA_JAKARTA", "ASIA_KUALA_LUMPUR", "ASIA_SEOUL", "ASIA_SHANGHAI", "ASIA_SINGAPORE", "ASIA_TAIPEI", "ASIA_TOKYO", "AUSTRALIA_MELBOURNE", "AUSTRALIA_SYDNEY", "CANADA_CENTRAL", "CET", "CST6CDT", "ETC_GMT", "ETC_GMT0", "ETC_GMT_ADD_0", "ETC_GMT_ADD_1", "ETC_GMT_ADD_10", "ETC_GMT_ADD_11", "ETC_GMT_ADD_12", "ETC_GMT_ADD_2", "ETC_GMT_ADD_3", "ETC_GMT_ADD_4", "ETC_GMT_ADD_5", "ETC_GMT_ADD_6", "ETC_GMT_ADD_7", "ETC_GMT_ADD_8", "ETC_GMT_ADD_9", "ETC_GMT_NEG_0", "ETC_GMT_NEG_1", "ETC_GMT_NEG_10", "ETC_GMT_NEG_11", "ETC_GMT_NEG_12", "ETC_GMT_NEG_13", "ETC_GMT_NEG_14", "ETC_GMT_NEG_2", "ETC_GMT_NEG_3", "ETC_GMT_NEG_4", "ETC_GMT_NEG_5", "ETC_GMT_NEG_6", "ETC_GMT_NEG_7", "ETC_GMT_NEG_8", "ETC_GMT_NEG_9", "EUROPE_DUBLIN", "EUROPE_LONDON", "EUROPE_PARIS", "EUROPE_STOCKHOLM", "EUROPE_ZURICH", "ISRAEL", "MEXICO_GENERAL", "MST7MDT", "PACIFIC_AUCKLAND", "US_CENTRAL", "US_EASTERN", "US_MOUNTAIN", "US_PACIFIC"
|
2530
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details #=> Array
|
2531
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].database_name #=> String
|
2532
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].failure_cause #=> String
|
2533
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].schema_name #=> String
|
2534
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "GRANT_FAILED", "REVOKE_FAILED"
|
2535
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details #=> Array
|
2536
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].database_name #=> String
|
2537
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].failure_cause #=> String
|
2538
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].schema_name #=> String
|
2539
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "GRANT_FAILED", "REVOKE_FAILED"
|
2415
2540
|
# resp.status #=> String, one of "CREATING", "FAILED_CREATION", "READY", "UPDATING", "FAILED_UPDATE", "RUNNING", "DELETING", "FAILED_DELETION"
|
2416
2541
|
# resp.type #=> String
|
2417
2542
|
# resp.updated_at #=> Time
|
@@ -2494,6 +2619,38 @@ module Aws::DataZone
|
|
2494
2619
|
req.send_request(options)
|
2495
2620
|
end
|
2496
2621
|
|
2622
|
+
# Deletes an action for the environment, for example, deletes a console
|
2623
|
+
# link for an analytics tool that is available in this environment.
|
2624
|
+
#
|
2625
|
+
# @option params [required, String] :domain_identifier
|
2626
|
+
# The ID of the Amazon DataZone domain in which an environment action is
|
2627
|
+
# deleted.
|
2628
|
+
#
|
2629
|
+
# @option params [required, String] :environment_identifier
|
2630
|
+
# The ID of the environment where an environment action is deleted.
|
2631
|
+
#
|
2632
|
+
# @option params [required, String] :identifier
|
2633
|
+
# The ID of the environment action that is deleted.
|
2634
|
+
#
|
2635
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2636
|
+
#
|
2637
|
+
# @example Request syntax with placeholder values
|
2638
|
+
#
|
2639
|
+
# resp = client.delete_environment_action({
|
2640
|
+
# domain_identifier: "DomainId", # required
|
2641
|
+
# environment_identifier: "EnvironmentId", # required
|
2642
|
+
# identifier: "String", # required
|
2643
|
+
# })
|
2644
|
+
#
|
2645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteEnvironmentAction AWS API Documentation
|
2646
|
+
#
|
2647
|
+
# @overload delete_environment_action(params = {})
|
2648
|
+
# @param [Hash] params ({})
|
2649
|
+
def delete_environment_action(params = {}, options = {})
|
2650
|
+
req = build_request(:delete_environment_action, params)
|
2651
|
+
req.send_request(options)
|
2652
|
+
end
|
2653
|
+
|
2497
2654
|
# Deletes the blueprint configuration in Amazon DataZone.
|
2498
2655
|
#
|
2499
2656
|
# @option params [required, String] :domain_identifier
|
@@ -2884,6 +3041,37 @@ module Aws::DataZone
|
|
2884
3041
|
req.send_request(options)
|
2885
3042
|
end
|
2886
3043
|
|
3044
|
+
# Disassociates the environment role in Amazon DataZone.
|
3045
|
+
#
|
3046
|
+
# @option params [required, String] :domain_identifier
|
3047
|
+
# The ID of the Amazon DataZone domain in which an environment role is
|
3048
|
+
# disassociated.
|
3049
|
+
#
|
3050
|
+
# @option params [required, String] :environment_identifier
|
3051
|
+
# The ID of the environment.
|
3052
|
+
#
|
3053
|
+
# @option params [required, String] :environment_role_arn
|
3054
|
+
# The ARN of the environment role.
|
3055
|
+
#
|
3056
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3057
|
+
#
|
3058
|
+
# @example Request syntax with placeholder values
|
3059
|
+
#
|
3060
|
+
# resp = client.disassociate_environment_role({
|
3061
|
+
# domain_identifier: "DomainId", # required
|
3062
|
+
# environment_identifier: "EnvironmentId", # required
|
3063
|
+
# environment_role_arn: "String", # required
|
3064
|
+
# })
|
3065
|
+
#
|
3066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DisassociateEnvironmentRole AWS API Documentation
|
3067
|
+
#
|
3068
|
+
# @overload disassociate_environment_role(params = {})
|
3069
|
+
# @param [Hash] params ({})
|
3070
|
+
def disassociate_environment_role(params = {}, options = {})
|
3071
|
+
req = build_request(:disassociate_environment_role, params)
|
3072
|
+
req.send_request(options)
|
3073
|
+
end
|
3074
|
+
|
2887
3075
|
# Gets an Amazon DataZone asset.
|
2888
3076
|
#
|
2889
3077
|
# @option params [required, String] :domain_identifier
|
@@ -3059,6 +3247,7 @@ module Aws::DataZone
|
|
3059
3247
|
# * {Types::GetDataSourceOutput#publish_on_import #publish_on_import} => Boolean
|
3060
3248
|
# * {Types::GetDataSourceOutput#recommendation #recommendation} => Types::RecommendationConfiguration
|
3061
3249
|
# * {Types::GetDataSourceOutput#schedule #schedule} => Types::ScheduleConfiguration
|
3250
|
+
# * {Types::GetDataSourceOutput#self_grant_status #self_grant_status} => Types::SelfGrantStatusOutput
|
3062
3251
|
# * {Types::GetDataSourceOutput#status #status} => String
|
3063
3252
|
# * {Types::GetDataSourceOutput#type #type} => String
|
3064
3253
|
# * {Types::GetDataSourceOutput#updated_at #updated_at} => Time
|
@@ -3118,6 +3307,16 @@ module Aws::DataZone
|
|
3118
3307
|
# resp.recommendation.enable_business_name_generation #=> Boolean
|
3119
3308
|
# resp.schedule.schedule #=> String
|
3120
3309
|
# resp.schedule.timezone #=> String, one of "UTC", "AFRICA_JOHANNESBURG", "AMERICA_MONTREAL", "AMERICA_SAO_PAULO", "ASIA_BAHRAIN", "ASIA_BANGKOK", "ASIA_CALCUTTA", "ASIA_DUBAI", "ASIA_HONG_KONG", "ASIA_JAKARTA", "ASIA_KUALA_LUMPUR", "ASIA_SEOUL", "ASIA_SHANGHAI", "ASIA_SINGAPORE", "ASIA_TAIPEI", "ASIA_TOKYO", "AUSTRALIA_MELBOURNE", "AUSTRALIA_SYDNEY", "CANADA_CENTRAL", "CET", "CST6CDT", "ETC_GMT", "ETC_GMT0", "ETC_GMT_ADD_0", "ETC_GMT_ADD_1", "ETC_GMT_ADD_10", "ETC_GMT_ADD_11", "ETC_GMT_ADD_12", "ETC_GMT_ADD_2", "ETC_GMT_ADD_3", "ETC_GMT_ADD_4", "ETC_GMT_ADD_5", "ETC_GMT_ADD_6", "ETC_GMT_ADD_7", "ETC_GMT_ADD_8", "ETC_GMT_ADD_9", "ETC_GMT_NEG_0", "ETC_GMT_NEG_1", "ETC_GMT_NEG_10", "ETC_GMT_NEG_11", "ETC_GMT_NEG_12", "ETC_GMT_NEG_13", "ETC_GMT_NEG_14", "ETC_GMT_NEG_2", "ETC_GMT_NEG_3", "ETC_GMT_NEG_4", "ETC_GMT_NEG_5", "ETC_GMT_NEG_6", "ETC_GMT_NEG_7", "ETC_GMT_NEG_8", "ETC_GMT_NEG_9", "EUROPE_DUBLIN", "EUROPE_LONDON", "EUROPE_PARIS", "EUROPE_STOCKHOLM", "EUROPE_ZURICH", "ISRAEL", "MEXICO_GENERAL", "MST7MDT", "PACIFIC_AUCKLAND", "US_CENTRAL", "US_EASTERN", "US_MOUNTAIN", "US_PACIFIC"
|
3310
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details #=> Array
|
3311
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].database_name #=> String
|
3312
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].failure_cause #=> String
|
3313
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].schema_name #=> String
|
3314
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "GRANT_FAILED", "REVOKE_FAILED"
|
3315
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details #=> Array
|
3316
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].database_name #=> String
|
3317
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].failure_cause #=> String
|
3318
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].schema_name #=> String
|
3319
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "GRANT_FAILED", "REVOKE_FAILED"
|
3121
3320
|
# resp.status #=> String, one of "CREATING", "FAILED_CREATION", "READY", "UPDATING", "FAILED_UPDATE", "RUNNING", "DELETING", "FAILED_DELETION"
|
3122
3321
|
# resp.type #=> String
|
3123
3322
|
# resp.updated_at #=> Time
|
@@ -3340,6 +3539,53 @@ module Aws::DataZone
|
|
3340
3539
|
req.send_request(options)
|
3341
3540
|
end
|
3342
3541
|
|
3542
|
+
# Gets the specified environment action.
|
3543
|
+
#
|
3544
|
+
# @option params [required, String] :domain_identifier
|
3545
|
+
# The ID of the Amazon DataZone domain in which the
|
3546
|
+
# `GetEnvironmentAction` API is invoked.
|
3547
|
+
#
|
3548
|
+
# @option params [required, String] :environment_identifier
|
3549
|
+
# The environment ID of the environment action.
|
3550
|
+
#
|
3551
|
+
# @option params [required, String] :identifier
|
3552
|
+
# The ID of the environment action
|
3553
|
+
#
|
3554
|
+
# @return [Types::GetEnvironmentActionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3555
|
+
#
|
3556
|
+
# * {Types::GetEnvironmentActionOutput#description #description} => String
|
3557
|
+
# * {Types::GetEnvironmentActionOutput#domain_id #domain_id} => String
|
3558
|
+
# * {Types::GetEnvironmentActionOutput#environment_id #environment_id} => String
|
3559
|
+
# * {Types::GetEnvironmentActionOutput#id #id} => String
|
3560
|
+
# * {Types::GetEnvironmentActionOutput#name #name} => String
|
3561
|
+
# * {Types::GetEnvironmentActionOutput#parameters #parameters} => Types::ActionParameters
|
3562
|
+
#
|
3563
|
+
# @example Request syntax with placeholder values
|
3564
|
+
#
|
3565
|
+
# resp = client.get_environment_action({
|
3566
|
+
# domain_identifier: "DomainId", # required
|
3567
|
+
# environment_identifier: "EnvironmentId", # required
|
3568
|
+
# identifier: "String", # required
|
3569
|
+
# })
|
3570
|
+
#
|
3571
|
+
# @example Response structure
|
3572
|
+
#
|
3573
|
+
# resp.description #=> String
|
3574
|
+
# resp.domain_id #=> String
|
3575
|
+
# resp.environment_id #=> String
|
3576
|
+
# resp.id #=> String
|
3577
|
+
# resp.name #=> String
|
3578
|
+
# resp.parameters.aws_console_link.uri #=> String
|
3579
|
+
#
|
3580
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetEnvironmentAction AWS API Documentation
|
3581
|
+
#
|
3582
|
+
# @overload get_environment_action(params = {})
|
3583
|
+
# @param [Hash] params ({})
|
3584
|
+
def get_environment_action(params = {}, options = {})
|
3585
|
+
req = build_request(:get_environment_action, params)
|
3586
|
+
req.send_request(options)
|
3587
|
+
end
|
3588
|
+
|
3343
3589
|
# Gets an Amazon DataZone blueprint.
|
3344
3590
|
#
|
3345
3591
|
# @option params [required, String] :domain_identifier
|
@@ -4639,6 +4885,66 @@ module Aws::DataZone
|
|
4639
4885
|
req.send_request(options)
|
4640
4886
|
end
|
4641
4887
|
|
4888
|
+
# Lists existing environment actions.
|
4889
|
+
#
|
4890
|
+
# @option params [required, String] :domain_identifier
|
4891
|
+
# The ID of the Amazon DataZone domain in which the environment actions
|
4892
|
+
# are listed.
|
4893
|
+
#
|
4894
|
+
# @option params [required, String] :environment_identifier
|
4895
|
+
# The ID of the envrironment whose environment actions are listed.
|
4896
|
+
#
|
4897
|
+
# @option params [Integer] :max_results
|
4898
|
+
# The maximum number of environment actions to return in a single call
|
4899
|
+
# to `ListEnvironmentActions`. When the number of environment actions to
|
4900
|
+
# be listed is greater than the value of `MaxResults`, the response
|
4901
|
+
# contains a `NextToken` value that you can use in a subsequent call to
|
4902
|
+
# `ListEnvironmentActions` to list the next set of environment actions.
|
4903
|
+
#
|
4904
|
+
# @option params [String] :next_token
|
4905
|
+
# When the number of environment actions is greater than the default
|
4906
|
+
# value for the `MaxResults` parameter, or if you explicitly specify a
|
4907
|
+
# value for `MaxResults` that is less than the number of environment
|
4908
|
+
# actions, the response includes a pagination token named `NextToken`.
|
4909
|
+
# You can specify this `NextToken` value in a subsequent call to
|
4910
|
+
# `ListEnvironmentActions` to list the next set of environment actions.
|
4911
|
+
#
|
4912
|
+
# @return [Types::ListEnvironmentActionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4913
|
+
#
|
4914
|
+
# * {Types::ListEnvironmentActionsOutput#items #items} => Array<Types::EnvironmentActionSummary>
|
4915
|
+
# * {Types::ListEnvironmentActionsOutput#next_token #next_token} => String
|
4916
|
+
#
|
4917
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4918
|
+
#
|
4919
|
+
# @example Request syntax with placeholder values
|
4920
|
+
#
|
4921
|
+
# resp = client.list_environment_actions({
|
4922
|
+
# domain_identifier: "DomainId", # required
|
4923
|
+
# environment_identifier: "EnvironmentId", # required
|
4924
|
+
# max_results: 1,
|
4925
|
+
# next_token: "PaginationToken",
|
4926
|
+
# })
|
4927
|
+
#
|
4928
|
+
# @example Response structure
|
4929
|
+
#
|
4930
|
+
# resp.items #=> Array
|
4931
|
+
# resp.items[0].description #=> String
|
4932
|
+
# resp.items[0].domain_id #=> String
|
4933
|
+
# resp.items[0].environment_id #=> String
|
4934
|
+
# resp.items[0].id #=> String
|
4935
|
+
# resp.items[0].name #=> String
|
4936
|
+
# resp.items[0].parameters.aws_console_link.uri #=> String
|
4937
|
+
# resp.next_token #=> String
|
4938
|
+
#
|
4939
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListEnvironmentActions AWS API Documentation
|
4940
|
+
#
|
4941
|
+
# @overload list_environment_actions(params = {})
|
4942
|
+
# @param [Hash] params ({})
|
4943
|
+
def list_environment_actions(params = {}, options = {})
|
4944
|
+
req = build_request(:list_environment_actions, params)
|
4945
|
+
req.send_request(options)
|
4946
|
+
end
|
4947
|
+
|
4642
4948
|
# Lists blueprint configurations for a Amazon DataZone environment.
|
4643
4949
|
#
|
4644
4950
|
# @option params [required, String] :domain_identifier
|
@@ -6845,6 +7151,10 @@ module Aws::DataZone
|
|
6845
7151
|
# The recommendation to be updated as part of the `UpdateDataSource`
|
6846
7152
|
# action.
|
6847
7153
|
#
|
7154
|
+
# @option params [Boolean] :retain_permissions_on_revoke_failure
|
7155
|
+
# Specifies that the granted permissions are retained in case of a
|
7156
|
+
# self-subscribe functionality failure for a data source.
|
7157
|
+
#
|
6848
7158
|
# @option params [Types::ScheduleConfiguration] :schedule
|
6849
7159
|
# The schedule to be updated as part of the `UpdateDataSource` action.
|
6850
7160
|
#
|
@@ -6866,7 +7176,9 @@ module Aws::DataZone
|
|
6866
7176
|
# * {Types::UpdateDataSourceOutput#project_id #project_id} => String
|
6867
7177
|
# * {Types::UpdateDataSourceOutput#publish_on_import #publish_on_import} => Boolean
|
6868
7178
|
# * {Types::UpdateDataSourceOutput#recommendation #recommendation} => Types::RecommendationConfiguration
|
7179
|
+
# * {Types::UpdateDataSourceOutput#retain_permissions_on_revoke_failure #retain_permissions_on_revoke_failure} => Boolean
|
6869
7180
|
# * {Types::UpdateDataSourceOutput#schedule #schedule} => Types::ScheduleConfiguration
|
7181
|
+
# * {Types::UpdateDataSourceOutput#self_grant_status #self_grant_status} => Types::SelfGrantStatusOutput
|
6870
7182
|
# * {Types::UpdateDataSourceOutput#status #status} => String
|
6871
7183
|
# * {Types::UpdateDataSourceOutput#type #type} => String
|
6872
7184
|
# * {Types::UpdateDataSourceOutput#updated_at #updated_at} => Time
|
@@ -6935,6 +7247,7 @@ module Aws::DataZone
|
|
6935
7247
|
# recommendation: {
|
6936
7248
|
# enable_business_name_generation: false,
|
6937
7249
|
# },
|
7250
|
+
# retain_permissions_on_revoke_failure: false,
|
6938
7251
|
# schedule: {
|
6939
7252
|
# schedule: "CronString",
|
6940
7253
|
# timezone: "UTC", # accepts UTC, AFRICA_JOHANNESBURG, AMERICA_MONTREAL, AMERICA_SAO_PAULO, ASIA_BAHRAIN, ASIA_BANGKOK, ASIA_CALCUTTA, ASIA_DUBAI, ASIA_HONG_KONG, ASIA_JAKARTA, ASIA_KUALA_LUMPUR, ASIA_SEOUL, ASIA_SHANGHAI, ASIA_SINGAPORE, ASIA_TAIPEI, ASIA_TOKYO, AUSTRALIA_MELBOURNE, AUSTRALIA_SYDNEY, CANADA_CENTRAL, CET, CST6CDT, ETC_GMT, ETC_GMT0, ETC_GMT_ADD_0, ETC_GMT_ADD_1, ETC_GMT_ADD_10, ETC_GMT_ADD_11, ETC_GMT_ADD_12, ETC_GMT_ADD_2, ETC_GMT_ADD_3, ETC_GMT_ADD_4, ETC_GMT_ADD_5, ETC_GMT_ADD_6, ETC_GMT_ADD_7, ETC_GMT_ADD_8, ETC_GMT_ADD_9, ETC_GMT_NEG_0, ETC_GMT_NEG_1, ETC_GMT_NEG_10, ETC_GMT_NEG_11, ETC_GMT_NEG_12, ETC_GMT_NEG_13, ETC_GMT_NEG_14, ETC_GMT_NEG_2, ETC_GMT_NEG_3, ETC_GMT_NEG_4, ETC_GMT_NEG_5, ETC_GMT_NEG_6, ETC_GMT_NEG_7, ETC_GMT_NEG_8, ETC_GMT_NEG_9, EUROPE_DUBLIN, EUROPE_LONDON, EUROPE_PARIS, EUROPE_STOCKHOLM, EUROPE_ZURICH, ISRAEL, MEXICO_GENERAL, MST7MDT, PACIFIC_AUCKLAND, US_CENTRAL, US_EASTERN, US_MOUNTAIN, US_PACIFIC
|
@@ -6986,8 +7299,19 @@ module Aws::DataZone
|
|
6986
7299
|
# resp.project_id #=> String
|
6987
7300
|
# resp.publish_on_import #=> Boolean
|
6988
7301
|
# resp.recommendation.enable_business_name_generation #=> Boolean
|
7302
|
+
# resp.retain_permissions_on_revoke_failure #=> Boolean
|
6989
7303
|
# resp.schedule.schedule #=> String
|
6990
7304
|
# resp.schedule.timezone #=> String, one of "UTC", "AFRICA_JOHANNESBURG", "AMERICA_MONTREAL", "AMERICA_SAO_PAULO", "ASIA_BAHRAIN", "ASIA_BANGKOK", "ASIA_CALCUTTA", "ASIA_DUBAI", "ASIA_HONG_KONG", "ASIA_JAKARTA", "ASIA_KUALA_LUMPUR", "ASIA_SEOUL", "ASIA_SHANGHAI", "ASIA_SINGAPORE", "ASIA_TAIPEI", "ASIA_TOKYO", "AUSTRALIA_MELBOURNE", "AUSTRALIA_SYDNEY", "CANADA_CENTRAL", "CET", "CST6CDT", "ETC_GMT", "ETC_GMT0", "ETC_GMT_ADD_0", "ETC_GMT_ADD_1", "ETC_GMT_ADD_10", "ETC_GMT_ADD_11", "ETC_GMT_ADD_12", "ETC_GMT_ADD_2", "ETC_GMT_ADD_3", "ETC_GMT_ADD_4", "ETC_GMT_ADD_5", "ETC_GMT_ADD_6", "ETC_GMT_ADD_7", "ETC_GMT_ADD_8", "ETC_GMT_ADD_9", "ETC_GMT_NEG_0", "ETC_GMT_NEG_1", "ETC_GMT_NEG_10", "ETC_GMT_NEG_11", "ETC_GMT_NEG_12", "ETC_GMT_NEG_13", "ETC_GMT_NEG_14", "ETC_GMT_NEG_2", "ETC_GMT_NEG_3", "ETC_GMT_NEG_4", "ETC_GMT_NEG_5", "ETC_GMT_NEG_6", "ETC_GMT_NEG_7", "ETC_GMT_NEG_8", "ETC_GMT_NEG_9", "EUROPE_DUBLIN", "EUROPE_LONDON", "EUROPE_PARIS", "EUROPE_STOCKHOLM", "EUROPE_ZURICH", "ISRAEL", "MEXICO_GENERAL", "MST7MDT", "PACIFIC_AUCKLAND", "US_CENTRAL", "US_EASTERN", "US_MOUNTAIN", "US_PACIFIC"
|
7305
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details #=> Array
|
7306
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].database_name #=> String
|
7307
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].failure_cause #=> String
|
7308
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].schema_name #=> String
|
7309
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "GRANT_FAILED", "REVOKE_FAILED"
|
7310
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details #=> Array
|
7311
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].database_name #=> String
|
7312
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].failure_cause #=> String
|
7313
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].schema_name #=> String
|
7314
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "GRANT_FAILED", "REVOKE_FAILED"
|
6991
7315
|
# resp.status #=> String, one of "CREATING", "FAILED_CREATION", "READY", "UPDATING", "FAILED_UPDATE", "RUNNING", "DELETING", "FAILED_DELETION"
|
6992
7316
|
# resp.type #=> String
|
6993
7317
|
# resp.updated_at #=> Time
|
@@ -7180,6 +7504,68 @@ module Aws::DataZone
|
|
7180
7504
|
req.send_request(options)
|
7181
7505
|
end
|
7182
7506
|
|
7507
|
+
# Updates an environment action.
|
7508
|
+
#
|
7509
|
+
# @option params [String] :description
|
7510
|
+
# The description of the environment action.
|
7511
|
+
#
|
7512
|
+
# @option params [required, String] :domain_identifier
|
7513
|
+
# The domain ID of the environment action.
|
7514
|
+
#
|
7515
|
+
# @option params [required, String] :environment_identifier
|
7516
|
+
# The environment ID of the environment action.
|
7517
|
+
#
|
7518
|
+
# @option params [required, String] :identifier
|
7519
|
+
# The ID of the environment action.
|
7520
|
+
#
|
7521
|
+
# @option params [String] :name
|
7522
|
+
# The name of the environment action.
|
7523
|
+
#
|
7524
|
+
# @option params [Types::ActionParameters] :parameters
|
7525
|
+
# The parameters of the environment action.
|
7526
|
+
#
|
7527
|
+
# @return [Types::UpdateEnvironmentActionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7528
|
+
#
|
7529
|
+
# * {Types::UpdateEnvironmentActionOutput#description #description} => String
|
7530
|
+
# * {Types::UpdateEnvironmentActionOutput#domain_id #domain_id} => String
|
7531
|
+
# * {Types::UpdateEnvironmentActionOutput#environment_id #environment_id} => String
|
7532
|
+
# * {Types::UpdateEnvironmentActionOutput#id #id} => String
|
7533
|
+
# * {Types::UpdateEnvironmentActionOutput#name #name} => String
|
7534
|
+
# * {Types::UpdateEnvironmentActionOutput#parameters #parameters} => Types::ActionParameters
|
7535
|
+
#
|
7536
|
+
# @example Request syntax with placeholder values
|
7537
|
+
#
|
7538
|
+
# resp = client.update_environment_action({
|
7539
|
+
# description: "String",
|
7540
|
+
# domain_identifier: "DomainId", # required
|
7541
|
+
# environment_identifier: "EnvironmentId", # required
|
7542
|
+
# identifier: "String", # required
|
7543
|
+
# name: "String",
|
7544
|
+
# parameters: {
|
7545
|
+
# aws_console_link: {
|
7546
|
+
# uri: "String",
|
7547
|
+
# },
|
7548
|
+
# },
|
7549
|
+
# })
|
7550
|
+
#
|
7551
|
+
# @example Response structure
|
7552
|
+
#
|
7553
|
+
# resp.description #=> String
|
7554
|
+
# resp.domain_id #=> String
|
7555
|
+
# resp.environment_id #=> String
|
7556
|
+
# resp.id #=> String
|
7557
|
+
# resp.name #=> String
|
7558
|
+
# resp.parameters.aws_console_link.uri #=> String
|
7559
|
+
#
|
7560
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentAction AWS API Documentation
|
7561
|
+
#
|
7562
|
+
# @overload update_environment_action(params = {})
|
7563
|
+
# @param [Hash] params ({})
|
7564
|
+
def update_environment_action(params = {}, options = {})
|
7565
|
+
req = build_request(:update_environment_action, params)
|
7566
|
+
req.send_request(options)
|
7567
|
+
end
|
7568
|
+
|
7183
7569
|
# Updates the specified environment profile in Amazon DataZone.
|
7184
7570
|
#
|
7185
7571
|
# @option params [String] :aws_account_id
|
@@ -7854,7 +8240,7 @@ module Aws::DataZone
|
|
7854
8240
|
params: params,
|
7855
8241
|
config: config)
|
7856
8242
|
context[:gem_name] = 'aws-sdk-datazone'
|
7857
|
-
context[:gem_version] = '1.
|
8243
|
+
context[:gem_version] = '1.10.0'
|
7858
8244
|
Seahorse::Client::Request.new(handlers, context)
|
7859
8245
|
end
|
7860
8246
|
|