aws-sdk-deadline 1.41.0 → 1.42.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-deadline/client.rb +70 -43
- data/lib/aws-sdk-deadline/client_api.rb +24 -1
- data/lib/aws-sdk-deadline/types.rb +201 -111
- data/lib/aws-sdk-deadline/waiters.rb +141 -1
- data/lib/aws-sdk-deadline.rb +1 -1
- data/sig/client.rbs +46 -13
- data/sig/types.rbs +23 -3
- data/sig/waiters.rbs +24 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9197e3e11cf224d6ae88995a2d77643f63622dcbe5bc84038a634121bcd39e87
|
|
4
|
+
data.tar.gz: e365e03978d150f9fd99c3de30d0bddb8982fb6648896561a3ad17bfc991fbc8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 817f812182bbe7501859e3b3402ff3cd7606690667646f0440cc7b39386f4f328dd1b1c3c1fea1d65e6fcadd2752fe6c9238252b93d4021a3929a244db942c39
|
|
7
|
+
data.tar.gz: a8122ec1e17c9ebf6923c3afe12987254654e9d16465459d298b6a8ef1529073487a03a4f00e18bbfe1070eb90839152f6845d9d816eaf3a8d5b65e293c578d1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.42.0 (2026-01-15)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Deadline Cloud now supports tagging Budget resources with ABAC for permissions management and selecting up to 16 filter values in the monitor and Search API.
|
|
8
|
+
|
|
4
9
|
1.41.0 (2026-01-08)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.42.0
|
|
@@ -1031,6 +1031,10 @@ module Aws::Deadline
|
|
|
1031
1031
|
# @option params [required, Types::BudgetSchedule] :schedule
|
|
1032
1032
|
# The schedule to associate with this budget.
|
|
1033
1033
|
#
|
|
1034
|
+
# @option params [Hash<String,String>] :tags
|
|
1035
|
+
# Each tag consists of a tag key and a tag value. Tag keys and values
|
|
1036
|
+
# are both required, but tag values can be empty strings.
|
|
1037
|
+
#
|
|
1034
1038
|
# @return [Types::CreateBudgetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1035
1039
|
#
|
|
1036
1040
|
# * {Types::CreateBudgetResponse#budget_id #budget_id} => String
|
|
@@ -1059,6 +1063,9 @@ module Aws::Deadline
|
|
|
1059
1063
|
# end_time: Time.now, # required
|
|
1060
1064
|
# },
|
|
1061
1065
|
# },
|
|
1066
|
+
# tags: {
|
|
1067
|
+
# "String" => "String",
|
|
1068
|
+
# },
|
|
1062
1069
|
# })
|
|
1063
1070
|
#
|
|
1064
1071
|
# @example Response structure
|
|
@@ -1598,16 +1605,16 @@ module Aws::Deadline
|
|
|
1598
1605
|
# the content of this field.
|
|
1599
1606
|
#
|
|
1600
1607
|
# @option params [required, String] :identity_center_instance_arn
|
|
1601
|
-
# The Amazon Resource Name
|
|
1602
|
-
#
|
|
1608
|
+
# The Amazon Resource Name of the IAM Identity Center instance that
|
|
1609
|
+
# authenticates monitor users.
|
|
1603
1610
|
#
|
|
1604
1611
|
# @option params [required, String] :subdomain
|
|
1605
1612
|
# The subdomain to use when creating the monitor URL. The full URL of
|
|
1606
1613
|
# the monitor is subdomain.Region.deadlinecloud.amazonaws.com.
|
|
1607
1614
|
#
|
|
1608
1615
|
# @option params [required, String] :role_arn
|
|
1609
|
-
# The Amazon Resource Name
|
|
1610
|
-
#
|
|
1616
|
+
# The Amazon Resource Name of the IAM role that the monitor uses to
|
|
1617
|
+
# connect to Deadline Cloud. Every user that signs in to the monitor
|
|
1611
1618
|
# using IAM Identity Center uses this role to access Deadline Cloud
|
|
1612
1619
|
# resources.
|
|
1613
1620
|
#
|
|
@@ -2808,7 +2815,9 @@ module Aws::Deadline
|
|
|
2808
2815
|
#
|
|
2809
2816
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
2810
2817
|
#
|
|
2818
|
+
# * job_complete
|
|
2811
2819
|
# * job_create_complete
|
|
2820
|
+
# * job_succeeded
|
|
2812
2821
|
#
|
|
2813
2822
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/GetJob AWS API Documentation
|
|
2814
2823
|
#
|
|
@@ -3512,6 +3521,9 @@ module Aws::Deadline
|
|
|
3512
3521
|
# resp.parameter_space.parameters #=> Array
|
|
3513
3522
|
# resp.parameter_space.parameters[0].name #=> String
|
|
3514
3523
|
# resp.parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH", "CHUNK_INT"
|
|
3524
|
+
# resp.parameter_space.parameters[0].chunks.default_task_count #=> Integer
|
|
3525
|
+
# resp.parameter_space.parameters[0].chunks.target_runtime_seconds #=> Integer
|
|
3526
|
+
# resp.parameter_space.parameters[0].chunks.range_constraint #=> String, one of "CONTIGUOUS", "NONCONTIGUOUS"
|
|
3515
3527
|
# resp.parameter_space.combination #=> String
|
|
3516
3528
|
# resp.description #=> String
|
|
3517
3529
|
#
|
|
@@ -5451,19 +5463,16 @@ module Aws::Deadline
|
|
|
5451
5463
|
# The queue ID to use in the job search.
|
|
5452
5464
|
#
|
|
5453
5465
|
# @option params [Types::SearchGroupedFilterExpressions] :filter_expressions
|
|
5454
|
-
# The
|
|
5455
|
-
# group of search strings in a resource. You can use two groupings per
|
|
5456
|
-
# search each within parenthesis `()`.
|
|
5466
|
+
# The search terms for a resource.
|
|
5457
5467
|
#
|
|
5458
5468
|
# @option params [Array<Types::SearchSortExpression>] :sort_expressions
|
|
5459
5469
|
# The search terms for a resource.
|
|
5460
5470
|
#
|
|
5461
5471
|
# @option params [required, Integer] :item_offset
|
|
5462
|
-
#
|
|
5463
|
-
# results.
|
|
5472
|
+
# The offset for the search results.
|
|
5464
5473
|
#
|
|
5465
5474
|
# @option params [Integer] :page_size
|
|
5466
|
-
# Specifies the number of
|
|
5475
|
+
# Specifies the number of results to return.
|
|
5467
5476
|
#
|
|
5468
5477
|
# @return [Types::SearchJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5469
5478
|
#
|
|
@@ -5481,12 +5490,12 @@ module Aws::Deadline
|
|
|
5481
5490
|
# {
|
|
5482
5491
|
# date_time_filter: {
|
|
5483
5492
|
# name: "String", # required
|
|
5484
|
-
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN
|
|
5493
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5485
5494
|
# date_time: Time.now, # required
|
|
5486
5495
|
# },
|
|
5487
5496
|
# parameter_filter: {
|
|
5488
5497
|
# name: "String", # required
|
|
5489
|
-
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN
|
|
5498
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5490
5499
|
# value: "ParameterValue", # required
|
|
5491
5500
|
# },
|
|
5492
5501
|
# search_term_filter: {
|
|
@@ -5495,9 +5504,14 @@ module Aws::Deadline
|
|
|
5495
5504
|
# },
|
|
5496
5505
|
# string_filter: {
|
|
5497
5506
|
# name: "String", # required
|
|
5498
|
-
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN
|
|
5507
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5499
5508
|
# value: "StringFilter", # required
|
|
5500
5509
|
# },
|
|
5510
|
+
# string_list_filter: {
|
|
5511
|
+
# name: "String", # required
|
|
5512
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5513
|
+
# values: ["StringFilter"], # required
|
|
5514
|
+
# },
|
|
5501
5515
|
# group_filter: {
|
|
5502
5516
|
# # recursive SearchGroupedFilterExpressions
|
|
5503
5517
|
# },
|
|
@@ -5577,19 +5591,16 @@ module Aws::Deadline
|
|
|
5577
5591
|
# The job ID to use in the step search.
|
|
5578
5592
|
#
|
|
5579
5593
|
# @option params [Types::SearchGroupedFilterExpressions] :filter_expressions
|
|
5580
|
-
# The
|
|
5581
|
-
# group of search strings in a resource. You can use two groupings per
|
|
5582
|
-
# search each within parenthesis `()`.
|
|
5594
|
+
# The search terms for a resource.
|
|
5583
5595
|
#
|
|
5584
5596
|
# @option params [Array<Types::SearchSortExpression>] :sort_expressions
|
|
5585
5597
|
# The search terms for a resource.
|
|
5586
5598
|
#
|
|
5587
5599
|
# @option params [required, Integer] :item_offset
|
|
5588
|
-
#
|
|
5589
|
-
# results.
|
|
5600
|
+
# The offset for the search results.
|
|
5590
5601
|
#
|
|
5591
5602
|
# @option params [Integer] :page_size
|
|
5592
|
-
# Specifies the number of
|
|
5603
|
+
# Specifies the number of results to return.
|
|
5593
5604
|
#
|
|
5594
5605
|
# @return [Types::SearchStepsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5595
5606
|
#
|
|
@@ -5608,12 +5619,12 @@ module Aws::Deadline
|
|
|
5608
5619
|
# {
|
|
5609
5620
|
# date_time_filter: {
|
|
5610
5621
|
# name: "String", # required
|
|
5611
|
-
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN
|
|
5622
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5612
5623
|
# date_time: Time.now, # required
|
|
5613
5624
|
# },
|
|
5614
5625
|
# parameter_filter: {
|
|
5615
5626
|
# name: "String", # required
|
|
5616
|
-
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN
|
|
5627
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5617
5628
|
# value: "ParameterValue", # required
|
|
5618
5629
|
# },
|
|
5619
5630
|
# search_term_filter: {
|
|
@@ -5622,9 +5633,14 @@ module Aws::Deadline
|
|
|
5622
5633
|
# },
|
|
5623
5634
|
# string_filter: {
|
|
5624
5635
|
# name: "String", # required
|
|
5625
|
-
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN
|
|
5636
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5626
5637
|
# value: "StringFilter", # required
|
|
5627
5638
|
# },
|
|
5639
|
+
# string_list_filter: {
|
|
5640
|
+
# name: "String", # required
|
|
5641
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5642
|
+
# values: ["StringFilter"], # required
|
|
5643
|
+
# },
|
|
5628
5644
|
# group_filter: {
|
|
5629
5645
|
# # recursive SearchGroupedFilterExpressions
|
|
5630
5646
|
# },
|
|
@@ -5674,6 +5690,9 @@ module Aws::Deadline
|
|
|
5674
5690
|
# resp.steps[0].parameter_space.parameters #=> Array
|
|
5675
5691
|
# resp.steps[0].parameter_space.parameters[0].name #=> String
|
|
5676
5692
|
# resp.steps[0].parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH", "CHUNK_INT"
|
|
5693
|
+
# resp.steps[0].parameter_space.parameters[0].chunks.default_task_count #=> Integer
|
|
5694
|
+
# resp.steps[0].parameter_space.parameters[0].chunks.target_runtime_seconds #=> Integer
|
|
5695
|
+
# resp.steps[0].parameter_space.parameters[0].chunks.range_constraint #=> String, one of "CONTIGUOUS", "NONCONTIGUOUS"
|
|
5677
5696
|
# resp.steps[0].parameter_space.combination #=> String
|
|
5678
5697
|
# resp.next_item_offset #=> Integer
|
|
5679
5698
|
# resp.total_results #=> Integer
|
|
@@ -5699,19 +5718,16 @@ module Aws::Deadline
|
|
|
5699
5718
|
# The job ID for the task search.
|
|
5700
5719
|
#
|
|
5701
5720
|
# @option params [Types::SearchGroupedFilterExpressions] :filter_expressions
|
|
5702
|
-
# The
|
|
5703
|
-
# group of search strings in a resource. You can use two groupings per
|
|
5704
|
-
# search each within parenthesis `()`.
|
|
5721
|
+
# The search terms for a resource.
|
|
5705
5722
|
#
|
|
5706
5723
|
# @option params [Array<Types::SearchSortExpression>] :sort_expressions
|
|
5707
5724
|
# The search terms for a resource.
|
|
5708
5725
|
#
|
|
5709
5726
|
# @option params [required, Integer] :item_offset
|
|
5710
|
-
#
|
|
5711
|
-
# results.
|
|
5727
|
+
# The offset for the search results.
|
|
5712
5728
|
#
|
|
5713
5729
|
# @option params [Integer] :page_size
|
|
5714
|
-
# Specifies the number of
|
|
5730
|
+
# Specifies the number of results to return.
|
|
5715
5731
|
#
|
|
5716
5732
|
# @return [Types::SearchTasksResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5717
5733
|
#
|
|
@@ -5730,12 +5746,12 @@ module Aws::Deadline
|
|
|
5730
5746
|
# {
|
|
5731
5747
|
# date_time_filter: {
|
|
5732
5748
|
# name: "String", # required
|
|
5733
|
-
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN
|
|
5749
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5734
5750
|
# date_time: Time.now, # required
|
|
5735
5751
|
# },
|
|
5736
5752
|
# parameter_filter: {
|
|
5737
5753
|
# name: "String", # required
|
|
5738
|
-
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN
|
|
5754
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5739
5755
|
# value: "ParameterValue", # required
|
|
5740
5756
|
# },
|
|
5741
5757
|
# search_term_filter: {
|
|
@@ -5744,9 +5760,14 @@ module Aws::Deadline
|
|
|
5744
5760
|
# },
|
|
5745
5761
|
# string_filter: {
|
|
5746
5762
|
# name: "String", # required
|
|
5747
|
-
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN
|
|
5763
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5748
5764
|
# value: "StringFilter", # required
|
|
5749
5765
|
# },
|
|
5766
|
+
# string_list_filter: {
|
|
5767
|
+
# name: "String", # required
|
|
5768
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5769
|
+
# values: ["StringFilter"], # required
|
|
5770
|
+
# },
|
|
5750
5771
|
# group_filter: {
|
|
5751
5772
|
# # recursive SearchGroupedFilterExpressions
|
|
5752
5773
|
# },
|
|
@@ -5793,6 +5814,7 @@ module Aws::Deadline
|
|
|
5793
5814
|
# resp.tasks[0].ended_at #=> Time
|
|
5794
5815
|
# resp.tasks[0].updated_at #=> Time
|
|
5795
5816
|
# resp.tasks[0].updated_by #=> String
|
|
5817
|
+
# resp.tasks[0].latest_session_action_id #=> String
|
|
5796
5818
|
# resp.next_item_offset #=> Integer
|
|
5797
5819
|
# resp.total_results #=> Integer
|
|
5798
5820
|
#
|
|
@@ -5814,19 +5836,16 @@ module Aws::Deadline
|
|
|
5814
5836
|
# The fleet ID of the workers to search for.
|
|
5815
5837
|
#
|
|
5816
5838
|
# @option params [Types::SearchGroupedFilterExpressions] :filter_expressions
|
|
5817
|
-
# The
|
|
5818
|
-
# group of search strings in a resource. You can use two groupings per
|
|
5819
|
-
# search each within parenthesis `()`.
|
|
5839
|
+
# The search terms for a resource.
|
|
5820
5840
|
#
|
|
5821
5841
|
# @option params [Array<Types::SearchSortExpression>] :sort_expressions
|
|
5822
5842
|
# The search terms for a resource.
|
|
5823
5843
|
#
|
|
5824
5844
|
# @option params [required, Integer] :item_offset
|
|
5825
|
-
#
|
|
5826
|
-
# results.
|
|
5845
|
+
# The offset for the search results.
|
|
5827
5846
|
#
|
|
5828
5847
|
# @option params [Integer] :page_size
|
|
5829
|
-
# Specifies the number of
|
|
5848
|
+
# Specifies the number of results to return.
|
|
5830
5849
|
#
|
|
5831
5850
|
# @return [Types::SearchWorkersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5832
5851
|
#
|
|
@@ -5844,12 +5863,12 @@ module Aws::Deadline
|
|
|
5844
5863
|
# {
|
|
5845
5864
|
# date_time_filter: {
|
|
5846
5865
|
# name: "String", # required
|
|
5847
|
-
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN
|
|
5866
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5848
5867
|
# date_time: Time.now, # required
|
|
5849
5868
|
# },
|
|
5850
5869
|
# parameter_filter: {
|
|
5851
5870
|
# name: "String", # required
|
|
5852
|
-
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN
|
|
5871
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5853
5872
|
# value: "ParameterValue", # required
|
|
5854
5873
|
# },
|
|
5855
5874
|
# search_term_filter: {
|
|
@@ -5858,9 +5877,14 @@ module Aws::Deadline
|
|
|
5858
5877
|
# },
|
|
5859
5878
|
# string_filter: {
|
|
5860
5879
|
# name: "String", # required
|
|
5861
|
-
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN
|
|
5880
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5862
5881
|
# value: "StringFilter", # required
|
|
5863
5882
|
# },
|
|
5883
|
+
# string_list_filter: {
|
|
5884
|
+
# name: "String", # required
|
|
5885
|
+
# operator: "EQUAL", # required, accepts EQUAL, NOT_EQUAL, GREATER_THAN_EQUAL_TO, GREATER_THAN, LESS_THAN_EQUAL_TO, LESS_THAN, ANY_EQUALS, ALL_NOT_EQUALS
|
|
5886
|
+
# values: ["StringFilter"], # required
|
|
5887
|
+
# },
|
|
5864
5888
|
# group_filter: {
|
|
5865
5889
|
# # recursive SearchGroupedFilterExpressions
|
|
5866
5890
|
# },
|
|
@@ -6502,8 +6526,7 @@ module Aws::Deadline
|
|
|
6502
6526
|
# the content of this field.
|
|
6503
6527
|
#
|
|
6504
6528
|
# @option params [String] :role_arn
|
|
6505
|
-
# The Amazon Resource Name
|
|
6506
|
-
# monitor.
|
|
6529
|
+
# The Amazon Resource Name of the new IAM role to use with the monitor.
|
|
6507
6530
|
#
|
|
6508
6531
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
6509
6532
|
#
|
|
@@ -7129,7 +7152,7 @@ module Aws::Deadline
|
|
|
7129
7152
|
tracer: tracer
|
|
7130
7153
|
)
|
|
7131
7154
|
context[:gem_name] = 'aws-sdk-deadline'
|
|
7132
|
-
context[:gem_version] = '1.
|
|
7155
|
+
context[:gem_version] = '1.42.0'
|
|
7133
7156
|
Seahorse::Client::Request.new(handlers, context)
|
|
7134
7157
|
end
|
|
7135
7158
|
|
|
@@ -7198,7 +7221,9 @@ module Aws::Deadline
|
|
|
7198
7221
|
# | waiter_name | params | :delay | :max_attempts |
|
|
7199
7222
|
# | ------------------------------- | ------------------------------------ | -------- | ------------- |
|
|
7200
7223
|
# | fleet_active | {Client#get_fleet} | 5 | 180 |
|
|
7224
|
+
# | job_complete | {Client#get_job} | 15 | 240 |
|
|
7201
7225
|
# | job_create_complete | {Client#get_job} | 1 | 120 |
|
|
7226
|
+
# | job_succeeded | {Client#get_job} | 15 | 240 |
|
|
7202
7227
|
# | license_endpoint_deleted | {Client#get_license_endpoint} | 10 | 234 |
|
|
7203
7228
|
# | license_endpoint_valid | {Client#get_license_endpoint} | 10 | 114 |
|
|
7204
7229
|
# | queue_fleet_association_stopped | {Client#get_queue_fleet_association} | 10 | 60 |
|
|
@@ -7256,7 +7281,9 @@ module Aws::Deadline
|
|
|
7256
7281
|
def waiters
|
|
7257
7282
|
{
|
|
7258
7283
|
fleet_active: Waiters::FleetActive,
|
|
7284
|
+
job_complete: Waiters::JobComplete,
|
|
7259
7285
|
job_create_complete: Waiters::JobCreateComplete,
|
|
7286
|
+
job_succeeded: Waiters::JobSucceeded,
|
|
7260
7287
|
license_endpoint_deleted: Waiters::LicenseEndpointDeleted,
|
|
7261
7288
|
license_endpoint_valid: Waiters::LicenseEndpointValid,
|
|
7262
7289
|
queue_fleet_association_stopped: Waiters::QueueFleetAssociationStopped,
|
|
@@ -130,6 +130,7 @@ module Aws::Deadline
|
|
|
130
130
|
CustomerManagedWorkerCapabilities = Shapes::StructureShape.new(name: 'CustomerManagedWorkerCapabilities')
|
|
131
131
|
DateTimeFilterExpression = Shapes::StructureShape.new(name: 'DateTimeFilterExpression')
|
|
132
132
|
DefaultQueueBudgetAction = Shapes::StringShape.new(name: 'DefaultQueueBudgetAction')
|
|
133
|
+
DefaultTaskCount = Shapes::IntegerShape.new(name: 'DefaultTaskCount')
|
|
133
134
|
DeleteBudgetRequest = Shapes::StructureShape.new(name: 'DeleteBudgetRequest')
|
|
134
135
|
DeleteBudgetResponse = Shapes::StructureShape.new(name: 'DeleteBudgetResponse')
|
|
135
136
|
DeleteFarmRequest = Shapes::StructureShape.new(name: 'DeleteFarmRequest')
|
|
@@ -446,6 +447,7 @@ module Aws::Deadline
|
|
|
446
447
|
QueueStatus = Shapes::StringShape.new(name: 'QueueStatus')
|
|
447
448
|
QueueSummaries = Shapes::ListShape.new(name: 'QueueSummaries')
|
|
448
449
|
QueueSummary = Shapes::StructureShape.new(name: 'QueueSummary')
|
|
450
|
+
RangeConstraint = Shapes::StringShape.new(name: 'RangeConstraint')
|
|
449
451
|
RequiredFileSystemLocationNames = Shapes::ListShape.new(name: 'RequiredFileSystemLocationNames')
|
|
450
452
|
ResourceName = Shapes::StringShape.new(name: 'ResourceName')
|
|
451
453
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
@@ -536,6 +538,7 @@ module Aws::Deadline
|
|
|
536
538
|
StepLifecycleStatus = Shapes::StringShape.new(name: 'StepLifecycleStatus')
|
|
537
539
|
StepName = Shapes::StringShape.new(name: 'StepName')
|
|
538
540
|
StepParameter = Shapes::StructureShape.new(name: 'StepParameter')
|
|
541
|
+
StepParameterChunks = Shapes::StructureShape.new(name: 'StepParameterChunks')
|
|
539
542
|
StepParameterList = Shapes::ListShape.new(name: 'StepParameterList')
|
|
540
543
|
StepParameterName = Shapes::StringShape.new(name: 'StepParameterName')
|
|
541
544
|
StepParameterType = Shapes::StringShape.new(name: 'StepParameterType')
|
|
@@ -552,7 +555,9 @@ module Aws::Deadline
|
|
|
552
555
|
String = Shapes::StringShape.new(name: 'String')
|
|
553
556
|
StringFilter = Shapes::StringShape.new(name: 'StringFilter')
|
|
554
557
|
StringFilterExpression = Shapes::StructureShape.new(name: 'StringFilterExpression')
|
|
558
|
+
StringFilterList = Shapes::ListShape.new(name: 'StringFilterList')
|
|
555
559
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
|
560
|
+
StringListFilterExpression = Shapes::StructureShape.new(name: 'StringListFilterExpression')
|
|
556
561
|
Subdomain = Shapes::StringShape.new(name: 'Subdomain')
|
|
557
562
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
|
558
563
|
SyncInputJobAttachmentsSessionActionDefinition = Shapes::StructureShape.new(name: 'SyncInputJobAttachmentsSessionActionDefinition')
|
|
@@ -562,6 +567,7 @@ module Aws::Deadline
|
|
|
562
567
|
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
|
563
568
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
|
564
569
|
Tags = Shapes::MapShape.new(name: 'Tags')
|
|
570
|
+
TargetRuntimeSeconds = Shapes::IntegerShape.new(name: 'TargetRuntimeSeconds')
|
|
565
571
|
TaskFailureRetryCount = Shapes::IntegerShape.new(name: 'TaskFailureRetryCount')
|
|
566
572
|
TaskId = Shapes::StringShape.new(name: 'TaskId')
|
|
567
573
|
TaskParameterValue = Shapes::UnionShape.new(name: 'TaskParameterValue')
|
|
@@ -905,6 +911,7 @@ module Aws::Deadline
|
|
|
905
911
|
CreateBudgetRequest.add_member(:approximate_dollar_limit, Shapes::ShapeRef.new(shape: ConsumedUsageLimit, required: true, location_name: "approximateDollarLimit"))
|
|
906
912
|
CreateBudgetRequest.add_member(:actions, Shapes::ShapeRef.new(shape: BudgetActionsToAdd, required: true, location_name: "actions"))
|
|
907
913
|
CreateBudgetRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: BudgetSchedule, required: true, location_name: "schedule"))
|
|
914
|
+
CreateBudgetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
908
915
|
CreateBudgetRequest.struct_class = Types::CreateBudgetRequest
|
|
909
916
|
|
|
910
917
|
CreateBudgetResponse.add_member(:budget_id, Shapes::ShapeRef.new(shape: BudgetId, required: true, location_name: "budgetId"))
|
|
@@ -1345,7 +1352,7 @@ module Aws::Deadline
|
|
|
1345
1352
|
GetFarmResponse.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location_name: "farmId"))
|
|
1346
1353
|
GetFarmResponse.add_member(:display_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "displayName"))
|
|
1347
1354
|
GetFarmResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
|
1348
|
-
GetFarmResponse.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn,
|
|
1355
|
+
GetFarmResponse.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
|
1349
1356
|
GetFarmResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, required: true, location_name: "createdAt"))
|
|
1350
1357
|
GetFarmResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
|
|
1351
1358
|
GetFarmResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
|
|
@@ -2322,12 +2329,14 @@ module Aws::Deadline
|
|
|
2322
2329
|
SearchFilterExpression.add_member(:parameter_filter, Shapes::ShapeRef.new(shape: ParameterFilterExpression, location_name: "parameterFilter"))
|
|
2323
2330
|
SearchFilterExpression.add_member(:search_term_filter, Shapes::ShapeRef.new(shape: SearchTermFilterExpression, location_name: "searchTermFilter"))
|
|
2324
2331
|
SearchFilterExpression.add_member(:string_filter, Shapes::ShapeRef.new(shape: StringFilterExpression, location_name: "stringFilter"))
|
|
2332
|
+
SearchFilterExpression.add_member(:string_list_filter, Shapes::ShapeRef.new(shape: StringListFilterExpression, location_name: "stringListFilter"))
|
|
2325
2333
|
SearchFilterExpression.add_member(:group_filter, Shapes::ShapeRef.new(shape: SearchGroupedFilterExpressions, location_name: "groupFilter"))
|
|
2326
2334
|
SearchFilterExpression.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
2327
2335
|
SearchFilterExpression.add_member_subclass(:date_time_filter, Types::SearchFilterExpression::DateTimeFilter)
|
|
2328
2336
|
SearchFilterExpression.add_member_subclass(:parameter_filter, Types::SearchFilterExpression::ParameterFilter)
|
|
2329
2337
|
SearchFilterExpression.add_member_subclass(:search_term_filter, Types::SearchFilterExpression::SearchTermFilter)
|
|
2330
2338
|
SearchFilterExpression.add_member_subclass(:string_filter, Types::SearchFilterExpression::StringFilter)
|
|
2339
|
+
SearchFilterExpression.add_member_subclass(:string_list_filter, Types::SearchFilterExpression::StringListFilter)
|
|
2331
2340
|
SearchFilterExpression.add_member_subclass(:group_filter, Types::SearchFilterExpression::GroupFilter)
|
|
2332
2341
|
SearchFilterExpression.add_member_subclass(:unknown, Types::SearchFilterExpression::Unknown)
|
|
2333
2342
|
SearchFilterExpression.struct_class = Types::SearchFilterExpression
|
|
@@ -2591,8 +2600,14 @@ module Aws::Deadline
|
|
|
2591
2600
|
|
|
2592
2601
|
StepParameter.add_member(:name, Shapes::ShapeRef.new(shape: StepParameterName, required: true, location_name: "name"))
|
|
2593
2602
|
StepParameter.add_member(:type, Shapes::ShapeRef.new(shape: StepParameterType, required: true, location_name: "type"))
|
|
2603
|
+
StepParameter.add_member(:chunks, Shapes::ShapeRef.new(shape: StepParameterChunks, location_name: "chunks"))
|
|
2594
2604
|
StepParameter.struct_class = Types::StepParameter
|
|
2595
2605
|
|
|
2606
|
+
StepParameterChunks.add_member(:default_task_count, Shapes::ShapeRef.new(shape: DefaultTaskCount, required: true, location_name: "defaultTaskCount"))
|
|
2607
|
+
StepParameterChunks.add_member(:target_runtime_seconds, Shapes::ShapeRef.new(shape: TargetRuntimeSeconds, location_name: "targetRuntimeSeconds"))
|
|
2608
|
+
StepParameterChunks.add_member(:range_constraint, Shapes::ShapeRef.new(shape: RangeConstraint, required: true, location_name: "rangeConstraint"))
|
|
2609
|
+
StepParameterChunks.struct_class = Types::StepParameterChunks
|
|
2610
|
+
|
|
2596
2611
|
StepParameterList.member = Shapes::ShapeRef.new(shape: StepParameter)
|
|
2597
2612
|
|
|
2598
2613
|
StepRequiredCapabilities.add_member(:attributes, Shapes::ShapeRef.new(shape: StepAttributeCapabilities, required: true, location_name: "attributes"))
|
|
@@ -2651,8 +2666,15 @@ module Aws::Deadline
|
|
|
2651
2666
|
StringFilterExpression.add_member(:value, Shapes::ShapeRef.new(shape: StringFilter, required: true, location_name: "value"))
|
|
2652
2667
|
StringFilterExpression.struct_class = Types::StringFilterExpression
|
|
2653
2668
|
|
|
2669
|
+
StringFilterList.member = Shapes::ShapeRef.new(shape: StringFilter)
|
|
2670
|
+
|
|
2654
2671
|
StringList.member = Shapes::ShapeRef.new(shape: String)
|
|
2655
2672
|
|
|
2673
|
+
StringListFilterExpression.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "name"))
|
|
2674
|
+
StringListFilterExpression.add_member(:operator, Shapes::ShapeRef.new(shape: ComparisonOperator, required: true, location_name: "operator"))
|
|
2675
|
+
StringListFilterExpression.add_member(:values, Shapes::ShapeRef.new(shape: StringFilterList, required: true, location_name: "values"))
|
|
2676
|
+
StringListFilterExpression.struct_class = Types::StringListFilterExpression
|
|
2677
|
+
|
|
2656
2678
|
SyncInputJobAttachmentsSessionActionDefinition.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, location_name: "stepId"))
|
|
2657
2679
|
SyncInputJobAttachmentsSessionActionDefinition.struct_class = Types::SyncInputJobAttachmentsSessionActionDefinition
|
|
2658
2680
|
|
|
@@ -2724,6 +2746,7 @@ module Aws::Deadline
|
|
|
2724
2746
|
TaskSearchSummary.add_member(:ended_at, Shapes::ShapeRef.new(shape: EndedAt, location_name: "endedAt"))
|
|
2725
2747
|
TaskSearchSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
|
|
2726
2748
|
TaskSearchSummary.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
|
|
2749
|
+
TaskSearchSummary.add_member(:latest_session_action_id, Shapes::ShapeRef.new(shape: SessionActionId, location_name: "latestSessionActionId"))
|
|
2727
2750
|
TaskSearchSummary.struct_class = Types::TaskSearchSummary
|
|
2728
2751
|
|
|
2729
2752
|
TaskSummaries.member = Shapes::ShapeRef.new(shape: TaskSummary)
|