aws-sdk-deadline 1.21.0 → 1.23.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: 91530cd74aed3270b8e51012232ec8696bc8118186cb75f1bccec6910779acba
4
+ data.tar.gz: b34cb73fc604aec20e20d89797909154cbcccfb17573aaadda4fc1247c2d93ac
5
5
  SHA512:
6
- metadata.gz: 3190c93346e9c916ccecc4f96743f3c2bd7b810abd0e0fb730ea9af0119479113404d569977490db4688acc8359410c8c4ae41bd0f2243e31ef8437b82219294
7
- data.tar.gz: 7e0f08b7bdf09940d793dc3afd05c62168298cecdcd5f3658b9a90e7e3ebbd194443b195452162f8f22d786f84f24347b7947cf81af65666ad523c59899e480b
6
+ metadata.gz: a9227eda346b7ad13831a6421b00932fb21e4d99f84753ba058bab9a47d872f5cda08b3f0eec384479c2db897cc3b3fb619d342720ee78102a156e29ff7b1c89
7
+ data.tar.gz: 041cafdc9f5350dbbd0c7b3f5eb68ce2da2fb60be489a0b708f0aaf1ff747e31bf0421dbba5e86b903ed11c0e10731bf3e26cfd528da4bfa9f712ac412b59670
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2025-04-30)
5
+ ------------------
6
+
7
+ * Feature - Adds support for tag management on workers and tag inheritance from fleets to their associated workers.
8
+
9
+ 1.22.0 (2025-03-31)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.21.0 (2025-02-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.23.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"
@@ -1230,6 +1230,7 @@ module Aws::Deadline
1230
1230
  # ],
1231
1231
  # },
1232
1232
  # storage_profile_id: "StorageProfileId",
1233
+ # tag_propagation_mode: "NO_PROPAGATION", # accepts NO_PROPAGATION, PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH
1233
1234
  # },
1234
1235
  # service_managed_ec2: {
1235
1236
  # instance_capabilities: { # required
@@ -1327,9 +1328,9 @@ module Aws::Deadline
1327
1328
  # The file type for the job template.
1328
1329
  #
1329
1330
  # @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.
1331
+ # The priority of the job. The highest priority (first scheduled) is
1332
+ # 100. When two jobs have the same priority, the oldest job is scheduled
1333
+ # first.
1333
1334
  #
1334
1335
  # @option params [Hash<String,Types::JobParameter>] :parameters
1335
1336
  # The parameters for the job.
@@ -1381,7 +1382,7 @@ module Aws::Deadline
1381
1382
  # template_type: "JSON", # accepts JSON, YAML
1382
1383
  # priority: 1, # required
1383
1384
  # parameters: {
1384
- # "String" => {
1385
+ # "JobParametersKeyString" => {
1385
1386
  # int: "IntString",
1386
1387
  # float: "FloatString",
1387
1388
  # string: "ParameterString",
@@ -1730,8 +1731,9 @@ module Aws::Deadline
1730
1731
  #
1731
1732
  # @option params [required, Integer] :priority
1732
1733
  # 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.
1734
+ # where 0 is the highest priority (activated first and deactivated
1735
+ # last). If two environments share the same priority value, the
1736
+ # environment created first takes higher priority.
1735
1737
  #
1736
1738
  # @option params [required, String] :template_type
1737
1739
  # The template's file type, `JSON` or `YAML`.
@@ -1912,6 +1914,10 @@ module Aws::Deadline
1912
1914
  # **A suitable default value is auto-generated.** You should normally
1913
1915
  # not need to pass this option.**
1914
1916
  #
1917
+ # @option params [Hash<String,String>] :tags
1918
+ # Each tag consists of a tag key and a tag value. Tag keys and values
1919
+ # are both required, but tag values can be empty strings.
1920
+ #
1915
1921
  # @return [Types::CreateWorkerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1916
1922
  #
1917
1923
  # * {Types::CreateWorkerResponse#worker_id #worker_id} => String
@@ -1929,6 +1935,9 @@ module Aws::Deadline
1929
1935
  # host_name: "HostName",
1930
1936
  # },
1931
1937
  # client_token: "ClientToken",
1938
+ # tags: {
1939
+ # "String" => "String",
1940
+ # },
1932
1941
  # })
1933
1942
  #
1934
1943
  # @example Response structure
@@ -2604,6 +2613,7 @@ module Aws::Deadline
2604
2613
  # resp.configuration.customer_managed.worker_capabilities.custom_attributes[0].values #=> Array
2605
2614
  # resp.configuration.customer_managed.worker_capabilities.custom_attributes[0].values[0] #=> String
2606
2615
  # resp.configuration.customer_managed.storage_profile_id #=> String
2616
+ # resp.configuration.customer_managed.tag_propagation_mode #=> String, one of "NO_PROPAGATION", "PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH"
2607
2617
  # resp.configuration.service_managed_ec2.instance_capabilities.v_cpu_count.min #=> Integer
2608
2618
  # resp.configuration.service_managed_ec2.instance_capabilities.v_cpu_count.max #=> Integer
2609
2619
  # resp.configuration.service_managed_ec2.instance_capabilities.memory_mi_b.min #=> Integer
@@ -2724,10 +2734,10 @@ module Aws::Deadline
2724
2734
  # resp.max_failed_tasks_count #=> Integer
2725
2735
  # resp.max_retries_per_task #=> Integer
2726
2736
  # 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
2737
+ # resp.parameters["JobParametersKeyString"].int #=> String
2738
+ # resp.parameters["JobParametersKeyString"].float #=> String
2739
+ # resp.parameters["JobParametersKeyString"].string #=> String
2740
+ # resp.parameters["JobParametersKeyString"].path #=> String
2731
2741
  # resp.attachments.manifests #=> Array
2732
2742
  # resp.attachments.manifests[0].file_system_location_name #=> String
2733
2743
  # resp.attachments.manifests[0].root_path #=> String
@@ -4007,6 +4017,7 @@ module Aws::Deadline
4007
4017
  # resp.fleets[0].configuration.customer_managed.worker_capabilities.custom_attributes[0].values #=> Array
4008
4018
  # resp.fleets[0].configuration.customer_managed.worker_capabilities.custom_attributes[0].values[0] #=> String
4009
4019
  # resp.fleets[0].configuration.customer_managed.storage_profile_id #=> String
4020
+ # resp.fleets[0].configuration.customer_managed.tag_propagation_mode #=> String, one of "NO_PROPAGATION", "PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH"
4010
4021
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.v_cpu_count.min #=> Integer
4011
4022
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.v_cpu_count.max #=> Integer
4012
4023
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.memory_mi_b.min #=> Integer
@@ -5402,6 +5413,7 @@ module Aws::Deadline
5402
5413
  # },
5403
5414
  # search_term_filter: {
5404
5415
  # search_term: "SearchTerm", # required
5416
+ # match_type: "FUZZY_MATCH", # accepts FUZZY_MATCH, CONTAINS
5405
5417
  # },
5406
5418
  # string_filter: {
5407
5419
  # name: "String", # required
@@ -5454,10 +5466,10 @@ module Aws::Deadline
5454
5466
  # resp.jobs[0].ended_at #=> Time
5455
5467
  # resp.jobs[0].started_at #=> Time
5456
5468
  # 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
5469
+ # resp.jobs[0].job_parameters["JobParametersKeyString"].int #=> String
5470
+ # resp.jobs[0].job_parameters["JobParametersKeyString"].float #=> String
5471
+ # resp.jobs[0].job_parameters["JobParametersKeyString"].string #=> String
5472
+ # resp.jobs[0].job_parameters["JobParametersKeyString"].path #=> String
5461
5473
  # resp.jobs[0].max_worker_count #=> Integer
5462
5474
  # resp.jobs[0].source_job_id #=> String
5463
5475
  # resp.next_item_offset #=> Integer
@@ -5525,6 +5537,7 @@ module Aws::Deadline
5525
5537
  # },
5526
5538
  # search_term_filter: {
5527
5539
  # search_term: "SearchTerm", # required
5540
+ # match_type: "FUZZY_MATCH", # accepts FUZZY_MATCH, CONTAINS
5528
5541
  # },
5529
5542
  # string_filter: {
5530
5543
  # name: "String", # required
@@ -5642,6 +5655,7 @@ module Aws::Deadline
5642
5655
  # },
5643
5656
  # search_term_filter: {
5644
5657
  # search_term: "SearchTerm", # required
5658
+ # match_type: "FUZZY_MATCH", # accepts FUZZY_MATCH, CONTAINS
5645
5659
  # },
5646
5660
  # string_filter: {
5647
5661
  # name: "String", # required
@@ -5752,6 +5766,7 @@ module Aws::Deadline
5752
5766
  # },
5753
5767
  # search_term_filter: {
5754
5768
  # search_term: "SearchTerm", # required
5769
+ # match_type: "FUZZY_MATCH", # accepts FUZZY_MATCH, CONTAINS
5755
5770
  # },
5756
5771
  # string_filter: {
5757
5772
  # name: "String", # required
@@ -6159,6 +6174,7 @@ module Aws::Deadline
6159
6174
  # ],
6160
6175
  # },
6161
6176
  # storage_profile_id: "StorageProfileId",
6177
+ # tag_propagation_mode: "NO_PROPAGATION", # accepts NO_PROPAGATION, PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH
6162
6178
  # },
6163
6179
  # service_managed_ec2: {
6164
6180
  # instance_capabilities: { # required
@@ -6994,7 +7010,7 @@ module Aws::Deadline
6994
7010
  tracer: tracer
6995
7011
  )
