aws-sdk-glue 1.177.0 → 1.179.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +244 -3
- data/lib/aws-sdk-glue/client_api.rb +160 -0
- data/lib/aws-sdk-glue/endpoints.rb +70 -0
- data/lib/aws-sdk-glue/errors.rb +16 -0
- data/lib/aws-sdk-glue/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-glue/types.rb +291 -5
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +88 -1
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +90 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4219986e9bea5e3bbd1ed0a0b4f2cb436ecc9046efc8d1a39c589c9b32691ff9
|
4
|
+
data.tar.gz: 6b23c8a36504d930662db691233e8fefbb084b71b08bedd8f3992663dc68fe91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0be801e08eca16f6f18a8c4e965bff4777ba5a5d49668e0f273566145200491a2c55e3a43ec1c44202d43967ee5d637064d46ad4a76b588206798a432ec2afd
|
7
|
+
data.tar.gz: b6dcc741a0b42bdddb31d3a1cfd548a4f41fcf24e37d1b3eafda1a00a27fe15ba944a28e31c33767063a4db0e73b49719acb4891a145847a67edaaeb7ec8a5cf
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.179.0 (2024-06-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release introduces a new feature, Usage profiles. Usage profiles allow the AWS Glue admin to create different profiles for various classes of users within the account, enforcing limits and defaults for jobs and sessions.
|
8
|
+
|
9
|
+
1.178.0 (2024-06-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for configuration of evaluation method for composite rules in Glue Data Quality rulesets.
|
13
|
+
|
4
14
|
1.177.0 (2024-06-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.179.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -1971,6 +1971,7 @@ module Aws::Glue
|
|
1971
1971
|
# resp.jobs[0].source_control_details.auth_strategy #=> String, one of "PERSONAL_ACCESS_TOKEN", "AWS_SECRETS_MANAGER"
|
1972
1972
|
# resp.jobs[0].source_control_details.auth_token #=> String
|
1973
1973
|
# resp.jobs[0].maintenance_window #=> String
|
1974
|
+
# resp.jobs[0].profile_name #=> String
|
1974
1975
|
# resp.jobs_not_found #=> Array
|
1975
1976
|
# resp.jobs_not_found[0] #=> String
|
1976
1977
|
#
|
@@ -2307,6 +2308,7 @@ module Aws::Glue
|
|
2307
2308
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
|
2308
2309
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
2309
2310
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
2311
|
+
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
|
2310
2312
|
# resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls #=> Array
|
2311
2313
|
# resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
2312
2314
|
# resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -2377,6 +2379,7 @@ module Aws::Glue
|
|
2377
2379
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
|
2378
2380
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
2379
2381
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
2382
|
+
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].profile_name #=> String
|
2380
2383
|
# resp.workflows[0].graph.nodes[0].crawler_details.crawls #=> Array
|
2381
2384
|
# resp.workflows[0].graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
2382
2385
|
# resp.workflows[0].graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -4515,6 +4518,7 @@ module Aws::Glue
|
|
4515
4518
|
# resp.session.execution_time #=> Float
|
4516
4519
|
# resp.session.dpu_seconds #=> Float
|
4517
4520
|
# resp.session.idle_timeout #=> Integer
|
4521
|
+
# resp.session.profile_name #=> String
|
4518
4522
|
#
|
4519
4523
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateSession AWS API Documentation
|
4520
4524
|
#
|
@@ -4832,6 +4836,66 @@ module Aws::Glue
|
|
4832
4836
|
req.send_request(options)
|
4833
4837
|
end
|
4834
4838
|
|
4839
|
+
# Creates an Glue usage profile.
|
4840
|
+
#
|
4841
|
+
# @option params [required, String] :name
|
4842
|
+
# The name of the usage profile.
|
4843
|
+
#
|
4844
|
+
# @option params [String] :description
|
4845
|
+
# A description of the usage profile.
|
4846
|
+
#
|
4847
|
+
# @option params [required, Types::ProfileConfiguration] :configuration
|
4848
|
+
# A `ProfileConfiguration` object specifying the job and session values
|
4849
|
+
# for the profile.
|
4850
|
+
#
|
4851
|
+
# @option params [Hash<String,String>] :tags
|
4852
|
+
# A list of tags applied to the usage profile.
|
4853
|
+
#
|
4854
|
+
# @return [Types::CreateUsageProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4855
|
+
#
|
4856
|
+
# * {Types::CreateUsageProfileResponse#name #name} => String
|
4857
|
+
#
|
4858
|
+
# @example Request syntax with placeholder values
|
4859
|
+
#
|
4860
|
+
# resp = client.create_usage_profile({
|
4861
|
+
# name: "NameString", # required
|
4862
|
+
# description: "DescriptionString",
|
4863
|
+
# configuration: { # required
|
4864
|
+
# session_configuration: {
|
4865
|
+
# "NameString" => {
|
4866
|
+
# default_value: "ConfigValueString",
|
4867
|
+
# allowed_values: ["ConfigValueString"],
|
4868
|
+
# min_value: "ConfigValueString",
|
4869
|
+
# max_value: "ConfigValueString",
|
4870
|
+
# },
|
4871
|
+
# },
|
4872
|
+
# job_configuration: {
|
4873
|
+
# "NameString" => {
|
4874
|
+
# default_value: "ConfigValueString",
|
4875
|
+
# allowed_values: ["ConfigValueString"],
|
4876
|
+
# min_value: "ConfigValueString",
|
4877
|
+
# max_value: "ConfigValueString",
|
4878
|
+
# },
|
4879
|
+
# },
|
4880
|
+
# },
|
4881
|
+
# tags: {
|
4882
|
+
# "TagKey" => "TagValue",
|
4883
|
+
# },
|
4884
|
+
# })
|
4885
|
+
#
|
4886
|
+
# @example Response structure
|
4887
|
+
#
|
4888
|
+
# resp.name #=> String
|
4889
|
+
#
|
4890
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateUsageProfile AWS API Documentation
|
4891
|
+
#
|
4892
|
+
# @overload create_usage_profile(params = {})
|
4893
|
+
# @param [Hash] params ({})
|
4894
|
+
def create_usage_profile(params = {}, options = {})
|
4895
|
+
req = build_request(:create_usage_profile, params)
|
4896
|
+
req.send_request(options)
|
4897
|
+
end
|
4898
|
+
|
4835
4899
|
# Creates a new function definition in the Data Catalog.
|
4836
4900
|
#
|
4837
4901
|
# @option params [String] :catalog_id
|
@@ -5738,6 +5802,28 @@ module Aws::Glue
|
|
5738
5802
|
req.send_request(options)
|
5739
5803
|
end
|
5740
5804
|
|
5805
|
+
# Deletes the Glue specified usage profile.
|
5806
|
+
#
|
5807
|
+
# @option params [required, String] :name
|
5808
|
+
# The name of the usage profile to delete.
|
5809
|
+
#
|
5810
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5811
|
+
#
|
5812
|
+
# @example Request syntax with placeholder values
|
5813
|
+
#
|
5814
|
+
# resp = client.delete_usage_profile({
|
5815
|
+
# name: "NameString", # required
|
5816
|
+
# })
|
5817
|
+
#
|
5818
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteUsageProfile AWS API Documentation
|
5819
|
+
#
|
5820
|
+
# @overload delete_usage_profile(params = {})
|
5821
|
+
# @param [Hash] params ({})
|
5822
|
+
def delete_usage_profile(params = {}, options = {})
|
5823
|
+
req = build_request(:delete_usage_profile, params)
|
5824
|
+
req.send_request(options)
|
5825
|
+
end
|
5826
|
+
|
5741
5827
|
# Deletes an existing function definition from the Data Catalog.
|
5742
5828
|
#
|
5743
5829
|
# @option params [String] :catalog_id
|
@@ -7078,6 +7164,7 @@ module Aws::Glue
|
|
7078
7164
|
# resp.timeout #=> Integer
|
7079
7165
|
# resp.additional_run_options.cloud_watch_metrics_enabled #=> Boolean
|
7080
7166
|
# resp.additional_run_options.results_s3_prefix #=> String
|
7167
|
+
# resp.additional_run_options.composite_rule_evaluation_method #=> String, one of "COLUMN", "ROW"
|
7081
7168
|
# resp.status #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
|
7082
7169
|
# resp.error_string #=> String
|
7083
7170
|
# resp.started_on #=> Time
|
@@ -8300,6 +8387,7 @@ module Aws::Glue
|
|
8300
8387
|
# resp.job.source_control_details.auth_strategy #=> String, one of "PERSONAL_ACCESS_TOKEN", "AWS_SECRETS_MANAGER"
|
8301
8388
|
# resp.job.source_control_details.auth_token #=> String
|
8302
8389
|
# resp.job.maintenance_window #=> String
|
8390
|
+
# resp.job.profile_name #=> String
|
8303
8391
|
#
|
8304
8392
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJob AWS API Documentation
|
8305
8393
|
#
|
@@ -8362,7 +8450,8 @@ module Aws::Glue
|
|
8362
8450
|
req.send_request(options)
|
8363
8451
|
end
|
8364
8452
|
|
8365
|
-
# Retrieves the metadata for a given job run.
|
8453
|
+
# Retrieves the metadata for a given job run. Job run history is
|
8454
|
+
# accessible for 90 days for your workflow and job run.
|
8366
8455
|
#
|
8367
8456
|
# @option params [required, String] :job_name
|
8368
8457
|
# Name of the job definition being run.
|
@@ -8416,6 +8505,7 @@ module Aws::Glue
|
|
8416
8505
|
# resp.job_run.dpu_seconds #=> Float
|
8417
8506
|
# resp.job_run.execution_class #=> String, one of "FLEX", "STANDARD"
|
8418
8507
|
# resp.job_run.maintenance_window #=> String
|
8508
|
+
# resp.job_run.profile_name #=> String
|
8419
8509
|
#
|
8420
8510
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobRun AWS API Documentation
|
8421
8511
|
#
|
@@ -8484,6 +8574,7 @@ module Aws::Glue
|
|
8484
8574
|
# resp.job_runs[0].dpu_seconds #=> Float
|
8485
8575
|
# resp.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
8486
8576
|
# resp.job_runs[0].maintenance_window #=> String
|
8577
|
+
# resp.job_runs[0].profile_name #=> String
|
8487
8578
|
# resp.next_token #=> String
|
8488
8579
|
#
|
8489
8580
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobRuns AWS API Documentation
|
@@ -9403,6 +9494,7 @@ module Aws::Glue
|
|
9403
9494
|
# resp.jobs[0].source_control_details.auth_strategy #=> String, one of "PERSONAL_ACCESS_TOKEN", "AWS_SECRETS_MANAGER"
|
9404
9495
|
# resp.jobs[0].source_control_details.auth_token #=> String
|
9405
9496
|
# resp.jobs[0].maintenance_window #=> String
|
9497
|
+
# resp.jobs[0].profile_name #=> String
|
9406
9498
|
# resp.next_token #=> String
|
9407
9499
|
#
|
9408
9500
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobs AWS API Documentation
|
@@ -10793,6 +10885,7 @@ module Aws::Glue
|
|
10793
10885
|
# resp.session.execution_time #=> Float
|
10794
10886
|
# resp.session.dpu_seconds #=> Float
|
10795
10887
|
# resp.session.idle_timeout #=> Integer
|
10888
|
+
# resp.session.profile_name #=> String
|
10796
10889
|
#
|
10797
10890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetSession AWS API Documentation
|
10798
10891
|
#
|
@@ -12163,6 +12256,53 @@ module Aws::Glue
|
|
12163
12256
|
req.send_request(options)
|
12164
12257
|
end
|
12165
12258
|
|
12259
|
+
# Retrieves information about the specified Glue usage profile.
|
12260
|
+
#
|
12261
|
+
# @option params [required, String] :name
|
12262
|
+
# The name of the usage profile to retrieve.
|
12263
|
+
#
|
12264
|
+
# @return [Types::GetUsageProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12265
|
+
#
|
12266
|
+
# * {Types::GetUsageProfileResponse#name #name} => String
|
12267
|
+
# * {Types::GetUsageProfileResponse#description #description} => String
|
12268
|
+
# * {Types::GetUsageProfileResponse#configuration #configuration} => Types::ProfileConfiguration
|
12269
|
+
# * {Types::GetUsageProfileResponse#created_on #created_on} => Time
|
12270
|
+
# * {Types::GetUsageProfileResponse#last_modified_on #last_modified_on} => Time
|
12271
|
+
#
|
12272
|
+
# @example Request syntax with placeholder values
|
12273
|
+
#
|
12274
|
+
# resp = client.get_usage_profile({
|
12275
|
+
# name: "NameString", # required
|
12276
|
+
# })
|
12277
|
+
#
|
12278
|
+
# @example Response structure
|
12279
|
+
#
|
12280
|
+
# resp.name #=> String
|
12281
|
+
# resp.description #=> String
|
12282
|
+
# resp.configuration.session_configuration #=> Hash
|
12283
|
+
# resp.configuration.session_configuration["NameString"].default_value #=> String
|
12284
|
+
# resp.configuration.session_configuration["NameString"].allowed_values #=> Array
|
12285
|
+
# resp.configuration.session_configuration["NameString"].allowed_values[0] #=> String
|
12286
|
+
# resp.configuration.session_configuration["NameString"].min_value #=> String
|
12287
|
+
# resp.configuration.session_configuration["NameString"].max_value #=> String
|
12288
|
+
# resp.configuration.job_configuration #=> Hash
|
12289
|
+
# resp.configuration.job_configuration["NameString"].default_value #=> String
|
12290
|
+
# resp.configuration.job_configuration["NameString"].allowed_values #=> Array
|
12291
|
+
# resp.configuration.job_configuration["NameString"].allowed_values[0] #=> String
|
12292
|
+
# resp.configuration.job_configuration["NameString"].min_value #=> String
|
12293
|
+
# resp.configuration.job_configuration["NameString"].max_value #=> String
|
12294
|
+
# resp.created_on #=> Time
|
12295
|
+
# resp.last_modified_on #=> Time
|
12296
|
+
#
|
12297
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetUsageProfile AWS API Documentation
|
12298
|
+
#
|
12299
|
+
# @overload get_usage_profile(params = {})
|
12300
|
+
# @param [Hash] params ({})
|
12301
|
+
def get_usage_profile(params = {}, options = {})
|
12302
|
+
req = build_request(:get_usage_profile, params)
|
12303
|
+
req.send_request(options)
|
12304
|
+
end
|
12305
|
+
|
12166
12306
|
# Retrieves a specified function definition from the Data Catalog.
|
12167
12307
|
#
|
12168
12308
|
# @option params [String] :catalog_id
|
@@ -12376,6 +12516,7 @@ module Aws::Glue
|
|
12376
12516
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
|
12377
12517
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
12378
12518
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
12519
|
+
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
|
12379
12520
|
# resp.workflow.last_run.graph.nodes[0].crawler_details.crawls #=> Array
|
12380
12521
|
# resp.workflow.last_run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
12381
12522
|
# resp.workflow.last_run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -12446,6 +12587,7 @@ module Aws::Glue
|
|
12446
12587
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
|
12447
12588
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
12448
12589
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
12590
|
+
# resp.workflow.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
|
12449
12591
|
# resp.workflow.graph.nodes[0].crawler_details.crawls #=> Array
|
12450
12592
|
# resp.workflow.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
12451
12593
|
# resp.workflow.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -12469,7 +12611,8 @@ module Aws::Glue
|
|
12469
12611
|
req.send_request(options)
|
12470
12612
|
end
|
12471
12613
|
|
12472
|
-
# Retrieves the metadata for a given workflow run.
|
12614
|
+
# Retrieves the metadata for a given workflow run. Job run history is
|
12615
|
+
# accessible for 90 days for your workflow and job run.
|
12473
12616
|
#
|
12474
12617
|
# @option params [required, String] :name
|
12475
12618
|
# Name of the workflow being run.
|
@@ -12569,6 +12712,7 @@ module Aws::Glue
|
|
12569
12712
|
# resp.run.graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
|
12570
12713
|
# resp.run.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
12571
12714
|
# resp.run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
12715
|
+
# resp.run.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
|
12572
12716
|
# resp.run.graph.nodes[0].crawler_details.crawls #=> Array
|
12573
12717
|
# resp.run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
12574
12718
|
# resp.run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -12732,6 +12876,7 @@ module Aws::Glue
|
|
12732
12876
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
|
12733
12877
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
12734
12878
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
12879
|
+
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].profile_name #=> String
|
12735
12880
|
# resp.runs[0].graph.nodes[0].crawler_details.crawls #=> Array
|
12736
12881
|
# resp.runs[0].graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
12737
12882
|
# resp.runs[0].graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -13695,6 +13840,7 @@ module Aws::Glue
|
|
13695
13840
|
# resp.sessions[0].execution_time #=> Float
|
13696
13841
|
# resp.sessions[0].dpu_seconds #=> Float
|
13697
13842
|
# resp.sessions[0].idle_timeout #=> Integer
|
13843
|
+
# resp.sessions[0].profile_name #=> String
|
13698
13844
|
# resp.next_token #=> String
|
13699
13845
|
#
|
13700
13846
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListSessions AWS API Documentation
|
@@ -13881,6 +14027,46 @@ module Aws::Glue
|
|
13881
14027
|
req.send_request(options)
|
13882
14028
|
end
|
13883
14029
|
|
14030
|
+
# List all the Glue usage profiles.
|
14031
|
+
#
|
14032
|
+
# @option params [String] :next_token
|
14033
|
+
# A continuation token, included if this is a continuation call.
|
14034
|
+
#
|
14035
|
+
# @option params [Integer] :max_results
|
14036
|
+
# The maximum number of usage profiles to return in a single response.
|
14037
|
+
#
|
14038
|
+
# @return [Types::ListUsageProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14039
|
+
#
|
14040
|
+
# * {Types::ListUsageProfilesResponse#profiles #profiles} => Array<Types::UsageProfileDefinition>
|
14041
|
+
# * {Types::ListUsageProfilesResponse#next_token #next_token} => String
|
14042
|
+
#
|
14043
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
14044
|
+
#
|
14045
|
+
# @example Request syntax with placeholder values
|
14046
|
+
#
|
14047
|
+
# resp = client.list_usage_profiles({
|
14048
|
+
# next_token: "OrchestrationToken",
|
14049
|
+
# max_results: 1,
|
14050
|
+
# })
|
14051
|
+
#
|
14052
|
+
# @example Response structure
|
14053
|
+
#
|
14054
|
+
# resp.profiles #=> Array
|
14055
|
+
# resp.profiles[0].name #=> String
|
14056
|
+
# resp.profiles[0].description #=> String
|
14057
|
+
# resp.profiles[0].created_on #=> Time
|
14058
|
+
# resp.profiles[0].last_modified_on #=> Time
|
14059
|
+
# resp.next_token #=> String
|
14060
|
+
#
|
14061
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListUsageProfiles AWS API Documentation
|
14062
|
+
#
|
14063
|
+
# @overload list_usage_profiles(params = {})
|
14064
|
+
# @param [Hash] params ({})
|
14065
|
+
def list_usage_profiles(params = {}, options = {})
|
14066
|
+
req = build_request(:list_usage_profiles, params)
|
14067
|
+
req.send_request(options)
|
14068
|
+
end
|
14069
|
+
|
13884
14070
|
# Lists names of workflows created in the account.
|
13885
14071
|
#
|
13886
14072
|
# @option params [String] :next_token
|
@@ -14902,6 +15088,7 @@ module Aws::Glue
|
|
14902
15088
|
# additional_run_options: {
|
14903
15089
|
# cloud_watch_metrics_enabled: false,
|
14904
15090
|
# results_s3_prefix: "UriString",
|
15091
|
+
# composite_rule_evaluation_method: "COLUMN", # accepts COLUMN, ROW
|
14905
15092
|
# },
|
14906
15093
|
# ruleset_names: ["NameString"], # required
|
14907
15094
|
# additional_data_sources: {
|
@@ -17203,6 +17390,60 @@ module Aws::Glue
|
|
17203
17390
|
req.send_request(options)
|
17204
17391
|
end
|
17205
17392
|
|
17393
|
+
# Update an Glue usage profile.
|
17394
|
+
#
|
17395
|
+
# @option params [required, String] :name
|
17396
|
+
# The name of the usage profile.
|
17397
|
+
#
|
17398
|
+
# @option params [String] :description
|
17399
|
+
# A description of the usage profile.
|
17400
|
+
#
|
17401
|
+
# @option params [required, Types::ProfileConfiguration] :configuration
|
17402
|
+
# A `ProfileConfiguration` object specifying the job and session values
|
17403
|
+
# for the profile.
|
17404
|
+
#
|
17405
|
+
# @return [Types::UpdateUsageProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17406
|
+
#
|
17407
|
+
# * {Types::UpdateUsageProfileResponse#name #name} => String
|
17408
|
+
#
|
17409
|
+
# @example Request syntax with placeholder values
|
17410
|
+
#
|
17411
|
+
# resp = client.update_usage_profile({
|
17412
|
+
# name: "NameString", # required
|
17413
|
+
# description: "DescriptionString",
|
17414
|
+
# configuration: { # required
|
17415
|
+
# session_configuration: {
|
17416
|
+
# "NameString" => {
|
17417
|
+
# default_value: "ConfigValueString",
|
17418
|
+
# allowed_values: ["ConfigValueString"],
|
17419
|
+
# min_value: "ConfigValueString",
|
17420
|
+
# max_value: "ConfigValueString",
|
17421
|
+
# },
|
17422
|
+
# },
|
17423
|
+
# job_configuration: {
|
17424
|
+
# "NameString" => {
|
17425
|
+
# default_value: "ConfigValueString",
|
17426
|
+
# allowed_values: ["ConfigValueString"],
|
17427
|
+
# min_value: "ConfigValueString",
|
17428
|
+
# max_value: "ConfigValueString",
|
17429
|
+
# },
|
17430
|
+
# },
|
17431
|
+
# },
|
17432
|
+
# })
|
17433
|
+
#
|
17434
|
+
# @example Response structure
|
17435
|
+
#
|
17436
|
+
# resp.name #=> String
|
17437
|
+
#
|
17438
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateUsageProfile AWS API Documentation
|
17439
|
+
#
|
17440
|
+
# @overload update_usage_profile(params = {})
|
17441
|
+
# @param [Hash] params ({})
|
17442
|
+
def update_usage_profile(params = {}, options = {})
|
17443
|
+
req = build_request(:update_usage_profile, params)
|
17444
|
+
req.send_request(options)
|
17445
|
+
end
|
17446
|
+
|
17206
17447
|
# Updates an existing function definition in the Data Catalog.
|
17207
17448
|
#
|
17208
17449
|
# @option params [String] :catalog_id
|
@@ -17312,7 +17553,7 @@ module Aws::Glue
|
|
17312
17553
|
params: params,
|
17313
17554
|
config: config)
|
17314
17555
|
context[:gem_name] = 'aws-sdk-glue'
|
17315
|
-
context[:gem_version] = '1.
|
17556
|
+
context[:gem_version] = '1.179.0'
|
17316
17557
|
Seahorse::Client::Request.new(handlers, context)
|
17317
17558
|
end
|
17318
17559
|
|