aws-sdk-deadline 1.33.0 → 1.34.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-deadline/client.rb +11 -8
- data/lib/aws-sdk-deadline/client_api.rb +2 -0
- data/lib/aws-sdk-deadline/types.rb +10 -0
- data/lib/aws-sdk-deadline.rb +1 -1
- data/sig/client.rbs +5 -4
- data/sig/types.rbs +6 -4
- 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: 8097e56973f4da1552be6edcf94b47b18635141714ead8509e043675e4ded0f8
|
4
|
+
data.tar.gz: 75983bcfc2998788405770cd2d132c7d12ffdfab04a36df0ba6cd990b8149d02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9945433e67f0ddab2b93fe290f2eb54fecad4871835ec0e0524712a82450d09a7992b29cde1141e0ee8f14048058536a34c9f1e53cdeb8e84a5493d7850a31cc
|
7
|
+
data.tar.gz: eec883c643c22171086581f46725060d6c64ee4046079b47282191780632f98f759c74162028965066c366b016fc434eaf261e08434f9716c9b0cb7334533de9
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.34.0
|
@@ -1297,7 +1297,7 @@ module Aws::Deadline
|
|
1297
1297
|
# ],
|
1298
1298
|
# },
|
1299
1299
|
# instance_market_options: { # required
|
1300
|
-
# type: "on-demand", # required, accepts on-demand, spot
|
1300
|
+
# type: "on-demand", # required, accepts on-demand, spot, wait-and-save
|
1301
1301
|
# },
|
1302
1302
|
# vpc_configuration: {
|
1303
1303
|
# resource_configuration_arns: ["VpcResourceConfigurationArn"],
|
@@ -2603,6 +2603,7 @@ module Aws::Deadline
|
|
2603
2603
|
# * {Types::GetFleetResponse#display_name #display_name} => String
|
2604
2604
|
# * {Types::GetFleetResponse#description #description} => String
|
2605
2605
|
# * {Types::GetFleetResponse#status #status} => String
|
2606
|
+
# * {Types::GetFleetResponse#status_message #status_message} => String
|
2606
2607
|
# * {Types::GetFleetResponse#auto_scaling_status #auto_scaling_status} => String
|
2607
2608
|
# * {Types::GetFleetResponse#target_worker_count #target_worker_count} => Integer
|
2608
2609
|
# * {Types::GetFleetResponse#worker_count #worker_count} => Integer
|
@@ -2630,7 +2631,8 @@ module Aws::Deadline
|
|
2630
2631
|
# resp.farm_id #=> String
|
2631
2632
|
# resp.display_name #=> String
|
2632
2633
|
# resp.description #=> String
|
2633
|
-
# resp.status #=> String, one of "ACTIVE", "CREATE_IN_PROGRESS", "UPDATE_IN_PROGRESS", "CREATE_FAILED", "UPDATE_FAILED"
|
2634
|
+
# resp.status #=> String, one of "ACTIVE", "CREATE_IN_PROGRESS", "UPDATE_IN_PROGRESS", "CREATE_FAILED", "UPDATE_FAILED", "SUSPENDED"
|
2635
|
+
# resp.status_message #=> String
|
2634
2636
|
# resp.auto_scaling_status #=> String, one of "GROWING", "STEADY", "SHRINKING"
|
2635
2637
|
# resp.target_worker_count #=> Integer
|
2636
2638
|
# resp.worker_count #=> Integer
|
@@ -2685,7 +2687,7 @@ module Aws::Deadline
|
|
2685
2687
|
# resp.configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].name #=> String
|
2686
2688
|
# resp.configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values #=> Array
|
2687
2689
|
# resp.configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values[0] #=> String
|
2688
|
-
# resp.configuration.service_managed_ec2.instance_market_options.type #=> String, one of "on-demand", "spot"
|
2690
|
+
# resp.configuration.service_managed_ec2.instance_market_options.type #=> String, one of "on-demand", "spot", "wait-and-save"
|
2689
2691
|
# resp.configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns #=> Array
|
2690
2692
|
# resp.configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns[0] #=> String
|
2691
2693
|
# resp.configuration.service_managed_ec2.storage_profile_id #=> String
|
@@ -4038,7 +4040,7 @@ module Aws::Deadline
|
|
4038
4040
|
# farm_id: "FarmId", # required
|
4039
4041
|
# principal_id: "IdentityCenterPrincipalId",
|
4040
4042
|
# display_name: "ResourceName",
|
4041
|
-
# status: "ACTIVE", # accepts ACTIVE, CREATE_IN_PROGRESS, UPDATE_IN_PROGRESS, CREATE_FAILED, UPDATE_FAILED
|
4043
|
+
# status: "ACTIVE", # accepts ACTIVE, CREATE_IN_PROGRESS, UPDATE_IN_PROGRESS, CREATE_FAILED, UPDATE_FAILED, SUSPENDED
|
4042
4044
|
# next_token: "String",
|
4043
4045
|
# max_results: 1,
|
4044
4046
|
# })
|
@@ -4049,7 +4051,8 @@ module Aws::Deadline
|
|
4049
4051
|
# resp.fleets[0].fleet_id #=> String
|
4050
4052
|
# resp.fleets[0].farm_id #=> String
|
4051
4053
|
# resp.fleets[0].display_name #=> String
|
4052
|
-
# resp.fleets[0].status #=> String, one of "ACTIVE", "CREATE_IN_PROGRESS", "UPDATE_IN_PROGRESS", "CREATE_FAILED", "UPDATE_FAILED"
|
4054
|
+
# resp.fleets[0].status #=> String, one of "ACTIVE", "CREATE_IN_PROGRESS", "UPDATE_IN_PROGRESS", "CREATE_FAILED", "UPDATE_FAILED", "SUSPENDED"
|
4055
|
+
# resp.fleets[0].status_message #=> String
|
4053
4056
|
# resp.fleets[0].auto_scaling_status #=> String, one of "GROWING", "STEADY", "SHRINKING"
|
4054
4057
|
# resp.fleets[0].target_worker_count #=> Integer
|
4055
4058
|
# resp.fleets[0].worker_count #=> Integer
|
@@ -4104,7 +4107,7 @@ module Aws::Deadline
|
|
4104
4107
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].name #=> String
|
4105
4108
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values #=> Array
|
4106
4109
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values[0] #=> String
|
4107
|
-
# resp.fleets[0].configuration.service_managed_ec2.instance_market_options.type #=> String, one of "on-demand", "spot"
|
4110
|
+
# resp.fleets[0].configuration.service_managed_ec2.instance_market_options.type #=> String, one of "on-demand", "spot", "wait-and-save"
|
4108
4111
|
# resp.fleets[0].configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns #=> Array
|
4109
4112
|
# resp.fleets[0].configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns[0] #=> String
|
4110
4113
|
# resp.fleets[0].configuration.service_managed_ec2.storage_profile_id #=> String
|
@@ -6320,7 +6323,7 @@ module Aws::Deadline
|
|
6320
6323
|
# ],
|
6321
6324
|
# },
|
6322
6325
|
# instance_market_options: { # required
|
6323
|
-
# type: "on-demand", # required, accepts on-demand, spot
|
6326
|
+
# type: "on-demand", # required, accepts on-demand, spot, wait-and-save
|
6324
6327
|
# },
|
6325
6328
|
# vpc_configuration: {
|
6326
6329
|
# resource_configuration_arns: ["VpcResourceConfigurationArn"],
|
@@ -7126,7 +7129,7 @@ module Aws::Deadline
|
|
7126
7129
|
tracer: tracer
|
7127
7130
|
)
|
7128
7131
|
context[:gem_name] = 'aws-sdk-deadline'
|
7129
|
-
context[:gem_version] = '1.
|
7132
|
+
context[:gem_version] = '1.34.0'
|
7130
7133
|
Seahorse::Client::Request.new(handlers, context)
|
7131
7134
|
end
|
7132
7135
|
|
@@ -1306,6 +1306,7 @@ module Aws::Deadline
|
|
1306
1306
|
FleetSummary.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location_name: "farmId"))
|
1307
1307
|
FleetSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "displayName"))
|
1308
1308
|
FleetSummary.add_member(:status, Shapes::ShapeRef.new(shape: FleetStatus, required: true, location_name: "status"))
|
1309
|
+
FleetSummary.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
|
1309
1310
|
FleetSummary.add_member(:auto_scaling_status, Shapes::ShapeRef.new(shape: AutoScalingStatus, location_name: "autoScalingStatus"))
|
1310
1311
|
FleetSummary.add_member(:target_worker_count, Shapes::ShapeRef.new(shape: Integer, location_name: "targetWorkerCount"))
|
1311
1312
|
FleetSummary.add_member(:worker_count, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "workerCount"))
|
@@ -1360,6 +1361,7 @@ module Aws::Deadline
|
|
1360
1361
|
GetFleetResponse.add_member(:display_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "displayName"))
|
1361
1362
|
GetFleetResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
1362
1363
|
GetFleetResponse.add_member(:status, Shapes::ShapeRef.new(shape: FleetStatus, required: true, location_name: "status"))
|
1364
|
+
GetFleetResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
|
1363
1365
|
GetFleetResponse.add_member(:auto_scaling_status, Shapes::ShapeRef.new(shape: AutoScalingStatus, location_name: "autoScalingStatus"))
|
1364
1366
|
GetFleetResponse.add_member(:target_worker_count, Shapes::ShapeRef.new(shape: Integer, location_name: "targetWorkerCount"))
|
1365
1367
|
GetFleetResponse.add_member(:worker_count, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "workerCount"))
|
@@ -2800,6 +2800,10 @@ module Aws::Deadline
|
|
2800
2800
|
# The status of the fleet.
|
2801
2801
|
# @return [String]
|
2802
2802
|
#
|
2803
|
+
# @!attribute [rw] status_message
|
2804
|
+
# A message that communicates a suspended status of the fleet.
|
2805
|
+
# @return [String]
|
2806
|
+
#
|
2803
2807
|
# @!attribute [rw] auto_scaling_status
|
2804
2808
|
# The Auto Scaling status of a fleet.
|
2805
2809
|
# @return [String]
|
@@ -2847,6 +2851,7 @@ module Aws::Deadline
|
|
2847
2851
|
:farm_id,
|
2848
2852
|
:display_name,
|
2849
2853
|
:status,
|
2854
|
+
:status_message,
|
2850
2855
|
:auto_scaling_status,
|
2851
2856
|
:target_worker_count,
|
2852
2857
|
:worker_count,
|
@@ -3080,6 +3085,10 @@ module Aws::Deadline
|
|
3080
3085
|
# The status of the fleet.
|
3081
3086
|
# @return [String]
|
3082
3087
|
#
|
3088
|
+
# @!attribute [rw] status_message
|
3089
|
+
# A message that communicates a suspended status of the fleet.
|
3090
|
+
# @return [String]
|
3091
|
+
#
|
3083
3092
|
# @!attribute [rw] auto_scaling_status
|
3084
3093
|
# The Auto Scaling status of the fleet. Either `GROWING`, `STEADY`, or
|
3085
3094
|
# `SHRINKING`.
|
@@ -3143,6 +3152,7 @@ module Aws::Deadline
|
|
3143
3152
|
:display_name,
|
3144
3153
|
:description,
|
3145
3154
|
:status,
|
3155
|
+
:status_message,
|
3146
3156
|
:auto_scaling_status,
|
3147
3157
|
:target_worker_count,
|
3148
3158
|
:worker_count,
|
data/lib/aws-sdk-deadline.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -382,7 +382,7 @@ module Aws
|
|
382
382
|
]?
|
383
383
|
},
|
384
384
|
instance_market_options: {
|
385
|
-
type: ("on-demand" | "spot")
|
385
|
+
type: ("on-demand" | "spot" | "wait-and-save")
|
386
386
|
},
|
387
387
|
vpc_configuration: {
|
388
388
|
resource_configuration_arns: Array[::String]?
|
@@ -816,7 +816,8 @@ module Aws
|
|
816
816
|
def farm_id: () -> ::String
|
817
817
|
def display_name: () -> ::String
|
818
818
|
def description: () -> ::String
|
819
|
-
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED")
|
819
|
+
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "SUSPENDED")
|
820
|
+
def status_message: () -> ::String
|
820
821
|
def auto_scaling_status: () -> ("GROWING" | "STEADY" | "SHRINKING")
|
821
822
|
def target_worker_count: () -> ::Integer
|
822
823
|
def worker_count: () -> ::Integer
|
@@ -1260,7 +1261,7 @@ module Aws
|
|
1260
1261
|
farm_id: ::String,
|
1261
1262
|
?principal_id: ::String,
|
1262
1263
|
?display_name: ::String,
|
1263
|
-
?status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED"),
|
1264
|
+
?status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "SUSPENDED"),
|
1264
1265
|
?next_token: ::String,
|
1265
1266
|
?max_results: ::Integer
|
1266
1267
|
) -> _ListFleetsResponseSuccess
|
@@ -2019,7 +2020,7 @@ module Aws
|
|
2019
2020
|
]?
|
2020
2021
|
},
|
2021
2022
|
instance_market_options: {
|
2022
|
-
type: ("on-demand" | "spot")
|
2023
|
+
type: ("on-demand" | "spot" | "wait-and-save")
|
2023
2024
|
},
|
2024
2025
|
vpc_configuration: {
|
2025
2026
|
resource_configuration_arns: Array[::String]?
|
data/sig/types.rbs
CHANGED
@@ -835,7 +835,8 @@ module Aws::Deadline
|
|
835
835
|
attr_accessor fleet_id: ::String
|
836
836
|
attr_accessor farm_id: ::String
|
837
837
|
attr_accessor display_name: ::String
|
838
|
-
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED")
|
838
|
+
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "SUSPENDED")
|
839
|
+
attr_accessor status_message: ::String
|
839
840
|
attr_accessor auto_scaling_status: ("GROWING" | "STEADY" | "SHRINKING")
|
840
841
|
attr_accessor target_worker_count: ::Integer
|
841
842
|
attr_accessor worker_count: ::Integer
|
@@ -901,7 +902,8 @@ module Aws::Deadline
|
|
901
902
|
attr_accessor farm_id: ::String
|
902
903
|
attr_accessor display_name: ::String
|
903
904
|
attr_accessor description: ::String
|
904
|
-
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED")
|
905
|
+
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "SUSPENDED")
|
906
|
+
attr_accessor status_message: ::String
|
905
907
|
attr_accessor auto_scaling_status: ("GROWING" | "STEADY" | "SHRINKING")
|
906
908
|
attr_accessor target_worker_count: ::Integer
|
907
909
|
attr_accessor worker_count: ::Integer
|
@@ -1582,7 +1584,7 @@ module Aws::Deadline
|
|
1582
1584
|
attr_accessor farm_id: ::String
|
1583
1585
|
attr_accessor principal_id: ::String
|
1584
1586
|
attr_accessor display_name: ::String
|
1585
|
-
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED")
|
1587
|
+
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "SUSPENDED")
|
1586
1588
|
attr_accessor next_token: ::String
|
1587
1589
|
attr_accessor max_results: ::Integer
|
1588
1590
|
SENSITIVE: []
|
@@ -2230,7 +2232,7 @@ module Aws::Deadline
|
|
2230
2232
|
end
|
2231
2233
|
|
2232
2234
|
class ServiceManagedEc2InstanceMarketOptions
|
2233
|
-
attr_accessor type: ("on-demand" | "spot")
|
2235
|
+
attr_accessor type: ("on-demand" | "spot" | "wait-and-save")
|
2234
2236
|
SENSITIVE: []
|
2235
2237
|
end
|
2236
2238
|
|