6996
7012
  context[:gem_name] = 'aws-sdk-deadline'
6997
- context[:gem_version] = '1.21.0'
7013
+ context[:gem_version] = '1.23.0'
6998
7014
  Seahorse::Client::Request.new(handlers, context)
6999
7015
  end
7000
7016
 
@@ -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')
@@ -553,6 +555,7 @@ module Aws::Deadline
553
555
  SyncInputJobAttachmentsSessionActionDefinition = Shapes::StructureShape.new(name: 'SyncInputJobAttachmentsSessionActionDefinition')
554
556
  SyncInputJobAttachmentsSessionActionDefinitionSummary = Shapes::StructureShape.new(name: 'SyncInputJobAttachmentsSessionActionDefinitionSummary')
555
557
  SyntheticTimestamp_date_time = Shapes::TimestampShape.new(name: 'SyntheticTimestamp_date_time', timestampFormat: "iso8601")
558
+ TagPropagationMode = Shapes::StringShape.new(name: 'TagPropagationMode')
556
559
  TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
557
560
  TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
558
561
  Tags = Shapes::MapShape.new(name: 'Tags')
@@ -716,7 +719,7 @@ module Aws::Deadline
716
719
  AssignedSyncInputJobAttachmentsSessionActionDefinition.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, location_name: "stepId"))
