aws-sdk-deadline 1.55.0 → 1.57.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 +217 -2
- data/lib/aws-sdk-deadline/client_api.rb +133 -0
- data/lib/aws-sdk-deadline/types.rb +305 -8
- data/lib/aws-sdk-deadline.rb +1 -1
- data/sig/client.rbs +58 -4
- data/sig/params.rbs +7 -0
- data/sig/types.rbs +74 -0
- 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: 34d8321fae8efdfc4cd20d44f7a279e6919ef70f58ab59b547e6d09e6fed63f4
|
|
4
|
+
data.tar.gz: 5dbfcbbcb99c60c38f475c9e6eb648a356b1d145f5a1a10b496c4cbeed7d042e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d5c0e4e59155b3625858f451451c00b940a6a8a02bdab8a8c411b55477d351d0680bed06f6b52ef76d2cb968defce02d2bba8711320354af6eca7c5cfd72480
|
|
7
|
+
data.tar.gz: 8340f8db551c75b22c48c8be31364399cff9695562c005cdf941da1c9e3bf685d2929727cf0dc951231ebdeb23b1f35c31afa36aaa574499895fe6e220325c8e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.57.0 (2026-06-08)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added optional identityCenterRegion parameter to AssociateMember APIs to allow managing memberships for users and groups in other regions.
|
|
8
|
+
|
|
9
|
+
1.56.0 (2026-05-28)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Added support for persistent storage on Service-Managed Fleets, allowing customers to configure persistent storage that preserves data across worker sessions which reduces job startup times for workloads with large software installations or asset caches.
|
|
13
|
+
|
|
4
14
|
1.55.0 (2026-05-21)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.57.0
|
|
@@ -491,6 +491,10 @@ module Aws::Deadline
|
|
|
491
491
|
# @option params [required, String] :principal_id
|
|
492
492
|
# The member's principal ID to associate with the farm.
|
|
493
493
|
#
|
|
494
|
+
# @option params [String] :identity_center_region
|
|
495
|
+
# The Region of the IAM Identity Center instance. If not provided, the
|
|
496
|
+
# service defaults to the Region of the farm.
|
|
497
|
+
#
|
|
494
498
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
495
499
|
#
|
|
496
500
|
# @example Request syntax with placeholder values
|
|
@@ -501,6 +505,7 @@ module Aws::Deadline
|
|
|
501
505
|
# identity_store_id: "IdentityStoreId", # required
|
|
502
506
|
# membership_level: "VIEWER", # required, accepts VIEWER, CONTRIBUTOR, OWNER, MANAGER
|
|
503
507
|
# principal_id: "IdentityCenterPrincipalId", # required
|
|
508
|
+
# identity_center_region: "Region",
|
|
504
509
|
# })
|
|
505
510
|
#
|
|
506
511
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/AssociateMemberToFarm AWS API Documentation
|
|
@@ -532,6 +537,10 @@ module Aws::Deadline
|
|
|
532
537
|
# @option params [required, String] :principal_id
|
|
533
538
|
# The member's principal ID to associate with a fleet.
|
|
534
539
|
#
|
|
540
|
+
# @option params [String] :identity_center_region
|
|
541
|
+
# The Region of the IAM Identity Center instance. If not provided, the
|
|
542
|
+
# service defaults to the Region of the farm.
|
|
543
|
+
#
|
|
535
544
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
536
545
|
#
|
|
537
546
|
# @example Request syntax with placeholder values
|
|
@@ -543,6 +552,7 @@ module Aws::Deadline
|
|
|
543
552
|
# identity_store_id: "IdentityStoreId", # required
|
|
544
553
|
# membership_level: "VIEWER", # required, accepts VIEWER, CONTRIBUTOR, OWNER, MANAGER
|
|
545
554
|
# principal_id: "IdentityCenterPrincipalId", # required
|
|
555
|
+
# identity_center_region: "Region",
|
|
546
556
|
# })
|
|
547
557
|
#
|
|
548
558
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/AssociateMemberToFleet AWS API Documentation
|
|
@@ -577,6 +587,10 @@ module Aws::Deadline
|
|
|
577
587
|
# @option params [required, String] :principal_id
|
|
578
588
|
# The member's principal ID to associate with the job.
|
|
579
589
|
#
|
|
590
|
+
# @option params [String] :identity_center_region
|
|
591
|
+
# The Region of the IAM Identity Center instance. If not provided, the
|
|
592
|
+
# service defaults to the Region of the farm.
|
|
593
|
+
#
|
|
580
594
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
581
595
|
#
|
|
582
596
|
# @example Request syntax with placeholder values
|
|
@@ -589,6 +603,7 @@ module Aws::Deadline
|
|
|
589
603
|
# identity_store_id: "IdentityStoreId", # required
|
|
590
604
|
# membership_level: "VIEWER", # required, accepts VIEWER, CONTRIBUTOR, OWNER, MANAGER
|
|
591
605
|
# principal_id: "IdentityCenterPrincipalId", # required
|
|
606
|
+
# identity_center_region: "Region",
|
|
592
607
|
# })
|
|
593
608
|
#
|
|
594
609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/AssociateMemberToJob AWS API Documentation
|
|
@@ -620,6 +635,10 @@ module Aws::Deadline
|
|
|
620
635
|
# @option params [required, String] :principal_id
|
|
621
636
|
# The member's principal ID to associate with the queue.
|
|
622
637
|
#
|
|
638
|
+
# @option params [String] :identity_center_region
|
|
639
|
+
# The Region of the IAM Identity Center instance. If not provided, the
|
|
640
|
+
# service defaults to the Region of the farm.
|
|
641
|
+
#
|
|
623
642
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
624
643
|
#
|
|
625
644
|
# @example Request syntax with placeholder values
|
|
@@ -631,6 +650,7 @@ module Aws::Deadline
|
|
|
631
650
|
# identity_store_id: "IdentityStoreId", # required
|
|
632
651
|
# membership_level: "VIEWER", # required, accepts VIEWER, CONTRIBUTOR, OWNER, MANAGER
|
|
633
652
|
# principal_id: "IdentityCenterPrincipalId", # required
|
|
653
|
+
# identity_center_region: "Region",
|
|
634
654
|
# })
|
|
635
655
|
#
|
|
636
656
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/AssociateMemberToQueue AWS API Documentation
|
|
@@ -2088,6 +2108,13 @@ module Aws::Deadline
|
|
|
2088
2108
|
# resource_configuration_arns: ["VpcResourceConfigurationArn"],
|
|
2089
2109
|
# },
|
|
2090
2110
|
# storage_profile_id: "StorageProfileId",
|
|
2111
|
+
# persistent_volume_configuration: {
|
|
2112
|
+
# size_gi_b: 1,
|
|
2113
|
+
# iops: 1,
|
|
2114
|
+
# throughput_mi_b: 1,
|
|
2115
|
+
# mount_path: "MountPath", # required
|
|
2116
|
+
# last_used_ttl_hours: 1,
|
|
2117
|
+
# },
|
|
2091
2118
|
# auto_scaling_configuration: {
|
|
2092
2119
|
# standby_worker_count: 1,
|
|
2093
2120
|
# worker_idle_duration_seconds: 1,
|
|
@@ -2409,7 +2436,7 @@ module Aws::Deadline
|
|
|
2409
2436
|
# authenticates monitor users.
|
|
2410
2437
|
#
|
|
2411
2438
|
# @option params [String] :identity_center_region
|
|
2412
|
-
# The
|
|
2439
|
+
# The Region where IAM Identity Center is enabled. Required when IAM
|
|
2413
2440
|
# Identity Center is in a different Region than the monitor.
|
|
2414
2441
|
#
|
|
2415
2442
|
# @option params [required, String] :subdomain
|
|
@@ -3173,6 +3200,45 @@ module Aws::Deadline
|
|
|
3173
3200
|
req.send_request(options)
|
|
3174
3201
|
end
|
|
3175
3202
|
|
|
3203
|
+
# Deletes a persistent volume.
|
|
3204
|
+
#
|
|
3205
|
+
# @option params [required, String] :farm_id
|
|
3206
|
+
# The farm ID of the farm that contains the fleet.
|
|
3207
|
+
#
|
|
3208
|
+
# @option params [required, String] :fleet_id
|
|
3209
|
+
# The fleet ID of the fleet that contains the volume.
|
|
3210
|
+
#
|
|
3211
|
+
# @option params [required, String] :volume_id
|
|
3212
|
+
# The volume ID of the volume to delete.
|
|
3213
|
+
#
|
|
3214
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
3215
|
+
#
|
|
3216
|
+
#
|
|
3217
|
+
# @example Example: Delete a volume
|
|
3218
|
+
#
|
|
3219
|
+
# resp = client.delete_volume({
|
|
3220
|
+
# farm_id: "farm-1234567890abcdef1234567890abcdef",
|
|
3221
|
+
# fleet_id: "fleet-1234567890abcdef1234567890abcdef",
|
|
3222
|
+
# volume_id: "volume-1234567890abcdef1234567890abcdef",
|
|
3223
|
+
# })
|
|
3224
|
+
#
|
|
3225
|
+
# @example Request syntax with placeholder values
|
|
3226
|
+
#
|
|
3227
|
+
# resp = client.delete_volume({
|
|
3228
|
+
# farm_id: "FarmId", # required
|
|
3229
|
+
# fleet_id: "FleetId", # required
|
|
3230
|
+
# volume_id: "VolumeId", # required
|
|
3231
|
+
# })
|
|
3232
|
+
#
|
|
3233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/DeleteVolume AWS API Documentation
|
|
3234
|
+
#
|
|
3235
|
+
# @overload delete_volume(params = {})
|
|
3236
|
+
# @param [Hash] params ({})
|
|
3237
|
+
def delete_volume(params = {}, options = {})
|
|
3238
|
+
req = build_request(:delete_volume, params)
|
|
3239
|
+
req.send_request(options)
|
|
3240
|
+
end
|
|
3241
|
+
|
|
3176
3242
|
# Deletes a worker.
|
|
3177
3243
|
#
|
|
3178
3244
|
# @option params [required, String] :farm_id
|
|
@@ -3536,6 +3602,11 @@ module Aws::Deadline
|
|
|
3536
3602
|
# resp.configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns #=> Array
|
|
3537
3603
|
# resp.configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns[0] #=> String
|
|
3538
3604
|
# resp.configuration.service_managed_ec2.storage_profile_id #=> String
|
|
3605
|
+
# resp.configuration.service_managed_ec2.persistent_volume_configuration.size_gi_b #=> Integer
|
|
3606
|
+
# resp.configuration.service_managed_ec2.persistent_volume_configuration.iops #=> Integer
|
|
3607
|
+
# resp.configuration.service_managed_ec2.persistent_volume_configuration.throughput_mi_b #=> Integer
|
|
3608
|
+
# resp.configuration.service_managed_ec2.persistent_volume_configuration.mount_path #=> String
|
|
3609
|
+
# resp.configuration.service_managed_ec2.persistent_volume_configuration.last_used_ttl_hours #=> Integer
|
|
3539
3610
|
# resp.configuration.service_managed_ec2.auto_scaling_configuration.standby_worker_count #=> Integer
|
|
3540
3611
|
# resp.configuration.service_managed_ec2.auto_scaling_configuration.worker_idle_duration_seconds #=> Integer
|
|
3541
3612
|
# resp.configuration.service_managed_ec2.auto_scaling_configuration.scale_out_workers_per_minute #=> Integer
|
|
@@ -4590,6 +4661,77 @@ module Aws::Deadline
|
|
|
4590
4661
|
req.send_request(options)
|
|
4591
4662
|
end
|
|
4592
4663
|
|
|
4664
|
+
# Gets a persistent volume.
|
|
4665
|
+
#
|
|
4666
|
+
# @option params [required, String] :farm_id
|
|
4667
|
+
# The farm ID of the farm that contains the fleet.
|
|
4668
|
+
#
|
|
4669
|
+
# @option params [required, String] :fleet_id
|
|
4670
|
+
# The fleet ID of the fleet that contains the volume.
|
|
4671
|
+
#
|
|
4672
|
+
# @option params [required, String] :volume_id
|
|
4673
|
+
# The volume ID of the volume to retrieve.
|
|
4674
|
+
#
|
|
4675
|
+
# @return [Types::GetVolumeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4676
|
+
#
|
|
4677
|
+
# * {Types::GetVolumeResponse#volume_id #volume_id} => String
|
|
4678
|
+
# * {Types::GetVolumeResponse#farm_id #farm_id} => String
|
|
4679
|
+
# * {Types::GetVolumeResponse#fleet_id #fleet_id} => String
|
|
4680
|
+
# * {Types::GetVolumeResponse#state #state} => String
|
|
4681
|
+
# * {Types::GetVolumeResponse#size_gi_b #size_gi_b} => Integer
|
|
4682
|
+
# * {Types::GetVolumeResponse#availability_zone_id #availability_zone_id} => String
|
|
4683
|
+
# * {Types::GetVolumeResponse#attached_worker_id #attached_worker_id} => String
|
|
4684
|
+
# * {Types::GetVolumeResponse#volume_type #volume_type} => String
|
|
4685
|
+
# * {Types::GetVolumeResponse#iops #iops} => Integer
|
|
4686
|
+
# * {Types::GetVolumeResponse#throughput_mi_b #throughput_mi_b} => Integer
|
|
4687
|
+
# * {Types::GetVolumeResponse#created_at #created_at} => Time
|
|
4688
|
+
# * {Types::GetVolumeResponse#last_assigned_at #last_assigned_at} => Time
|
|
4689
|
+
# * {Types::GetVolumeResponse#last_released_at #last_released_at} => Time
|
|
4690
|
+
# * {Types::GetVolumeResponse#expires_at #expires_at} => Time
|
|
4691
|
+
#
|
|
4692
|
+
#
|
|
4693
|
+
# @example Example: Get a volume
|
|
4694
|
+
#
|
|
4695
|
+
# resp = client.get_volume({
|
|
4696
|
+
# farm_id: "farm-1234567890abcdef1234567890abcdef",
|
|
4697
|
+
# fleet_id: "fleet-1234567890abcdef1234567890abcdef",
|
|
4698
|
+
# volume_id: "volume-1234567890abcdef1234567890abcdef",
|
|
4699
|
+
# })
|
|
4700
|
+
#
|
|
4701
|
+
# @example Request syntax with placeholder values
|
|
4702
|
+
#
|
|
4703
|
+
# resp = client.get_volume({
|
|
4704
|
+
# farm_id: "FarmId", # required
|
|
4705
|
+
# fleet_id: "FleetId", # required
|
|
4706
|
+
# volume_id: "VolumeId", # required
|
|
4707
|
+
# })
|
|
4708
|
+
#
|
|
4709
|
+
# @example Response structure
|
|
4710
|
+
#
|
|
4711
|
+
# resp.volume_id #=> String
|
|
4712
|
+
# resp.farm_id #=> String
|
|
4713
|
+
# resp.fleet_id #=> String
|
|
4714
|
+
# resp.state #=> String, one of "PENDING_CREATION", "PENDING_ATTACHMENT", "IN_USE", "AVAILABLE", "PENDING_DELETION"
|
|
4715
|
+
# resp.size_gi_b #=> Integer
|
|
4716
|
+
# resp.availability_zone_id #=> String
|
|
4717
|
+
# resp.attached_worker_id #=> String
|
|
4718
|
+
# resp.volume_type #=> String, one of "gp3"
|
|
4719
|
+
# resp.iops #=> Integer
|
|
4720
|
+
# resp.throughput_mi_b #=> Integer
|
|
4721
|
+
# resp.created_at #=> Time
|
|
4722
|
+
# resp.last_assigned_at #=> Time
|
|
4723
|
+
# resp.last_released_at #=> Time
|
|
4724
|
+
# resp.expires_at #=> Time
|
|
4725
|
+
#
|
|
4726
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/GetVolume AWS API Documentation
|
|
4727
|
+
#
|
|
4728
|
+
# @overload get_volume(params = {})
|
|
4729
|
+
# @param [Hash] params ({})
|
|
4730
|
+
def get_volume(params = {}, options = {})
|
|
4731
|
+
req = build_request(:get_volume, params)
|
|
4732
|
+
req.send_request(options)
|
|
4733
|
+
end
|
|
4734
|
+
|
|
4593
4735
|
# Gets a worker.
|
|
4594
4736
|
#
|
|
4595
4737
|
# @option params [required, String] :farm_id
|
|
@@ -5015,6 +5157,11 @@ module Aws::Deadline
|
|
|
5015
5157
|
# resp.fleets[0].configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns #=> Array
|
|
5016
5158
|
# resp.fleets[0].configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns[0] #=> String
|
|
5017
5159
|
# resp.fleets[0].configuration.service_managed_ec2.storage_profile_id #=> String
|
|
5160
|
+
# resp.fleets[0].configuration.service_managed_ec2.persistent_volume_configuration.size_gi_b #=> Integer
|
|
5161
|
+
# resp.fleets[0].configuration.service_managed_ec2.persistent_volume_configuration.iops #=> Integer
|
|
5162
|
+
# resp.fleets[0].configuration.service_managed_ec2.persistent_volume_configuration.throughput_mi_b #=> Integer
|
|
5163
|
+
# resp.fleets[0].configuration.service_managed_ec2.persistent_volume_configuration.mount_path #=> String
|
|
5164
|
+
# resp.fleets[0].configuration.service_managed_ec2.persistent_volume_configuration.last_used_ttl_hours #=> Integer
|
|
5018
5165
|
# resp.fleets[0].configuration.service_managed_ec2.auto_scaling_configuration.standby_worker_count #=> Integer
|
|
5019
5166
|
# resp.fleets[0].configuration.service_managed_ec2.auto_scaling_configuration.worker_idle_duration_seconds #=> Integer
|
|
5020
5167
|
# resp.fleets[0].configuration.service_managed_ec2.auto_scaling_configuration.scale_out_workers_per_minute #=> Integer
|
|
@@ -6257,6 +6404,67 @@ module Aws::Deadline
|
|
|
6257
6404
|
req.send_request(options)
|
|
6258
6405
|
end
|
|
6259
6406
|
|
|
6407
|
+
# Lists the persistent volumes in a fleet.
|
|
6408
|
+
#
|
|
6409
|
+
# @option params [required, String] :farm_id
|
|
6410
|
+
# The farm ID of the farm that contains the fleet.
|
|
6411
|
+
#
|
|
6412
|
+
# @option params [required, String] :fleet_id
|
|
6413
|
+
# The fleet ID of the fleet that contains the volumes.
|
|
6414
|
+
#
|
|
6415
|
+
# @option params [String] :next_token
|
|
6416
|
+
# The token for the next set of results, or `null` to start from the
|
|
6417
|
+
# beginning.
|
|
6418
|
+
#
|
|
6419
|
+
# @option params [Integer] :max_results
|
|
6420
|
+
# The maximum number of results to return. Use this parameter with
|
|
6421
|
+
# `NextToken` to get results as a set of sequential pages.
|
|
6422
|
+
#
|
|
6423
|
+
# @return [Types::ListVolumesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6424
|
+
#
|
|
6425
|
+
# * {Types::ListVolumesResponse#volumes #volumes} => Array<Types::VolumeSummary>
|
|
6426
|
+
# * {Types::ListVolumesResponse#next_token #next_token} => String
|
|
6427
|
+
#
|
|
6428
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
6429
|
+
#
|
|
6430
|
+
#
|
|
6431
|
+
# @example Example: List volumes for a fleet
|
|
6432
|
+
#
|
|
6433
|
+
# resp = client.list_volumes({
|
|
6434
|
+
# farm_id: "farm-1234567890abcdef1234567890abcdef",
|
|
6435
|
+
# fleet_id: "fleet-1234567890abcdef1234567890abcdef",
|
|
6436
|
+
# })
|
|
6437
|
+
#
|
|
6438
|
+
# @example Request syntax with placeholder values
|
|
6439
|
+
#
|
|
6440
|
+
# resp = client.list_volumes({
|
|
6441
|
+
# farm_id: "FarmId", # required
|
|
6442
|
+
# fleet_id: "FleetId", # required
|
|
6443
|
+
# next_token: "NextToken",
|
|
6444
|
+
# max_results: 1,
|
|
6445
|
+
# })
|
|
6446
|
+
#
|
|
6447
|
+
# @example Response structure
|
|
6448
|
+
#
|
|
6449
|
+
# resp.volumes #=> Array
|
|
6450
|
+
# resp.volumes[0].volume_id #=> String
|
|
6451
|
+
# resp.volumes[0].farm_id #=> String
|
|
6452
|
+
# resp.volumes[0].fleet_id #=> String
|
|
6453
|
+
# resp.volumes[0].state #=> String, one of "PENDING_CREATION", "PENDING_ATTACHMENT", "IN_USE", "AVAILABLE", "PENDING_DELETION"
|
|
6454
|
+
# resp.volumes[0].size_gi_b #=> Integer
|
|
6455
|
+
# resp.volumes[0].availability_zone_id #=> String
|
|
6456
|
+
# resp.volumes[0].attached_worker_id #=> String
|
|
6457
|
+
# resp.next_token #=> String
|
|
6458
|
+
#
|
|
6459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/ListVolumes AWS API Documentation
|
|
6460
|
+
#
|
|
6461
|
+
# @overload list_volumes(params = {})
|
|
6462
|
+
# @param [Hash] params ({})
|
|
6463
|
+
def list_volumes(params = {}, options = {})
|
|
6464
|
+
req = build_request(:list_volumes, params)
|
|
6465
|
+
req.send_request(options)
|
|
6466
|
+
end
|
|
6467
|
+
|
|
6260
6468
|
# Lists workers.
|
|
6261
6469
|
#
|
|
6262
6470
|
# @option params [required, String] :farm_id
|
|
@@ -7261,6 +7469,13 @@ module Aws::Deadline
|
|
|
7261
7469
|
# resource_configuration_arns: ["VpcResourceConfigurationArn"],
|
|
7262
7470
|
# },
|
|
7263
7471
|
# storage_profile_id: "StorageProfileId",
|
|
7472
|
+
# persistent_volume_configuration: {
|
|
7473
|
+
# size_gi_b: 1,
|
|
7474
|
+
# iops: 1,
|
|
7475
|
+
# throughput_mi_b: 1,
|
|
7476
|
+
# mount_path: "MountPath", # required
|
|
7477
|
+
# last_used_ttl_hours: 1,
|
|
7478
|
+
# },
|
|
7264
7479
|
# auto_scaling_configuration: {
|
|
7265
7480
|
# standby_worker_count: 1,
|
|
7266
7481
|
# worker_idle_duration_seconds: 1,
|
|
@@ -8147,7 +8362,7 @@ module Aws::Deadline
|
|
|
8147
8362
|
tracer: tracer
|
|
8148
8363
|
)
|
|
8149
8364
|
context[:gem_name] = 'aws-sdk-deadline'
|
|
8150
|
-
context[:gem_version] = '1.
|
|
8365
|
+
context[:gem_version] = '1.57.0'
|
|
8151
8366
|
Seahorse::Client::Request.new(handlers, context)
|
|
8152
8367
|
end
|
|
8153
8368
|
|
|
@@ -225,6 +225,8 @@ module Aws::Deadline
|
|
|
225
225
|
DeleteQueueResponse = Shapes::StructureShape.new(name: 'DeleteQueueResponse')
|
|
226
226
|
DeleteStorageProfileRequest = Shapes::StructureShape.new(name: 'DeleteStorageProfileRequest')
|
|
227
227
|
DeleteStorageProfileResponse = Shapes::StructureShape.new(name: 'DeleteStorageProfileResponse')
|
|
228
|
+
DeleteVolumeRequest = Shapes::StructureShape.new(name: 'DeleteVolumeRequest')
|
|
229
|
+
DeleteVolumeResponse = Shapes::StructureShape.new(name: 'DeleteVolumeResponse')
|
|
228
230
|
DeleteWorkerRequest = Shapes::StructureShape.new(name: 'DeleteWorkerRequest')
|
|
229
231
|
DeleteWorkerResponse = Shapes::StructureShape.new(name: 'DeleteWorkerResponse')
|
|
230
232
|
DependenciesList = Shapes::ListShape.new(name: 'DependenciesList')
|
|
@@ -245,6 +247,7 @@ module Aws::Deadline
|
|
|
245
247
|
Double = Shapes::FloatShape.new(name: 'Double')
|
|
246
248
|
EbsIops = Shapes::IntegerShape.new(name: 'EbsIops')
|
|
247
249
|
EbsThroughputMiB = Shapes::IntegerShape.new(name: 'EbsThroughputMiB')
|
|
250
|
+
EbsVolumeType = Shapes::StringShape.new(name: 'EbsVolumeType')
|
|
248
251
|
Ec2EbsVolume = Shapes::StructureShape.new(name: 'Ec2EbsVolume')
|
|
249
252
|
Ec2MarketType = Shapes::StringShape.new(name: 'Ec2MarketType')
|
|
250
253
|
EndedAt = Shapes::TimestampShape.new(name: 'EndedAt', timestampFormat: "iso8601")
|
|
@@ -327,6 +330,8 @@ module Aws::Deadline
|
|
|
327
330
|
GetStorageProfileResponse = Shapes::StructureShape.new(name: 'GetStorageProfileResponse')
|
|
328
331
|
GetTaskRequest = Shapes::StructureShape.new(name: 'GetTaskRequest')
|
|
329
332
|
GetTaskResponse = Shapes::StructureShape.new(name: 'GetTaskResponse')
|
|
333
|
+
GetVolumeRequest = Shapes::StructureShape.new(name: 'GetVolumeRequest')
|
|
334
|
+
GetVolumeResponse = Shapes::StructureShape.new(name: 'GetVolumeResponse')
|
|
330
335
|
GetWorkerRequest = Shapes::StructureShape.new(name: 'GetWorkerRequest')
|
|
331
336
|
GetWorkerResponse = Shapes::StructureShape.new(name: 'GetWorkerResponse')
|
|
332
337
|
HostConfiguration = Shapes::StructureShape.new(name: 'HostConfiguration')
|
|
@@ -452,6 +457,8 @@ module Aws::Deadline
|
|
|
452
457
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
|
453
458
|
ListTasksRequest = Shapes::StructureShape.new(name: 'ListTasksRequest')
|
|
454
459
|
ListTasksResponse = Shapes::StructureShape.new(name: 'ListTasksResponse')
|
|
460
|
+
ListVolumesRequest = Shapes::StructureShape.new(name: 'ListVolumesRequest')
|
|
461
|
+
ListVolumesResponse = Shapes::StructureShape.new(name: 'ListVolumesResponse')
|
|
455
462
|
ListWorkersRequest = Shapes::StructureShape.new(name: 'ListWorkersRequest')
|
|
456
463
|
ListWorkersResponse = Shapes::StructureShape.new(name: 'ListWorkersResponse')
|
|
457
464
|
LogConfiguration = Shapes::StructureShape.new(name: 'LogConfiguration')
|
|
@@ -482,6 +489,7 @@ module Aws::Deadline
|
|
|
482
489
|
MonitorId = Shapes::StringShape.new(name: 'MonitorId')
|
|
483
490
|
MonitorSummaries = Shapes::ListShape.new(name: 'MonitorSummaries')
|
|
484
491
|
MonitorSummary = Shapes::StructureShape.new(name: 'MonitorSummary')
|
|
492
|
+
MountPath = Shapes::StringShape.new(name: 'MountPath')
|
|
485
493
|
NextItemOffset = Shapes::IntegerShape.new(name: 'NextItemOffset')
|
|
486
494
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
487
495
|
OutputRelativeDirectoriesList = Shapes::ListShape.new(name: 'OutputRelativeDirectoriesList')
|
|
@@ -496,6 +504,11 @@ module Aws::Deadline
|
|
|
496
504
|
PathMappingRules = Shapes::ListShape.new(name: 'PathMappingRules')
|
|
497
505
|
PathString = Shapes::StringShape.new(name: 'PathString')
|
|
498
506
|
Period = Shapes::StringShape.new(name: 'Period')
|
|
507
|
+
PersistentVolumeConfiguration = Shapes::StructureShape.new(name: 'PersistentVolumeConfiguration')
|
|
508
|
+
PersistentVolumeIops = Shapes::IntegerShape.new(name: 'PersistentVolumeIops')
|
|
509
|
+
PersistentVolumeSizeGiB = Shapes::IntegerShape.new(name: 'PersistentVolumeSizeGiB')
|
|
510
|
+
PersistentVolumeThroughputMiB = Shapes::IntegerShape.new(name: 'PersistentVolumeThroughputMiB')
|
|
511
|
+
PersistentVolumeTtlHours = Shapes::IntegerShape.new(name: 'PersistentVolumeTtlHours')
|
|
499
512
|
PortNumber = Shapes::IntegerShape.new(name: 'PortNumber')
|
|
500
513
|
PosixUser = Shapes::StructureShape.new(name: 'PosixUser')
|
|
501
514
|
PosixUserGroupString = Shapes::StringShape.new(name: 'PosixUserGroupString')
|
|
@@ -744,6 +757,10 @@ module Aws::Deadline
|
|
|
744
757
|
ValidationExceptionField = Shapes::StructureShape.new(name: 'ValidationExceptionField')
|
|
745
758
|
ValidationExceptionFieldList = Shapes::ListShape.new(name: 'ValidationExceptionFieldList')
|
|
746
759
|
ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
|
|
760
|
+
VolumeId = Shapes::StringShape.new(name: 'VolumeId')
|
|
761
|
+
VolumeState = Shapes::StringShape.new(name: 'VolumeState')
|
|
762
|
+
VolumeSummaries = Shapes::ListShape.new(name: 'VolumeSummaries')
|
|
763
|
+
VolumeSummary = Shapes::StructureShape.new(name: 'VolumeSummary')
|
|
747
764
|
VpcConfiguration = Shapes::StructureShape.new(name: 'VpcConfiguration')
|
|
748
765
|
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
|
749
766
|
VpcResourceConfigurationArn = Shapes::StringShape.new(name: 'VpcResourceConfigurationArn')
|
|
@@ -843,6 +860,7 @@ module Aws::Deadline
|
|
|
843
860
|
AssociateMemberToFarmRequest.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "identityStoreId"))
|
|
844
861
|
AssociateMemberToFarmRequest.add_member(:membership_level, Shapes::ShapeRef.new(shape: MembershipLevel, required: true, location_name: "membershipLevel"))
|
|
845
862
|
AssociateMemberToFarmRequest.add_member(:principal_id, Shapes::ShapeRef.new(shape: IdentityCenterPrincipalId, required: true, location: "uri", location_name: "principalId"))
|
|
863
|
+
AssociateMemberToFarmRequest.add_member(:identity_center_region, Shapes::ShapeRef.new(shape: Region, location_name: "identityCenterRegion"))
|
|
846
864
|
AssociateMemberToFarmRequest.struct_class = Types::AssociateMemberToFarmRequest
|
|
847
865
|
|
|
848
866
|
AssociateMemberToFarmResponse.struct_class = Types::AssociateMemberToFarmResponse
|
|
@@ -853,6 +871,7 @@ module Aws::Deadline
|
|
|
853
871
|
AssociateMemberToFleetRequest.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "identityStoreId"))
|
|
854
872
|
AssociateMemberToFleetRequest.add_member(:membership_level, Shapes::ShapeRef.new(shape: MembershipLevel, required: true, location_name: "membershipLevel"))
|
|
855
873
|
AssociateMemberToFleetRequest.add_member(:principal_id, Shapes::ShapeRef.new(shape: IdentityCenterPrincipalId, required: true, location: "uri", location_name: "principalId"))
|
|
874
|
+
AssociateMemberToFleetRequest.add_member(:identity_center_region, Shapes::ShapeRef.new(shape: Region, location_name: "identityCenterRegion"))
|
|
856
875
|
AssociateMemberToFleetRequest.struct_class = Types::AssociateMemberToFleetRequest
|
|
857
876
|
|
|
858
877
|
AssociateMemberToFleetResponse.struct_class = Types::AssociateMemberToFleetResponse
|
|
@@ -864,6 +883,7 @@ module Aws::Deadline
|
|
|
864
883
|
AssociateMemberToJobRequest.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "identityStoreId"))
|
|
865
884
|
AssociateMemberToJobRequest.add_member(:membership_level, Shapes::ShapeRef.new(shape: MembershipLevel, required: true, location_name: "membershipLevel"))
|
|
866
885
|
AssociateMemberToJobRequest.add_member(:principal_id, Shapes::ShapeRef.new(shape: IdentityCenterPrincipalId, required: true, location: "uri", location_name: "principalId"))
|
|
886
|
+
AssociateMemberToJobRequest.add_member(:identity_center_region, Shapes::ShapeRef.new(shape: Region, location_name: "identityCenterRegion"))
|
|
867
887
|
AssociateMemberToJobRequest.struct_class = Types::AssociateMemberToJobRequest
|
|
868
888
|
|
|
869
889
|
AssociateMemberToJobResponse.struct_class = Types::AssociateMemberToJobResponse
|
|
@@ -874,6 +894,7 @@ module Aws::Deadline
|
|
|
874
894
|
AssociateMemberToQueueRequest.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "identityStoreId"))
|
|
875
895
|
AssociateMemberToQueueRequest.add_member(:membership_level, Shapes::ShapeRef.new(shape: MembershipLevel, required: true, location_name: "membershipLevel"))
|
|
876
896
|
AssociateMemberToQueueRequest.add_member(:principal_id, Shapes::ShapeRef.new(shape: IdentityCenterPrincipalId, required: true, location: "uri", location_name: "principalId"))
|
|
897
|
+
AssociateMemberToQueueRequest.add_member(:identity_center_region, Shapes::ShapeRef.new(shape: Region, location_name: "identityCenterRegion"))
|
|
877
898
|
AssociateMemberToQueueRequest.struct_class = Types::AssociateMemberToQueueRequest
|
|
878
899
|
|
|
879
900
|
AssociateMemberToQueueResponse.struct_class = Types::AssociateMemberToQueueResponse
|
|
@@ -1598,6 +1619,13 @@ module Aws::Deadline
|
|
|
1598
1619
|
|
|
1599
1620
|
DeleteStorageProfileResponse.struct_class = Types::DeleteStorageProfileResponse
|
|
1600
1621
|
|
|
1622
|
+
DeleteVolumeRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
1623
|
+
DeleteVolumeRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location: "uri", location_name: "fleetId"))
|
|
1624
|
+
DeleteVolumeRequest.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, required: true, location: "uri", location_name: "volumeId"))
|
|
1625
|
+
DeleteVolumeRequest.struct_class = Types::DeleteVolumeRequest
|
|
1626
|
+
|
|
1627
|
+
DeleteVolumeResponse.struct_class = Types::DeleteVolumeResponse
|
|
1628
|
+
|
|
1601
1629
|
DeleteWorkerRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
1602
1630
|
DeleteWorkerRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location: "uri", location_name: "fleetId"))
|
|
1603
1631
|
DeleteWorkerRequest.add_member(:worker_id, Shapes::ShapeRef.new(shape: WorkerId, required: true, location: "uri", location_name: "workerId"))
|
|
@@ -2114,6 +2142,27 @@ module Aws::Deadline
|
|
|
2114
2142
|
GetTaskResponse.add_member(:parameters, Shapes::ShapeRef.new(shape: TaskParameters, location_name: "parameters"))
|
|
2115
2143
|
GetTaskResponse.struct_class = Types::GetTaskResponse
|
|
2116
2144
|
|
|
2145
|
+
GetVolumeRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2146
|
+
GetVolumeRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location: "uri", location_name: "fleetId"))
|
|
2147
|
+
GetVolumeRequest.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, required: true, location: "uri", location_name: "volumeId"))
|
|
2148
|
+
GetVolumeRequest.struct_class = Types::GetVolumeRequest
|
|
2149
|
+
|
|
2150
|
+
GetVolumeResponse.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, required: true, location_name: "volumeId"))
|
|
2151
|
+
GetVolumeResponse.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location_name: "farmId"))
|
|
2152
|
+
GetVolumeResponse.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location_name: "fleetId"))
|
|
2153
|
+
GetVolumeResponse.add_member(:state, Shapes::ShapeRef.new(shape: VolumeState, required: true, location_name: "state"))
|
|
2154
|
+
GetVolumeResponse.add_member(:size_gi_b, Shapes::ShapeRef.new(shape: PersistentVolumeSizeGiB, required: true, location_name: "sizeGiB"))
|
|
2155
|
+
GetVolumeResponse.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "availabilityZoneId"))
|
|
2156
|
+
GetVolumeResponse.add_member(:attached_worker_id, Shapes::ShapeRef.new(shape: WorkerId, location_name: "attachedWorkerId"))
|
|
2157
|
+
GetVolumeResponse.add_member(:volume_type, Shapes::ShapeRef.new(shape: EbsVolumeType, required: true, location_name: "volumeType"))
|
|
2158
|
+
GetVolumeResponse.add_member(:iops, Shapes::ShapeRef.new(shape: PersistentVolumeIops, location_name: "iops"))
|
|
2159
|
+
GetVolumeResponse.add_member(:throughput_mi_b, Shapes::ShapeRef.new(shape: PersistentVolumeThroughputMiB, location_name: "throughputMiB"))
|
|
2160
|
+
GetVolumeResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, required: true, location_name: "createdAt"))
|
|
2161
|
+
GetVolumeResponse.add_member(:last_assigned_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastAssignedAt"))
|
|
2162
|
+
GetVolumeResponse.add_member(:last_released_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastReleasedAt"))
|
|
2163
|
+
GetVolumeResponse.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expiresAt"))
|
|
2164
|
+
GetVolumeResponse.struct_class = Types::GetVolumeResponse
|
|
2165
|
+
|
|
2117
2166
|
GetWorkerRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2118
2167
|
GetWorkerRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location: "uri", location_name: "fleetId"))
|
|
2119
2168
|
GetWorkerRequest.add_member(:worker_id, Shapes::ShapeRef.new(shape: WorkerId, required: true, location: "uri", location_name: "workerId"))
|
|
@@ -2611,6 +2660,16 @@ module Aws::Deadline
|
|
|
2611
2660
|
ListTasksResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2612
2661
|
ListTasksResponse.struct_class = Types::ListTasksResponse
|
|
2613
2662
|
|
|
2663
|
+
ListVolumesRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2664
|
+
ListVolumesRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location: "uri", location_name: "fleetId"))
|
|
2665
|
+
ListVolumesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
2666
|
+
ListVolumesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
|
2667
|
+
ListVolumesRequest.struct_class = Types::ListVolumesRequest
|
|
2668
|
+
|
|
2669
|
+
ListVolumesResponse.add_member(:volumes, Shapes::ShapeRef.new(shape: VolumeSummaries, required: true, location_name: "volumes"))
|
|
2670
|
+
ListVolumesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
2671
|
+
ListVolumesResponse.struct_class = Types::ListVolumesResponse
|
|
2672
|
+
|
|
2614
2673
|
ListWorkersRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
|
2615
2674
|
ListWorkersRequest.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location: "uri", location_name: "fleetId"))
|
|
2616
2675
|
ListWorkersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
@@ -2693,6 +2752,13 @@ module Aws::Deadline
|
|
|
2693
2752
|
|
|
2694
2753
|
PathMappingRules.member = Shapes::ShapeRef.new(shape: PathMappingRule)
|
|
2695
2754
|
|
|
2755
|
+
PersistentVolumeConfiguration.add_member(:size_gi_b, Shapes::ShapeRef.new(shape: PersistentVolumeSizeGiB, location_name: "sizeGiB"))
|
|
2756
|
+
PersistentVolumeConfiguration.add_member(:iops, Shapes::ShapeRef.new(shape: PersistentVolumeIops, location_name: "iops"))
|
|
2757
|
+
PersistentVolumeConfiguration.add_member(:throughput_mi_b, Shapes::ShapeRef.new(shape: PersistentVolumeThroughputMiB, location_name: "throughputMiB"))
|
|
2758
|
+
PersistentVolumeConfiguration.add_member(:mount_path, Shapes::ShapeRef.new(shape: MountPath, required: true, location_name: "mountPath"))
|
|
2759
|
+
PersistentVolumeConfiguration.add_member(:last_used_ttl_hours, Shapes::ShapeRef.new(shape: PersistentVolumeTtlHours, location_name: "lastUsedTtlHours"))
|
|
2760
|
+
PersistentVolumeConfiguration.struct_class = Types::PersistentVolumeConfiguration
|
|
2761
|
+
|
|
2696
2762
|
PosixUser.add_member(:user, Shapes::ShapeRef.new(shape: PosixUserUserString, required: true, location_name: "user"))
|
|
2697
2763
|
PosixUser.add_member(:group, Shapes::ShapeRef.new(shape: PosixUserGroupString, required: true, location_name: "group"))
|
|
2698
2764
|
PosixUser.struct_class = Types::PosixUser
|
|
@@ -2915,6 +2981,7 @@ module Aws::Deadline
|
|
|
2915
2981
|
ServiceManagedEc2FleetConfiguration.add_member(:instance_market_options, Shapes::ShapeRef.new(shape: ServiceManagedEc2InstanceMarketOptions, required: true, location_name: "instanceMarketOptions"))
|
|
2916
2982
|
ServiceManagedEc2FleetConfiguration.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "vpcConfiguration"))
|
|
2917
2983
|
ServiceManagedEc2FleetConfiguration.add_member(:storage_profile_id, Shapes::ShapeRef.new(shape: StorageProfileId, location_name: "storageProfileId"))
|
|
2984
|
+
ServiceManagedEc2FleetConfiguration.add_member(:persistent_volume_configuration, Shapes::ShapeRef.new(shape: PersistentVolumeConfiguration, location_name: "persistentVolumeConfiguration"))
|
|
2918
2985
|
ServiceManagedEc2FleetConfiguration.add_member(:auto_scaling_configuration, Shapes::ShapeRef.new(shape: ServiceManagedEc2AutoScalingConfiguration, location_name: "autoScalingConfiguration"))
|
|
2919
2986
|
ServiceManagedEc2FleetConfiguration.struct_class = Types::ServiceManagedEc2FleetConfiguration
|
|
2920
2987
|
|
|
@@ -3496,6 +3563,17 @@ module Aws::Deadline
|
|
|
3496
3563
|
|
|
3497
3564
|
ValidationExceptionFieldList.member = Shapes::ShapeRef.new(shape: ValidationExceptionField)
|
|
3498
3565
|
|
|
3566
|
+
VolumeSummaries.member = Shapes::ShapeRef.new(shape: VolumeSummary)
|
|
3567
|
+
|
|
3568
|
+
VolumeSummary.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, required: true, location_name: "volumeId"))
|
|
3569
|
+
VolumeSummary.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location_name: "farmId"))
|
|
3570
|
+
VolumeSummary.add_member(:fleet_id, Shapes::ShapeRef.new(shape: FleetId, required: true, location_name: "fleetId"))
|
|
3571
|
+
VolumeSummary.add_member(:state, Shapes::ShapeRef.new(shape: VolumeState, required: true, location_name: "state"))
|
|
3572
|
+
VolumeSummary.add_member(:size_gi_b, Shapes::ShapeRef.new(shape: PersistentVolumeSizeGiB, required: true, location_name: "sizeGiB"))
|
|
3573
|
+
VolumeSummary.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "availabilityZoneId"))
|
|
3574
|
+
VolumeSummary.add_member(:attached_worker_id, Shapes::ShapeRef.new(shape: WorkerId, location_name: "attachedWorkerId"))
|
|
3575
|
+
VolumeSummary.struct_class = Types::VolumeSummary
|
|
3576
|
+
|
|
3499
3577
|
VpcConfiguration.add_member(:resource_configuration_arns, Shapes::ShapeRef.new(shape: VpcResourceConfigurationArns, location_name: "resourceConfigurationArns"))
|
|
3500
3578
|
VpcConfiguration.struct_class = Types::VpcConfiguration
|
|
3501
3579
|
|
|
@@ -4298,6 +4376,23 @@ module Aws::Deadline
|
|
|
4298
4376
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
4299
4377
|
end)
|
|
4300
4378
|
|
|
4379
|
+
api.add_operation(:delete_volume, Seahorse::Model::Operation.new.tap do |o|
|
|
4380
|
+
o.name = "DeleteVolume"
|
|
4381
|
+
o.http_method = "DELETE"
|
|
4382
|
+
o.http_request_uri = "/2023-10-12/farms/{farmId}/fleets/{fleetId}/volumes/{volumeId}"
|
|
4383
|
+
o.endpoint_pattern = {
|
|
4384
|
+
"hostPrefix" => "management.",
|
|
4385
|
+
}
|
|
4386
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteVolumeRequest)
|
|
4387
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteVolumeResponse)
|
|
4388
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4389
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
4390
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
4391
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
4392
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
4393
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
4394
|
+
end)
|
|
4395
|
+
|
|
4301
4396
|
api.add_operation(:delete_worker, Seahorse::Model::Operation.new.tap do |o|
|
|
4302
4397
|
o.name = "DeleteWorker"
|
|
4303
4398
|
o.http_method = "DELETE"
|
|
@@ -4691,6 +4786,22 @@ module Aws::Deadline
|
|
|
4691
4786
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
4692
4787
|
end)
|
|
4693
4788
|
|
|
4789
|
+
api.add_operation(:get_volume, Seahorse::Model::Operation.new.tap do |o|
|
|
4790
|
+
o.name = "GetVolume"
|
|
4791
|
+
o.http_method = "GET"
|
|
4792
|
+
o.http_request_uri = "/2023-10-12/farms/{farmId}/fleets/{fleetId}/volumes/{volumeId}"
|
|
4793
|
+
o.endpoint_pattern = {
|
|
4794
|
+
"hostPrefix" => "management.",
|
|
4795
|
+
}
|
|
4796
|
+
o.input = Shapes::ShapeRef.new(shape: GetVolumeRequest)
|
|
4797
|
+
o.output = Shapes::ShapeRef.new(shape: GetVolumeResponse)
|
|
4798
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
4799
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
4800
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
4801
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
4802
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
4803
|
+
end)
|
|
4804
|
+
|
|
4694
4805
|
api.add_operation(:get_worker, Seahorse::Model::Operation.new.tap do |o|
|
|
4695
4806
|
o.name = "GetWorker"
|
|
4696
4807
|
o.http_method = "GET"
|
|
@@ -5310,6 +5421,28 @@ module Aws::Deadline
|
|
|
5310
5421
|
)
|
|
5311
5422
|
end)
|
|
5312
5423
|
|
|
5424
|
+
api.add_operation(:list_volumes, Seahorse::Model::Operation.new.tap do |o|
|
|
5425
|
+
o.name = "ListVolumes"
|
|
5426
|
+
o.http_method = "GET"
|
|
5427
|
+
o.http_request_uri = "/2023-10-12/farms/{farmId}/fleets/{fleetId}/volumes"
|
|
5428
|
+
o.endpoint_pattern = {
|
|
5429
|
+
"hostPrefix" => "management.",
|
|
5430
|
+
}
|
|
5431
|
+
o.input = Shapes::ShapeRef.new(shape: ListVolumesRequest)
|
|
5432
|
+
o.output = Shapes::ShapeRef.new(shape: ListVolumesResponse)
|
|
5433
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
5434
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
5435
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
5436
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
5437
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
5438
|
+
o[:pager] = Aws::Pager.new(
|
|
5439
|
+
limit_key: "max_results",
|
|
5440
|
+
tokens: {
|
|
5441
|
+
"next_token" => "next_token"
|
|
5442
|
+
}
|
|
5443
|
+
)
|
|
5444
|
+
end)
|
|
5445
|
+
|
|
5313
5446
|
api.add_operation(:list_workers, Seahorse::Model::Operation.new.tap do |o|
|
|
5314
5447
|
o.name = "ListWorkers"
|
|
5315
5448
|
o.http_method = "GET"
|