aws-sdk-deadline 1.29.0 → 1.30.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 +36 -9
- data/lib/aws-sdk-deadline/client_api.rb +16 -0
- data/lib/aws-sdk-deadline/types.rb +57 -1
- data/lib/aws-sdk-deadline.rb +1 -1
- data/sig/client.rbs +7 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +13 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7af144c4a1107100398ded5a113ec9c33d23b4ad82b7bf32614d494048af996
|
4
|
+
data.tar.gz: 5d4f7370143ed5ef66f6fc229dc616251329357541d13b7292dbcee4443b250b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 488dc714008a3d279dedf723ec4cbe5ca0c4bac88db9149430944b111f919b63190ab11d8b2f7b579874d565253f4458229089c1b3264d6942ed1c864cde7356
|
7
|
+
data.tar.gz: 3c4986e2903cad36ae178b133310e8b79b0b6f5422590d0e31c27aa03c588f6b40e50d6ac7dfd4d1aa92ecbb943566ec2f51bbec7b53695e5e966f62794e354b
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.30.0
|
@@ -95,7 +95,7 @@ module Aws::Deadline
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::Deadline
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::Deadline
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::Deadline
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::Deadline
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -1292,6 +1302,9 @@ module Aws::Deadline
|
|
1292
1302
|
# instance_market_options: { # required
|
1293
1303
|
# type: "on-demand", # required, accepts on-demand, spot
|
1294
1304
|
# },
|
1305
|
+
# vpc_configuration: {
|
1306
|
+
# resource_configuration_arns: ["VpcResourceConfigurationArn"],
|
1307
|
+
# },
|
1295
1308
|
# storage_profile_id: "StorageProfileId",
|
1296
1309
|
# },
|
1297
1310
|
# },
|
@@ -2668,6 +2681,8 @@ module Aws::Deadline
|
|
2668
2681
|
# resp.configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values #=> Array
|
2669
2682
|
# resp.configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values[0] #=> String
|
2670
2683
|
# resp.configuration.service_managed_ec2.instance_market_options.type #=> String, one of "on-demand", "spot"
|
2684
|
+
# resp.configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns #=> Array
|
2685
|
+
# resp.configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns[0] #=> String
|
2671
2686
|
# resp.configuration.service_managed_ec2.storage_profile_id #=> String
|
2672
2687
|
# resp.host_configuration.script_body #=> String
|
2673
2688
|
# resp.host_configuration.script_timeout_seconds #=> Integer
|
@@ -4085,6 +4100,8 @@ module Aws::Deadline
|
|
4085
4100
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values #=> Array
|
4086
4101
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values[0] #=> String
|
4087
4102
|
# resp.fleets[0].configuration.service_managed_ec2.instance_market_options.type #=> String, one of "on-demand", "spot"
|
4103
|
+
# resp.fleets[0].configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns #=> Array
|
4104
|
+
# resp.fleets[0].configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns[0] #=> String
|
4088
4105
|
# resp.fleets[0].configuration.service_managed_ec2.storage_profile_id #=> String
|
4089
4106
|
# resp.fleets[0].created_at #=> Time
|
4090
4107
|
# resp.fleets[0].created_by #=> String
|
@@ -5519,6 +5536,8 @@ module Aws::Deadline
|
|
5519
5536
|
# resp.jobs[0].created_at #=> Time
|
5520
5537
|
# resp.jobs[0].ended_at #=> Time
|
5521
5538
|
# resp.jobs[0].started_at #=> Time
|
5539
|
+
# resp.jobs[0].updated_at #=> Time
|
5540
|
+
# resp.jobs[0].updated_by #=> String
|
5522
5541
|
# resp.jobs[0].job_parameters #=> Hash
|
5523
5542
|
# resp.jobs[0].job_parameters["JobParametersKeyString"].int #=> String
|
5524
5543
|
# resp.jobs[0].job_parameters["JobParametersKeyString"].float #=> String
|
@@ -5639,8 +5658,11 @@ module Aws::Deadline
|
|
5639
5658
|
# resp.steps[0].task_run_status_counts["TaskRunStatus"] #=> Integer
|
5640
5659
|
# resp.steps[0].task_failure_retry_count #=> Integer
|
5641
5660
|
# resp.steps[0].created_at #=> Time
|
5661
|
+
# resp.steps[0].created_by #=> String
|
5642
5662
|
# resp.steps[0].started_at #=> Time
|
5643
5663
|
# resp.steps[0].ended_at #=> Time
|
5664
|
+
# resp.steps[0].updated_at #=> Time
|
5665
|
+
# resp.steps[0].updated_by #=> String
|
5644
5666
|
# resp.steps[0].parameter_space.parameters #=> Array
|
5645
5667
|
# resp.steps[0].parameter_space.parameters[0].name #=> String
|
5646
5668
|
# resp.steps[0].parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH", "CHUNK_INT"
|
@@ -5761,6 +5783,8 @@ module Aws::Deadline
|
|
5761
5783
|
# resp.tasks[0].failure_retry_count #=> Integer
|
5762
5784
|
# resp.tasks[0].started_at #=> Time
|
5763
5785
|
# resp.tasks[0].ended_at #=> Time
|
5786
|
+
# resp.tasks[0].updated_at #=> Time
|
5787
|
+
# resp.tasks[0].updated_by #=> String
|
5764
5788
|
# resp.next_item_offset #=> Integer
|
5765
5789
|
# resp.total_results #=> Integer
|
5766
5790
|
#
|
@@ -6293,6 +6317,9 @@ module Aws::Deadline
|
|
6293
6317
|
# instance_market_options: { # required
|
6294
6318
|
# type: "on-demand", # required, accepts on-demand, spot
|
6295
6319
|
# },
|
6320
|
+
# vpc_configuration: {
|
6321
|
+
# resource_configuration_arns: ["VpcResourceConfigurationArn"],
|
6322
|
+
# },
|
6296
6323
|
# storage_profile_id: "StorageProfileId",
|
6297
6324
|
# },
|
6298
6325
|
# },
|
@@ -7094,7 +7121,7 @@ module Aws::Deadline
|
|
7094
7121
|
tracer: tracer
|
7095
7122
|
)
|
7096
7123
|
context[:gem_name] = 'aws-sdk-deadline'
|
7097
|
-
context[:gem_version] = '1.
|
7124
|
+
context[:gem_version] = '1.30.0'
|
7098
7125
|
Seahorse::Client::Request.new(handlers, context)
|
7099
7126
|
end
|
7100
7127
|
|
@@ -644,7 +644,10 @@ module Aws::Deadline
|
|
644
644
|
ValidationExceptionField = Shapes::StructureShape.new(name: 'ValidationExceptionField')
|
645
645
|
ValidationExceptionFieldList = Shapes::ListShape.new(name: 'ValidationExceptionFieldList')
|
646
646
|
ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
|
647
|
+
VpcConfiguration = Shapes::StructureShape.new(name: 'VpcConfiguration')
|
647
648
|
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
649
|
+
VpcResourceConfigurationArn = Shapes::StringShape.new(name: 'VpcResourceConfigurationArn')
|
650
|
+
VpcResourceConfigurationArns = Shapes::ListShape.new(name: 'VpcResourceConfigurationArns')
|
648
651
|
WindowsUser = Shapes::StructureShape.new(name: 'WindowsUser')
|
649
652
|
WindowsUserPasswordArnString = Shapes::StringShape.new(name: 'WindowsUserPasswordArnString')
|
650
653
|
WindowsUserUserString = Shapes::StringShape.new(name: 'WindowsUserUserString')
|
@@ -1808,6 +1811,8 @@ module Aws::Deadline
|
|
1808
1811
|
JobSearchSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
1809
1812
|
JobSearchSummary.add_member(:ended_at, Shapes::ShapeRef.new(shape: EndedAt, location_name: "endedAt"))
|
1810
1813
|
JobSearchSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: StartedAt, location_name: "startedAt"))
|
1814
|
+
JobSearchSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
|
1815
|
+
JobSearchSummary.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
|
1811
1816
|
JobSearchSummary.add_member(:job_parameters, Shapes::ShapeRef.new(shape: JobParameters, location_name: "jobParameters"))
|
1812
1817
|
JobSearchSummary.add_member(:max_worker_count, Shapes::ShapeRef.new(shape: MaxWorkerCount, location_name: "maxWorkerCount"))
|
1813
1818
|
JobSearchSummary.add_member(:source_job_id, Shapes::ShapeRef.new(shape: JobId, location_name: "sourceJobId"))
|
@@ -2410,6 +2415,7 @@ module Aws::Deadline
|
|
2410
2415
|
|
2411
2416
|
ServiceManagedEc2FleetConfiguration.add_member(:instance_capabilities, Shapes::ShapeRef.new(shape: ServiceManagedEc2InstanceCapabilities, required: true, location_name: "instanceCapabilities"))
|
2412
2417
|
ServiceManagedEc2FleetConfiguration.add_member(:instance_market_options, Shapes::ShapeRef.new(shape: ServiceManagedEc2InstanceMarketOptions, required: true, location_name: "instanceMarketOptions"))
|
2418
|
+
ServiceManagedEc2FleetConfiguration.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "vpcConfiguration"))
|
2413
2419
|
ServiceManagedEc2FleetConfiguration.add_member(:storage_profile_id, Shapes::ShapeRef.new(shape: StorageProfileId, location_name: "storageProfileId"))
|
2414
2420
|
ServiceManagedEc2FleetConfiguration.struct_class = Types::ServiceManagedEc2FleetConfiguration
|
2415
2421
|
|
@@ -2603,8 +2609,11 @@ module Aws::Deadline
|
|
2603
2609
|
StepSearchSummary.add_member(:task_run_status_counts, Shapes::ShapeRef.new(shape: TaskRunStatusCounts, location_name: "taskRunStatusCounts"))
|
2604
2610
|
StepSearchSummary.add_member(:task_failure_retry_count, Shapes::ShapeRef.new(shape: TaskFailureRetryCount, location_name: "taskFailureRetryCount"))
|
2605
2611
|
StepSearchSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
2612
|
+
StepSearchSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
2606
2613
|
StepSearchSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: StartedAt, location_name: "startedAt"))
|
2607
2614
|
StepSearchSummary.add_member(:ended_at, Shapes::ShapeRef.new(shape: EndedAt, location_name: "endedAt"))
|
2615
|
+
StepSearchSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
|
2616
|
+
StepSearchSummary.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
|
2608
2617
|
StepSearchSummary.add_member(:parameter_space, Shapes::ShapeRef.new(shape: ParameterSpace, location_name: "parameterSpace"))
|
2609
2618
|
StepSearchSummary.struct_class = Types::StepSearchSummary
|
2610
2619
|
|
@@ -2710,6 +2719,8 @@ module Aws::Deadline
|
|
2710
2719
|
TaskSearchSummary.add_member(:failure_retry_count, Shapes::ShapeRef.new(shape: TaskRetryCount, location_name: "failureRetryCount"))
|
2711
2720
|
TaskSearchSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: StartedAt, location_name: "startedAt"))
|
2712
2721
|
TaskSearchSummary.add_member(:ended_at, Shapes::ShapeRef.new(shape: EndedAt, location_name: "endedAt"))
|
2722
|
+
TaskSearchSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
|
2723
|
+
TaskSearchSummary.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
|
2713
2724
|
TaskSearchSummary.struct_class = Types::TaskSearchSummary
|
2714
2725
|
|
2715
2726
|
TaskSummaries.member = Shapes::ShapeRef.new(shape: TaskSummary)
|
@@ -2959,6 +2970,11 @@ module Aws::Deadline
|
|
2959
2970
|
|
2960
2971
|
ValidationExceptionFieldList.member = Shapes::ShapeRef.new(shape: ValidationExceptionField)
|
2961
2972
|
|
2973
|
+
VpcConfiguration.add_member(:resource_configuration_arns, Shapes::ShapeRef.new(shape: VpcResourceConfigurationArns, location_name: "resourceConfigurationArns"))
|
2974
|
+
VpcConfiguration.struct_class = Types::VpcConfiguration
|
2975
|
+
|
2976
|
+
VpcResourceConfigurationArns.member = Shapes::ShapeRef.new(shape: VpcResourceConfigurationArn)
|
2977
|
+
|
2962
2978
|
WindowsUser.add_member(:user, Shapes::ShapeRef.new(shape: WindowsUserUserString, required: true, location_name: "user"))
|
2963
2979
|
WindowsUser.add_member(:password_arn, Shapes::ShapeRef.new(shape: WindowsUserPasswordArnString, required: true, location_name: "passwordArn"))
|
2964
2980
|
WindowsUser.struct_class = Types::WindowsUser
|
@@ -5188,6 +5188,14 @@ module Aws::Deadline
|
|
5188
5188
|
# The date and time the resource started running.
|
5189
5189
|
# @return [Time]
|
5190
5190
|
#
|
5191
|
+
# @!attribute [rw] updated_at
|
5192
|
+
# The date and time the resource was updated.
|
5193
|
+
# @return [Time]
|
5194
|
+
#
|
5195
|
+
# @!attribute [rw] updated_by
|
5196
|
+
# The user or system that updated this resource.
|
5197
|
+
# @return [String]
|
5198
|
+
#
|
5191
5199
|
# @!attribute [rw] job_parameters
|
5192
5200
|
# The job parameters.
|
5193
5201
|
# @return [Hash<String,Types::JobParameter>]
|
@@ -5227,6 +5235,8 @@ module Aws::Deadline
|
|
5227
5235
|
:created_at,
|
5228
5236
|
:ended_at,
|
5229
5237
|
:started_at,
|
5238
|
+
:updated_at,
|
5239
|
+
:updated_by,
|
5230
5240
|
:job_parameters,
|
5231
5241
|
:max_worker_count,
|
5232
5242
|
:source_job_id)
|
@@ -8039,6 +8049,11 @@ module Aws::Deadline
|
|
8039
8049
|
# The Amazon EC2 market type.
|
8040
8050
|
# @return [Types::ServiceManagedEc2InstanceMarketOptions]
|
8041
8051
|
#
|
8052
|
+
# @!attribute [rw] vpc_configuration
|
8053
|
+
# The VPC configuration details for a service managed Amazon EC2
|
8054
|
+
# fleet.
|
8055
|
+
# @return [Types::VpcConfiguration]
|
8056
|
+
#
|
8042
8057
|
# @!attribute [rw] storage_profile_id
|
8043
8058
|
# The storage profile ID.
|
8044
8059
|
# @return [String]
|
@@ -8048,6 +8063,7 @@ module Aws::Deadline
|
|
8048
8063
|
class ServiceManagedEc2FleetConfiguration < Struct.new(
|
8049
8064
|
:instance_capabilities,
|
8050
8065
|
:instance_market_options,
|
8066
|
+
:vpc_configuration,
|
8051
8067
|
:storage_profile_id)
|
8052
8068
|
SENSITIVE = []
|
8053
8069
|
include Aws::Structure
|
@@ -8836,6 +8852,10 @@ module Aws::Deadline
|
|
8836
8852
|
# The date and time the resource was created.
|
8837
8853
|
# @return [Time]
|
8838
8854
|
#
|
8855
|
+
# @!attribute [rw] created_by
|
8856
|
+
# The user or system that created this resource.
|
8857
|
+
# @return [String]
|
8858
|
+
#
|
8839
8859
|
# @!attribute [rw] started_at
|
8840
8860
|
# The date and time the resource started running.
|
8841
8861
|
# @return [Time]
|
@@ -8844,6 +8864,14 @@ module Aws::Deadline
|
|
8844
8864
|
# The date and time the resource ended running.
|
8845
8865
|
# @return [Time]
|
8846
8866
|
#
|
8867
|
+
# @!attribute [rw] updated_at
|
8868
|
+
# The date and time the resource was updated.
|
8869
|
+
# @return [Time]
|
8870
|
+
#
|
8871
|
+
# @!attribute [rw] updated_by
|
8872
|
+
# The user or system that updated this resource.
|
8873
|
+
# @return [String]
|
8874
|
+
#
|
8847
8875
|
# @!attribute [rw] parameter_space
|
8848
8876
|
# The parameters and combination expressions for the search.
|
8849
8877
|
# @return [Types::ParameterSpace]
|
@@ -8862,8 +8890,11 @@ module Aws::Deadline
|
|
8862
8890
|
:task_run_status_counts,
|
8863
8891
|
:task_failure_retry_count,
|
8864
8892
|
:created_at,
|
8893
|
+
:created_by,
|
8865
8894
|
:started_at,
|
8866
8895
|
:ended_at,
|
8896
|
+
:updated_at,
|
8897
|
+
:updated_by,
|
8867
8898
|
:parameter_space)
|
8868
8899
|
SENSITIVE = []
|
8869
8900
|
include Aws::Structure
|
@@ -9253,6 +9284,14 @@ module Aws::Deadline
|
|
9253
9284
|
# The date and time the resource ended running.
|
9254
9285
|
# @return [Time]
|
9255
9286
|
#
|
9287
|
+
# @!attribute [rw] updated_at
|
9288
|
+
# The date and time the resource was updated.
|
9289
|
+
# @return [Time]
|
9290
|
+
#
|
9291
|
+
# @!attribute [rw] updated_by
|
9292
|
+
# The user or system that updated this resource.
|
9293
|
+
# @return [String]
|
9294
|
+
#
|
9256
9295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskSearchSummary AWS API Documentation
|
9257
9296
|
#
|
9258
9297
|
class TaskSearchSummary < Struct.new(
|
@@ -9265,7 +9304,9 @@ module Aws::Deadline
|
|
9265
9304
|
:parameters,
|
9266
9305
|
:failure_retry_count,
|
9267
9306
|
:started_at,
|
9268
|
-
:ended_at
|
9307
|
+
:ended_at,
|
9308
|
+
:updated_at,
|
9309
|
+
:updated_by)
|
9269
9310
|
SENSITIVE = [:parameters]
|
9270
9311
|
include Aws::Structure
|
9271
9312
|
end
|
@@ -10425,6 +10466,21 @@ module Aws::Deadline
|
|
10425
10466
|
include Aws::Structure
|
10426
10467
|
end
|
10427
10468
|
|
10469
|
+
# The configuration options for a service managed fleet's VPC.
|
10470
|
+
#
|
10471
|
+
# @!attribute [rw] resource_configuration_arns
|
10472
|
+
# The ARNs of the VPC Lattice resource configurations attached to the
|
10473
|
+
# fleet.
|
10474
|
+
# @return [Array<String>]
|
10475
|
+
#
|
10476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/VpcConfiguration AWS API Documentation
|
10477
|
+
#
|
10478
|
+
class VpcConfiguration < Struct.new(
|
10479
|
+
:resource_configuration_arns)
|
10480
|
+
SENSITIVE = []
|
10481
|
+
include Aws::Structure
|
10482
|
+
end
|
10483
|
+
|
10428
10484
|
# The Windows user details.
|
10429
10485
|
#
|
10430
10486
|
# @!attribute [rw] user
|
data/lib/aws-sdk-deadline.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -383,6 +384,9 @@ module Aws
|
|
383
384
|
instance_market_options: {
|
384
385
|
type: ("on-demand" | "spot")
|
385
386
|
},
|
387
|
+
vpc_configuration: {
|
388
|
+
resource_configuration_arns: Array[::String]?
|
389
|
+
}?,
|
386
390
|
storage_profile_id: ::String?
|
387
391
|
}?
|
388
392
|
},
|
@@ -2016,6 +2020,9 @@ module Aws
|
|
2016
2020
|
instance_market_options: {
|
2017
2021
|
type: ("on-demand" | "spot")
|
2018
2022
|
},
|
2023
|
+
vpc_configuration: {
|
2024
|
+
resource_configuration_arns: Array[::String]?
|
2025
|
+
}?,
|
2019
2026
|
storage_profile_id: ::String?
|
2020
2027
|
}?
|
2021
2028
|
},
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -1458,6 +1458,8 @@ module Aws::Deadline
|
|
1458
1458
|
attr_accessor created_at: ::Time
|
1459
1459
|
attr_accessor ended_at: ::Time
|
1460
1460
|
attr_accessor started_at: ::Time
|
1461
|
+
attr_accessor updated_at: ::Time
|
1462
|
+
attr_accessor updated_by: ::String
|
1461
1463
|
attr_accessor job_parameters: ::Hash[::String, Types::JobParameter]
|
1462
1464
|
attr_accessor max_worker_count: ::Integer
|
1463
1465
|
attr_accessor source_job_id: ::String
|
@@ -2207,6 +2209,7 @@ module Aws::Deadline
|
|
2207
2209
|
class ServiceManagedEc2FleetConfiguration
|
2208
2210
|
attr_accessor instance_capabilities: Types::ServiceManagedEc2InstanceCapabilities
|
2209
2211
|
attr_accessor instance_market_options: Types::ServiceManagedEc2InstanceMarketOptions
|
2212
|
+
attr_accessor vpc_configuration: Types::VpcConfiguration
|
2210
2213
|
attr_accessor storage_profile_id: ::String
|
2211
2214
|
SENSITIVE: []
|
2212
2215
|
end
|
@@ -2436,8 +2439,11 @@ module Aws::Deadline
|
|
2436
2439
|
attr_accessor task_run_status_counts: ::Hash[("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE"), ::Integer]
|
2437
2440
|
attr_accessor task_failure_retry_count: ::Integer
|
2438
2441
|
attr_accessor created_at: ::Time
|
2442
|
+
attr_accessor created_by: ::String
|
2439
2443
|
attr_accessor started_at: ::Time
|
2440
2444
|
attr_accessor ended_at: ::Time
|
2445
|
+
attr_accessor updated_at: ::Time
|
2446
|
+
attr_accessor updated_by: ::String
|
2441
2447
|
attr_accessor parameter_space: Types::ParameterSpace
|
2442
2448
|
SENSITIVE: []
|
2443
2449
|
end
|
@@ -2554,6 +2560,8 @@ module Aws::Deadline
|
|
2554
2560
|
attr_accessor failure_retry_count: ::Integer
|
2555
2561
|
attr_accessor started_at: ::Time
|
2556
2562
|
attr_accessor ended_at: ::Time
|
2563
|
+
attr_accessor updated_at: ::Time
|
2564
|
+
attr_accessor updated_by: ::String
|
2557
2565
|
SENSITIVE: [:parameters]
|
2558
2566
|
end
|
2559
2567
|
|
@@ -2865,6 +2873,11 @@ module Aws::Deadline
|
|
2865
2873
|
SENSITIVE: []
|
2866
2874
|
end
|
2867
2875
|
|
2876
|
+
class VpcConfiguration
|
2877
|
+
attr_accessor resource_configuration_arns: ::Array[::String]
|
2878
|
+
SENSITIVE: []
|
2879
|
+
end
|
2880
|
+
|
2868
2881
|
class WindowsUser
|
2869
2882
|
attr_accessor user: ::String
|
2870
2883
|
attr_accessor password_arn: ::String
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-deadline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|