717
720
  AssignedSyncInputJobAttachmentsSessionActionDefinition.struct_class = Types::AssignedSyncInputJobAttachmentsSessionActionDefinition
718
721
 
719
- AssignedTaskRunSessionActionDefinition.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, required: true, location_name: "taskId"))
722
+ AssignedTaskRunSessionActionDefinition.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location_name: "taskId"))
720
723
  AssignedTaskRunSessionActionDefinition.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location_name: "stepId"))
721
724
  AssignedTaskRunSessionActionDefinition.add_member(:parameters, Shapes::ShapeRef.new(shape: TaskParameters, required: true, location_name: "parameters"))
722
725
  AssignedTaskRunSessionActionDefinition.struct_class = Types::AssignedTaskRunSessionActionDefinition
@@ -1028,6 +1031,7 @@ module Aws::Deadline
1028
1031
  CreateWorkerRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location: "uri", location_name: "fleetId"))
1029
1032
  CreateWorkerRequest.add_member(:host_properties, Shapes::ShapeRef.new(shape: HostPropertiesRequest, location_name: "hostProperties"))
1030
1033
  CreateWorkerRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "header", location_name: "X-Amz-Client-Token", metadata: {"idempotencyToken"=>true}))
1034
+ CreateWorkerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1031
1035
  CreateWorkerRequest.struct_class = Types::CreateWorkerRequest
