aws-sdk-deadline 1.21.0 → 1.22.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 +24 -19
- data/lib/aws-sdk-deadline/client_api.rb +7 -4
- data/lib/aws-sdk-deadline/types.rb +29 -13
- data/lib/aws-sdk-deadline.rb +1 -1
- data/sig/client.rbs +8 -4
- data/sig/types.rbs +3 -2
- 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: 8de749433c14ca7db11da737c889edf6453081fcb25e94a5074e9fa71c585d51
|
4
|
+
data.tar.gz: 41e5c453ed9e9fe7425b25c8997c98124917cf442bc3c0d0e5d25b708071a85a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc95e67bc15ae9eb7ac6823452d0b10453ea34d388cd44956ee64a25392e5ccc8535382abcc181e28923598c3c33218fbf67f37471c39d8f67ab0bf580ea5290
|
7
|
+
data.tar.gz: c2e4305db33706041b9efc59539e6ba7f767769e2396bc6364c4eb0b1c702b6432a329e5699ecd0ba4a162f5093bae7d41ee299f3e92fe8259101cd6aacb72f5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.22.0 (2025-03-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - With this release you can use a new field to specify the search term match type. Search term match types currently support fuzzy and contains matching.
|
8
|
+
|
4
9
|
1.21.0 (2025-02-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.22.0
|
@@ -890,10 +890,10 @@ module Aws::Deadline
|
|
890
890
|
# resp.entities[0].job_details.log_group_name #=> String
|
891
891
|
# resp.entities[0].job_details.queue_role_arn #=> String
|
892
892
|
# resp.entities[0].job_details.parameters #=> Hash
|
893
|
-
# resp.entities[0].job_details.parameters["
|
894
|
-
# resp.entities[0].job_details.parameters["
|
895
|
-
# resp.entities[0].job_details.parameters["
|
896
|
-
# resp.entities[0].job_details.parameters["
|
893
|
+
# resp.entities[0].job_details.parameters["JobParametersKeyString"].int #=> String
|
894
|
+
# resp.entities[0].job_details.parameters["JobParametersKeyString"].float #=> String
|
895
|
+
# resp.entities[0].job_details.parameters["JobParametersKeyString"].string #=> String
|
896
|
+
# resp.entities[0].job_details.parameters["JobParametersKeyString"].path #=> String
|
897
897
|
# resp.entities[0].job_details.schema_version #=> String
|
898
898
|
# resp.entities[0].job_details.path_mapping_rules #=> Array
|
899
899
|
# resp.entities[0].job_details.path_mapping_rules[0].source_path_format #=> String, one of "windows", "posix"
|
@@ -1327,9 +1327,9 @@ module Aws::Deadline
|
|
1327
1327
|
# The file type for the job template.
|
1328
1328
|
#
|
1329
1329
|
# @option params [required, Integer] :priority
|
1330
|
-
# The priority of the job
|
1331
|
-
#
|
1332
|
-
#
|
1330
|
+
# The priority of the job. The highest priority (first scheduled) is
|
1331
|
+
# 100. When two jobs have the same priority, the oldest job is scheduled
|
1332
|
+
# first.
|
1333
1333
|
#
|
1334
1334
|
# @option params [Hash<String,Types::JobParameter>] :parameters
|
1335
1335
|
# The parameters for the job.
|
@@ -1381,7 +1381,7 @@ module Aws::Deadline
|
|
1381
1381
|
# template_type: "JSON", # accepts JSON, YAML
|
1382
1382
|
# priority: 1, # required
|
1383
1383
|
# parameters: {
|
1384
|
-
# "
|
1384
|
+
# "JobParametersKeyString" => {
|
1385
1385
|
# int: "IntString",
|
1386
1386
|
# float: "FloatString",
|
1387
1387
|
# string: "ParameterString",
|
@@ -1730,8 +1730,9 @@ module Aws::Deadline
|
|
1730
1730
|
#
|
1731
1731
|
# @option params [required, Integer] :priority
|
1732
1732
|
# Sets the priority of the environments in the queue from 0 to 10,000,
|
1733
|
-
# where 0 is the highest priority
|
1734
|
-
#
|
1733
|
+
# where 0 is the highest priority (activated first and deactivated
|
1734
|
+
# last). If two environments share the same priority value, the
|
1735
|
+
# environment created first takes higher priority.
|
1735
1736
|
#
|
1736
1737
|
# @option params [required, String] :template_type
|
1737
1738
|
# The template's file type, `JSON` or `YAML`.
|
@@ -2724,10 +2725,10 @@ module Aws::Deadline
|
|
2724
2725
|
# resp.max_failed_tasks_count #=> Integer
|
2725
2726
|
# resp.max_retries_per_task #=> Integer
|
2726
2727
|
# resp.parameters #=> Hash
|
2727
|
-
# resp.parameters["
|
2728
|
-
# resp.parameters["
|
2729
|
-
# resp.parameters["
|
2730
|
-
# resp.parameters["
|
2728
|
+
# resp.parameters["JobParametersKeyString"].int #=> String
|
2729
|
+
# resp.parameters["JobParametersKeyString"].float #=> String
|
2730
|
+
# resp.parameters["JobParametersKeyString"].string #=> String
|
2731
|
+
# resp.parameters["JobParametersKeyString"].path #=> String
|
2731
2732
|
# resp.attachments.manifests #=> Array
|
2732
2733
|
# resp.attachments.manifests[0].file_system_location_name #=> String
|
2733
2734
|
# resp.attachments.manifests[0].root_path #=> String
|
@@ -5402,6 +5403,7 @@ module Aws::Deadline
|
|
5402
5403
|
# },
|
5403
5404
|
# search_term_filter: {
|
5404
5405
|
# search_term: "SearchTerm", # required
|
5406
|
+
# match_type: "FUZZY_MATCH", # accepts FUZZY_MATCH, CONTAINS
|
5405
5407
|
# },
|
5406
5408
|
# string_filter: {
|
5407
5409
|
# name: "String", # required
|
@@ -5454,10 +5456,10 @@ module Aws::Deadline
|
|
5454
5456
|
# resp.jobs[0].ended_at #=> Time
|
5455
5457
|
# resp.jobs[0].started_at #=> Time
|
5456
5458
|
# resp.jobs[0].job_parameters #=> Hash
|
5457
|
-
# resp.jobs[0].job_parameters["
|
5458
|
-
# resp.jobs[0].job_parameters["
|
5459
|
-
# resp.jobs[0].job_parameters["
|
5460
|
-
# resp.jobs[0].job_parameters["
|
5459
|
+
# resp.jobs[0].job_parameters["JobParametersKeyString"].int #=> String
|
5460
|
+
# resp.jobs[0].job_parameters["JobParametersKeyString"].float #=> String
|
5461
|
+
# resp.jobs[0].job_parameters["JobParametersKeyString"].string #=> String
|
5462
|
+
# resp.jobs[0].job_parameters["JobParametersKeyString"].path #=> String
|
5461
5463
|
# resp.jobs[0].max_worker_count #=> Integer
|
5462
5464
|
# resp.jobs[0].source_job_id #=> String
|
5463
5465
|
# resp.next_item_offset #=> Integer
|
@@ -5525,6 +5527,7 @@ module Aws::Deadline
|
|
5525
5527
|
# },
|
5526
5528
|
# search_term_filter: {
|
5527
5529
|
# search_term: "SearchTerm", # required
|
5530
|
+
# match_type: "FUZZY_MATCH", # accepts FUZZY_MATCH, CONTAINS
|
5528
5531
|
# },
|
5529
5532
|
# string_filter: {
|
5530
5533
|
# name: "String", # required
|
@@ -5642,6 +5645,7 @@ module Aws::Deadline
|
|
5642
5645
|
# },
|
5643
5646
|
# search_term_filter: {
|
5644
5647
|
# search_term: "SearchTerm", # required
|
5648
|
+
# match_type: "FUZZY_MATCH", # accepts FUZZY_MATCH, CONTAINS
|
5645
5649
|
# },
|
5646
5650
|
# string_filter: {
|
5647
5651
|
# name: "String", # required
|
@@ -5752,6 +5756,7 @@ module Aws::Deadline
|
|
5752
5756
|
# },
|
5753
5757
|
# search_term_filter: {
|
5754
5758
|
# search_term: "SearchTerm", # required
|
5759
|
+
# match_type: "FUZZY_MATCH", # accepts FUZZY_MATCH, CONTAINS
|
5755
5760
|
# },
|
5756
5761
|
# string_filter: {
|
5757
5762
|
# name: "String", # required
|
@@ -6994,7 +6999,7 @@ module Aws::Deadline
|
|
6994
6999
|
tracer: tracer
|
6995
7000
|
)
|
6996
7001
|
context[:gem_name] = 'aws-sdk-deadline'
|
6997
|
-
context[:gem_version] = '1.
|
7002
|
+
context[:gem_version] = '1.22.0'
|
6998
7003
|
Seahorse::Client::Request.new(handlers, context)
|
6999
7004
|
end
|
7000
7005
|
|
@@ -296,6 +296,7 @@ module Aws::Deadline
|
|
296
296
|
JobParameterDefinition = Shapes::DocumentShape.new(name: 'JobParameterDefinition', document: true)
|
297
297
|
JobParameterDefinitions = Shapes::ListShape.new(name: 'JobParameterDefinitions')
|
298
298
|
JobParameters = Shapes::MapShape.new(name: 'JobParameters')
|
299
|
+
JobParametersKeyString = Shapes::StringShape.new(name: 'JobParametersKeyString')
|
299
300
|
JobPriority = Shapes::IntegerShape.new(name: 'JobPriority')
|
300
301
|
JobRunAsUser = Shapes::StructureShape.new(name: 'JobRunAsUser')
|
301
302
|
JobSearchSummaries = Shapes::ListShape.new(name: 'JobSearchSummaries')
|
@@ -474,6 +475,7 @@ module Aws::Deadline
|
|
474
475
|
SearchTasksResponse = Shapes::StructureShape.new(name: 'SearchTasksResponse')
|
475
476
|
SearchTerm = Shapes::StringShape.new(name: 'SearchTerm')
|
476
477
|
SearchTermFilterExpression = Shapes::StructureShape.new(name: 'SearchTermFilterExpression')
|
478
|
+
SearchTermMatchingType = Shapes::StringShape.new(name: 'SearchTermMatchingType')
|
477
479
|
SearchWorkersRequest = Shapes::StructureShape.new(name: 'SearchWorkersRequest')
|
478
480
|
SearchWorkersRequestFleetIdsList = Shapes::ListShape.new(name: 'SearchWorkersRequestFleetIdsList')
|
479
481
|
SearchWorkersRequestItemOffsetInteger = Shapes::IntegerShape.new(name: 'SearchWorkersRequestItemOffsetInteger')
|
@@ -716,7 +718,7 @@ module Aws::Deadline
|
|
716
718
|
AssignedSyncInputJobAttachmentsSessionActionDefinition.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, location_name: "stepId"))
|
717
719
|
AssignedSyncInputJobAttachmentsSessionActionDefinition.struct_class = Types::AssignedSyncInputJobAttachmentsSessionActionDefinition
|
718
720
|
|
719
|
-
AssignedTaskRunSessionActionDefinition.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId,
|
721
|
+
AssignedTaskRunSessionActionDefinition.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location_name: "taskId"))
|
720
722
|
AssignedTaskRunSessionActionDefinition.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location_name: "stepId"))
|
721
723
|
AssignedTaskRunSessionActionDefinition.add_member(:parameters, Shapes::ShapeRef.new(shape: TaskParameters, required: true, location_name: "parameters"))
|
722
724
|
AssignedTaskRunSessionActionDefinition.struct_class = Types::AssignedTaskRunSessionActionDefinition
|
@@ -1758,7 +1760,7 @@ module Aws::Deadline
|
|
1758
1760
|
|
1759
1761
|
JobParameterDefinitions.member = Shapes::ShapeRef.new(shape: JobParameterDefinition)
|
1760
1762
|
|
1761
|
-
JobParameters.key = Shapes::ShapeRef.new(shape:
|
1763
|
+
JobParameters.key = Shapes::ShapeRef.new(shape: JobParametersKeyString)
|
1762
1764
|
JobParameters.value = Shapes::ShapeRef.new(shape: JobParameter)
|
1763
1765
|
|
1764
1766
|
JobRunAsUser.add_member(:posix, Shapes::ShapeRef.new(shape: PosixUser, location_name: "posix"))
|
@@ -2364,6 +2366,7 @@ module Aws::Deadline
|
|
2364
2366
|
SearchTasksResponse.struct_class = Types::SearchTasksResponse
|
2365
2367
|
|
2366
2368
|
SearchTermFilterExpression.add_member(:search_term, Shapes::ShapeRef.new(shape: SearchTerm, required: true, location_name: "searchTerm"))
|
2369
|
+
SearchTermFilterExpression.add_member(:match_type, Shapes::ShapeRef.new(shape: SearchTermMatchingType, location_name: "matchType"))
|
2367
2370
|
SearchTermFilterExpression.struct_class = Types::SearchTermFilterExpression
|
2368
2371
|
|
2369
2372
|
SearchWorkersRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
@@ -2640,12 +2643,12 @@ module Aws::Deadline
|
|
2640
2643
|
TaskParameters.key = Shapes::ShapeRef.new(shape: String)
|
2641
2644
|
TaskParameters.value = Shapes::ShapeRef.new(shape: TaskParameterValue)
|
2642
2645
|
|
2643
|
-
TaskRunSessionActionDefinition.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId,
|
2646
|
+
TaskRunSessionActionDefinition.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location_name: "taskId"))
|
2644
2647
|
TaskRunSessionActionDefinition.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location_name: "stepId"))
|
2645
2648
|
TaskRunSessionActionDefinition.add_member(:parameters, Shapes::ShapeRef.new(shape: TaskParameters, required: true, location_name: "parameters"))
|
2646
2649
|
TaskRunSessionActionDefinition.struct_class = Types::TaskRunSessionActionDefinition
|
2647
2650
|
|
2648
|
-
TaskRunSessionActionDefinitionSummary.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId,
|
2651
|
+
TaskRunSessionActionDefinitionSummary.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location_name: "taskId"))
|
2649
2652
|
TaskRunSessionActionDefinitionSummary.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location_name: "stepId"))
|
2650
2653
|
TaskRunSessionActionDefinitionSummary.struct_class = Types::TaskRunSessionActionDefinitionSummary
|
2651
2654
|
|
@@ -1214,9 +1214,9 @@ module Aws::Deadline
|
|
1214
1214
|
# @return [String]
|
1215
1215
|
#
|
1216
1216
|
# @!attribute [rw] priority
|
1217
|
-
# The priority of the job
|
1218
|
-
#
|
1219
|
-
#
|
1217
|
+
# The priority of the job. The highest priority (first scheduled) is
|
1218
|
+
# 100. When two jobs have the same priority, the oldest job is
|
1219
|
+
# scheduled first.
|
1220
1220
|
# @return [Integer]
|
1221
1221
|
#
|
1222
1222
|
# @!attribute [rw] parameters
|
@@ -1499,8 +1499,9 @@ module Aws::Deadline
|
|
1499
1499
|
#
|
1500
1500
|
# @!attribute [rw] priority
|
1501
1501
|
# Sets the priority of the environments in the queue from 0 to 10,000,
|
1502
|
-
# where 0 is the highest priority
|
1503
|
-
#
|
1502
|
+
# where 0 is the highest priority (activated first and deactivated
|
1503
|
+
# last). If two environments share the same priority value, the
|
1504
|
+
# environment created first takes higher priority.
|
1504
1505
|
# @return [Integer]
|
1505
1506
|
#
|
1506
1507
|
# @!attribute [rw] template_type
|
@@ -1662,7 +1663,7 @@ module Aws::Deadline
|
|
1662
1663
|
:required_file_system_location_names,
|
1663
1664
|
:allowed_storage_profile_ids,
|
1664
1665
|
:tags)
|
1665
|
-
SENSITIVE = [:description
|
1666
|
+
SENSITIVE = [:description]
|
1666
1667
|
include Aws::Structure
|
1667
1668
|
end
|
1668
1669
|
|
@@ -2581,7 +2582,7 @@ module Aws::Deadline
|
|
2581
2582
|
:name,
|
2582
2583
|
:path,
|
2583
2584
|
:type)
|
2584
|
-
SENSITIVE = [
|
2585
|
+
SENSITIVE = []
|
2585
2586
|
include Aws::Structure
|
2586
2587
|
end
|
2587
2588
|
|
@@ -3861,7 +3862,7 @@ module Aws::Deadline
|
|
3861
3862
|
:created_by,
|
3862
3863
|
:updated_at,
|
3863
3864
|
:updated_by)
|
3864
|
-
SENSITIVE = [:description
|
3865
|
+
SENSITIVE = [:description]
|
3865
3866
|
include Aws::Structure
|
3866
3867
|
end
|
3867
3868
|
|
@@ -3922,7 +3923,8 @@ module Aws::Deadline
|
|
3922
3923
|
# @return [String]
|
3923
3924
|
#
|
3924
3925
|
# @!attribute [rw] process_exit_code
|
3925
|
-
# The exit code
|
3926
|
+
# The process exit code. The default Deadline Cloud worker agent
|
3927
|
+
# converts unsigned 32-bit exit codes to signed 32-bit exit codes.
|
3926
3928
|
# @return [Integer]
|
3927
3929
|
#
|
3928
3930
|
# @!attribute [rw] progress_message
|
@@ -6949,7 +6951,7 @@ module Aws::Deadline
|
|
6949
6951
|
:output_relative_directories,
|
6950
6952
|
:input_manifest_path,
|
6951
6953
|
:input_manifest_hash)
|
6952
|
-
SENSITIVE = [
|
6954
|
+
SENSITIVE = []
|
6953
6955
|
include Aws::Structure
|
6954
6956
|
end
|
6955
6957
|
|
@@ -7819,10 +7821,23 @@ module Aws::Deadline
|
|
7819
7821
|
# The term to search for.
|
7820
7822
|
# @return [String]
|
7821
7823
|
#
|
7824
|
+
# @!attribute [rw] match_type
|
7825
|
+
# Specifies how Deadline Cloud matches your search term in the
|
7826
|
+
# results. If you don't specify a `matchType` the default is
|
7827
|
+
# `FUZZY_MATCH`.
|
7828
|
+
#
|
7829
|
+
# * `FUZZY_MATCH` - Matches if a portion of the search term is found
|
7830
|
+
# in the result.
|
7831
|
+
#
|
7832
|
+
# * `CONTAINS` - Matches if the exact search term is contained in the
|
7833
|
+
# result.
|
7834
|
+
# @return [String]
|
7835
|
+
#
|
7822
7836
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SearchTermFilterExpression AWS API Documentation
|
7823
7837
|
#
|
7824
7838
|
class SearchTermFilterExpression < Struct.new(
|
7825
|
-
:search_term
|
7839
|
+
:search_term,
|
7840
|
+
:match_type)
|
7826
7841
|
SENSITIVE = []
|
7827
7842
|
include Aws::Structure
|
7828
7843
|
end
|
@@ -9727,7 +9742,7 @@ module Aws::Deadline
|
|
9727
9742
|
:required_file_system_location_names_to_remove,
|
9728
9743
|
:allowed_storage_profile_ids_to_add,
|
9729
9744
|
:allowed_storage_profile_ids_to_remove)
|
9730
|
-
SENSITIVE = [:description
|
9745
|
+
SENSITIVE = [:description]
|
9731
9746
|
include Aws::Structure
|
9732
9747
|
end
|
9733
9748
|
|
@@ -10040,7 +10055,8 @@ module Aws::Deadline
|
|
10040
10055
|
# @return [String]
|
10041
10056
|
#
|
10042
10057
|
# @!attribute [rw] process_exit_code
|
10043
|
-
# The process exit code.
|
10058
|
+
# The process exit code. The default Deadline Cloud worker agent
|
10059
|
+
# converts unsigned 32-bit exit codes to signed 32-bit exit codes.
|
10044
10060
|
# @return [Integer]
|
10045
10061
|
#
|
10046
10062
|
# @!attribute [rw] progress_message
|
data/lib/aws-sdk-deadline.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1613,7 +1613,8 @@ module Aws
|
|
1613
1613
|
value: ::String
|
1614
1614
|
}?,
|
1615
1615
|
search_term_filter: {
|
1616
|
-
search_term: ::String
|
1616
|
+
search_term: ::String,
|
1617
|
+
match_type: ("FUZZY_MATCH" | "CONTAINS")?
|
1617
1618
|
}?,
|
1618
1619
|
string_filter: {
|
1619
1620
|
name: ::String,
|
@@ -1670,7 +1671,8 @@ module Aws
|
|
1670
1671
|
value: ::String
|
1671
1672
|
}?,
|
1672
1673
|
search_term_filter: {
|
1673
|
-
search_term: ::String
|
1674
|
+
search_term: ::String,
|
1675
|
+
match_type: ("FUZZY_MATCH" | "CONTAINS")?
|
1674
1676
|
}?,
|
1675
1677
|
string_filter: {
|
1676
1678
|
name: ::String,
|
@@ -1727,7 +1729,8 @@ module Aws
|
|
1727
1729
|
value: ::String
|
1728
1730
|
}?,
|
1729
1731
|
search_term_filter: {
|
1730
|
-
search_term: ::String
|
1732
|
+
search_term: ::String,
|
1733
|
+
match_type: ("FUZZY_MATCH" | "CONTAINS")?
|
1731
1734
|
}?,
|
1732
1735
|
string_filter: {
|
1733
1736
|
name: ::String,
|
@@ -1783,7 +1786,8 @@ module Aws
|
|
1783
1786
|
value: ::String
|
1784
1787
|
}?,
|
1785
1788
|
search_term_filter: {
|
1786
|
-
search_term: ::String
|
1789
|
+
search_term: ::String,
|
1790
|
+
match_type: ("FUZZY_MATCH" | "CONTAINS")?
|
1787
1791
|
}?,
|
1788
1792
|
string_filter: {
|
1789
1793
|
name: ::String,
|
data/sig/types.rbs
CHANGED
@@ -775,7 +775,7 @@ module Aws::Deadline
|
|
775
775
|
attr_accessor name: ::String
|
776
776
|
attr_accessor path: ::String
|
777
777
|
attr_accessor type: ("SHARED" | "LOCAL")
|
778
|
-
SENSITIVE: [
|
778
|
+
SENSITIVE: []
|
779
779
|
end
|
780
780
|
|
781
781
|
class FixedBudgetSchedule
|
@@ -1920,7 +1920,7 @@ module Aws::Deadline
|
|
1920
1920
|
attr_accessor output_relative_directories: ::Array[::String]
|
1921
1921
|
attr_accessor input_manifest_path: ::String
|
1922
1922
|
attr_accessor input_manifest_hash: ::String
|
1923
|
-
SENSITIVE: [
|
1923
|
+
SENSITIVE: []
|
1924
1924
|
end
|
1925
1925
|
|
1926
1926
|
class MemoryMiBRange
|
@@ -2168,6 +2168,7 @@ module Aws::Deadline
|
|
2168
2168
|
|
2169
2169
|
class SearchTermFilterExpression
|
2170
2170
|
attr_accessor search_term: ::String
|
2171
|
+
attr_accessor match_type: ("FUZZY_MATCH" | "CONTAINS")
|
2171
2172
|
SENSITIVE: []
|
2172
2173
|
end
|
2173
2174
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-deadline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|