aws-sdk-deadline 1.29.0 → 1.31.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: 0e275f12ae6aa704aa4ec09e2b27611692979eac6df5a04b2a6bcc34b47c3bcc
4
- data.tar.gz: 30b1bf909323eb812c9402d49f42905b30415ae861b47985dade7ac2cfef46fa
3
+ metadata.gz: 17cd6f3b9d9ee3cecd932b6eb887b262861ebbff60e25e9a2a1da1173154b9a9
4
+ data.tar.gz: 3326fbe26bcd07da6adfa4acdb13a9819016b23386fd20e5546393a73d491ebe
5
5
  SHA512:
6
- metadata.gz: 329c6096918d08f156623639b8ff46fb459425446bdd05bea41084f7399b3d083012a1a0de39c6e375e424d2f8000983fca7760151f18613b476b382776d1943
7
- data.tar.gz: 5fffab8ee941a1e11152072d4655528435b3ec7105efc7dbc41be3c7fcb52ef38ff1f7e91e750763426d14317bfca7278b4d07c9a0a24326375c8271ca0e407a
6
+ metadata.gz: 9f45fe29bb0797078a78cc564bc50d93e823c67da35e92109303b3c8264c6d1fcdf8c2133381bc0371ff71c7d09378f9666bdfca3e4ccfa5745560cc9460c29f
7
+ data.tar.gz: 51569f9794cbeae1e58ee418b4b600480691993ba7914f5ddafe892f266837fb29c55a8a8a6a07a3496b6aaf8f591312417ba9399ccf2437ac4f8276ae4d48f8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.31.0 (2025-07-29)
5
+ ------------------
6
+
7
+ * Feature - Adds support for tag management on monitors.
8
+
9
+ 1.30.0 (2025-07-21)
10
+ ------------------
11
+
12
+ * Feature - Add support for VPC resource endpoints in Service Managed Fleets
13
+
4
14
  1.29.0 (2025-07-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.31.0
@@ -95,7 +95,7 @@ module Aws::Deadline
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::Deadline
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::Deadline
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::Deadline
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -367,7 +377,7 @@ module Aws::Deadline
367
377
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
368
378
  #
369
379
  # @option options [Aws::TokenProvider] :token_provider
370
- # A Bearer Token Provider. This can be an instance of any one of the
380
+ # Your Bearer token used for authentication. This can be an instance of any one of the
371
381
  # following classes:
372
382
  #
373
383
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -1292,6 +1302,9 @@ module Aws::Deadline
1292
1302
  # instance_market_options: { # required
1293
1303
  # type: "on-demand", # required, accepts on-demand, spot
1294
1304
  # },
1305
+ # vpc_configuration: {
1306
+ # resource_configuration_arns: ["VpcResourceConfigurationArn"],
1307
+ # },
1295
1308
  # storage_profile_id: "StorageProfileId",
1296
1309
  # },
1297
1310
  # },
@@ -1601,6 +1614,11 @@ module Aws::Deadline
1601
1614
  # using IAM Identity Center uses this role to access Deadline Cloud
1602
1615
  # resources.
1603
1616
  #
1617
+ # @option params [Hash<String,String>] :tags
1618
+ # The tags to add to your monitor. Each tag consists of a tag key and a
1619
+ # tag value. Tag keys and values are both required, but tag values can
1620
+ # be empty strings.
1621
+ #
1604
1622
  # @return [Types::CreateMonitorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1605
1623
  #
1606
1624
  # * {Types::CreateMonitorResponse#monitor_id #monitor_id} => String
@@ -1614,6 +1632,9 @@ module Aws::Deadline
1614
1632
  # identity_center_instance_arn: "IdentityCenterInstanceArn", # required
1615
1633
  # subdomain: "Subdomain", # required
1616
1634
  # role_arn: "IamRoleArn", # required
1635
+ # tags: {
1636
+ # "String" => "String",
1637
+ # },
1617
1638
  # })
1618
1639
  #
1619
1640
  # @example Response structure
@@ -2668,6 +2689,8 @@ module Aws::Deadline
2668
2689
  # resp.configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values #=> Array
2669
2690
  # resp.configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values[0] #=> String
2670
2691
  # resp.configuration.service_managed_ec2.instance_market_options.type #=> String, one of "on-demand", "spot"
2692
+ # resp.configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns #=> Array
2693
+ # resp.configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns[0] #=> String
2671
2694
  # resp.configuration.service_managed_ec2.storage_profile_id #=> String
2672
2695
  # resp.host_configuration.script_body #=> String
2673
2696
  # resp.host_configuration.script_timeout_seconds #=> Integer
@@ -4085,6 +4108,8 @@ module Aws::Deadline
4085
4108
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values #=> Array
4086
4109
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values[0] #=> String
4087
4110
  # resp.fleets[0].configuration.service_managed_ec2.instance_market_options.type #=> String, one of "on-demand", "spot"
4111
+ # resp.fleets[0].configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns #=> Array
4112
+ # resp.fleets[0].configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns[0] #=> String
4088
4113
  # resp.fleets[0].configuration.service_managed_ec2.storage_profile_id #=> String
4089
4114
  # resp.fleets[0].created_at #=> Time
4090
4115
  # resp.fleets[0].created_by #=> String
@@ -5519,6 +5544,8 @@ module Aws::Deadline
5519
5544
  # resp.jobs[0].created_at #=> Time
5520
5545
  # resp.jobs[0].ended_at #=> Time
5521
5546
  # resp.jobs[0].started_at #=> Time
5547
+ # resp.jobs[0].updated_at #=> Time
5548
+ # resp.jobs[0].updated_by #=> String
5522
5549
  # resp.jobs[0].job_parameters #=> Hash
5523
5550
  # resp.jobs[0].job_parameters["JobParametersKeyString"].int #=> String
5524
5551
  # resp.jobs[0].job_parameters["JobParametersKeyString"].float #=> String
@@ -5639,8 +5666,11 @@ module Aws::Deadline
5639
5666
  # resp.steps[0].task_run_status_counts["TaskRunStatus"] #=> Integer
5640
5667
  # resp.steps[0].task_failure_retry_count #=> Integer
5641
5668
  # resp.steps[0].created_at #=> Time
5669
+ # resp.steps[0].created_by #=> String
5642
5670
  # resp.steps[0].started_at #=> Time
5643
5671
  # resp.steps[0].ended_at #=> Time
5672
+ # resp.steps[0].updated_at #=> Time
5673
+ # resp.steps[0].updated_by #=> String
5644
5674
  # resp.steps[0].parameter_space.parameters #=> Array
5645
5675
  # resp.steps[0].parameter_space.parameters[0].name #=> String
5646
5676
  # resp.steps[0].parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH", "CHUNK_INT"
@@ -5761,6 +5791,8 @@ module Aws::Deadline
5761
5791
  # resp.tasks[0].failure_retry_count #=> Integer
5762
5792
  # resp.tasks[0].started_at #=> Time
5763
5793
  # resp.tasks[0].ended_at #=> Time
5794
+ # resp.tasks[0].updated_at #=> Time
5795
+ # resp.tasks[0].updated_by #=> String
5764
5796
  # resp.next_item_offset #=> Integer
5765
5797
  # resp.total_results #=> Integer
5766
5798
  #
@@ -6293,6 +6325,9 @@ module Aws::Deadline
6293
6325
  # instance_market_options: { # required
6294
6326
  # type: "on-demand", # required, accepts on-demand, spot
6295
6327
  # },
6328
+ # vpc_configuration: {
6329
+ # resource_configuration_arns: ["VpcResourceConfigurationArn"],
6330
+ # },
6296
6331
  # storage_profile_id: "StorageProfileId",
6297
6332
  # },
6298
6333
  # },
@@ -7094,7 +7129,7 @@ module Aws::Deadline
7094
7129
  tracer: tracer
7095
7130
  )