1032
1036
 
1033
1037
  CreateWorkerResponse.add_member(:worker_id, Shapes::ShapeRef.new(shape: WorkerId, required: true, location_name: "workerId"))
@@ -1040,6 +1044,7 @@ module Aws::Deadline
1040
1044
  CustomerManagedFleetConfiguration.add_member(:mode, Shapes::ShapeRef.new(shape: AutoScalingMode, required: true, location_name: "mode"))
1041
1045
  CustomerManagedFleetConfiguration.add_member(:worker_capabilities, Shapes::ShapeRef.new(shape: CustomerManagedWorkerCapabilities, required: true, location_name: "workerCapabilities"))
1042
1046
  CustomerManagedFleetConfiguration.add_member(:storage_profile_id, Shapes::ShapeRef.new(shape: StorageProfileId, location_name: "storageProfileId"))
1047
+ CustomerManagedFleetConfiguration.add_member(:tag_propagation_mode, Shapes::ShapeRef.new(shape: TagPropagationMode, location_name: "tagPropagationMode"))
1043
1048
  CustomerManagedFleetConfiguration.struct_class = Types::CustomerManagedFleetConfiguration
1044
1049
 
1045
1050
  CustomerManagedWorkerCapabilities.add_member(:v_cpu_count, Shapes::ShapeRef.new(shape: VCpuCountRange, required: true, location_name: "vCpuCount"))
@@ -1758,7 +1763,7 @@ module Aws::Deadline
1758
1763
 
1759
1764
  JobParameterDefinitions.member = Shapes::ShapeRef.new(shape: JobParameterDefinition)
1760
1765
 
1761
- JobParameters.key = Shapes::ShapeRef.new(shape: String)
1766
+ JobParameters.key = Shapes::ShapeRef.new(shape: JobParametersKeyString)
1762
1767
  JobParameters.value = Shapes::ShapeRef.new(shape: JobParameter)
1763
1768
 
1764
1769
  JobRunAsUser.add_member(:posix, Shapes::ShapeRef.new(shape: PosixUser, location_name: "posix"))
@@ -2364,6 +2369,7 @@ module Aws::Deadline
2364
2369
  SearchTasksResponse.struct_class = Types::SearchTasksResponse
2365
2370
 
2366
2371
  SearchTermFilterExpression.add_member(:search_term, Shapes::ShapeRef.new(shape: SearchTerm, required: true, location_name: "searchTerm"))
2372
+ SearchTermFilterExpression.add_member(:match_type, Shapes::ShapeRef.new(shape: SearchTermMatchingType, location_name: "matchType"))
2367
2373
  SearchTermFilterExpression.struct_class = Types::SearchTermFilterExpression
2368
2374
 
2369
2375
  SearchWorkersRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
@@ -2640,12 +2646,12 @@ module Aws::Deadline
2640
2646
  TaskParameters.key = Shapes::ShapeRef.new(shape: String)
2641
2647
  TaskParameters.value = Shapes::ShapeRef.new(shape: TaskParameterValue)
2642
2648
 
