aws-sdk-glue 1.92.0 → 1.96.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +396 -3
- data/lib/aws-sdk-glue/client_api.rb +282 -0
- data/lib/aws-sdk-glue/errors.rb +16 -0
- data/lib/aws-sdk-glue/types.rb +636 -6
- data/lib/aws-sdk-glue.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f9e288e0aa75021d15e6123bea41a073e96363ccc104c917e0853610088af33
|
4
|
+
data.tar.gz: e9ad486ede02bbf98d1dc27fd685b4dace5a43b5ac581620faed37d496c36a65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b02c0021080c377532f362f1b0a1bd8f82edc89b9b66df2959ab8baaeebcc13a86d02658fdbbbd5a8d0a18512955abb3686c29a3b7410db1c6df0db04d702c6e
|
7
|
+
data.tar.gz: 40f88ba620d419dadb625b6e6e5ae4f6fec53966b092eff89ce8b7e076490891e55ffb1860ddb648e0db955d8ad957ad002f907d83a70b42a28b94a263dba152
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.96.0 (2021-10-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds tag as an input of CreateConnection
|
8
|
+
|
9
|
+
1.95.0 (2021-09-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.94.0 (2021-08-23)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Add support for Custom Blueprints
|
18
|
+
|
19
|
+
1.93.0 (2021-08-03)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Add ConcurrentModificationException to create-table, delete-table, create-database, update-database, delete-database
|
23
|
+
|
4
24
|
1.92.0 (2021-07-30)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.96.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -637,6 +637,60 @@ module Aws::Glue
|
|
637
637
|
req.send_request(options)
|
638
638
|
end
|
639
639
|
|
640
|
+
# Retrieves information about a list of blueprints.
|
641
|
+
#
|
642
|
+
# @option params [required, Array<String>] :names
|
643
|
+
# A list of blueprint names.
|
644
|
+
#
|
645
|
+
# @option params [Boolean] :include_blueprint
|
646
|
+
# Specifies whether or not to include the blueprint in the response.
|
647
|
+
#
|
648
|
+
# @option params [Boolean] :include_parameter_spec
|
649
|
+
# Specifies whether or not to include the parameters, as a JSON string,
|
650
|
+
# for the blueprint in the response.
|
651
|
+
#
|
652
|
+
# @return [Types::BatchGetBlueprintsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
653
|
+
#
|
654
|
+
# * {Types::BatchGetBlueprintsResponse#blueprints #blueprints} => Array<Types::Blueprint>
|
655
|
+
# * {Types::BatchGetBlueprintsResponse#missing_blueprints #missing_blueprints} => Array<String>
|
656
|
+
#
|
657
|
+
# @example Request syntax with placeholder values
|
658
|
+
#
|
659
|
+
# resp = client.batch_get_blueprints({
|
660
|
+
# names: ["OrchestrationNameString"], # required
|
661
|
+
# include_blueprint: false,
|
662
|
+
# include_parameter_spec: false,
|
663
|
+
# })
|
664
|
+
#
|
665
|
+
# @example Response structure
|
666
|
+
#
|
667
|
+
# resp.blueprints #=> Array
|
668
|
+
# resp.blueprints[0].name #=> String
|
669
|
+
# resp.blueprints[0].description #=> String
|
670
|
+
# resp.blueprints[0].created_on #=> Time
|
671
|
+
# resp.blueprints[0].last_modified_on #=> Time
|
672
|
+
# resp.blueprints[0].parameter_spec #=> String
|
673
|
+
# resp.blueprints[0].blueprint_location #=> String
|
674
|
+
# resp.blueprints[0].blueprint_service_location #=> String
|
675
|
+
# resp.blueprints[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "FAILED"
|
676
|
+
# resp.blueprints[0].error_message #=> String
|
677
|
+
# resp.blueprints[0].last_active_definition.description #=> String
|
678
|
+
# resp.blueprints[0].last_active_definition.last_modified_on #=> Time
|
679
|
+
# resp.blueprints[0].last_active_definition.parameter_spec #=> String
|
680
|
+
# resp.blueprints[0].last_active_definition.blueprint_location #=> String
|
681
|
+
# resp.blueprints[0].last_active_definition.blueprint_service_location #=> String
|
682
|
+
# resp.missing_blueprints #=> Array
|
683
|
+
# resp.missing_blueprints[0] #=> String
|
684
|
+
#
|
685
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchGetBlueprints AWS API Documentation
|
686
|
+
#
|
687
|
+
# @overload batch_get_blueprints(params = {})
|
688
|
+
# @param [Hash] params ({})
|
689
|
+
def batch_get_blueprints(params = {}, options = {})
|
690
|
+
req = build_request(:batch_get_blueprints, params)
|
691
|
+
req.send_request(options)
|
692
|
+
end
|
693
|
+
|
640
694
|
# Returns a list of resource metadata for a given list of crawler names.
|
641
695
|
# After calling the `ListCrawlers` operation, you can call this
|
642
696
|
# operation to access the data to which you have been granted
|
@@ -1182,6 +1236,8 @@ module Aws::Glue
|
|
1182
1236
|
# resp.workflows[0].graph.edges[0].source_id #=> String
|
1183
1237
|
# resp.workflows[0].graph.edges[0].destination_id #=> String
|
1184
1238
|
# resp.workflows[0].max_concurrent_runs #=> Integer
|
1239
|
+
# resp.workflows[0].blueprint_details.blueprint_name #=> String
|
1240
|
+
# resp.workflows[0].blueprint_details.run_id #=> String
|
1185
1241
|
# resp.missing_workflows #=> Array
|
1186
1242
|
# resp.missing_workflows[0] #=> String
|
1187
1243
|
#
|
@@ -1424,6 +1480,48 @@ module Aws::Glue
|
|
1424
1480
|
req.send_request(options)
|
1425
1481
|
end
|
1426
1482
|
|
1483
|
+
# Registers a blueprint with Glue.
|
1484
|
+
#
|
1485
|
+
# @option params [required, String] :name
|
1486
|
+
# The name of the blueprint.
|
1487
|
+
#
|
1488
|
+
# @option params [String] :description
|
1489
|
+
# A description of the blueprint.
|
1490
|
+
#
|
1491
|
+
# @option params [required, String] :blueprint_location
|
1492
|
+
# Specifies a path in Amazon S3 where the blueprint is published.
|
1493
|
+
#
|
1494
|
+
# @option params [Hash<String,String>] :tags
|
1495
|
+
# The tags to be applied to this blueprint.
|
1496
|
+
#
|
1497
|
+
# @return [Types::CreateBlueprintResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1498
|
+
#
|
1499
|
+
# * {Types::CreateBlueprintResponse#name #name} => String
|
1500
|
+
#
|
1501
|
+
# @example Request syntax with placeholder values
|
1502
|
+
#
|
1503
|
+
# resp = client.create_blueprint({
|
1504
|
+
# name: "OrchestrationNameString", # required
|
1505
|
+
# description: "Generic512CharString",
|
1506
|
+
# blueprint_location: "OrchestrationS3Location", # required
|
1507
|
+
# tags: {
|
1508
|
+
# "TagKey" => "TagValue",
|
1509
|
+
# },
|
1510
|
+
# })
|
1511
|
+
#
|
1512
|
+
# @example Response structure
|
1513
|
+
#
|
1514
|
+
# resp.name #=> String
|
1515
|
+
#
|
1516
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateBlueprint AWS API Documentation
|
1517
|
+
#
|
1518
|
+
# @overload create_blueprint(params = {})
|
1519
|
+
# @param [Hash] params ({})
|
1520
|
+
def create_blueprint(params = {}, options = {})
|
1521
|
+
req = build_request(:create_blueprint, params)
|
1522
|
+
req.send_request(options)
|
1523
|
+
end
|
1524
|
+
|
1427
1525
|
# Creates a classifier in the user's account. This can be a
|
1428
1526
|
# `GrokClassifier`, an `XMLClassifier`, a `JsonClassifier`, or a
|
1429
1527
|
# `CsvClassifier`, depending on which field of the request is present.
|
@@ -1489,6 +1587,9 @@ module Aws::Glue
|
|
1489
1587
|
# @option params [required, Types::ConnectionInput] :connection_input
|
1490
1588
|
# A `ConnectionInput` object defining the connection to create.
|
1491
1589
|
#
|
1590
|
+
# @option params [Hash<String,String>] :tags
|
1591
|
+
# The tags you assign to the connection.
|
1592
|
+
#
|
1492
1593
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1493
1594
|
#
|
1494
1595
|
# @example Request syntax with placeholder values
|
@@ -1509,6 +1610,9 @@ module Aws::Glue
|
|
1509
1610
|
# availability_zone: "NameString",
|
1510
1611
|
# },
|
1511
1612
|
# },
|
1613
|
+
# tags: {
|
1614
|
+
# "TagKey" => "TagValue",
|
1615
|
+
# },
|
1512
1616
|
# })
|
1513
1617
|
#
|
1514
1618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateConnection AWS API Documentation
|
@@ -3109,6 +3213,34 @@ module Aws::Glue
|
|
3109
3213
|
req.send_request(options)
|
3110
3214
|
end
|
3111
3215
|
|
3216
|
+
# Deletes an existing blueprint.
|
3217
|
+
#
|
3218
|
+
# @option params [required, String] :name
|
3219
|
+
# The name of the blueprint to delete.
|
3220
|
+
#
|
3221
|
+
# @return [Types::DeleteBlueprintResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3222
|
+
#
|
3223
|
+
# * {Types::DeleteBlueprintResponse#name #name} => String
|
3224
|
+
#
|
3225
|
+
# @example Request syntax with placeholder values
|
3226
|
+
#
|
3227
|
+
# resp = client.delete_blueprint({
|
3228
|
+
# name: "NameString", # required
|
3229
|
+
# })
|
3230
|
+
#
|
3231
|
+
# @example Response structure
|
3232
|
+
#
|
3233
|
+
# resp.name #=> String
|
3234
|
+
#
|
3235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteBlueprint AWS API Documentation
|
3236
|
+
#
|
3237
|
+
# @overload delete_blueprint(params = {})
|
3238
|
+
# @param [Hash] params ({})
|
3239
|
+
def delete_blueprint(params = {}, options = {})
|
3240
|
+
req = build_request(:delete_blueprint, params)
|
3241
|
+
req.send_request(options)
|
3242
|
+
end
|
3243
|
+
|
3112
3244
|
# Removes a classifier from the Data Catalog.
|
3113
3245
|
#
|
3114
3246
|
# @option params [required, String] :name
|
@@ -3829,6 +3961,146 @@ module Aws::Glue
|
|
3829
3961
|
req.send_request(options)
|
3830
3962
|
end
|
3831
3963
|
|
3964
|
+
# Retrieves the details of a blueprint.
|
3965
|
+
#
|
3966
|
+
# @option params [required, String] :name
|
3967
|
+
# The name of the blueprint.
|
3968
|
+
#
|
3969
|
+
# @option params [Boolean] :include_blueprint
|
3970
|
+
# Specifies whether or not to include the blueprint in the response.
|
3971
|
+
#
|
3972
|
+
# @option params [Boolean] :include_parameter_spec
|
3973
|
+
# Specifies whether or not to include the parameter specification.
|
3974
|
+
#
|
3975
|
+
# @return [Types::GetBlueprintResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3976
|
+
#
|
3977
|
+
# * {Types::GetBlueprintResponse#blueprint #blueprint} => Types::Blueprint
|
3978
|
+
#
|
3979
|
+
# @example Request syntax with placeholder values
|
3980
|
+
#
|
3981
|
+
# resp = client.get_blueprint({
|
3982
|
+
# name: "NameString", # required
|
3983
|
+
# include_blueprint: false,
|
3984
|
+
# include_parameter_spec: false,
|
3985
|
+
# })
|
3986
|
+
#
|
3987
|
+
# @example Response structure
|
3988
|
+
#
|
3989
|
+
# resp.blueprint.name #=> String
|
3990
|
+
# resp.blueprint.description #=> String
|
3991
|
+
# resp.blueprint.created_on #=> Time
|
3992
|
+
# resp.blueprint.last_modified_on #=> Time
|
3993
|
+
# resp.blueprint.parameter_spec #=> String
|
3994
|
+
# resp.blueprint.blueprint_location #=> String
|
3995
|
+
# resp.blueprint.blueprint_service_location #=> String
|
3996
|
+
# resp.blueprint.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "FAILED"
|
3997
|
+
# resp.blueprint.error_message #=> String
|
3998
|
+
# resp.blueprint.last_active_definition.description #=> String
|
3999
|
+
# resp.blueprint.last_active_definition.last_modified_on #=> Time
|
4000
|
+
# resp.blueprint.last_active_definition.parameter_spec #=> String
|
4001
|
+
# resp.blueprint.last_active_definition.blueprint_location #=> String
|
4002
|
+
# resp.blueprint.last_active_definition.blueprint_service_location #=> String
|
4003
|
+
#
|
4004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprint AWS API Documentation
|
4005
|
+
#
|
4006
|
+
# @overload get_blueprint(params = {})
|
4007
|
+
# @param [Hash] params ({})
|
4008
|
+
def get_blueprint(params = {}, options = {})
|
4009
|
+
req = build_request(:get_blueprint, params)
|
4010
|
+
req.send_request(options)
|
4011
|
+
end
|
4012
|
+
|
4013
|
+
# Retrieves the details of a blueprint run.
|
4014
|
+
#
|
4015
|
+
# @option params [required, String] :blueprint_name
|
4016
|
+
# The name of the blueprint.
|
4017
|
+
#
|
4018
|
+
# @option params [required, String] :run_id
|
4019
|
+
# The run ID for the blueprint run you want to retrieve.
|
4020
|
+
#
|
4021
|
+
# @return [Types::GetBlueprintRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4022
|
+
#
|
4023
|
+
# * {Types::GetBlueprintRunResponse#blueprint_run #blueprint_run} => Types::BlueprintRun
|
4024
|
+
#
|
4025
|
+
# @example Request syntax with placeholder values
|
4026
|
+
#
|
4027
|
+
# resp = client.get_blueprint_run({
|
4028
|
+
# blueprint_name: "OrchestrationNameString", # required
|
4029
|
+
# run_id: "IdString", # required
|
4030
|
+
# })
|
4031
|
+
#
|
4032
|
+
# @example Response structure
|
4033
|
+
#
|
4034
|
+
# resp.blueprint_run.blueprint_name #=> String
|
4035
|
+
# resp.blueprint_run.run_id #=> String
|
4036
|
+
# resp.blueprint_run.workflow_name #=> String
|
4037
|
+
# resp.blueprint_run.state #=> String, one of "RUNNING", "SUCCEEDED", "FAILED", "ROLLING_BACK"
|
4038
|
+
# resp.blueprint_run.started_on #=> Time
|
4039
|
+
# resp.blueprint_run.completed_on #=> Time
|
4040
|
+
# resp.blueprint_run.error_message #=> String
|
4041
|
+
# resp.blueprint_run.rollback_error_message #=> String
|
4042
|
+
# resp.blueprint_run.parameters #=> String
|
4043
|
+
# resp.blueprint_run.role_arn #=> String
|
4044
|
+
#
|
4045
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintRun AWS API Documentation
|
4046
|
+
#
|
4047
|
+
# @overload get_blueprint_run(params = {})
|
4048
|
+
# @param [Hash] params ({})
|
4049
|
+
def get_blueprint_run(params = {}, options = {})
|
4050
|
+
req = build_request(:get_blueprint_run, params)
|
4051
|
+
req.send_request(options)
|
4052
|
+
end
|
4053
|
+
|
4054
|
+
# Retrieves the details of blueprint runs for a specified blueprint.
|
4055
|
+
#
|
4056
|
+
# @option params [required, String] :blueprint_name
|
4057
|
+
# The name of the blueprint.
|
4058
|
+
#
|
4059
|
+
# @option params [String] :next_token
|
4060
|
+
# A continuation token, if this is a continuation request.
|
4061
|
+
#
|
4062
|
+
# @option params [Integer] :max_results
|
4063
|
+
# The maximum size of a list to return.
|
4064
|
+
#
|
4065
|
+
# @return [Types::GetBlueprintRunsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4066
|
+
#
|
4067
|
+
# * {Types::GetBlueprintRunsResponse#blueprint_runs #blueprint_runs} => Array<Types::BlueprintRun>
|
4068
|
+
# * {Types::GetBlueprintRunsResponse#next_token #next_token} => String
|
4069
|
+
#
|
4070
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4071
|
+
#
|
4072
|
+
# @example Request syntax with placeholder values
|
4073
|
+
#
|
4074
|
+
# resp = client.get_blueprint_runs({
|
4075
|
+
# blueprint_name: "NameString", # required
|
4076
|
+
# next_token: "GenericString",
|
4077
|
+
# max_results: 1,
|
4078
|
+
# })
|
4079
|
+
#
|
4080
|
+
# @example Response structure
|
4081
|
+
#
|
4082
|
+
# resp.blueprint_runs #=> Array
|
4083
|
+
# resp.blueprint_runs[0].blueprint_name #=> String
|
4084
|
+
# resp.blueprint_runs[0].run_id #=> String
|
4085
|
+
# resp.blueprint_runs[0].workflow_name #=> String
|
4086
|
+
# resp.blueprint_runs[0].state #=> String, one of "RUNNING", "SUCCEEDED", "FAILED", "ROLLING_BACK"
|
4087
|
+
# resp.blueprint_runs[0].started_on #=> Time
|
4088
|
+
# resp.blueprint_runs[0].completed_on #=> Time
|
4089
|
+
# resp.blueprint_runs[0].error_message #=> String
|
4090
|
+
# resp.blueprint_runs[0].rollback_error_message #=> String
|
4091
|
+
# resp.blueprint_runs[0].parameters #=> String
|
4092
|
+
# resp.blueprint_runs[0].role_arn #=> String
|
4093
|
+
# resp.next_token #=> String
|
4094
|
+
#
|
4095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintRuns AWS API Documentation
|
4096
|
+
#
|
4097
|
+
# @overload get_blueprint_runs(params = {})
|
4098
|
+
# @param [Hash] params ({})
|
4099
|
+
def get_blueprint_runs(params = {}, options = {})
|
4100
|
+
req = build_request(:get_blueprint_runs, params)
|
4101
|
+
req.send_request(options)
|
4102
|
+
end
|
4103
|
+
|
3832
4104
|
# Retrieves the status of a migration operation.
|
3833
4105
|
#
|
3834
4106
|
# @option params [String] :catalog_id
|
@@ -5752,6 +6024,10 @@ module Aws::Glue
|
|
5752
6024
|
# The maximum number of partitions to return in a single response.
|
5753
6025
|
#
|
5754
6026
|
# @option params [Boolean] :exclude_column_schema
|
6027
|
+
# When true, specifies not returning the partition column schema. Useful
|
6028
|
+
# when you are interested only in other partition attributes such as
|
6029
|
+
# partition values or location. This approach avoids the problem of a
|
6030
|
+
# large response by not returning duplicate data.
|
5755
6031
|
#
|
5756
6032
|
# @return [Types::GetPartitionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5757
6033
|
#
|
@@ -7250,6 +7526,8 @@ module Aws::Glue
|
|
7250
7526
|
# resp.workflow.graph.edges[0].source_id #=> String
|
7251
7527
|
# resp.workflow.graph.edges[0].destination_id #=> String
|
7252
7528
|
# resp.workflow.max_concurrent_runs #=> Integer
|
7529
|
+
# resp.workflow.blueprint_details.blueprint_name #=> String
|
7530
|
+
# resp.workflow.blueprint_details.run_id #=> String
|
7253
7531
|
#
|
7254
7532
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetWorkflow AWS API Documentation
|
7255
7533
|
#
|
@@ -7557,6 +7835,49 @@ module Aws::Glue
|
|
7557
7835
|
req.send_request(options)
|
7558
7836
|
end
|
7559
7837
|
|
7838
|
+
# Lists all the blueprint names in an account.
|
7839
|
+
#
|
7840
|
+
# @option params [String] :next_token
|
7841
|
+
# A continuation token, if this is a continuation request.
|
7842
|
+
#
|
7843
|
+
# @option params [Integer] :max_results
|
7844
|
+
# The maximum size of a list to return.
|
7845
|
+
#
|
7846
|
+
# @option params [Hash<String,String>] :tags
|
7847
|
+
# Filters the list by an Amazon Web Services resource tag.
|
7848
|
+
#
|
7849
|
+
# @return [Types::ListBlueprintsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7850
|
+
#
|
7851
|
+
# * {Types::ListBlueprintsResponse#blueprints #blueprints} => Array<String>
|
7852
|
+
# * {Types::ListBlueprintsResponse#next_token #next_token} => String
|
7853
|
+
#
|
7854
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7855
|
+
#
|
7856
|
+
# @example Request syntax with placeholder values
|
7857
|
+
#
|
7858
|
+
# resp = client.list_blueprints({
|
7859
|
+
# next_token: "GenericString",
|
7860
|
+
# max_results: 1,
|
7861
|
+
# tags: {
|
7862
|
+
# "TagKey" => "TagValue",
|
7863
|
+
# },
|
7864
|
+
# })
|
7865
|
+
#
|
7866
|
+
# @example Response structure
|
7867
|
+
#
|
7868
|
+
# resp.blueprints #=> Array
|
7869
|
+
# resp.blueprints[0] #=> String
|
7870
|
+
# resp.next_token #=> String
|
7871
|
+
#
|
7872
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListBlueprints AWS API Documentation
|
7873
|
+
#
|
7874
|
+
# @overload list_blueprints(params = {})
|
7875
|
+
# @param [Hash] params ({})
|
7876
|
+
def list_blueprints(params = {}, options = {})
|
7877
|
+
req = build_request(:list_blueprints, params)
|
7878
|
+
req.send_request(options)
|
7879
|
+
end
|
7880
|
+
|
7560
7881
|
# Retrieves the names of all crawler resources in this Amazon Web
|
7561
7882
|
# Services account, or the resources with the specified tag. This
|
7562
7883
|
# operation allows you to see which resources are available in your
|
@@ -8109,8 +8430,8 @@ module Aws::Glue
|
|
8109
8430
|
#
|
8110
8431
|
# * By directly updating the resource policy with `PutResourePolicy`
|
8111
8432
|
#
|
8112
|
-
# * By using the **Grant permissions** command on the
|
8113
|
-
# Console.
|
8433
|
+
# * By using the **Grant permissions** command on the Amazon Web
|
8434
|
+
# Services Management Console.
|
8114
8435
|
#
|
8115
8436
|
# Must be set to `'TRUE'` if you have already used the Management
|
8116
8437
|
# Console to grant cross-account access, otherwise the call fails.
|
@@ -8686,6 +9007,42 @@ module Aws::Glue
|
|
8686
9007
|
req.send_request(options)
|
8687
9008
|
end
|
8688
9009
|
|
9010
|
+
# Starts a new run of the specified blueprint.
|
9011
|
+
#
|
9012
|
+
# @option params [required, String] :blueprint_name
|
9013
|
+
# The name of the blueprint.
|
9014
|
+
#
|
9015
|
+
# @option params [String] :parameters
|
9016
|
+
# Specifies the parameters as a `BlueprintParameters` object.
|
9017
|
+
#
|
9018
|
+
# @option params [required, String] :role_arn
|
9019
|
+
# Specifies the IAM role used to create the workflow.
|
9020
|
+
#
|
9021
|
+
# @return [Types::StartBlueprintRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9022
|
+
#
|
9023
|
+
# * {Types::StartBlueprintRunResponse#run_id #run_id} => String
|
9024
|
+
#
|
9025
|
+
# @example Request syntax with placeholder values
|
9026
|
+
#
|
9027
|
+
# resp = client.start_blueprint_run({
|
9028
|
+
# blueprint_name: "OrchestrationNameString", # required
|
9029
|
+
# parameters: "BlueprintParameters",
|
9030
|
+
# role_arn: "OrchestrationIAMRoleArn", # required
|
9031
|
+
# })
|
9032
|
+
#
|
9033
|
+
# @example Response structure
|
9034
|
+
#
|
9035
|
+
# resp.run_id #=> String
|
9036
|
+
#
|
9037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartBlueprintRun AWS API Documentation
|
9038
|
+
#
|
9039
|
+
# @overload start_blueprint_run(params = {})
|
9040
|
+
# @param [Hash] params ({})
|
9041
|
+
def start_blueprint_run(params = {}, options = {})
|
9042
|
+
req = build_request(:start_blueprint_run, params)
|
9043
|
+
req.send_request(options)
|
9044
|
+
end
|
9045
|
+
|
8689
9046
|
# Starts a crawl using the specified crawler, regardless of what is
|
8690
9047
|
# scheduled. If the crawler is already running, returns a
|
8691
9048
|
# [CrawlerRunningException][1].
|
@@ -9291,6 +9648,42 @@ module Aws::Glue
|
|
9291
9648
|
req.send_request(options)
|
9292
9649
|
end
|
9293
9650
|
|
9651
|
+
# Updates a registered blueprint.
|
9652
|
+
#
|
9653
|
+
# @option params [required, String] :name
|
9654
|
+
# The name of the blueprint.
|
9655
|
+
#
|
9656
|
+
# @option params [String] :description
|
9657
|
+
# A description of the blueprint.
|
9658
|
+
#
|
9659
|
+
# @option params [required, String] :blueprint_location
|
9660
|
+
# Specifies a path in Amazon S3 where the blueprint is published.
|
9661
|
+
#
|
9662
|
+
# @return [Types::UpdateBlueprintResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9663
|
+
#
|
9664
|
+
# * {Types::UpdateBlueprintResponse#name #name} => String
|
9665
|
+
#
|
9666
|
+
# @example Request syntax with placeholder values
|
9667
|
+
#
|
9668
|
+
# resp = client.update_blueprint({
|
9669
|
+
# name: "OrchestrationNameString", # required
|
9670
|
+
# description: "Generic512CharString",
|
9671
|
+
# blueprint_location: "OrchestrationS3Location", # required
|
9672
|
+
# })
|
9673
|
+
#
|
9674
|
+
# @example Response structure
|
9675
|
+
#
|
9676
|
+
# resp.name #=> String
|
9677
|
+
#
|
9678
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateBlueprint AWS API Documentation
|
9679
|
+
#
|
9680
|
+
# @overload update_blueprint(params = {})
|
9681
|
+
# @param [Hash] params ({})
|
9682
|
+
def update_blueprint(params = {}, options = {})
|
9683
|
+
req = build_request(:update_blueprint, params)
|
9684
|
+
req.send_request(options)
|
9685
|
+
end
|
9686
|
+
|
9294
9687
|
# Modifies an existing classifier (a `GrokClassifier`, an
|
9295
9688
|
# `XMLClassifier`, a `JsonClassifier`, or a `CsvClassifier`, depending
|
9296
9689
|
# on which field is present).
|
@@ -10665,7 +11058,7 @@ module Aws::Glue
|
|
10665
11058
|
params: params,
|
10666
11059
|
config: config)
|
10667
11060
|
context[:gem_name] = 'aws-sdk-glue'
|
10668
|
-
context[:gem_version] = '1.
|
11061
|
+
context[:gem_version] = '1.96.0'
|
10669
11062
|
Seahorse::Client::Request.new(handlers, context)
|
10670
11063
|
end
|
10671
11064
|
|