7096
7131
  context[:gem_name] = 'aws-sdk-deadline'
7097
- context[:gem_version] = '1.29.0'
7132
+ context[:gem_version] = '1.31.0'
7098
7133
  Seahorse::Client::Request.new(handlers, context)
7099
7134
  end
7100
7135
 
@@ -644,7 +644,10 @@ module Aws::Deadline
644
644
  ValidationExceptionField = Shapes::StructureShape.new(name: 'ValidationExceptionField')
645
645
  ValidationExceptionFieldList = Shapes::ListShape.new(name: 'ValidationExceptionFieldList')
646
646
  ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
647
+ VpcConfiguration = Shapes::StructureShape.new(name: 'VpcConfiguration')
647
648
  VpcId = Shapes::StringShape.new(name: 'VpcId')
649
+ VpcResourceConfigurationArn = Shapes::StringShape.new(name: 'VpcResourceConfigurationArn')
650
+ VpcResourceConfigurationArns = Shapes::ListShape.new(name: 'VpcResourceConfigurationArns')
648
651
  WindowsUser = Shapes::StructureShape.new(name: 'WindowsUser')
649
652
  WindowsUserPasswordArnString = Shapes::StringShape.new(name: 'WindowsUserPasswordArnString')
650
653
  WindowsUserUserString = Shapes::StringShape.new(name: 'WindowsUserUserString')