2643
- TaskRunSessionActionDefinition.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, required: true, location_name: "taskId"))
2649
+ TaskRunSessionActionDefinition.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location_name: "taskId"))
2644
2650
  TaskRunSessionActionDefinition.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location_name: "stepId"))
2645
2651
  TaskRunSessionActionDefinition.add_member(:parameters, Shapes::ShapeRef.new(shape: TaskParameters, required: true, location_name: "parameters"))
2646
2652
  TaskRunSessionActionDefinition.struct_class = Types::TaskRunSessionActionDefinition
2647
2653
 
2648
- TaskRunSessionActionDefinitionSummary.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, required: true, location_name: "taskId"))
2654
+ TaskRunSessionActionDefinitionSummary.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location_name: "taskId"))
2649
2655
  TaskRunSessionActionDefinitionSummary.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location_name: "stepId"))
2650
2656
  TaskRunSessionActionDefinitionSummary.struct_class = Types::TaskRunSessionActionDefinitionSummary
2651
2657
 
@@ -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
 
@@ -1750,13 +1751,19 @@ module Aws::Deadline
1750
1751
  # not need to pass this option.
1751
1752
  # @return [String]
1752
1753
  #
1754
+ # @!attribute [rw] tags
1755
+ # Each tag consists of a tag key and a tag value. Tag keys and values
1756
+ # are both required, but tag values can be empty strings.
1757
+ # @return [Hash<String,String>]
1758
+ #
1753
1759
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/CreateWorkerRequest AWS API Documentation
1754
1760
  #
1755
1761
  class CreateWorkerRequest < Struct.new(
1756
1762
  :farm_id,
1757
1763
  :fleet_id,
1758
1764
  :host_properties,
1759
- :client_token)
1765
+ :client_token,
1766
+ :tags)
1760
1767
  SENSITIVE = []
1761
1768
  include Aws::Structure
1762
1769
  end
@@ -1787,12 +1794,27 @@ module Aws::Deadline
1787
1794
  # The storage profile ID.
1788
1795
  # @return [String]
1789
1796
  #
1797
+ # @!attribute [rw] tag_propagation_mode
1798
+ # Specifies whether tags associated with a fleet are attached to
1799
+ # workers when the worker is launched.
1800
+ #
1801
+ # When the `tagPropagationMode` is set to
1802
+ # `PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH` any tag associated with a
1803
+ # fleet is attached to workers when they launch. If the tags for a
1804
+ # fleet change, the tags associated with running workers **do not**
1805
+ # change.
1806
+ #
1807
+ # If you don't specify `tagPropagationMode`, the default is
1808
+ # `NO_PROPAGATION`.
1809
+ # @return [String]
1810
+ #
1790
1811
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/CustomerManagedFleetConfiguration AWS API Documentation
1791
1812
  #
1792
1813
  class CustomerManagedFleetConfiguration < Struct.new(
1793
1814
  :mode,
1794
1815
  :worker_capabilities,
1795
- :storage_profile_id)
1816
+ :storage_profile_id,
1817
+ :tag_propagation_mode)
1796
1818
  SENSITIVE = []
1797
1819
  include Aws::Structure
1798
1820
  end
@@ -2581,7 +2603,7 @@ module Aws::Deadline
2581
2603
  :name,
2582
2604
  :path,
2583
2605
  :type)
2584
- SENSITIVE = [:name]
2606
+ SENSITIVE = []
2585
2607
  include Aws::Structure
2586
2608
  end
2587
2609
 
@@ -3861,7 +3883,7 @@ module Aws::Deadline
3861
3883
  :created_by,
3862
3884
  :updated_at,
3863
3885
  :updated_by)
3864
- SENSITIVE = [:description, :required_file_system_location_names]
3886
+ SENSITIVE = [:description]
3865
3887
  include Aws::Structure
3866
3888
  end
3867
3889
 
@@ -3922,7 +3944,8 @@ module Aws::Deadline
3922
3944
  # @return [String]
