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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2dd6ec4eac6d6a78eca83489008add57abe56a8b20cbb122975e7e36a862a81d
4
- data.tar.gz: 7db19d163551496684091efba574565880c01b1d260ca26a403171b54dd86738
3
+ metadata.gz: 8de749433c14ca7db11da737c889edf6453081fcb25e94a5074e9fa71c585d51
4
+ data.tar.gz: 41e5c453ed9e9fe7425b25c8997c98124917cf442bc3c0d0e5d25b708071a85a
5
5
  SHA512:
6
- metadata.gz: 3190c93346e9c916ccecc4f96743f3c2bd7b810abd0e0fb730ea9af0119479113404d569977490db4688acc8359410c8c4ae41bd0f2243e31ef8437b82219294
7
- data.tar.gz: 7e0f08b7bdf09940d793dc3afd05c62168298cecdcd5f3658b9a90e7e3ebbd194443b195452162f8f22d786f84f24347b7947cf81af65666ad523c59899e480b
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.21.0
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["String"].int #=> String
894
- # resp.entities[0].job_details.parameters["String"].float #=> String
895
- # resp.entities[0].job_details.parameters["String"].string #=> String
896
- # resp.entities[0].job_details.parameters["String"].path #=> String
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 on a scale of 0 to 100. The highest priority
1331
- # (first scheduled) is 100. When two jobs have the same priority, the
1332
- # oldest job is scheduled first.
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
- # "String" => {
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. If two environments share the same
1734
- # priority value, the environment created first takes higher priority.
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["String"].int #=> String
2728
- # resp.parameters["String"].float #=> String
2729
- # resp.parameters["String"].string #=> String
2730
- # resp.parameters["String"].path #=> String
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["String"].int #=> String
5458
- # resp.jobs[0].job_parameters["String"].float #=> String
5459
- # resp.jobs[0].job_parameters["String"].string #=> String
5460
- # resp.jobs[0].job_parameters["String"].path #=> String
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.21.0'
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, required: true, location_name: "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: String)
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, required: true, location_name: "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, required: true, location_name: "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 on a scale of 0 to 100. The highest priority
1218
- # (first scheduled) is 100. When two jobs have the same priority, the
1219
- # oldest job is scheduled first.
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. If two environments share the same
1503
- # priority value, the environment created first takes higher priority.
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, :required_file_system_location_names]
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 = [:name]
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, :required_file_system_location_names]
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 to exit the session.
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 = [:file_system_location_name]
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, :required_file_system_location_names_to_add, :required_file_system_location_names_to_remove]
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
@@ -55,7 +55,7 @@ module Aws::Deadline
55
55
  autoload :EndpointProvider, 'aws-sdk-deadline/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-deadline/endpoints'
57
57
 
58
- GEM_VERSION = '1.21.0'
58
+ GEM_VERSION = '1.22.0'
59
59
 
60
60
  end
61
61
 
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: [:name]
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: [:file_system_location_name]
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.21.0
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-02-18 00:00:00.000000000 Z
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