@@ -981,6 +984,7 @@ module Aws::Deadline
981
984
  CreateMonitorRequest.add_member(:identity_center_instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, required: true, location_name: "identityCenterInstanceArn"))
982
985
  CreateMonitorRequest.add_member(:subdomain, Shapes::ShapeRef.new(shape: Subdomain, required: true, location_name: "subdomain"))
983
986
  CreateMonitorRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "roleArn"))
987
+ CreateMonitorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
984
988
  CreateMonitorRequest.struct_class = Types::CreateMonitorRequest
985
989
 
986
990
  CreateMonitorResponse.add_member(:monitor_id, Shapes::ShapeRef.new(shape: MonitorId, required: true, location_name: "monitorId"))
@@ -1808,6 +1812,8 @@ module Aws::Deadline
1808
1812
  JobSearchSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
1809
1813
  JobSearchSummary.add_member(:ended_at, Shapes::ShapeRef.new(shape: EndedAt, location_name: "endedAt"))
1810
1814
  JobSearchSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: StartedAt, location_name: "startedAt"))
1815
+ JobSearchSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
1816
+ JobSearchSummary.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
1811
1817
  JobSearchSummary.add_member(:job_parameters, Shapes::ShapeRef.new(shape: JobParameters, location_name: "jobParameters"))
1812
1818
  JobSearchSummary.add_member(:max_worker_count, Shapes::ShapeRef.new(shape: MaxWorkerCount, location_name: "maxWorkerCount"))
1813
1819
  JobSearchSummary.add_member(:source_job_id, Shapes::ShapeRef.new(shape: JobId, location_name: "sourceJobId"))
@@ -2410,6 +2416,7 @@ module Aws::Deadline
2410
2416
 
2411
2417
  ServiceManagedEc2FleetConfiguration.add_member(:instance_capabilities, Shapes::ShapeRef.new(shape: ServiceManagedEc2InstanceCapabilities, required: true, location_name: "instanceCapabilities"))
2412
2418
  ServiceManagedEc2FleetConfiguration.add_member(:instance_market_options, Shapes::ShapeRef.new(shape: ServiceManagedEc2InstanceMarketOptions, required: true, location_name: "instanceMarketOptions"))
2419
+ ServiceManagedEc2FleetConfiguration.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "vpcConfiguration"))
2413
2420
  ServiceManagedEc2FleetConfiguration.add_member(:storage_profile_id, Shapes::ShapeRef.new(shape: StorageProfileId, location_name: "storageProfileId"))
2414
2421
  ServiceManagedEc2FleetConfiguration.struct_class = Types::ServiceManagedEc2FleetConfiguration
2415
2422
 
@@ -2603,8 +2610,11 @@ module Aws::Deadline
2603
2610
  StepSearchSummary.add_member(:task_run_status_counts, Shapes::ShapeRef.new(shape: TaskRunStatusCounts, location_name: "taskRunStatusCounts"))
2604
2611
  StepSearchSummary.add_member(:task_failure_retry_count, Shapes::ShapeRef.new(shape: TaskFailureRetryCount, location_name: "taskFailureRetryCount"))
2605
2612
  StepSearchSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
2613
+ StepSearchSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
2606
2614
  StepSearchSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: StartedAt, location_name: "startedAt"))
2607
2615
  StepSearchSummary.add_member(:ended_at, Shapes::ShapeRef.new(shape: EndedAt, location_name: "endedAt"))
2616
+ StepSearchSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
2617
+ StepSearchSummary.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
2608
2618
  StepSearchSummary.add_member(:parameter_space, Shapes::ShapeRef.new(shape: ParameterSpace, location_name: "parameterSpace"))