3923
3945
  #
3924
3946
  # @!attribute [rw] process_exit_code
3925
- # The exit code to exit the session.
3947
+ # The process exit code. The default Deadline Cloud worker agent
3948
+ # converts unsigned 32-bit exit codes to signed 32-bit exit codes.
3926
3949
  # @return [Integer]
3927
3950
  #
3928
3951
  # @!attribute [rw] progress_message
@@ -6949,7 +6972,7 @@ module Aws::Deadline
6949
6972
  :output_relative_directories,
6950
6973
  :input_manifest_path,
6951
6974
  :input_manifest_hash)
6952
- SENSITIVE = [:file_system_location_name]
6975
+ SENSITIVE = []
6953
6976
  include Aws::Structure
6954
6977
  end
6955
6978
 
@@ -7819,10 +7842,23 @@ module Aws::Deadline
7819
7842
  # The term to search for.
7820
7843
  # @return [String]
7821
7844
  #
7845
+ # @!attribute [rw] match_type
7846
+ # Specifies how Deadline Cloud matches your search term in the
7847
+ # results. If you don't specify a `matchType` the default is
7848
+ # `FUZZY_MATCH`.
7849
+ #
7850
+ # * `FUZZY_MATCH` - Matches if a portion of the search term is found
7851
+ # in the result.
7852
+ #
7853
+ # * `CONTAINS` - Matches if the exact search term is contained in the
7854
+ # result.
7855
+ # @return [String]
7856
+ #
7822
7857
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SearchTermFilterExpression AWS API Documentation
7823
7858
  #
7824
7859
  class SearchTermFilterExpression < Struct.new(
7825
- :search_term)
7860
+ :search_term,
7861
+ :match_type)
7826
7862
  SENSITIVE = []
7827
7863
  include Aws::Structure
7828
7864
  end
@@ -9727,7 +9763,7 @@ module Aws::Deadline
9727
9763
  :required_file_system_location_names_to_remove,
9728
9764
  :allowed_storage_profile_ids_to_add,
9729
9765
  :allowed_storage_profile_ids_to_remove)
9730
- SENSITIVE = [:description, :required_file_system_location_names_to_add, :required_file_system_location_names_to_remove]
9766
+ SENSITIVE = [:description]
9731
9767
  include Aws::Structure
9732
9768
  end
9733
9769
 
@@ -10040,7 +10076,8 @@ module Aws::Deadline
10040
10076
  # @return [String]
10041
10077
  #
10042
10078
  # @!attribute [rw] process_exit_code
10043
- # The process exit code.
10079
+ # The process exit code. The default Deadline Cloud worker agent
10080
+ # converts unsigned 32-bit exit codes to signed 32-bit exit codes.
10044
10081
  # @return [Integer]
10045
10082
  #
10046
10083
  # @!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.23.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -332,7 +332,8 @@ module Aws
332
332
  },
333
333
  ]?
334
334
  },
335
- storage_profile_id: ::String?
335
+ storage_profile_id: ::String?,
336
+ tag_propagation_mode: ("NO_PROPAGATION" | "PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH")?
336
337
  }?,
337
338
  service_managed_ec2: {
338
339
  instance_capabilities: {
@@ -577,7 +578,8 @@ module Aws
577
578
  }?,
578
579
  host_name: ::String?
579
580
  },
580
- ?client_token: ::String
581
+ ?client_token: ::String,
582
+ ?tags: Hash[::String, ::String]
581
583
  ) -> _CreateWorkerResponseSuccess
582
584
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkerResponseSuccess
583
585
 
@@ -1613,7 +1615,8 @@ module Aws
1613
1615
  value: ::String
1614
1616
  }?,
1615
1617
  search_term_filter: {
1616
- search_term: ::String
1618
+ search_term: ::String,
1619
+ match_type: ("FUZZY_MATCH" | "CONTAINS")?
1617
1620
  }?,
