aws-sdk-datazone 1.7.0 → 1.9.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 +384 -1
- 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: aee45d0f703171ef7bdf562924454fc23b4c09a8aca5443a2ea2690a4365244a
|
4
|
+
data.tar.gz: '038b398cbd745342632da69cabfbfddf3b09fb00ee6ffedb468f034e2c950414'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64f5ec750ec99e92572dc48ac5f01ae4a46021b55bb5f244176e7e8420272571a260128c4ac224f0d719d404314482022a5018e2aeaccaf6160004cd00356422
|
7
|
+
data.tar.gz: 3184c7b8fe1e18242fcc02d3103fbebe31f2a65a51990f7849e0d48d2091eb663e6fc10a21cc8d4a10702167d26beefe4f4340cef2afd56a452968e1a37955f2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.9.0 (2024-06-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release introduces a new default service blueprint for custom environment creation.
|
8
|
+
|
9
|
+
1.8.0 (2024-06-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.7.0 (2024-05-13)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.9.0
|
@@ -558,6 +558,37 @@ module Aws::DataZone
|
|
558
558
|
req.send_request(options)
|
559
559
|
end
|
560
560
|
|
561
|
+
# Associates the environment role in Amazon DataZone.
|
562
|
+
#
|
563
|
+
# @option params [required, String] :domain_identifier
|
564
|
+
# The ID of the Amazon DataZone domain in which the environment role is
|
565
|
+
# associated.
|
566
|
+
#
|
567
|
+
# @option params [required, String] :environment_identifier
|
568
|
+
# The ID of the Amazon DataZone environment.
|
569
|
+
#
|
570
|
+
# @option params [required, String] :environment_role_arn
|
571
|
+
# The ARN of the environment role.
|
572
|
+
#
|
573
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
574
|
+
#
|
575
|
+
# @example Request syntax with placeholder values
|
576
|
+
#
|
577
|
+
# resp = client.associate_environment_role({
|
578
|
+
# domain_identifier: "DomainId", # required
|
579
|
+
# environment_identifier: "EnvironmentId", # required
|
580
|
+
# environment_role_arn: "String", # required
|
581
|
+
# })
|
582
|
+
#
|
583
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssociateEnvironmentRole AWS API Documentation
|
584
|
+
#
|
585
|
+
# @overload associate_environment_role(params = {})
|
586
|
+
# @param [Hash] params ({})
|
587
|
+
def associate_environment_role(params = {}, options = {})
|
588
|
+
req = build_request(:associate_environment_role, params)
|
589
|
+
req.send_request(options)
|
590
|
+
end
|
591
|
+
|
561
592
|
# Cancels the metadata generation run.
|
562
593
|
#
|
563
594
|
# @option params [required, String] :domain_identifier
|
@@ -1295,6 +1326,15 @@ module Aws::DataZone
|
|
1295
1326
|
# The identifier of the Amazon DataZone domain in which the environment
|
1296
1327
|
# is created.
|
1297
1328
|
#
|
1329
|
+
# @option params [String] :environment_account_identifier
|
1330
|
+
# The ID of the account in which the environment is being created.
|
1331
|
+
#
|
1332
|
+
# @option params [String] :environment_account_region
|
1333
|
+
# The region of the account in which the environment is being created.
|
1334
|
+
#
|
1335
|
+
# @option params [String] :environment_blueprint_identifier
|
1336
|
+
# The ID of the blueprint with which the environment is being created.
|
1337
|
+
#
|
1298
1338
|
# @option params [required, String] :environment_profile_identifier
|
1299
1339
|
# The identifier of the environment profile that is used to create this
|
1300
1340
|
# Amazon DataZone environment.
|
@@ -1342,6 +1382,9 @@ module Aws::DataZone
|
|
1342
1382
|
# resp = client.create_environment({
|
1343
1383
|
# description: "String",
|
1344
1384
|
# domain_identifier: "DomainId", # required
|
1385
|
+
# environment_account_identifier: "String",
|
1386
|
+
# environment_account_region: "String",
|
1387
|
+
# environment_blueprint_identifier: "String",
|
1345
1388
|
# environment_profile_identifier: "EnvironmentProfileId", # required
|
1346
1389
|
# glossary_terms: ["GlossaryTermId"],
|
1347
1390
|
# name: "String", # required
|
@@ -1411,6 +1454,67 @@ module Aws::DataZone
|
|
1411
1454
|
req.send_request(options)
|
1412
1455
|
end
|
1413
1456
|
|
1457
|
+
# Creates an action for the environment, for example, creates a console
|
1458
|
+
# link for an analytics tool that is available in this environment.
|
1459
|
+
#
|
1460
|
+
# @option params [String] :description
|
1461
|
+
# The description of the environment action that is being created in the
|
1462
|
+
# environment.
|
1463
|
+
#
|
1464
|
+
# @option params [required, String] :domain_identifier
|
1465
|
+
# The ID of the Amazon DataZone domain in which the environment action
|
1466
|
+
# is created.
|
1467
|
+
#
|
1468
|
+
# @option params [required, String] :environment_identifier
|
1469
|
+
# The ID of the environment in which the environment action is created.
|
1470
|
+
#
|
1471
|
+
# @option params [required, String] :name
|
1472
|
+
# The name of the environment action.
|
1473
|
+
#
|
1474
|
+
# @option params [required, Types::ActionParameters] :parameters
|
1475
|
+
# The parameters of the environment action.
|
1476
|
+
#
|
1477
|
+
# @return [Types::CreateEnvironmentActionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1478
|
+
#
|
1479
|
+
# * {Types::CreateEnvironmentActionOutput#description #description} => String
|
1480
|
+
# * {Types::CreateEnvironmentActionOutput#domain_id #domain_id} => String
|
1481
|
+
# * {Types::CreateEnvironmentActionOutput#environment_id #environment_id} => String
|
1482
|
+
# * {Types::CreateEnvironmentActionOutput#id #id} => String
|
1483
|
+
# * {Types::CreateEnvironmentActionOutput#name #name} => String
|
1484
|
+
# * {Types::CreateEnvironmentActionOutput#parameters #parameters} => Types::ActionParameters
|
1485
|
+
#
|
1486
|
+
# @example Request syntax with placeholder values
|
1487
|
+
#
|
1488
|
+
# resp = client.create_environment_action({
|
1489
|
+
# description: "String",
|
1490
|
+
# domain_identifier: "DomainId", # required
|
1491
|
+
# environment_identifier: "EnvironmentId", # required
|
1492
|
+
# name: "String", # required
|
1493
|
+
# parameters: { # required
|
1494
|
+
# aws_console_link: {
|
1495
|
+
# uri: "String",
|
1496
|
+
# },
|
1497
|
+
# },
|
1498
|
+
# })
|
1499
|
+
#
|
1500
|
+
# @example Response structure
|
1501
|
+
#
|
1502
|
+
# resp.description #=> String
|
1503
|
+
# resp.domain_id #=> String
|
1504
|
+
# resp.environment_id #=> String
|
1505
|
+
# resp.id #=> String
|
1506
|
+
# resp.name #=> String
|
1507
|
+
# resp.parameters.aws_console_link.uri #=> String
|
1508
|
+
#
|
1509
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentAction AWS API Documentation
|
1510
|
+
#
|
1511
|
+
# @overload create_environment_action(params = {})
|
1512
|
+
# @param [Hash] params ({})
|
1513
|
+
def create_environment_action(params = {}, options = {})
|
1514
|
+
req = build_request(:create_environment_action, params)
|
1515
|
+
req.send_request(options)
|
1516
|
+
end
|
1517
|
+
|
1414
1518
|
# Creates an Amazon DataZone environment profile.
|
1415
1519
|
#
|
1416
1520
|
# @option params [String] :aws_account_id
|
@@ -2336,6 +2440,10 @@ module Aws::DataZone
|
|
2336
2440
|
# @option params [required, String] :identifier
|
2337
2441
|
# The identifier of the data source that is deleted.
|
2338
2442
|
#
|
2443
|
+
# @option params [Boolean] :retain_permissions_on_revoke_failure
|
2444
|
+
# Specifies that the granted permissions are retained in case of a
|
2445
|
+
# self-subscribe functionality failure for a data source.
|
2446
|
+
#
|
2339
2447
|
# @return [Types::DeleteDataSourceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2340
2448
|
#
|
2341
2449
|
# * {Types::DeleteDataSourceOutput#asset_forms_output #asset_forms_output} => Array<Types::FormOutput>
|
@@ -2353,7 +2461,9 @@ module Aws::DataZone
|
|
2353
2461
|
# * {Types::DeleteDataSourceOutput#name #name} => String
|
2354
2462
|
# * {Types::DeleteDataSourceOutput#project_id #project_id} => String
|
2355
2463
|
# * {Types::DeleteDataSourceOutput#publish_on_import #publish_on_import} => Boolean
|
2464
|
+
# * {Types::DeleteDataSourceOutput#retain_permissions_on_revoke_failure #retain_permissions_on_revoke_failure} => Boolean
|
2356
2465
|
# * {Types::DeleteDataSourceOutput#schedule #schedule} => Types::ScheduleConfiguration
|
2466
|
+
# * {Types::DeleteDataSourceOutput#self_grant_status #self_grant_status} => Types::SelfGrantStatusOutput
|
2357
2467
|
# * {Types::DeleteDataSourceOutput#status #status} => String
|
2358
2468
|
# * {Types::DeleteDataSourceOutput#type #type} => String
|
2359
2469
|
# * {Types::DeleteDataSourceOutput#updated_at #updated_at} => Time
|
@@ -2364,6 +2474,7 @@ module Aws::DataZone
|
|
2364
2474
|
# client_token: "String",
|
2365
2475
|
# domain_identifier: "DomainId", # required
|
2366
2476
|
# identifier: "DataSourceId", # required
|
2477
|
+
# retain_permissions_on_revoke_failure: false,
|
2367
2478
|
# })
|
2368
2479
|
#
|
2369
2480
|
# @example Response structure
|
@@ -2410,8 +2521,19 @@ module Aws::DataZone
|
|
2410
2521
|
# resp.name #=> String
|
2411
2522
|
# resp.project_id #=> String
|
2412
2523
|
# resp.publish_on_import #=> Boolean
|
2524
|
+
# resp.retain_permissions_on_revoke_failure #=> Boolean
|
2413
2525
|
# resp.schedule.schedule #=> String
|
2414
2526
|
# 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"
|
2527
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details #=> Array
|
2528
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].database_name #=> String
|
2529
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].failure_cause #=> String
|
2530
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].schema_name #=> String
|
2531
|
+
# 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"
|
2532
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details #=> Array
|
2533
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].database_name #=> String
|
2534
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].failure_cause #=> String
|
2535
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].schema_name #=> String
|
2536
|
+
# 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
2537
|
# resp.status #=> String, one of "CREATING", "FAILED_CREATION", "READY", "UPDATING", "FAILED_UPDATE", "RUNNING", "DELETING", "FAILED_DELETION"
|
2416
2538
|
# resp.type #=> String
|
2417
2539
|
# resp.updated_at #=> Time
|
@@ -2494,6 +2616,38 @@ module Aws::DataZone
|
|
2494
2616
|
req.send_request(options)
|
2495
2617
|
end
|
2496
2618
|
|
2619
|
+
# Deletes an action for the environment, for example, deletes a console
|
2620
|
+
# link for an analytics tool that is available in this environment.
|
2621
|
+
#
|
2622
|
+
# @option params [required, String] :domain_identifier
|
2623
|
+
# The ID of the Amazon DataZone domain in which an environment action is
|
2624
|
+
# deleted.
|
2625
|
+
#
|
2626
|
+
# @option params [required, String] :environment_identifier
|
2627
|
+
# The ID of the environment where an environment action is deleted.
|
2628
|
+
#
|
2629
|
+
# @option params [required, String] :identifier
|
2630
|
+
# The ID of the environment action that is deleted.
|
2631
|
+
#
|
2632
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2633
|
+
#
|
2634
|
+
# @example Request syntax with placeholder values
|
2635
|
+
#
|
2636
|
+
# resp = client.delete_environment_action({
|
2637
|
+
# domain_identifier: "DomainId", # required
|
2638
|
+
# environment_identifier: "EnvironmentId", # required
|
2639
|
+
# identifier: "String", # required
|
2640
|
+
# })
|
2641
|
+
#
|
2642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteEnvironmentAction AWS API Documentation
|
2643
|
+
#
|
2644
|
+
# @overload delete_environment_action(params = {})
|
2645
|
+
# @param [Hash] params ({})
|
2646
|
+
def delete_environment_action(params = {}, options = {})
|
2647
|
+
req = build_request(:delete_environment_action, params)
|
2648
|
+
req.send_request(options)
|
2649
|
+
end
|
2650
|
+
|
2497
2651
|
# Deletes the blueprint configuration in Amazon DataZone.
|
2498
2652
|
#
|
2499
2653
|
# @option params [required, String] :domain_identifier
|
@@ -2884,6 +3038,37 @@ module Aws::DataZone
|
|
2884
3038
|
req.send_request(options)
|
2885
3039
|
end
|
2886
3040
|
|
3041
|
+
# Disassociates the environment role in Amazon DataZone.
|
3042
|
+
#
|
3043
|
+
# @option params [required, String] :domain_identifier
|
3044
|
+
# The ID of the Amazon DataZone domain in which an environment role is
|
3045
|
+
# disassociated.
|
3046
|
+
#
|
3047
|
+
# @option params [required, String] :environment_identifier
|
3048
|
+
# The ID of the environment.
|
3049
|
+
#
|
3050
|
+
# @option params [required, String] :environment_role_arn
|
3051
|
+
# The ARN of the environment role.
|
3052
|
+
#
|
3053
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3054
|
+
#
|
3055
|
+
# @example Request syntax with placeholder values
|
3056
|
+
#
|
3057
|
+
# resp = client.disassociate_environment_role({
|
3058
|
+
# domain_identifier: "DomainId", # required
|
3059
|
+
# environment_identifier: "EnvironmentId", # required
|
3060
|
+
# environment_role_arn: "String", # required
|
3061
|
+
# })
|
3062
|
+
#
|
3063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DisassociateEnvironmentRole AWS API Documentation
|
3064
|
+
#
|
3065
|
+
# @overload disassociate_environment_role(params = {})
|
3066
|
+
# @param [Hash] params ({})
|
3067
|
+
def disassociate_environment_role(params = {}, options = {})
|
3068
|
+
req = build_request(:disassociate_environment_role, params)
|
3069
|
+
req.send_request(options)
|
3070
|
+
end
|
3071
|
+
|
2887
3072
|
# Gets an Amazon DataZone asset.
|
2888
3073
|
#
|
2889
3074
|
# @option params [required, String] :domain_identifier
|
@@ -3059,6 +3244,7 @@ module Aws::DataZone
|
|
3059
3244
|
# * {Types::GetDataSourceOutput#publish_on_import #publish_on_import} => Boolean
|
3060
3245
|
# * {Types::GetDataSourceOutput#recommendation #recommendation} => Types::RecommendationConfiguration
|
3061
3246
|
# * {Types::GetDataSourceOutput#schedule #schedule} => Types::ScheduleConfiguration
|
3247
|
+
# * {Types::GetDataSourceOutput#self_grant_status #self_grant_status} => Types::SelfGrantStatusOutput
|
3062
3248
|
# * {Types::GetDataSourceOutput#status #status} => String
|
3063
3249
|
# * {Types::GetDataSourceOutput#type #type} => String
|
3064
3250
|
# * {Types::GetDataSourceOutput#updated_at #updated_at} => Time
|
@@ -3118,6 +3304,16 @@ module Aws::DataZone
|
|
3118
3304
|
# resp.recommendation.enable_business_name_generation #=> Boolean
|
3119
3305
|
# resp.schedule.schedule #=> String
|
3120
3306
|
# 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"
|
3307
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details #=> Array
|
3308
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].database_name #=> String
|
3309
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].failure_cause #=> String
|
3310
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].schema_name #=> String
|
3311
|
+
# 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"
|
3312
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details #=> Array
|
3313
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].database_name #=> String
|
3314
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].failure_cause #=> String
|
3315
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].schema_name #=> String
|
3316
|
+
# 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
3317
|
# resp.status #=> String, one of "CREATING", "FAILED_CREATION", "READY", "UPDATING", "FAILED_UPDATE", "RUNNING", "DELETING", "FAILED_DELETION"
|
3122
3318
|
# resp.type #=> String
|
3123
3319
|
# resp.updated_at #=> Time
|
@@ -3340,6 +3536,53 @@ module Aws::DataZone
|
|
3340
3536
|
req.send_request(options)
|
3341
3537
|
end
|
3342
3538
|
|
3539
|
+
# Gets the specified environment action.
|
3540
|
+
#
|
3541
|
+
# @option params [required, String] :domain_identifier
|
3542
|
+
# The ID of the Amazon DataZone domain in which the
|
3543
|
+
# `GetEnvironmentAction` API is invoked.
|
3544
|
+
#
|
3545
|
+
# @option params [required, String] :environment_identifier
|
3546
|
+
# The environment ID of the environment action.
|
3547
|
+
#
|
3548
|
+
# @option params [required, String] :identifier
|
3549
|
+
# The ID of the environment action
|
3550
|
+
#
|
3551
|
+
# @return [Types::GetEnvironmentActionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3552
|
+
#
|
3553
|
+
# * {Types::GetEnvironmentActionOutput#description #description} => String
|
3554
|
+
# * {Types::GetEnvironmentActionOutput#domain_id #domain_id} => String
|
3555
|
+
# * {Types::GetEnvironmentActionOutput#environment_id #environment_id} => String
|
3556
|
+
# * {Types::GetEnvironmentActionOutput#id #id} => String
|
3557
|
+
# * {Types::GetEnvironmentActionOutput#name #name} => String
|
3558
|
+
# * {Types::GetEnvironmentActionOutput#parameters #parameters} => Types::ActionParameters
|
3559
|
+
#
|
3560
|
+
# @example Request syntax with placeholder values
|
3561
|
+
#
|
3562
|
+
# resp = client.get_environment_action({
|
3563
|
+
# domain_identifier: "DomainId", # required
|
3564
|
+
# environment_identifier: "EnvironmentId", # required
|
3565
|
+
# identifier: "String", # required
|
3566
|
+
# })
|
3567
|
+
#
|
3568
|
+
# @example Response structure
|
3569
|
+
#
|
3570
|
+
# resp.description #=> String
|
3571
|
+
# resp.domain_id #=> String
|
3572
|
+
# resp.environment_id #=> String
|
3573
|
+
# resp.id #=> String
|
3574
|
+
# resp.name #=> String
|
3575
|
+
# resp.parameters.aws_console_link.uri #=> String
|
3576
|
+
#
|
3577
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetEnvironmentAction AWS API Documentation
|
3578
|
+
#
|
3579
|
+
# @overload get_environment_action(params = {})
|
3580
|
+
# @param [Hash] params ({})
|
3581
|
+
def get_environment_action(params = {}, options = {})
|
3582
|
+
req = build_request(:get_environment_action, params)
|
3583
|
+
req.send_request(options)
|
3584
|
+
end
|
3585
|
+
|
3343
3586
|
# Gets an Amazon DataZone blueprint.
|
3344
3587
|
#
|
3345
3588
|
# @option params [required, String] :domain_identifier
|
@@ -4639,6 +4882,66 @@ module Aws::DataZone
|
|
4639
4882
|
req.send_request(options)
|
4640
4883
|
end
|
4641
4884
|
|
4885
|
+
# Lists existing environment actions.
|
4886
|
+
#
|
4887
|
+
# @option params [required, String] :domain_identifier
|
4888
|
+
# The ID of the Amazon DataZone domain in which the environment actions
|
4889
|
+
# are listed.
|
4890
|
+
#
|
4891
|
+
# @option params [required, String] :environment_identifier
|
4892
|
+
# The ID of the envrironment whose environment actions are listed.
|
4893
|
+
#
|
4894
|
+
# @option params [Integer] :max_results
|
4895
|
+
# The maximum number of environment actions to return in a single call
|
4896
|
+
# to `ListEnvironmentActions`. When the number of environment actions to
|
4897
|
+
# be listed is greater than the value of `MaxResults`, the response
|
4898
|
+
# contains a `NextToken` value that you can use in a subsequent call to
|
4899
|
+
# `ListEnvironmentActions` to list the next set of environment actions.
|
4900
|
+
#
|
4901
|
+
# @option params [String] :next_token
|
4902
|
+
# When the number of environment actions is greater than the default
|
4903
|
+
# value for the `MaxResults` parameter, or if you explicitly specify a
|
4904
|
+
# value for `MaxResults` that is less than the number of environment
|
4905
|
+
# actions, the response includes a pagination token named `NextToken`.
|
4906
|
+
# You can specify this `NextToken` value in a subsequent call to
|
4907
|
+
# `ListEnvironmentActions` to list the next set of environment actions.
|
4908
|
+
#
|
4909
|
+
# @return [Types::ListEnvironmentActionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4910
|
+
#
|
4911
|
+
# * {Types::ListEnvironmentActionsOutput#items #items} => Array<Types::EnvironmentActionSummary>
|
4912
|
+
# * {Types::ListEnvironmentActionsOutput#next_token #next_token} => String
|
4913
|
+
#
|
4914
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4915
|
+
#
|
4916
|
+
# @example Request syntax with placeholder values
|
4917
|
+
#
|
4918
|
+
# resp = client.list_environment_actions({
|
4919
|
+
# domain_identifier: "DomainId", # required
|
4920
|
+
# environment_identifier: "EnvironmentId", # required
|
4921
|
+
# max_results: 1,
|
4922
|
+
# next_token: "PaginationToken",
|
4923
|
+
# })
|
4924
|
+
#
|
4925
|
+
# @example Response structure
|
4926
|
+
#
|
4927
|
+
# resp.items #=> Array
|
4928
|
+
# resp.items[0].description #=> String
|
4929
|
+
# resp.items[0].domain_id #=> String
|
4930
|
+
# resp.items[0].environment_id #=> String
|
4931
|
+
# resp.items[0].id #=> String
|
4932
|
+
# resp.items[0].name #=> String
|
4933
|
+
# resp.items[0].parameters.aws_console_link.uri #=> String
|
4934
|
+
# resp.next_token #=> String
|
4935
|
+
#
|
4936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListEnvironmentActions AWS API Documentation
|
4937
|
+
#
|
4938
|
+
# @overload list_environment_actions(params = {})
|
4939
|
+
# @param [Hash] params ({})
|
4940
|
+
def list_environment_actions(params = {}, options = {})
|
4941
|
+
req = build_request(:list_environment_actions, params)
|
4942
|
+
req.send_request(options)
|
4943
|
+
end
|
4944
|
+
|
4642
4945
|
# Lists blueprint configurations for a Amazon DataZone environment.
|
4643
4946
|
#
|
4644
4947
|
# @option params [required, String] :domain_identifier
|
@@ -6845,6 +7148,10 @@ module Aws::DataZone
|
|
6845
7148
|
# The recommendation to be updated as part of the `UpdateDataSource`
|
6846
7149
|
# action.
|
6847
7150
|
#
|
7151
|
+
# @option params [Boolean] :retain_permissions_on_revoke_failure
|
7152
|
+
# Specifies that the granted permissions are retained in case of a
|
7153
|
+
# self-subscribe functionality failure for a data source.
|
7154
|
+
#
|
6848
7155
|
# @option params [Types::ScheduleConfiguration] :schedule
|
6849
7156
|
# The schedule to be updated as part of the `UpdateDataSource` action.
|
6850
7157
|
#
|
@@ -6866,7 +7173,9 @@ module Aws::DataZone
|
|
6866
7173
|
# * {Types::UpdateDataSourceOutput#project_id #project_id} => String
|
6867
7174
|
# * {Types::UpdateDataSourceOutput#publish_on_import #publish_on_import} => Boolean
|
6868
7175
|
# * {Types::UpdateDataSourceOutput#recommendation #recommendation} => Types::RecommendationConfiguration
|
7176
|
+
# * {Types::UpdateDataSourceOutput#retain_permissions_on_revoke_failure #retain_permissions_on_revoke_failure} => Boolean
|
6869
7177
|
# * {Types::UpdateDataSourceOutput#schedule #schedule} => Types::ScheduleConfiguration
|
7178
|
+
# * {Types::UpdateDataSourceOutput#self_grant_status #self_grant_status} => Types::SelfGrantStatusOutput
|
6870
7179
|
# * {Types::UpdateDataSourceOutput#status #status} => String
|
6871
7180
|
# * {Types::UpdateDataSourceOutput#type #type} => String
|
6872
7181
|
# * {Types::UpdateDataSourceOutput#updated_at #updated_at} => Time
|
@@ -6935,6 +7244,7 @@ module Aws::DataZone
|
|
6935
7244
|
# recommendation: {
|
6936
7245
|
# enable_business_name_generation: false,
|
6937
7246
|
# },
|
7247
|
+
# retain_permissions_on_revoke_failure: false,
|
6938
7248
|
# schedule: {
|
6939
7249
|
# schedule: "CronString",
|
6940
7250
|
# 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 +7296,19 @@ module Aws::DataZone
|
|
6986
7296
|
# resp.project_id #=> String
|
6987
7297
|
# resp.publish_on_import #=> Boolean
|
6988
7298
|
# resp.recommendation.enable_business_name_generation #=> Boolean
|
7299
|
+
# resp.retain_permissions_on_revoke_failure #=> Boolean
|
6989
7300
|
# resp.schedule.schedule #=> String
|
6990
7301
|
# 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"
|
7302
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details #=> Array
|
7303
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].database_name #=> String
|
7304
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].failure_cause #=> String
|
7305
|
+
# resp.self_grant_status.glue_self_grant_status.self_grant_status_details[0].schema_name #=> String
|
7306
|
+
# 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"
|
7307
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details #=> Array
|
7308
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].database_name #=> String
|
7309
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].failure_cause #=> String
|
7310
|
+
# resp.self_grant_status.redshift_self_grant_status.self_grant_status_details[0].schema_name #=> String
|
7311
|
+
# 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
7312
|
# resp.status #=> String, one of "CREATING", "FAILED_CREATION", "READY", "UPDATING", "FAILED_UPDATE", "RUNNING", "DELETING", "FAILED_DELETION"
|
6992
7313
|
# resp.type #=> String
|
6993
7314
|
# resp.updated_at #=> Time
|
@@ -7180,6 +7501,68 @@ module Aws::DataZone
|
|
7180
7501
|
req.send_request(options)
|
7181
7502
|
end
|
7182
7503
|
|
7504
|
+
# Updates an environment action.
|
7505
|
+
#
|
7506
|
+
# @option params [String] :description
|
7507
|
+
# The description of the environment action.
|
7508
|
+
#
|
7509
|
+
# @option params [required, String] :domain_identifier
|
7510
|
+
# The domain ID of the environment action.
|
7511
|
+
#
|
7512
|
+
# @option params [required, String] :environment_identifier
|
7513
|
+
# The environment ID of the environment action.
|
7514
|
+
#
|
7515
|
+
# @option params [required, String] :identifier
|
7516
|
+
# The ID of the environment action.
|
7517
|
+
#
|
7518
|
+
# @option params [String] :name
|
7519
|
+
# The name of the environment action.
|
7520
|
+
#
|
7521
|
+
# @option params [Types::ActionParameters] :parameters
|
7522
|
+
# The parameters of the environment action.
|
7523
|
+
#
|
7524
|
+
# @return [Types::UpdateEnvironmentActionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7525
|
+
#
|
7526
|
+
# * {Types::UpdateEnvironmentActionOutput#description #description} => String
|
7527
|
+
# * {Types::UpdateEnvironmentActionOutput#domain_id #domain_id} => String
|
7528
|
+
# * {Types::UpdateEnvironmentActionOutput#environment_id #environment_id} => String
|
7529
|
+
# * {Types::UpdateEnvironmentActionOutput#id #id} => String
|
7530
|
+
# * {Types::UpdateEnvironmentActionOutput#name #name} => String
|
7531
|
+
# * {Types::UpdateEnvironmentActionOutput#parameters #parameters} => Types::ActionParameters
|
7532
|
+
#
|
7533
|
+
# @example Request syntax with placeholder values
|
7534
|
+
#
|
7535
|
+
# resp = client.update_environment_action({
|
7536
|
+
# description: "String",
|
7537
|
+
# domain_identifier: "DomainId", # required
|
7538
|
+
# environment_identifier: "EnvironmentId", # required
|
7539
|
+
# identifier: "String", # required
|
7540
|
+
# name: "String",
|
7541
|
+
# parameters: {
|
7542
|
+
# aws_console_link: {
|
7543
|
+
# uri: "String",
|
7544
|
+
# },
|
7545
|
+
# },
|
7546
|
+
# })
|
7547
|
+
#
|
7548
|
+
# @example Response structure
|
7549
|
+
#
|
7550
|
+
# resp.description #=> String
|
7551
|
+
# resp.domain_id #=> String
|
7552
|
+
# resp.environment_id #=> String
|
7553
|
+
# resp.id #=> String
|
7554
|
+
# resp.name #=> String
|
7555
|
+
# resp.parameters.aws_console_link.uri #=> String
|
7556
|
+
#
|
7557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentAction AWS API Documentation
|
7558
|
+
#
|
7559
|
+
# @overload update_environment_action(params = {})
|
7560
|
+
# @param [Hash] params ({})
|
7561
|
+
def update_environment_action(params = {}, options = {})
|
7562
|
+
req = build_request(:update_environment_action, params)
|
7563
|
+
req.send_request(options)
|
7564
|
+
end
|
7565
|
+
|
7183
7566
|
# Updates the specified environment profile in Amazon DataZone.
|
7184
7567
|
#
|
7185
7568
|
# @option params [String] :aws_account_id
|
@@ -7854,7 +8237,7 @@ module Aws::DataZone
|
|
7854
8237
|
params: params,
|
7855
8238
|
config: config)
|
7856
8239
|
context[:gem_name] = 'aws-sdk-datazone'
|
7857
|
-
context[:gem_version] = '1.
|
8240
|
+
context[:gem_version] = '1.9.0'
|
7858
8241
|
Seahorse::Client::Request.new(handlers, context)
|
7859
8242
|
end
|
7860
8243
|
|