2609
2619
  StepSearchSummary.struct_class = Types::StepSearchSummary
2610
2620
 
@@ -2710,6 +2720,8 @@ module Aws::Deadline
2710
2720
  TaskSearchSummary.add_member(:failure_retry_count, Shapes::ShapeRef.new(shape: TaskRetryCount, location_name: "failureRetryCount"))
2711
2721
  TaskSearchSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: StartedAt, location_name: "startedAt"))
2712
2722
  TaskSearchSummary.add_member(:ended_at, Shapes::ShapeRef.new(shape: EndedAt, location_name: "endedAt"))
2723
+ TaskSearchSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
2724
+ TaskSearchSummary.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
2713
2725
  TaskSearchSummary.struct_class = Types::TaskSearchSummary
2714
2726
 
2715
2727
  TaskSummaries.member = Shapes::ShapeRef.new(shape: TaskSummary)
@@ -2959,6 +2971,11 @@ module Aws::Deadline
2959
2971
 
2960
2972
  ValidationExceptionFieldList.member = Shapes::ShapeRef.new(shape: ValidationExceptionField)
2961
2973
 
2974
+ VpcConfiguration.add_member(:resource_configuration_arns, Shapes::ShapeRef.new(shape: VpcResourceConfigurationArns, location_name: "resourceConfigurationArns"))
2975
+ VpcConfiguration.struct_class = Types::VpcConfiguration
2976
+
2977
+ VpcResourceConfigurationArns.member = Shapes::ShapeRef.new(shape: VpcResourceConfigurationArn)
2978
+
2962
2979
  WindowsUser.add_member(:user, Shapes::ShapeRef.new(shape: WindowsUserUserString, required: true, location_name: "user"))
2963
2980
  WindowsUser.add_member(:password_arn, Shapes::ShapeRef.new(shape: WindowsUserPasswordArnString, required: true, location_name: "passwordArn"))
2964
2981
  WindowsUser.struct_class = Types::WindowsUser
@@ -1466,6 +1466,12 @@ module Aws::Deadline
1466
1466
  # Cloud resources.
1467
1467
  # @return [String]
1468
1468
  #
1469
+ # @!attribute [rw] tags
1470
+ # The tags to add to your monitor. Each tag consists of a tag key and
1471
+ # a tag value. Tag keys and values are both required, but tag values
1472
+ # can be empty strings.
1473
+ # @return [Hash<String,String>]
1474
+ #
1469
1475
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/CreateMonitorRequest AWS API Documentation
1470
1476
  #
1471
1477
  class CreateMonitorRequest < Struct.new(
@@ -1473,7 +1479,8 @@ module Aws::Deadline
1473
1479
  :display_name,
1474
1480
  :identity_center_instance_arn,
1475
1481
  :subdomain,
1476
- :role_arn)
1482
+ :role_arn,
1483
+ :tags)
1477
1484
  SENSITIVE = []
1478
1485
  include Aws::Structure
1479
1486
  end
@@ -5188,6 +5195,14 @@ module Aws::Deadline
5188
5195
  # The date and time the resource started running.
5189
5196
  # @return [Time]
5190
5197
  #
5198
+ # @!attribute [rw] updated_at
5199
+ # The date and time the resource was updated.
5200
+ # @return [Time]
5201
+ #
5202
+ # @!attribute [rw] updated_by
5203
+ # The user or system that updated this resource.
5204
+ # @return [String]
5205
+ #
5191
5206
  # @!attribute [rw] job_parameters
5192
5207
  # The job parameters.
5193
5208
  # @return [Hash<String,Types::JobParameter>]
@@ -5227,6 +5242,8 @@ module Aws::Deadline
5227
5242
  :created_at,
5228
5243
  :ended_at,
5229
5244
  :started_at,
5245
+ :updated_at,
5246
+ :updated_by,
5230
5247
  :job_parameters,
5231
5248
  :max_worker_count,
5232
5249
  :source_job_id)
@@ -8039,6 +8056,11 @@ module Aws::Deadline
8039
8056
  # The Amazon EC2 market type.
8040
8057
  # @return [Types::ServiceManagedEc2InstanceMarketOptions]
8041
8058
  #