1618
1621
  string_filter: {
1619
1622
  name: ::String,
@@ -1670,7 +1673,8 @@ module Aws
1670
1673
  value: ::String
1671
1674
  }?,
1672
1675
  search_term_filter: {
1673
- search_term: ::String
1676
+ search_term: ::String,
1677
+ match_type: ("FUZZY_MATCH" | "CONTAINS")?
1674
1678
  }?,
1675
1679
  string_filter: {
1676
1680
  name: ::String,
@@ -1727,7 +1731,8 @@ module Aws
1727
1731
  value: ::String
1728
1732
  }?,
1729
1733
  search_term_filter: {
1730
- search_term: ::String
1734
+ search_term: ::String,
1735
+ match_type: ("FUZZY_MATCH" | "CONTAINS")?
1731
1736
  }?,
1732
1737
  string_filter: {
1733
1738
  name: ::String,
@@ -1783,7 +1788,8 @@ module Aws
1783
1788
  value: ::String
1784
1789
  }?,
1785
1790
  search_term_filter: {
1786
- search_term: ::String
1791
+ search_term: ::String,
1792
+ match_type: ("FUZZY_MATCH" | "CONTAINS")?
1787
1793
  }?,
1788
1794
  string_filter: {
1789
1795
  name: ::String,
@@ -1950,7 +1956,8 @@ module Aws
1950
1956
  },
1951
1957
  ]?
1952
1958
  },
1953
- storage_profile_id: ::String?
1959
+ storage_profile_id: ::String?,
1960
+ tag_propagation_mode: ("NO_PROPAGATION" | "PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH")?
1954
1961
  }?,
1955
1962
  service_managed_ec2: {
1956
1963
  instance_capabilities: {
data/sig/types.rbs CHANGED
@@ -494,6 +494,7 @@ module Aws::Deadline
494
494
  attr_accessor fleet_id: ::String
495
495
  attr_accessor host_properties: Types::HostPropertiesRequest
496
496
  attr_accessor client_token: ::String
497
+ attr_accessor tags: ::Hash[::String, ::String]
497
498
  SENSITIVE: []
498
499
  end
499
500
 
@@ -506,6 +507,7 @@ module Aws::Deadline
506
507
  attr_accessor mode: ("NO_SCALING" | "EVENT_BASED_AUTO_SCALING")
507
508
  attr_accessor worker_capabilities: Types::CustomerManagedWorkerCapabilities
508
509
  attr_accessor storage_profile_id: ::String
510
+ attr_accessor tag_propagation_mode: ("NO_PROPAGATION" | "PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH")
509
511
  SENSITIVE: []
510
512
  end
511
513
 
@@ -775,7 +777,7 @@ module Aws::Deadline
775
777
  attr_accessor name: ::String
776
778
  attr_accessor path: ::String
777
779
  attr_accessor type: ("SHARED" | "LOCAL")
778
- SENSITIVE: [:name]
780
+ SENSITIVE: []
779
781
  end
780
782
 
781
783
  class FixedBudgetSchedule
@@ -1920,7 +1922,7 @@ module Aws::Deadline
1920
1922
  attr_accessor output_relative_directories: ::Array[::String]
1921
1923
  attr_accessor input_manifest_path: ::String
1922
1924
  attr_accessor input_manifest_hash: ::String
1923
- SENSITIVE: [:file_system_location_name]
1925
+ SENSITIVE: []
1924
1926
  end
1925
1927
 
1926
1928
  class MemoryMiBRange
@@ -2168,6 +2170,7 @@ module Aws::Deadline
2168
2170
 
2169
2171
  class SearchTermFilterExpression
2170
2172
  attr_accessor search_term: ::String
2173
+ attr_accessor match_type: ("FUZZY_MATCH" | "CONTAINS")
2171
2174
  SENSITIVE: []
2172
2175
  end
2173
2176
 
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.23.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-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core