aws-sdk-deadline 1.43.0 → 1.45.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-deadline/client.rb +56 -31
- data/lib/aws-sdk-deadline/client_api.rb +65 -58
- data/lib/aws-sdk-deadline/types.rb +36 -8
- data/lib/aws-sdk-deadline.rb +1 -1
- data/sig/client.rbs +6 -1
- data/sig/types.rbs +7 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d500d1ad0da10cd93a23fcc5683ffc79877428fcef7c44e135eabbaaece0c6e3
|
|
4
|
+
data.tar.gz: 30baf2799270e852548db6dfba05b0cae2675d3f01921ff1ccea5c8223bdd4d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c29e54a652bb01e54d5c6b1d5888d93884bf80ad5d8be34a7b28b09c1e9ac273fda6da2b678efa5a5623d6b2e793508b21c2b2d0a51663c99c17a4b159c0f19
|
|
7
|
+
data.tar.gz: 683ba1b6f033db86445d7d75a5a271cd845bae35c51e5f1cdaf0b2f3502d3b80310acaa4c99e3b4f1c97cf065e2b1e561b60e1fc6c3641bc633333e6fa4314f2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.45.0 (2026-02-06)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for tagging jobs during job creation
|
|
8
|
+
|
|
9
|
+
1.44.0 (2026-01-27)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - AWS Deadline Cloud now supports editing job names and descriptions after submission.
|
|
13
|
+
|
|
4
14
|
1.43.0 (2026-01-16)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.45.0
|
|
@@ -1402,6 +1402,18 @@ module Aws::Deadline
|
|
|
1402
1402
|
# @option params [String] :source_job_id
|
|
1403
1403
|
# The job ID for the source job.
|
|
1404
1404
|
#
|
|
1405
|
+
# @option params [String] :name_override
|
|
1406
|
+
# A custom name to override the job name derived from the job template.
|
|
1407
|
+
#
|
|
1408
|
+
# @option params [String] :description_override
|
|
1409
|
+
# A custom description to override the job description derived from the
|
|
1410
|
+
# job template.
|
|
1411
|
+
#
|
|
1412
|
+
# @option params [Hash<String,String>] :tags
|
|
1413
|
+
# The tags to add to your job. Each tag consists of a tag key and a tag
|
|
1414
|
+
# value. Tag keys and values are both required, but tag values can be
|
|
1415
|
+
# empty strings.
|
|
1416
|
+
#
|
|
1405
1417
|
# @return [Types::CreateJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1406
1418
|
#
|
|
1407
1419
|
# * {Types::CreateJobResponse#job_id #job_id} => String
|
|
@@ -1442,6 +1454,11 @@ module Aws::Deadline
|
|
|
1442
1454
|
# max_retries_per_task: 1,
|
|
1443
1455
|
# max_worker_count: 1,
|
|
1444
1456
|
# source_job_id: "JobId",
|
|
1457
|
+
# name_override: "JobName",
|
|
1458
|
+
# description_override: "JobDescriptionOverride",
|
|
1459
|
+
# tags: {
|
|
1460
|
+
# "String" => "String",
|
|
1461
|
+
# },
|
|
1445
1462
|
# })
|
|
1446
1463
|
#
|
|
1447
1464
|
# @example Response structure
|
|
@@ -3404,7 +3421,7 @@ module Aws::Deadline
|
|
|
3404
3421
|
# farm_id: "FarmId", # required
|
|
3405
3422
|
# aggregation_id: "AggregationId", # required
|
|
3406
3423
|
# max_results: 1,
|
|
3407
|
-
# next_token: "
|
|
3424
|
+
# next_token: "NextToken",
|
|
3408
3425
|
# })
|
|
3409
3426
|
#
|
|
3410
3427
|
# @example Response structure
|
|
@@ -3786,7 +3803,7 @@ module Aws::Deadline
|
|
|
3786
3803
|
# @example Request syntax with placeholder values
|
|
3787
3804
|
#
|
|
3788
3805
|
# resp = client.list_available_metered_products({
|
|
3789
|
-
# next_token: "
|
|
3806
|
+
# next_token: "NextToken",
|
|
3790
3807
|
# max_results: 1,
|
|
3791
3808
|
# })
|
|
3792
3809
|
#
|
|
@@ -3834,7 +3851,7 @@ module Aws::Deadline
|
|
|
3834
3851
|
# @example Request syntax with placeholder values
|
|
3835
3852
|
#
|
|
3836
3853
|
# resp = client.list_budgets({
|
|
3837
|
-
# next_token: "
|
|
3854
|
+
# next_token: "NextToken",
|
|
3838
3855
|
# farm_id: "FarmId", # required
|
|
3839
3856
|
# max_results: 1,
|
|
3840
3857
|
# status: "ACTIVE", # accepts ACTIVE, INACTIVE
|
|
@@ -3889,7 +3906,7 @@ module Aws::Deadline
|
|
|
3889
3906
|
#
|
|
3890
3907
|
# resp = client.list_farm_members({
|
|
3891
3908
|
# farm_id: "FarmId", # required
|
|
3892
|
-
# next_token: "
|
|
3909
|
+
# next_token: "NextToken",
|
|
3893
3910
|
# max_results: 1,
|
|
3894
3911
|
# })
|
|
3895
3912
|
#
|
|
@@ -3935,7 +3952,7 @@ module Aws::Deadline
|
|
|
3935
3952
|
# @example Request syntax with placeholder values
|
|
3936
3953
|
#
|
|
3937
3954
|
# resp = client.list_farms({
|
|
3938
|
-
# next_token: "
|
|
3955
|
+
# next_token: "NextToken",
|
|
3939
3956
|
# principal_id: "IdentityCenterPrincipalId",
|
|
3940
3957
|
# max_results: 1,
|
|
3941
3958
|
# })
|
|
@@ -3989,7 +4006,7 @@ module Aws::Deadline
|
|
|
3989
4006
|
# resp = client.list_fleet_members({
|
|
3990
4007
|
# farm_id: "FarmId", # required
|
|
3991
4008
|
# fleet_id: "FleetId", # required
|
|
3992
|
-
# next_token: "
|
|
4009
|
+
# next_token: "NextToken",
|
|
3993
4010
|
# max_results: 1,
|
|
3994
4011
|
# })
|
|
3995
4012
|
#
|
|
@@ -4053,7 +4070,7 @@ module Aws::Deadline
|
|
|
4053
4070
|
# principal_id: "IdentityCenterPrincipalId",
|
|
4054
4071
|
# display_name: "ResourceName",
|
|
4055
4072
|
# status: "ACTIVE", # accepts ACTIVE, CREATE_IN_PROGRESS, UPDATE_IN_PROGRESS, CREATE_FAILED, UPDATE_FAILED, SUSPENDED
|
|
4056
|
-
# next_token: "
|
|
4073
|
+
# next_token: "NextToken",
|
|
4057
4074
|
# max_results: 1,
|
|
4058
4075
|
# })
|
|
4059
4076
|
#
|
|
@@ -4170,7 +4187,7 @@ module Aws::Deadline
|
|
|
4170
4187
|
# farm_id: "FarmId", # required
|
|
4171
4188
|
# queue_id: "QueueId", # required
|
|
4172
4189
|
# job_id: "JobId", # required
|
|
4173
|
-
# next_token: "
|
|
4190
|
+
# next_token: "NextToken",
|
|
4174
4191
|
# max_results: 1,
|
|
4175
4192
|
# })
|
|
4176
4193
|
#
|
|
@@ -4227,7 +4244,7 @@ module Aws::Deadline
|
|
|
4227
4244
|
# farm_id: "FarmId", # required
|
|
4228
4245
|
# job_id: "JobId", # required
|
|
4229
4246
|
# queue_id: "QueueId", # required
|
|
4230
|
-
# next_token: "
|
|
4247
|
+
# next_token: "NextToken",
|
|
4231
4248
|
# max_results: 1,
|
|
4232
4249
|
# })
|
|
4233
4250
|
#
|
|
@@ -4277,7 +4294,7 @@ module Aws::Deadline
|
|
|
4277
4294
|
# farm_id: "FarmId", # required
|
|
4278
4295
|
# principal_id: "IdentityCenterPrincipalId",
|
|
4279
4296
|
# queue_id: "QueueId", # required
|
|
4280
|
-
# next_token: "
|
|
4297
|
+
# next_token: "NextToken",
|
|
4281
4298
|
# max_results: 1,
|
|
4282
4299
|
# })
|
|
4283
4300
|
#
|
|
@@ -4335,7 +4352,7 @@ module Aws::Deadline
|
|
|
4335
4352
|
# @example Request syntax with placeholder values
|
|
4336
4353
|
#
|
|
4337
4354
|
# resp = client.list_license_endpoints({
|
|
4338
|
-
# next_token: "
|
|
4355
|
+
# next_token: "NextToken",
|
|
4339
4356
|
# max_results: 1,
|
|
4340
4357
|
# })
|
|
4341
4358
|
#
|
|
@@ -4380,7 +4397,7 @@ module Aws::Deadline
|
|
|
4380
4397
|
#
|
|
4381
4398
|
# resp = client.list_limits({
|
|
4382
4399
|
# farm_id: "FarmId", # required
|
|
4383
|
-
# next_token: "
|
|
4400
|
+
# next_token: "NextToken",
|
|
4384
4401
|
# max_results: 1,
|
|
4385
4402
|
# })
|
|
4386
4403
|
#
|
|
@@ -4432,7 +4449,7 @@ module Aws::Deadline
|
|
|
4432
4449
|
#
|
|
4433
4450
|
# resp = client.list_metered_products({
|
|
4434
4451
|
# license_endpoint_id: "LicenseEndpointId", # required
|
|
4435
|
-
# next_token: "
|
|
4452
|
+
# next_token: "NextToken",
|
|
4436
4453
|
# max_results: 1,
|
|
4437
4454
|
# })
|
|
4438
4455
|
#
|
|
@@ -4474,7 +4491,7 @@ module Aws::Deadline
|
|
|
4474
4491
|
# @example Request syntax with placeholder values
|
|
4475
4492
|
#
|
|
4476
4493
|
# resp = client.list_monitors({
|
|
4477
|
-
# next_token: "
|
|
4494
|
+
# next_token: "NextToken",
|
|
4478
4495
|
# max_results: 1,
|
|
4479
4496
|
# })
|
|
4480
4497
|
#
|
|
@@ -4531,7 +4548,7 @@ module Aws::Deadline
|
|
|
4531
4548
|
# resp = client.list_queue_environments({
|
|
4532
4549
|
# farm_id: "FarmId", # required
|
|
4533
4550
|
# queue_id: "QueueId", # required
|
|
4534
|
-
# next_token: "
|
|
4551
|
+
# next_token: "NextToken",
|
|
4535
4552
|
# max_results: 1,
|
|
4536
4553
|
# })
|
|
4537
4554
|
#
|
|
@@ -4584,7 +4601,7 @@ module Aws::Deadline
|
|
|
4584
4601
|
# farm_id: "FarmId", # required
|
|
4585
4602
|
# queue_id: "QueueId",
|
|
4586
4603
|
# fleet_id: "FleetId",
|
|
4587
|
-
# next_token: "
|
|
4604
|
+
# next_token: "NextToken",
|
|
4588
4605
|
# max_results: 1,
|
|
4589
4606
|
# })
|
|
4590
4607
|
#
|
|
@@ -4648,7 +4665,7 @@ module Aws::Deadline
|
|
|
4648
4665
|
# farm_id: "FarmId", # required
|
|
4649
4666
|
# queue_id: "QueueId",
|
|
4650
4667
|
# limit_id: "LimitId",
|
|
4651
|
-
# next_token: "
|
|
4668
|
+
# next_token: "NextToken",
|
|
4652
4669
|
# max_results: 1,
|
|
4653
4670
|
# })
|
|
4654
4671
|
#
|
|
@@ -4701,7 +4718,7 @@ module Aws::Deadline
|
|
|
4701
4718
|
# resp = client.list_queue_members({
|
|
4702
4719
|
# farm_id: "FarmId", # required
|
|
4703
4720
|
# queue_id: "QueueId", # required
|
|
4704
|
-
# next_token: "
|
|
4721
|
+
# next_token: "NextToken",
|
|
4705
4722
|
# max_results: 1,
|
|
4706
4723
|
# })
|
|
4707
4724
|
#
|
|
@@ -4764,7 +4781,7 @@ module Aws::Deadline
|
|
|
4764
4781
|
# farm_id: "FarmId", # required
|
|
4765
4782
|
# principal_id: "IdentityCenterPrincipalId",
|
|
4766
4783
|
# status: "IDLE", # accepts IDLE, SCHEDULING, SCHEDULING_BLOCKED
|
|
4767
|
-
# next_token: "
|
|
4784
|
+
# next_token: "NextToken",
|
|
4768
4785
|
# max_results: 1,
|
|
4769
4786
|
# })
|
|
4770
4787
|
#
|
|
@@ -4832,7 +4849,7 @@ module Aws::Deadline
|
|
|
4832
4849
|
# job_id: "JobId", # required
|
|
4833
4850
|
# session_id: "SessionId",
|
|
4834
4851
|
# task_id: "TaskId",
|
|
4835
|
-
# next_token: "
|
|
4852
|
+
# next_token: "NextToken",
|
|
4836
4853
|
# max_results: 1,
|
|
4837
4854
|
# })
|
|
4838
4855
|
#
|
|
@@ -4902,7 +4919,7 @@ module Aws::Deadline
|
|
|
4902
4919
|
# farm_id: "FarmId", # required
|
|
4903
4920
|
# queue_id: "QueueId", # required
|
|
4904
4921
|
# job_id: "JobId", # required
|
|
4905
|
-
# next_token: "
|
|
4922
|
+
# next_token: "NextToken",
|
|
4906
4923
|
# max_results: 1,
|
|
4907
4924
|
# })
|
|
4908
4925
|
#
|
|
@@ -4961,7 +4978,7 @@ module Aws::Deadline
|
|
|
4961
4978
|
# farm_id: "FarmId", # required
|
|
4962
4979
|
# fleet_id: "FleetId", # required
|
|
4963
4980
|
# worker_id: "WorkerId", # required
|
|
4964
|
-
# next_token: "
|
|
4981
|
+
# next_token: "NextToken",
|
|
4965
4982
|
# max_results: 1,
|
|
4966
4983
|
# })
|
|
4967
4984
|
#
|
|
@@ -5022,7 +5039,7 @@ module Aws::Deadline
|
|
|
5022
5039
|
# queue_id: "QueueId", # required
|
|
5023
5040
|
# job_id: "JobId", # required
|
|
5024
5041
|
# step_id: "StepId", # required
|
|
5025
|
-
# next_token: "
|
|
5042
|
+
# next_token: "NextToken",
|
|
5026
5043
|
# max_results: 1,
|
|
5027
5044
|
# })
|
|
5028
5045
|
#
|
|
@@ -5078,7 +5095,7 @@ module Aws::Deadline
|
|
|
5078
5095
|
# queue_id: "QueueId", # required
|
|
5079
5096
|
# job_id: "JobId", # required
|
|
5080
5097
|
# step_id: "StepId", # required
|
|
5081
|
-
# next_token: "
|
|
5098
|
+
# next_token: "NextToken",
|
|
5082
5099
|
# max_results: 1,
|
|
5083
5100
|
# })
|
|
5084
5101
|
#
|
|
@@ -5130,7 +5147,7 @@ module Aws::Deadline
|
|
|
5130
5147
|
# farm_id: "FarmId", # required
|
|
5131
5148
|
# queue_id: "QueueId", # required
|
|
5132
5149
|
# job_id: "JobId", # required
|
|
5133
|
-
# next_token: "
|
|
5150
|
+
# next_token: "NextToken",
|
|
5134
5151
|
# max_results: 1,
|
|
5135
5152
|
# })
|
|
5136
5153
|
#
|
|
@@ -5191,7 +5208,7 @@ module Aws::Deadline
|
|
|
5191
5208
|
#
|
|
5192
5209
|
# resp = client.list_storage_profiles({
|
|
5193
5210
|
# farm_id: "FarmId", # required
|
|
5194
|
-
# next_token: "
|
|
5211
|
+
# next_token: "NextToken",
|
|
5195
5212
|
# max_results: 1,
|
|
5196
5213
|
# })
|
|
5197
5214
|
#
|
|
@@ -5240,7 +5257,7 @@ module Aws::Deadline
|
|
|
5240
5257
|
# resp = client.list_storage_profiles_for_queue({
|
|
5241
5258
|
# farm_id: "FarmId", # required
|
|
5242
5259
|
# queue_id: "QueueId", # required
|
|
5243
|
-
# next_token: "
|
|
5260
|
+
# next_token: "NextToken",
|
|
5244
5261
|
# max_results: 1,
|
|
5245
5262
|
# })
|
|
5246
5263
|
#
|
|
@@ -5326,7 +5343,7 @@ module Aws::Deadline
|
|
|
5326
5343
|
# queue_id: "QueueId", # required
|
|
5327
5344
|
# job_id: "JobId", # required
|
|
5328
5345
|
# step_id: "StepId", # required
|
|
5329
|
-
# next_token: "
|
|
5346
|
+
# next_token: "NextToken",
|
|
5330
5347
|
# max_results: 1,
|
|
5331
5348
|
# })
|
|
5332
5349
|
#
|
|
@@ -5389,7 +5406,7 @@ module Aws::Deadline
|
|
|
5389
5406
|
# resp = client.list_workers({
|
|
5390
5407
|
# farm_id: "FarmId", # required
|
|
5391
5408
|
# fleet_id: "FleetId", # required
|
|
5392
|
-
# next_token: "
|
|
5409
|
+
# next_token: "NextToken",
|
|
5393
5410
|
# max_results: 1,
|
|
5394
5411
|
# })
|
|
5395
5412
|
#
|
|
@@ -6389,7 +6406,7 @@ module Aws::Deadline
|
|
|
6389
6406
|
# The task status to update the job's tasks to.
|
|
6390
6407
|
#
|
|
6391
6408
|
# @option params [Integer] :priority
|
|
6392
|
-
# The job priority
|
|
6409
|
+
# The updated job priority.
|
|
6393
6410
|
#
|
|
6394
6411
|
# @option params [Integer] :max_failed_tasks_count
|
|
6395
6412
|
# The number of task failures before the job stops running and is marked
|
|
@@ -6418,6 +6435,12 @@ module Aws::Deadline
|
|
|
6418
6435
|
#
|
|
6419
6436
|
# The maximum number of workers that can process tasks in the job.
|
|
6420
6437
|
#
|
|
6438
|
+
# @option params [String] :name
|
|
6439
|
+
# The updated job name.
|
|
6440
|
+
#
|
|
6441
|
+
# @option params [String] :description
|
|
6442
|
+
# The updated job description.
|
|
6443
|
+
#
|
|
6421
6444
|
# @option params [required, String] :farm_id
|
|
6422
6445
|
# The farm ID of the job to update.
|
|
6423
6446
|
#
|
|
@@ -6439,6 +6462,8 @@ module Aws::Deadline
|
|
|
6439
6462
|
# max_retries_per_task: 1,
|
|
6440
6463
|
# lifecycle_status: "ARCHIVED", # accepts ARCHIVED
|
|
6441
6464
|
# max_worker_count: 1,
|
|
6465
|
+
# name: "JobName",
|
|
6466
|
+
# description: "JobDescriptionOverride",
|
|
6442
6467
|
# farm_id: "FarmId", # required
|
|
6443
6468
|
# queue_id: "QueueId", # required
|
|
6444
6469
|
# job_id: "JobId", # required
|
|
@@ -7152,7 +7177,7 @@ module Aws::Deadline
|
|
|
7152
7177
|
tracer: tracer
|
|
7153
7178
|
)
|
|
7154
7179
|
context[:gem_name] = 'aws-sdk-deadline'
|
|
7155
|
-
context[:gem_version] = '1.
|
|
7180
|
+
context[:gem_version] = '1.45.0'
|
|
7156
7181
|
Seahorse::Client::Request.new(handlers, context)
|
|
7157
7182
|
end
|
|
7158
7183
|
|
|
@@ -284,6 +284,7 @@ module Aws::Deadline
|
|
|
284
284
|
JobAttachmentSettings = Shapes::StructureShape.new(name: 'JobAttachmentSettings')
|
|
285
285
|
JobAttachmentsFileSystem = Shapes::StringShape.new(name: 'JobAttachmentsFileSystem')
|
|
286
286
|
JobDescription = Shapes::StringShape.new(name: 'JobDescription')
|
|
287
|
+
JobDescriptionOverride = Shapes::StringShape.new(name: 'JobDescriptionOverride')
|
|
287
288
|
JobDetailsEntity = Shapes::StructureShape.new(name: 'JobDetailsEntity')
|
|
288
289
|
JobDetailsError = Shapes::StructureShape.new(name: 'JobDetailsError')
|
|
289
290
|
JobDetailsIdentifiers = Shapes::StructureShape.new(name: 'JobDetailsIdentifiers')
|
|
@@ -410,6 +411,7 @@ module Aws::Deadline
|
|
|
410
411
|
MonitorSummaries = Shapes::ListShape.new(name: 'MonitorSummaries')
|
|
411
412
|
MonitorSummary = Shapes::StructureShape.new(name: 'MonitorSummary')
|
|
412
413
|
NextItemOffset = Shapes::IntegerShape.new(name: 'NextItemOffset')
|
|
414
|
+
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
413
415
|
OutputRelativeDirectoriesList = Shapes::ListShape.new(name: 'OutputRelativeDirectoriesList')
|
|
414
416
|
OutputRelativeDirectoriesListMemberString = Shapes::StringShape.new(name: 'OutputRelativeDirectoriesListMemberString')
|
|
415
417
|
ParameterFilterExpression = Shapes::StructureShape.new(name: 'ParameterFilterExpression')
|
|
@@ -956,6 +958,9 @@ module Aws::Deadline
|
|
|
956
958
|
CreateJobRequest.add_member(:max_retries_per_task, Shapes::ShapeRef.new(shape: MaxRetriesPerTask, location_name: "maxRetriesPerTask"))
|
|
957
959
|
CreateJobRequest.add_member(:max_worker_count, Shapes::ShapeRef.new(shape: MaxWorkerCount, location_name: "maxWorkerCount"))
|
|
958
960
|
CreateJobRequest.add_member(:source_job_id, Shapes::ShapeRef.new(shape: JobId, location_name: "sourceJobId"))
|
|
961
|
+
CreateJobRequest.add_member(:name_override, Shapes::ShapeRef.new(shape: JobName, location_name: "nameOverride"))
|
|
962
|
+
CreateJobRequest.add_member(:description_override, Shapes::ShapeRef.new(shape: JobDescriptionOverride, location_name: "descriptionOverride"))
|
|
963
|
+
CreateJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
959
964
|
CreateJobRequest.struct_class = Types::CreateJobRequest
|
|
960
965
|
|
|
961
966
|
CreateJobResponse.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location_name: "jobId"))
|
|
@@ -1584,11 +1589,11 @@ module Aws::Deadline
|
|
|
1584
1589
|
GetSessionsStatisticsAggregationRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
1585
1590
|
GetSessionsStatisticsAggregationRequest.add_member(:aggregation_id, Shapes::ShapeRef.new(shape: AggregationId, required: true, location: "querystring", location_name: "aggregationId"))
|
|
1586
1591
|
GetSessionsStatisticsAggregationRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1587
|
-
GetSessionsStatisticsAggregationRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1592
|
+
GetSessionsStatisticsAggregationRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1588
1593
|
GetSessionsStatisticsAggregationRequest.struct_class = Types::GetSessionsStatisticsAggregationRequest
|
|
1589
1594
|
|
|
1590
1595
|
GetSessionsStatisticsAggregationResponse.add_member(:statistics, Shapes::ShapeRef.new(shape: StatisticsList, location_name: "statistics"))
|
|
1591
|
-
GetSessionsStatisticsAggregationResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1596
|
+
GetSessionsStatisticsAggregationResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1592
1597
|
GetSessionsStatisticsAggregationResponse.add_member(:status, Shapes::ShapeRef.new(shape: SessionsStatisticsAggregationStatus, required: true, location_name: "status"))
|
|
1593
1598
|
GetSessionsStatisticsAggregationResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
|
|
1594
1599
|
GetSessionsStatisticsAggregationResponse.struct_class = Types::GetSessionsStatisticsAggregationResponse
|
|
@@ -1875,182 +1880,182 @@ module Aws::Deadline
|
|
|
1875
1880
|
|
|
1876
1881
|
ListAttributeCapabilityValue.member = Shapes::ShapeRef.new(shape: AttributeCapabilityValue)
|
|
1877
1882
|
|
|
1878
|
-
ListAvailableMeteredProductsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1883
|
+
ListAvailableMeteredProductsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1879
1884
|
ListAvailableMeteredProductsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1880
1885
|
ListAvailableMeteredProductsRequest.struct_class = Types::ListAvailableMeteredProductsRequest
|
|
1881
1886
|
|
|
1882
1887
|
ListAvailableMeteredProductsResponse.add_member(:metered_products, Shapes::ShapeRef.new(shape: MeteredProductSummaryList, required: true, location_name: "meteredProducts"))
|
|
1883
|
-
ListAvailableMeteredProductsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1888
|
+
ListAvailableMeteredProductsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1884
1889
|
ListAvailableMeteredProductsResponse.struct_class = Types::ListAvailableMeteredProductsResponse
|
|
1885
1890
|
|
|
1886
|
-
ListBudgetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1891
|
+
ListBudgetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1887
1892
|
ListBudgetsRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
1888
1893
|
ListBudgetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1889
1894
|
ListBudgetsRequest.add_member(:status, Shapes::ShapeRef.new(shape: BudgetStatus, location: "querystring", location_name: "status"))
|
|
1890
1895
|
ListBudgetsRequest.struct_class = Types::ListBudgetsRequest
|
|
1891
1896
|
|
|
1892
|
-
ListBudgetsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1897
|
+
ListBudgetsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1893
1898
|
ListBudgetsResponse.add_member(:budgets, Shapes::ShapeRef.new(shape: BudgetSummaries, required: true, location_name: "budgets"))
|
|
1894
1899
|
ListBudgetsResponse.struct_class = Types::ListBudgetsResponse
|
|
1895
1900
|
|
|
1896
1901
|
ListFarmMembersRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
1897
|
-
ListFarmMembersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1902
|
+
ListFarmMembersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1898
1903
|
ListFarmMembersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1899
1904
|
ListFarmMembersRequest.struct_class = Types::ListFarmMembersRequest
|
|
1900
1905
|
|
|
1901
1906
|
ListFarmMembersResponse.add_member(:members, Shapes::ShapeRef.new(shape: FarmMembers, required: true, location_name: "members"))
|
|
1902
|
-
ListFarmMembersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1907
|
+
ListFarmMembersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1903
1908
|
ListFarmMembersResponse.struct_class = Types::ListFarmMembersResponse
|
|
1904
1909
|
|
|
1905
|
-
ListFarmsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1910
|
+
ListFarmsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1906
1911
|
ListFarmsRequest.add_member(:principal_id, Shapes::ShapeRef.new(shape: IdentityCenterPrincipalId, location: "querystring", location_name: "principalId"))
|
|
1907
1912
|
ListFarmsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1908
1913
|
ListFarmsRequest.struct_class = Types::ListFarmsRequest
|
|
1909
1914
|
|
|
1910
|
-
ListFarmsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1915
|
+
ListFarmsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1911
1916
|
ListFarmsResponse.add_member(:farms, Shapes::ShapeRef.new(shape: FarmSummaries, required: true, location_name: "farms"))
|
|
1912
1917
|
ListFarmsResponse.struct_class = Types::ListFarmsResponse
|
|
1913
1918
|
|
|
1914
1919
|
ListFleetMembersRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
1915
1920
|
ListFleetMembersRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location: "uri", location_name: "fleetId"))
|
|
1916
|
-
ListFleetMembersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1921
|
+
ListFleetMembersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1917
1922
|
ListFleetMembersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1918
1923
|
ListFleetMembersRequest.struct_class = Types::ListFleetMembersRequest
|
|
1919
1924
|
|
|
1920
1925
|
ListFleetMembersResponse.add_member(:members, Shapes::ShapeRef.new(shape: FleetMembers, required: true, location_name: "members"))
|
|
1921
|
-
ListFleetMembersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1926
|
+
ListFleetMembersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1922
1927
|
ListFleetMembersResponse.struct_class = Types::ListFleetMembersResponse
|
|
1923
1928
|
|
|
1924
1929
|
ListFleetsRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
1925
1930
|
ListFleetsRequest.add_member(:principal_id, Shapes::ShapeRef.new(shape: IdentityCenterPrincipalId, location: "querystring", location_name: "principalId"))
|
|
1926
1931
|
ListFleetsRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: ResourceName, location: "querystring", location_name: "displayName"))
|
|
1927
1932
|
ListFleetsRequest.add_member(:status, Shapes::ShapeRef.new(shape: FleetStatus, location: "querystring", location_name: "status"))
|
|
1928
|
-
ListFleetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1933
|
+
ListFleetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1929
1934
|
ListFleetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1930
1935
|
ListFleetsRequest.struct_class = Types::ListFleetsRequest
|
|
1931
1936
|
|
|
1932
1937
|
ListFleetsResponse.add_member(:fleets, Shapes::ShapeRef.new(shape: FleetSummaries, required: true, location_name: "fleets"))
|
|
1933
|
-
ListFleetsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1938
|
+
ListFleetsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1934
1939
|
ListFleetsResponse.struct_class = Types::ListFleetsResponse
|
|
1935
1940
|
|
|
1936
1941
|
ListJobMembersRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
1937
1942
|
ListJobMembersRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
|
|
1938
1943
|
ListJobMembersRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location: "uri", location_name: "jobId"))
|
|
1939
|
-
ListJobMembersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1944
|
+
ListJobMembersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1940
1945
|
ListJobMembersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1941
1946
|
ListJobMembersRequest.struct_class = Types::ListJobMembersRequest
|
|
1942
1947
|
|
|
1943
1948
|
ListJobMembersResponse.add_member(:members, Shapes::ShapeRef.new(shape: JobMembers, required: true, location_name: "members"))
|
|
1944
|
-
ListJobMembersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1949
|
+
ListJobMembersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1945
1950
|
ListJobMembersResponse.struct_class = Types::ListJobMembersResponse
|
|
1946
1951
|
|
|
1947
1952
|
ListJobParameterDefinitionsRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
1948
1953
|
ListJobParameterDefinitionsRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location: "uri", location_name: "jobId"))
|
|
1949
1954
|
ListJobParameterDefinitionsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
|
|
1950
|
-
ListJobParameterDefinitionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1955
|
+
ListJobParameterDefinitionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1951
1956
|
ListJobParameterDefinitionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1952
1957
|
ListJobParameterDefinitionsRequest.struct_class = Types::ListJobParameterDefinitionsRequest
|
|
1953
1958
|
|
|
1954
1959
|
ListJobParameterDefinitionsResponse.add_member(:job_parameter_definitions, Shapes::ShapeRef.new(shape: JobParameterDefinitions, required: true, location_name: "jobParameterDefinitions"))
|
|
1955
|
-
ListJobParameterDefinitionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1960
|
+
ListJobParameterDefinitionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1956
1961
|
ListJobParameterDefinitionsResponse.struct_class = Types::ListJobParameterDefinitionsResponse
|
|
1957
1962
|
|
|
1958
1963
|
ListJobsRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
1959
1964
|
ListJobsRequest.add_member(:principal_id, Shapes::ShapeRef.new(shape: IdentityCenterPrincipalId, location: "querystring", location_name: "principalId"))
|
|
1960
1965
|
ListJobsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
|
|
1961
|
-
ListJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1966
|
+
ListJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1962
1967
|
ListJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1963
1968
|
ListJobsRequest.struct_class = Types::ListJobsRequest
|
|
1964
1969
|
|
|
1965
1970
|
ListJobsResponse.add_member(:jobs, Shapes::ShapeRef.new(shape: JobSummaries, required: true, location_name: "jobs"))
|
|
1966
|
-
ListJobsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1971
|
+
ListJobsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1967
1972
|
ListJobsResponse.struct_class = Types::ListJobsResponse
|
|
1968
1973
|
|
|
1969
|
-
ListLicenseEndpointsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1974
|
+
ListLicenseEndpointsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1970
1975
|
ListLicenseEndpointsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1971
1976
|
ListLicenseEndpointsRequest.struct_class = Types::ListLicenseEndpointsRequest
|
|
1972
1977
|
|
|
1973
1978
|
ListLicenseEndpointsResponse.add_member(:license_endpoints, Shapes::ShapeRef.new(shape: LicenseEndpointSummaries, required: true, location_name: "licenseEndpoints"))
|
|
1974
|
-
ListLicenseEndpointsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1979
|
+
ListLicenseEndpointsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1975
1980
|
ListLicenseEndpointsResponse.struct_class = Types::ListLicenseEndpointsResponse
|
|
1976
1981
|
|
|
1977
1982
|
ListLimitsRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
1978
|
-
ListLimitsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1983
|
+
ListLimitsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1979
1984
|
ListLimitsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1980
1985
|
ListLimitsRequest.struct_class = Types::ListLimitsRequest
|
|
1981
1986
|
|
|
1982
1987
|
ListLimitsResponse.add_member(:limits, Shapes::ShapeRef.new(shape: LimitSummaries, required: true, location_name: "limits"))
|
|
1983
|
-
ListLimitsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1988
|
+
ListLimitsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1984
1989
|
ListLimitsResponse.struct_class = Types::ListLimitsResponse
|
|
1985
1990
|
|
|
1986
1991
|
ListMeteredProductsRequest.add_member(:license_endpoint_id, Shapes::ShapeRef.new(shape: LicenseEndpointId, required: true, location: "uri", location_name: "licenseEndpointId"))
|
|
1987
|
-
ListMeteredProductsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1992
|
+
ListMeteredProductsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1988
1993
|
ListMeteredProductsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1989
1994
|
ListMeteredProductsRequest.struct_class = Types::ListMeteredProductsRequest
|
|
1990
1995
|
|
|
1991
1996
|
ListMeteredProductsResponse.add_member(:metered_products, Shapes::ShapeRef.new(shape: MeteredProductSummaryList, required: true, location_name: "meteredProducts"))
|
|
1992
|
-
ListMeteredProductsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
1997
|
+
ListMeteredProductsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1993
1998
|
ListMeteredProductsResponse.struct_class = Types::ListMeteredProductsResponse
|
|
1994
1999
|
|
|
1995
|
-
ListMonitorsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2000
|
+
ListMonitorsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1996
2001
|
ListMonitorsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
1997
2002
|
ListMonitorsRequest.struct_class = Types::ListMonitorsRequest
|
|
1998
2003
|
|
|
1999
|
-
ListMonitorsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2004
|
+
ListMonitorsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2000
2005
|
ListMonitorsResponse.add_member(:monitors, Shapes::ShapeRef.new(shape: MonitorSummaries, required: true, location_name: "monitors"))
|
|
2001
2006
|
ListMonitorsResponse.struct_class = Types::ListMonitorsResponse
|
|
2002
2007
|
|
|
2003
2008
|
ListQueueEnvironmentsRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2004
2009
|
ListQueueEnvironmentsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
|
|
2005
|
-
ListQueueEnvironmentsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2010
|
+
ListQueueEnvironmentsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2006
2011
|
ListQueueEnvironmentsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2007
2012
|
ListQueueEnvironmentsRequest.struct_class = Types::ListQueueEnvironmentsRequest
|
|
2008
2013
|
|
|
2009
2014
|
ListQueueEnvironmentsResponse.add_member(:environments, Shapes::ShapeRef.new(shape: QueueEnvironmentSummaries, required: true, location_name: "environments"))
|
|
2010
|
-
ListQueueEnvironmentsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2015
|
+
ListQueueEnvironmentsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2011
2016
|
ListQueueEnvironmentsResponse.struct_class = Types::ListQueueEnvironmentsResponse
|
|
2012
2017
|
|
|
2013
2018
|
ListQueueFleetAssociationsRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2014
2019
|
ListQueueFleetAssociationsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, location: "querystring", location_name: "queueId"))
|
|
2015
2020
|
ListQueueFleetAssociationsRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, location: "querystring", location_name: "fleetId"))
|
|
2016
|
-
ListQueueFleetAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2021
|
+
ListQueueFleetAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2017
2022
|
ListQueueFleetAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2018
2023
|
ListQueueFleetAssociationsRequest.struct_class = Types::ListQueueFleetAssociationsRequest
|
|
2019
2024
|
|
|
2020
2025
|
ListQueueFleetAssociationsResponse.add_member(:queue_fleet_associations, Shapes::ShapeRef.new(shape: QueueFleetAssociationSummaries, required: true, location_name: "queueFleetAssociations"))
|
|
2021
|
-
ListQueueFleetAssociationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2026
|
+
ListQueueFleetAssociationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2022
2027
|
ListQueueFleetAssociationsResponse.struct_class = Types::ListQueueFleetAssociationsResponse
|
|
2023
2028
|
|
|
2024
2029
|
ListQueueLimitAssociationsRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2025
2030
|
ListQueueLimitAssociationsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, location: "querystring", location_name: "queueId"))
|
|
2026
2031
|
ListQueueLimitAssociationsRequest.add_member(:limit_id, Shapes::ShapeRef.new(shape: LimitId, location: "querystring", location_name: "limitId"))
|
|
2027
|
-
ListQueueLimitAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2032
|
+
ListQueueLimitAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2028
2033
|
ListQueueLimitAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2029
2034
|
ListQueueLimitAssociationsRequest.struct_class = Types::ListQueueLimitAssociationsRequest
|
|
2030
2035
|
|
|
2031
2036
|
ListQueueLimitAssociationsResponse.add_member(:queue_limit_associations, Shapes::ShapeRef.new(shape: QueueLimitAssociationSummaries, required: true, location_name: "queueLimitAssociations"))
|
|
2032
|
-
ListQueueLimitAssociationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2037
|
+
ListQueueLimitAssociationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2033
2038
|
ListQueueLimitAssociationsResponse.struct_class = Types::ListQueueLimitAssociationsResponse
|
|
2034
2039
|
|
|
2035
2040
|
ListQueueMembersRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2036
2041
|
ListQueueMembersRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
|
|
2037
|
-
ListQueueMembersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2042
|
+
ListQueueMembersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2038
2043
|
ListQueueMembersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2039
2044
|
ListQueueMembersRequest.struct_class = Types::ListQueueMembersRequest
|
|
2040
2045
|
|
|
2041
2046
|
ListQueueMembersResponse.add_member(:members, Shapes::ShapeRef.new(shape: QueueMemberList, required: true, location_name: "members"))
|
|
2042
|
-
ListQueueMembersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2047
|
+
ListQueueMembersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2043
2048
|
ListQueueMembersResponse.struct_class = Types::ListQueueMembersResponse
|
|
2044
2049
|
|
|
2045
2050
|
ListQueuesRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2046
2051
|
ListQueuesRequest.add_member(:principal_id, Shapes::ShapeRef.new(shape: IdentityCenterPrincipalId, location: "querystring", location_name: "principalId"))
|
|
2047
2052
|
ListQueuesRequest.add_member(:status, Shapes::ShapeRef.new(shape: QueueStatus, location: "querystring", location_name: "status"))
|
|
2048
|
-
ListQueuesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2053
|
+
ListQueuesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2049
2054
|
ListQueuesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2050
2055
|
ListQueuesRequest.struct_class = Types::ListQueuesRequest
|
|
2051
2056
|
|
|
2052
2057
|
ListQueuesResponse.add_member(:queues, Shapes::ShapeRef.new(shape: QueueSummaries, required: true, location_name: "queues"))
|
|
2053
|
-
ListQueuesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2058
|
+
ListQueuesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2054
2059
|
ListQueuesResponse.struct_class = Types::ListQueuesResponse
|
|
2055
2060
|
|
|
2056
2061
|
ListSessionActionsRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
@@ -2058,23 +2063,23 @@ module Aws::Deadline
|
|
|
2058
2063
|
ListSessionActionsRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location: "uri", location_name: "jobId"))
|
|
2059
2064
|
ListSessionActionsRequest.add_member(:session_id, Shapes::ShapeRef.new(shape: SessionId, location: "querystring", location_name: "sessionId"))
|
|
2060
2065
|
ListSessionActionsRequest.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location: "querystring", location_name: "taskId"))
|
|
2061
|
-
ListSessionActionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2066
|
+
ListSessionActionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2062
2067
|
ListSessionActionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2063
2068
|
ListSessionActionsRequest.struct_class = Types::ListSessionActionsRequest
|
|
2064
2069
|
|
|
2065
2070
|
ListSessionActionsResponse.add_member(:session_actions, Shapes::ShapeRef.new(shape: SessionActionSummaries, required: true, location_name: "sessionActions"))
|
|
2066
|
-
ListSessionActionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2071
|
+
ListSessionActionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2067
2072
|
ListSessionActionsResponse.struct_class = Types::ListSessionActionsResponse
|
|
2068
2073
|
|
|
2069
2074
|
ListSessionsForWorkerRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2070
2075
|
ListSessionsForWorkerRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location: "uri", location_name: "fleetId"))
|
|
2071
2076
|
ListSessionsForWorkerRequest.add_member(:worker_id, Shapes::ShapeRef.new(shape: WorkerId, required: true, location: "uri", location_name: "workerId"))
|
|
2072
|
-
ListSessionsForWorkerRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2077
|
+
ListSessionsForWorkerRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2073
2078
|
ListSessionsForWorkerRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2074
2079
|
ListSessionsForWorkerRequest.struct_class = Types::ListSessionsForWorkerRequest
|
|
2075
2080
|
|
|
2076
2081
|
ListSessionsForWorkerResponse.add_member(:sessions, Shapes::ShapeRef.new(shape: ListSessionsForWorkerSummaries, required: true, location_name: "sessions"))
|
|
2077
|
-
ListSessionsForWorkerResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2082
|
+
ListSessionsForWorkerResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2078
2083
|
ListSessionsForWorkerResponse.struct_class = Types::ListSessionsForWorkerResponse
|
|
2079
2084
|
|
|
2080
2085
|
ListSessionsForWorkerSummaries.member = Shapes::ShapeRef.new(shape: WorkerSessionSummary)
|
|
@@ -2082,66 +2087,66 @@ module Aws::Deadline
|
|
|
2082
2087
|
ListSessionsRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2083
2088
|
ListSessionsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
|
|
2084
2089
|
ListSessionsRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location: "uri", location_name: "jobId"))
|
|
2085
|
-
ListSessionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2090
|
+
ListSessionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2086
2091
|
ListSessionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2087
2092
|
ListSessionsRequest.struct_class = Types::ListSessionsRequest
|
|
2088
2093
|
|
|
2089
2094
|
ListSessionsResponse.add_member(:sessions, Shapes::ShapeRef.new(shape: SessionSummaries, required: true, location_name: "sessions"))
|
|
2090
|
-
ListSessionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2095
|
+
ListSessionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2091
2096
|
ListSessionsResponse.struct_class = Types::ListSessionsResponse
|
|
2092
2097
|
|
|
2093
2098
|
ListStepConsumersRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2094
2099
|
ListStepConsumersRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
|
|
2095
2100
|
ListStepConsumersRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location: "uri", location_name: "jobId"))
|
|
2096
2101
|
ListStepConsumersRequest.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location: "uri", location_name: "stepId"))
|
|
2097
|
-
ListStepConsumersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2102
|
+
ListStepConsumersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2098
2103
|
ListStepConsumersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListStepConsumersRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
2099
2104
|
ListStepConsumersRequest.struct_class = Types::ListStepConsumersRequest
|
|
2100
2105
|
|
|
2101
2106
|
ListStepConsumersResponse.add_member(:consumers, Shapes::ShapeRef.new(shape: StepConsumers, required: true, location_name: "consumers"))
|
|
2102
|
-
ListStepConsumersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2107
|
+
ListStepConsumersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2103
2108
|
ListStepConsumersResponse.struct_class = Types::ListStepConsumersResponse
|
|
2104
2109
|
|
|
2105
2110
|
ListStepDependenciesRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2106
2111
|
ListStepDependenciesRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
|
|
2107
2112
|
ListStepDependenciesRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location: "uri", location_name: "jobId"))
|
|
2108
2113
|
ListStepDependenciesRequest.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location: "uri", location_name: "stepId"))
|
|
2109
|
-
ListStepDependenciesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2114
|
+
ListStepDependenciesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2110
2115
|
ListStepDependenciesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListStepDependenciesRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
2111
2116
|
ListStepDependenciesRequest.struct_class = Types::ListStepDependenciesRequest
|
|
2112
2117
|
|
|
2113
2118
|
ListStepDependenciesResponse.add_member(:dependencies, Shapes::ShapeRef.new(shape: StepDependencies, required: true, location_name: "dependencies"))
|
|
2114
|
-
ListStepDependenciesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2119
|
+
ListStepDependenciesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2115
2120
|
ListStepDependenciesResponse.struct_class = Types::ListStepDependenciesResponse
|
|
2116
2121
|
|
|
2117
2122
|
ListStepsRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2118
2123
|
ListStepsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
|
|
2119
2124
|
ListStepsRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location: "uri", location_name: "jobId"))
|
|
2120
|
-
ListStepsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2125
|
+
ListStepsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2121
2126
|
ListStepsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2122
2127
|
ListStepsRequest.struct_class = Types::ListStepsRequest
|
|
2123
2128
|
|
|
2124
2129
|
ListStepsResponse.add_member(:steps, Shapes::ShapeRef.new(shape: StepSummaries, required: true, location_name: "steps"))
|
|
2125
|
-
ListStepsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2130
|
+
ListStepsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2126
2131
|
ListStepsResponse.struct_class = Types::ListStepsResponse
|
|
2127
2132
|
|
|
2128
2133
|
ListStorageProfilesForQueueRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2129
2134
|
ListStorageProfilesForQueueRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
|
|
2130
|
-
ListStorageProfilesForQueueRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2135
|
+
ListStorageProfilesForQueueRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2131
2136
|
ListStorageProfilesForQueueRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2132
2137
|
ListStorageProfilesForQueueRequest.struct_class = Types::ListStorageProfilesForQueueRequest
|
|
2133
2138
|
|
|
2134
2139
|
ListStorageProfilesForQueueResponse.add_member(:storage_profiles, Shapes::ShapeRef.new(shape: StorageProfileSummaries, required: true, location_name: "storageProfiles"))
|
|
2135
|
-
ListStorageProfilesForQueueResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2140
|
+
ListStorageProfilesForQueueResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2136
2141
|
ListStorageProfilesForQueueResponse.struct_class = Types::ListStorageProfilesForQueueResponse
|
|
2137
2142
|
|
|
2138
2143
|
ListStorageProfilesRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2139
|
-
ListStorageProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2144
|
+
ListStorageProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2140
2145
|
ListStorageProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2141
2146
|
ListStorageProfilesRequest.struct_class = Types::ListStorageProfilesRequest
|
|
2142
2147
|
|
|
2143
2148
|
ListStorageProfilesResponse.add_member(:storage_profiles, Shapes::ShapeRef.new(shape: StorageProfileSummaries, required: true, location_name: "storageProfiles"))
|
|
2144
|
-
ListStorageProfilesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2149
|
+
ListStorageProfilesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2145
2150
|
ListStorageProfilesResponse.struct_class = Types::ListStorageProfilesResponse
|
|
2146
2151
|
|
|
2147
2152
|
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "resourceArn"))
|
|
@@ -2154,21 +2159,21 @@ module Aws::Deadline
|
|
|
2154
2159
|
ListTasksRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
|
|
2155
2160
|
ListTasksRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location: "uri", location_name: "jobId"))
|
|
2156
2161
|
ListTasksRequest.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location: "uri", location_name: "stepId"))
|
|
2157
|
-
ListTasksRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2162
|
+
ListTasksRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2158
2163
|
ListTasksRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2159
2164
|
ListTasksRequest.struct_class = Types::ListTasksRequest
|
|
2160
2165
|
|
|
2161
2166
|
ListTasksResponse.add_member(:tasks, Shapes::ShapeRef.new(shape: TaskSummaries, required: true, location_name: "tasks"))
|
|
2162
|
-
ListTasksResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2167
|
+
ListTasksResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2163
2168
|
ListTasksResponse.struct_class = Types::ListTasksResponse
|
|
2164
2169
|
|
|
2165
2170
|
ListWorkersRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2166
2171
|
ListWorkersRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location: "uri", location_name: "fleetId"))
|
|
2167
|
-
ListWorkersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2172
|
+
ListWorkersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2168
2173
|
ListWorkersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2169
2174
|
ListWorkersRequest.struct_class = Types::ListWorkersRequest
|
|
2170
2175
|
|
|
2171
|
-
ListWorkersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
|
2176
|
+
ListWorkersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2172
2177
|
ListWorkersResponse.add_member(:workers, Shapes::ShapeRef.new(shape: WorkerSummaries, required: true, location_name: "workers"))
|
|
2173
2178
|
ListWorkersResponse.struct_class = Types::ListWorkersResponse
|
|
2174
2179
|
|
|
@@ -2820,6 +2825,8 @@ module Aws::Deadline
|
|
|
2820
2825
|
UpdateJobRequest.add_member(:max_retries_per_task, Shapes::ShapeRef.new(shape: MaxRetriesPerTask, location_name: "maxRetriesPerTask"))
|
|
2821
2826
|
UpdateJobRequest.add_member(:lifecycle_status, Shapes::ShapeRef.new(shape: UpdateJobLifecycleStatus, location_name: "lifecycleStatus"))
|
|
2822
2827
|
UpdateJobRequest.add_member(:max_worker_count, Shapes::ShapeRef.new(shape: MaxWorkerCount, location_name: "maxWorkerCount"))
|
|
2828
|
+
UpdateJobRequest.add_member(:name, Shapes::ShapeRef.new(shape: JobName, location_name: "name"))
|
|
2829
|
+
UpdateJobRequest.add_member(:description, Shapes::ShapeRef.new(shape: JobDescriptionOverride, location_name: "description"))
|
|
2823
2830
|
UpdateJobRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2824
2831
|
UpdateJobRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
|
|
2825
2832
|
UpdateJobRequest.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location: "uri", location_name: "jobId"))
|
|
@@ -1327,6 +1327,22 @@ module Aws::Deadline
|
|
|
1327
1327
|
# The job ID for the source job.
|
|
1328
1328
|
# @return [String]
|
|
1329
1329
|
#
|
|
1330
|
+
# @!attribute [rw] name_override
|
|
1331
|
+
# A custom name to override the job name derived from the job
|
|
1332
|
+
# template.
|
|
1333
|
+
# @return [String]
|
|
1334
|
+
#
|
|
1335
|
+
# @!attribute [rw] description_override
|
|
1336
|
+
# A custom description to override the job description derived from
|
|
1337
|
+
# the job template.
|
|
1338
|
+
# @return [String]
|
|
1339
|
+
#
|
|
1340
|
+
# @!attribute [rw] tags
|
|
1341
|
+
# The tags to add to your job. Each tag consists of a tag key and a
|
|
1342
|
+
# tag value. Tag keys and values are both required, but tag values can
|
|
1343
|
+
# be empty strings.
|
|
1344
|
+
# @return [Hash<String,String>]
|
|
1345
|
+
#
|
|
1330
1346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/CreateJobRequest AWS API Documentation
|
|
1331
1347
|
#
|
|
1332
1348
|
class CreateJobRequest < Struct.new(
|
|
@@ -1343,8 +1359,11 @@ module Aws::Deadline
|
|
|
1343
1359
|
:max_failed_tasks_count,
|
|
1344
1360
|
:max_retries_per_task,
|
|
1345
1361
|
:max_worker_count,
|
|
1346
|
-
:source_job_id
|
|
1347
|
-
|
|
1362
|
+
:source_job_id,
|
|
1363
|
+
:name_override,
|
|
1364
|
+
:description_override,
|
|
1365
|
+
:tags)
|
|
1366
|
+
SENSITIVE = [:template, :parameters, :description_override]
|
|
1348
1367
|
include Aws::Structure
|
|
1349
1368
|
end
|
|
1350
1369
|
|
|
@@ -7729,7 +7748,7 @@ module Aws::Deadline
|
|
|
7729
7748
|
# @return [Types::StringFilterExpression]
|
|
7730
7749
|
#
|
|
7731
7750
|
# @!attribute [rw] string_list_filter
|
|
7732
|
-
# Filters by a list of
|
|
7751
|
+
# Filters by a list of strings.
|
|
7733
7752
|
# @return [Types::StringListFilterExpression]
|
|
7734
7753
|
#
|
|
7735
7754
|
# @!attribute [rw] group_filter
|
|
@@ -9132,15 +9151,14 @@ module Aws::Deadline
|
|
|
9132
9151
|
include Aws::Structure
|
|
9133
9152
|
end
|
|
9134
9153
|
|
|
9135
|
-
# Searches for a
|
|
9154
|
+
# Searches for a particular list of strings.
|
|
9136
9155
|
#
|
|
9137
9156
|
# @!attribute [rw] name
|
|
9138
9157
|
# The field name to search.
|
|
9139
9158
|
# @return [String]
|
|
9140
9159
|
#
|
|
9141
9160
|
# @!attribute [rw] operator
|
|
9142
|
-
# The type of comparison to use for this search.
|
|
9143
|
-
# ALL\_NOT\_EQUALS are supported.
|
|
9161
|
+
# The type of comparison to use for this search.
|
|
9144
9162
|
# @return [String]
|
|
9145
9163
|
#
|
|
9146
9164
|
# @!attribute [rw] values
|
|
@@ -9753,7 +9771,7 @@ module Aws::Deadline
|
|
|
9753
9771
|
# @return [String]
|
|
9754
9772
|
#
|
|
9755
9773
|
# @!attribute [rw] priority
|
|
9756
|
-
# The job priority
|
|
9774
|
+
# The updated job priority.
|
|
9757
9775
|
# @return [Integer]
|
|
9758
9776
|
#
|
|
9759
9777
|
# @!attribute [rw] max_failed_tasks_count
|
|
@@ -9787,6 +9805,14 @@ module Aws::Deadline
|
|
|
9787
9805
|
# The maximum number of workers that can process tasks in the job.
|
|
9788
9806
|
# @return [Integer]
|
|
9789
9807
|
#
|
|
9808
|
+
# @!attribute [rw] name
|
|
9809
|
+
# The updated job name.
|
|
9810
|
+
# @return [String]
|
|
9811
|
+
#
|
|
9812
|
+
# @!attribute [rw] description
|
|
9813
|
+
# The updated job description.
|
|
9814
|
+
# @return [String]
|
|
9815
|
+
#
|
|
9790
9816
|
# @!attribute [rw] farm_id
|
|
9791
9817
|
# The farm ID of the job to update.
|
|
9792
9818
|
# @return [String]
|
|
@@ -9809,10 +9835,12 @@ module Aws::Deadline
|
|
|
9809
9835
|
:max_retries_per_task,
|
|
9810
9836
|
:lifecycle_status,
|
|
9811
9837
|
:max_worker_count,
|
|
9838
|
+
:name,
|
|
9839
|
+
:description,
|
|
9812
9840
|
:farm_id,
|
|
9813
9841
|
:queue_id,
|
|
9814
9842
|
:job_id)
|
|
9815
|
-
SENSITIVE = []
|
|
9843
|
+
SENSITIVE = [:description]
|
|
9816
9844
|
include Aws::Structure
|
|
9817
9845
|
end
|
|
9818
9846
|
|
data/lib/aws-sdk-deadline.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -435,7 +435,10 @@ module Aws
|
|
|
435
435
|
?max_failed_tasks_count: ::Integer,
|
|
436
436
|
?max_retries_per_task: ::Integer,
|
|
437
437
|
?max_worker_count: ::Integer,
|
|
438
|
-
?source_job_id: ::String
|
|
438
|
+
?source_job_id: ::String,
|
|
439
|
+
?name_override: ::String,
|
|
440
|
+
?description_override: ::String,
|
|
441
|
+
?tags: Hash[::String, ::String]
|
|
439
442
|
) -> _CreateJobResponseSuccess
|
|
440
443
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateJobResponseSuccess
|
|
441
444
|
|
|
@@ -2068,6 +2071,8 @@ module Aws
|
|
|
2068
2071
|
?max_retries_per_task: ::Integer,
|
|
2069
2072
|
?lifecycle_status: ("ARCHIVED"),
|
|
2070
2073
|
?max_worker_count: ::Integer,
|
|
2074
|
+
?name: ::String,
|
|
2075
|
+
?description: ::String,
|
|
2071
2076
|
farm_id: ::String,
|
|
2072
2077
|
queue_id: ::String,
|
|
2073
2078
|
job_id: ::String
|
data/sig/types.rbs
CHANGED
|
@@ -370,7 +370,10 @@ module Aws::Deadline
|
|
|
370
370
|
attr_accessor max_retries_per_task: ::Integer
|
|
371
371
|
attr_accessor max_worker_count: ::Integer
|
|
372
372
|
attr_accessor source_job_id: ::String
|
|
373
|
-
|
|
373
|
+
attr_accessor name_override: ::String
|
|
374
|
+
attr_accessor description_override: ::String
|
|
375
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
376
|
+
SENSITIVE: [:template, :parameters, :description_override]
|
|
374
377
|
end
|
|
375
378
|
|
|
376
379
|
class CreateJobResponse
|
|
@@ -2674,10 +2677,12 @@ module Aws::Deadline
|
|
|
2674
2677
|
attr_accessor max_retries_per_task: ::Integer
|
|
2675
2678
|
attr_accessor lifecycle_status: ("ARCHIVED")
|
|
2676
2679
|
attr_accessor max_worker_count: ::Integer
|
|
2680
|
+
attr_accessor name: ::String
|
|
2681
|
+
attr_accessor description: ::String
|
|
2677
2682
|
attr_accessor farm_id: ::String
|
|
2678
2683
|
attr_accessor queue_id: ::String
|
|
2679
2684
|
attr_accessor job_id: ::String
|
|
2680
|
-
SENSITIVE: []
|
|
2685
|
+
SENSITIVE: [:description]
|
|
2681
2686
|
end
|
|
2682
2687
|
|
|
2683
2688
|
class UpdateJobResponse < Aws::EmptyStructure
|