8059
+ # @!attribute [rw] vpc_configuration
8060
+ # The VPC configuration details for a service managed Amazon EC2
8061
+ # fleet.
8062
+ # @return [Types::VpcConfiguration]
8063
+ #
8042
8064
  # @!attribute [rw] storage_profile_id
8043
8065
  # The storage profile ID.
8044
8066
  # @return [String]
@@ -8048,6 +8070,7 @@ module Aws::Deadline
8048
8070
  class ServiceManagedEc2FleetConfiguration < Struct.new(
8049
8071
  :instance_capabilities,
8050
8072
  :instance_market_options,
8073
+ :vpc_configuration,
8051
8074
  :storage_profile_id)
8052
8075
  SENSITIVE = []
8053
8076
  include Aws::Structure
@@ -8836,6 +8859,10 @@ module Aws::Deadline
8836
8859
  # The date and time the resource was created.
8837
8860
  # @return [Time]
8838
8861
  #
8862
+ # @!attribute [rw] created_by
8863
+ # The user or system that created this resource.
8864
+ # @return [String]
8865
+ #
8839
8866
  # @!attribute [rw] started_at
8840
8867
  # The date and time the resource started running.
8841
8868
  # @return [Time]
@@ -8844,6 +8871,14 @@ module Aws::Deadline
8844
8871
  # The date and time the resource ended running.
8845
8872
  # @return [Time]
8846
8873
  #
8874
+ # @!attribute [rw] updated_at
8875
+ # The date and time the resource was updated.
8876
+ # @return [Time]
8877
+ #
8878
+ # @!attribute [rw] updated_by
8879
+ # The user or system that updated this resource.
8880
+ # @return [String]
8881
+ #
8847
8882
  # @!attribute [rw] parameter_space
8848
8883
  # The parameters and combination expressions for the search.
8849
8884
  # @return [Types::ParameterSpace]
@@ -8862,8 +8897,11 @@ module Aws::Deadline
8862
8897
  :task_run_status_counts,
8863
8898
  :task_failure_retry_count,
8864
8899
  :created_at,
8900
+ :created_by,
8865
8901
  :started_at,
8866
8902
  :ended_at,
8903
+ :updated_at,
8904
+ :updated_by,
8867
8905
  :parameter_space)
8868
8906
  SENSITIVE = []
8869
8907
  include Aws::Structure
@@ -9253,6 +9291,14 @@ module Aws::Deadline
9253
9291
  # The date and time the resource ended running.
9254
9292
  # @return [Time]
9255
9293
  #
9294
+ # @!attribute [rw] updated_at
9295
+ # The date and time the resource was updated.
9296
+ # @return [Time]
9297
+ #
9298
+ # @!attribute [rw] updated_by
9299
+ # The user or system that updated this resource.
9300
+ # @return [String]
9301
+ #
9256
9302
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskSearchSummary AWS API Documentation
9257
9303
  #
9258
9304
  class TaskSearchSummary < Struct.new(
@@ -9265,7 +9311,9 @@ module Aws::Deadline
9265
9311
  :parameters,
9266
9312
  :failure_retry_count,
9267
9313
  :started_at,
9268
- :ended_at)
9314
+ :ended_at,
9315
+ :updated_at,
9316
+ :updated_by)
9269
9317
  SENSITIVE = [:parameters]
9270
9318
  include Aws::Structure
9271
9319
  end
@@ -10425,6 +10473,21 @@ module Aws::Deadline
10425
10473
  include Aws::Structure
10426
10474
  end
10427
10475
 
10476
+ # The configuration options for a service managed fleet's VPC.
10477
+ #
10478
+ # @!attribute [rw] resource_configuration_arns
10479
+ # The ARNs of the VPC Lattice resource configurations attached to the
10480
+ # fleet.
10481
+ # @return [Array<String>]
10482
+ #
10483
+ # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/VpcConfiguration AWS API Documentation
10484
+ #
10485
+ class VpcConfiguration < Struct.new(
10486
+ :resource_configuration_arns)
10487
+ SENSITIVE = []
10488
+ include Aws::Structure
10489
+ end
10490
+
10428
10491
  # The Windows user details.
10429
10492
  #
10430
10493
  # @!attribute [rw] user
@@ -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.29.0'
58
+ GEM_VERSION = '1.31.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -383,6 +384,9 @@ module Aws
383
384
  instance_market_options: {
384
385
  type: ("on-demand" | "spot")
385
386
  },
387
+ vpc_configuration: {
388
+ resource_configuration_arns: Array[::String]?
389
+ }?,
386
390
  storage_profile_id: ::String?
387
391
  }?
388
392
  },
@@ -474,7 +478,8 @@ module Aws
474
478
  display_name: ::String,
475
479
  identity_center_instance_arn: ::String,
476
480
  subdomain: ::String,
477
- role_arn: ::String
481
+ role_arn: ::String,
482
+ ?tags: Hash[::String, ::String]
478
483
  ) -> _CreateMonitorResponseSuccess
479
484
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMonitorResponseSuccess
480
485
 
@@ -2016,6 +2021,9 @@ module Aws
2016
2021
  instance_market_options: {
2017
2022
  type: ("on-demand" | "spot")
2018
2023
  },
2024
+ vpc_configuration: {
2025
+ resource_configuration_arns: Array[::String]?
2026
+ }?,
2019
2027
  storage_profile_id: ::String?
2020
2028
  }?
2021
2029
  },
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -412,6 +412,7 @@ module Aws::Deadline
412
412
  attr_accessor identity_center_instance_arn: ::String
413
413
  attr_accessor subdomain: ::String
414
414
  attr_accessor role_arn: ::String
415
+ attr_accessor tags: ::Hash[::String, ::String]
415
416
  SENSITIVE: []
416
417
  end
417
418
 
@@ -1458,6 +1459,8 @@ module Aws::Deadline
1458
1459
  attr_accessor created_at: ::Time
1459
1460
  attr_accessor ended_at: ::Time
1460
1461
  attr_accessor started_at: ::Time
1462
+ attr_accessor updated_at: ::Time
1463
+ attr_accessor updated_by: ::String
1461
1464
  attr_accessor job_parameters: ::Hash[::String, Types::JobParameter]
1462
1465
  attr_accessor max_worker_count: ::Integer
1463
1466
  attr_accessor source_job_id: ::String
@@ -2207,6 +2210,7 @@ module Aws::Deadline
2207
2210
  class ServiceManagedEc2FleetConfiguration
2208
2211
  attr_accessor instance_capabilities: Types::ServiceManagedEc2InstanceCapabilities
2209
2212
  attr_accessor instance_market_options: Types::ServiceManagedEc2InstanceMarketOptions
2213
+ attr_accessor vpc_configuration: Types::VpcConfiguration
2210
2214
  attr_accessor storage_profile_id: ::String
2211
2215
  SENSITIVE: []
2212
2216
  end
@@ -2436,8 +2440,11 @@ module Aws::Deadline
2436
2440
  attr_accessor task_run_status_counts: ::Hash[("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE"), ::Integer]
2437
2441
  attr_accessor task_failure_retry_count: ::Integer
2438
2442
  attr_accessor created_at: ::Time
2443
+ attr_accessor created_by: ::String
2439
2444
  attr_accessor started_at: ::Time
2440
2445
  attr_accessor ended_at: ::Time
2446
+ attr_accessor updated_at: ::Time
2447
+ attr_accessor updated_by: ::String
2441
2448
  attr_accessor parameter_space: Types::ParameterSpace
2442
2449
  SENSITIVE: []
2443
2450
  end
@@ -2554,6 +2561,8 @@ module Aws::Deadline
2554
2561
  attr_accessor failure_retry_count: ::Integer
2555
2562
  attr_accessor started_at: ::Time
2556
2563
  attr_accessor ended_at: ::Time
2564
+ attr_accessor updated_at: ::Time
2565
+ attr_accessor updated_by: ::String
2557
2566
  SENSITIVE: [:parameters]
2558
2567
  end
2559
2568
 
@@ -2865,6 +2874,11 @@ module Aws::Deadline
2865
2874
  SENSITIVE: []
2866
2875
  end
2867
2876
 
2877
+ class VpcConfiguration
2878
+ attr_accessor resource_configuration_arns: ::Array[::String]
2879
+ SENSITIVE: []
2880
+ end
2881
+
2868
2882
  class WindowsUser
2869
2883
  attr_accessor user: ::String
2870
2884
  attr_accessor password_arn: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-deadline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.29.0
4
+ version: 1.31.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement