aws-sdk-devicefarm 1.50.0 → 1.52.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-devicefarm/client.rb +80 -2
- data/lib/aws-sdk-devicefarm/client_api.rb +19 -0
- data/lib/aws-sdk-devicefarm/types.rb +79 -10
- data/lib/aws-sdk-devicefarm.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6963feeb329396da93b0f1fa34f8de51a88a6838c393f0b4b11eb474d85803f4
|
4
|
+
data.tar.gz: e3e2b289dceb5246f0d0b5eac063ef2807bf16beb09e20dcf5654e345f880da2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e575824081fdd66775bc044498f962bd4d65e78a3701ea972c98a14347619138935f9efc3afdfb56ba3ba765954c3be41a4b2dae5d4477e8a65a16e2e1ec09f1
|
7
|
+
data.tar.gz: 541d4331a66fbb2c44f0fe9189a90aad82bd9156a8b4780df089dfaf13cbc1260ca309e4f2f58ef9ad3455b1763baa67d13f8f6c981e1f0cb202321ebe7f665e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.52.0 (2022-09-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds the support for VPC-ENI based connectivity for private devices on AWS Device Farm.
|
8
|
+
|
9
|
+
1.51.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.50.0 (2022-02-03)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.52.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
32
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
@@ -75,6 +76,7 @@ module Aws::DeviceFarm
|
|
75
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
76
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
77
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
78
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
79
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
80
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
@@ -602,6 +604,9 @@ module Aws::DeviceFarm
|
|
602
604
|
# runs in this project use the specified execution timeout value unless
|
603
605
|
# overridden when scheduling a run.
|
604
606
|
#
|
607
|
+
# @option params [Types::VpcConfig] :vpc_config
|
608
|
+
# The VPC security groups and subnets that are attached to a project.
|
609
|
+
#
|
605
610
|
# @return [Types::CreateProjectResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
606
611
|
#
|
607
612
|
# * {Types::CreateProjectResult#project #project} => Types::Project
|
@@ -629,6 +634,11 @@ module Aws::DeviceFarm
|
|
629
634
|
# resp = client.create_project({
|
630
635
|
# name: "Name", # required
|
631
636
|
# default_job_timeout_minutes: 1,
|
637
|
+
# vpc_config: {
|
638
|
+
# security_group_ids: ["SecurityGroupId"], # required
|
639
|
+
# subnet_ids: ["SubnetId"], # required
|
640
|
+
# vpc_id: "NonEmptyString", # required
|
641
|
+
# },
|
632
642
|
# })
|
633
643
|
#
|
634
644
|
# @example Response structure
|
@@ -637,6 +647,11 @@ module Aws::DeviceFarm
|
|
637
647
|
# resp.project.name #=> String
|
638
648
|
# resp.project.default_job_timeout_minutes #=> Integer
|
639
649
|
# resp.project.created #=> Time
|
650
|
+
# resp.project.vpc_config.security_group_ids #=> Array
|
651
|
+
# resp.project.vpc_config.security_group_ids[0] #=> String
|
652
|
+
# resp.project.vpc_config.subnet_ids #=> Array
|
653
|
+
# resp.project.vpc_config.subnet_ids[0] #=> String
|
654
|
+
# resp.project.vpc_config.vpc_id #=> String
|
640
655
|
#
|
641
656
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateProject AWS API Documentation
|
642
657
|
#
|
@@ -733,7 +748,7 @@ module Aws::DeviceFarm
|
|
733
748
|
#
|
734
749
|
#
|
735
750
|
#
|
736
|
-
# [1]:
|
751
|
+
# [1]: http://aws.amazon.com/device-farm/faqs/
|
737
752
|
#
|
738
753
|
# @return [Types::CreateRemoteAccessSessionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
739
754
|
#
|
@@ -840,6 +855,11 @@ module Aws::DeviceFarm
|
|
840
855
|
# resp.remote_access_session.device_udid #=> String
|
841
856
|
# resp.remote_access_session.interaction_mode #=> String, one of "INTERACTIVE", "NO_VIDEO", "VIDEO_ONLY"
|
842
857
|
# resp.remote_access_session.skip_app_resign #=> Boolean
|
858
|
+
# resp.remote_access_session.vpc_config.security_group_ids #=> Array
|
859
|
+
# resp.remote_access_session.vpc_config.security_group_ids[0] #=> String
|
860
|
+
# resp.remote_access_session.vpc_config.subnet_ids #=> Array
|
861
|
+
# resp.remote_access_session.vpc_config.subnet_ids[0] #=> String
|
862
|
+
# resp.remote_access_session.vpc_config.vpc_id #=> String
|
843
863
|
#
|
844
864
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateRemoteAccessSession AWS API Documentation
|
845
865
|
#
|
@@ -2183,6 +2203,11 @@ module Aws::DeviceFarm
|
|
2183
2203
|
# resp.project.name #=> String
|
2184
2204
|
# resp.project.default_job_timeout_minutes #=> Integer
|
2185
2205
|
# resp.project.created #=> Time
|
2206
|
+
# resp.project.vpc_config.security_group_ids #=> Array
|
2207
|
+
# resp.project.vpc_config.security_group_ids[0] #=> String
|
2208
|
+
# resp.project.vpc_config.subnet_ids #=> Array
|
2209
|
+
# resp.project.vpc_config.subnet_ids[0] #=> String
|
2210
|
+
# resp.project.vpc_config.vpc_id #=> String
|
2186
2211
|
#
|
2187
2212
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetProject AWS API Documentation
|
2188
2213
|
#
|
@@ -2285,6 +2310,11 @@ module Aws::DeviceFarm
|
|
2285
2310
|
# resp.remote_access_session.device_udid #=> String
|
2286
2311
|
# resp.remote_access_session.interaction_mode #=> String, one of "INTERACTIVE", "NO_VIDEO", "VIDEO_ONLY"
|
2287
2312
|
# resp.remote_access_session.skip_app_resign #=> Boolean
|
2313
|
+
# resp.remote_access_session.vpc_config.security_group_ids #=> Array
|
2314
|
+
# resp.remote_access_session.vpc_config.security_group_ids[0] #=> String
|
2315
|
+
# resp.remote_access_session.vpc_config.subnet_ids #=> Array
|
2316
|
+
# resp.remote_access_session.vpc_config.subnet_ids[0] #=> String
|
2317
|
+
# resp.remote_access_session.vpc_config.vpc_id #=> String
|
2288
2318
|
#
|
2289
2319
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetRemoteAccessSession AWS API Documentation
|
2290
2320
|
#
|
@@ -2416,6 +2446,11 @@ module Aws::DeviceFarm
|
|
2416
2446
|
# resp.run.device_selection_result.filters[0].values[0] #=> String
|
2417
2447
|
# resp.run.device_selection_result.matched_devices_count #=> Integer
|
2418
2448
|
# resp.run.device_selection_result.max_devices #=> Integer
|
2449
|
+
# resp.run.vpc_config.security_group_ids #=> Array
|
2450
|
+
# resp.run.vpc_config.security_group_ids[0] #=> String
|
2451
|
+
# resp.run.vpc_config.subnet_ids #=> Array
|
2452
|
+
# resp.run.vpc_config.subnet_ids[0] #=> String
|
2453
|
+
# resp.run.vpc_config.vpc_id #=> String
|
2419
2454
|
#
|
2420
2455
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetRun AWS API Documentation
|
2421
2456
|
#
|
@@ -3733,6 +3768,11 @@ module Aws::DeviceFarm
|
|
3733
3768
|
# resp.projects[0].name #=> String
|
3734
3769
|
# resp.projects[0].default_job_timeout_minutes #=> Integer
|
3735
3770
|
# resp.projects[0].created #=> Time
|
3771
|
+
# resp.projects[0].vpc_config.security_group_ids #=> Array
|
3772
|
+
# resp.projects[0].vpc_config.security_group_ids[0] #=> String
|
3773
|
+
# resp.projects[0].vpc_config.subnet_ids #=> Array
|
3774
|
+
# resp.projects[0].vpc_config.subnet_ids[0] #=> String
|
3775
|
+
# resp.projects[0].vpc_config.vpc_id #=> String
|
3736
3776
|
# resp.next_token #=> String
|
3737
3777
|
#
|
3738
3778
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListProjects AWS API Documentation
|
@@ -3845,6 +3885,11 @@ module Aws::DeviceFarm
|
|
3845
3885
|
# resp.remote_access_sessions[0].device_udid #=> String
|
3846
3886
|
# resp.remote_access_sessions[0].interaction_mode #=> String, one of "INTERACTIVE", "NO_VIDEO", "VIDEO_ONLY"
|
3847
3887
|
# resp.remote_access_sessions[0].skip_app_resign #=> Boolean
|
3888
|
+
# resp.remote_access_sessions[0].vpc_config.security_group_ids #=> Array
|
3889
|
+
# resp.remote_access_sessions[0].vpc_config.security_group_ids[0] #=> String
|
3890
|
+
# resp.remote_access_sessions[0].vpc_config.subnet_ids #=> Array
|
3891
|
+
# resp.remote_access_sessions[0].vpc_config.subnet_ids[0] #=> String
|
3892
|
+
# resp.remote_access_sessions[0].vpc_config.vpc_id #=> String
|
3848
3893
|
# resp.next_token #=> String
|
3849
3894
|
#
|
3850
3895
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListRemoteAccessSessions AWS API Documentation
|
@@ -3991,6 +4036,11 @@ module Aws::DeviceFarm
|
|
3991
4036
|
# resp.runs[0].device_selection_result.filters[0].values[0] #=> String
|
3992
4037
|
# resp.runs[0].device_selection_result.matched_devices_count #=> Integer
|
3993
4038
|
# resp.runs[0].device_selection_result.max_devices #=> Integer
|
4039
|
+
# resp.runs[0].vpc_config.security_group_ids #=> Array
|
4040
|
+
# resp.runs[0].vpc_config.security_group_ids[0] #=> String
|
4041
|
+
# resp.runs[0].vpc_config.subnet_ids #=> Array
|
4042
|
+
# resp.runs[0].vpc_config.subnet_ids[0] #=> String
|
4043
|
+
# resp.runs[0].vpc_config.vpc_id #=> String
|
3994
4044
|
# resp.next_token #=> String
|
3995
4045
|
#
|
3996
4046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListRuns AWS API Documentation
|
@@ -5086,6 +5136,11 @@ module Aws::DeviceFarm
|
|
5086
5136
|
# resp.run.device_selection_result.filters[0].values[0] #=> String
|
5087
5137
|
# resp.run.device_selection_result.matched_devices_count #=> Integer
|
5088
5138
|
# resp.run.device_selection_result.max_devices #=> Integer
|
5139
|
+
# resp.run.vpc_config.security_group_ids #=> Array
|
5140
|
+
# resp.run.vpc_config.security_group_ids[0] #=> String
|
5141
|
+
# resp.run.vpc_config.subnet_ids #=> Array
|
5142
|
+
# resp.run.vpc_config.subnet_ids[0] #=> String
|
5143
|
+
# resp.run.vpc_config.vpc_id #=> String
|
5089
5144
|
#
|
5090
5145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ScheduleRun AWS API Documentation
|
5091
5146
|
#
|
@@ -5264,6 +5319,11 @@ module Aws::DeviceFarm
|
|
5264
5319
|
# resp.remote_access_session.device_udid #=> String
|
5265
5320
|
# resp.remote_access_session.interaction_mode #=> String, one of "INTERACTIVE", "NO_VIDEO", "VIDEO_ONLY"
|
5266
5321
|
# resp.remote_access_session.skip_app_resign #=> Boolean
|
5322
|
+
# resp.remote_access_session.vpc_config.security_group_ids #=> Array
|
5323
|
+
# resp.remote_access_session.vpc_config.security_group_ids[0] #=> String
|
5324
|
+
# resp.remote_access_session.vpc_config.subnet_ids #=> Array
|
5325
|
+
# resp.remote_access_session.vpc_config.subnet_ids[0] #=> String
|
5326
|
+
# resp.remote_access_session.vpc_config.vpc_id #=> String
|
5267
5327
|
#
|
5268
5328
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopRemoteAccessSession AWS API Documentation
|
5269
5329
|
#
|
@@ -5377,6 +5437,11 @@ module Aws::DeviceFarm
|
|
5377
5437
|
# resp.run.device_selection_result.filters[0].values[0] #=> String
|
5378
5438
|
# resp.run.device_selection_result.matched_devices_count #=> Integer
|
5379
5439
|
# resp.run.device_selection_result.max_devices #=> Integer
|
5440
|
+
# resp.run.vpc_config.security_group_ids #=> Array
|
5441
|
+
# resp.run.vpc_config.security_group_ids[0] #=> String
|
5442
|
+
# resp.run.vpc_config.subnet_ids #=> Array
|
5443
|
+
# resp.run.vpc_config.subnet_ids[0] #=> String
|
5444
|
+
# resp.run.vpc_config.vpc_id #=> String
|
5380
5445
|
#
|
5381
5446
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopRun AWS API Documentation
|
5382
5447
|
#
|
@@ -5786,6 +5851,9 @@ module Aws::DeviceFarm
|
|
5786
5851
|
# The number of minutes a test run in the project executes before it
|
5787
5852
|
# times out.
|
5788
5853
|
#
|
5854
|
+
# @option params [Types::VpcConfig] :vpc_config
|
5855
|
+
# The VPC security groups and subnets that are attached to a project.
|
5856
|
+
#
|
5789
5857
|
# @return [Types::UpdateProjectResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5790
5858
|
#
|
5791
5859
|
# * {Types::UpdateProjectResult#project #project} => Types::Project
|
@@ -5815,6 +5883,11 @@ module Aws::DeviceFarm
|
|
5815
5883
|
# arn: "AmazonResourceName", # required
|
5816
5884
|
# name: "Name",
|
5817
5885
|
# default_job_timeout_minutes: 1,
|
5886
|
+
# vpc_config: {
|
5887
|
+
# security_group_ids: ["SecurityGroupId"], # required
|
5888
|
+
# subnet_ids: ["SubnetId"], # required
|
5889
|
+
# vpc_id: "NonEmptyString", # required
|
5890
|
+
# },
|
5818
5891
|
# })
|
5819
5892
|
#
|
5820
5893
|
# @example Response structure
|
@@ -5823,6 +5896,11 @@ module Aws::DeviceFarm
|
|
5823
5896
|
# resp.project.name #=> String
|
5824
5897
|
# resp.project.default_job_timeout_minutes #=> Integer
|
5825
5898
|
# resp.project.created #=> Time
|
5899
|
+
# resp.project.vpc_config.security_group_ids #=> Array
|
5900
|
+
# resp.project.vpc_config.security_group_ids[0] #=> String
|
5901
|
+
# resp.project.vpc_config.subnet_ids #=> Array
|
5902
|
+
# resp.project.vpc_config.subnet_ids[0] #=> String
|
5903
|
+
# resp.project.vpc_config.vpc_id #=> String
|
5826
5904
|
#
|
5827
5905
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateProject AWS API Documentation
|
5828
5906
|
#
|
@@ -6004,7 +6082,7 @@ module Aws::DeviceFarm
|
|
6004
6082
|
params: params,
|
6005
6083
|
config: config)
|
6006
6084
|
context[:gem_name] = 'aws-sdk-devicefarm'
|
6007
|
-
context[:gem_version] = '1.
|
6085
|
+
context[:gem_version] = '1.52.0'
|
6008
6086
|
Seahorse::Client::Request.new(handlers, context)
|
6009
6087
|
end
|
6010
6088
|
|
@@ -265,6 +265,7 @@ module Aws::DeviceFarm
|
|
265
265
|
ScheduleRunRequest = Shapes::StructureShape.new(name: 'ScheduleRunRequest')
|
266
266
|
ScheduleRunResult = Shapes::StructureShape.new(name: 'ScheduleRunResult')
|
267
267
|
ScheduleRunTest = Shapes::StructureShape.new(name: 'ScheduleRunTest')
|
268
|
+
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
268
269
|
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
269
270
|
SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
|
270
271
|
SensitiveURL = Shapes::StringShape.new(name: 'SensitiveURL')
|
@@ -279,6 +280,7 @@ module Aws::DeviceFarm
|
|
279
280
|
StopRunRequest = Shapes::StructureShape.new(name: 'StopRunRequest')
|
280
281
|
StopRunResult = Shapes::StructureShape.new(name: 'StopRunResult')
|
281
282
|
String = Shapes::StringShape.new(name: 'String')
|
283
|
+
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
282
284
|
SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
|
283
285
|
Suite = Shapes::StructureShape.new(name: 'Suite')
|
284
286
|
Suites = Shapes::ListShape.new(name: 'Suites')
|
@@ -344,6 +346,9 @@ module Aws::DeviceFarm
|
|
344
346
|
VPCEConfigurations = Shapes::ListShape.new(name: 'VPCEConfigurations')
|
345
347
|
VPCEServiceName = Shapes::StringShape.new(name: 'VPCEServiceName')
|
346
348
|
VideoCapture = Shapes::BooleanShape.new(name: 'VideoCapture')
|
349
|
+
VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
|
350
|
+
VpcSecurityGroupIds = Shapes::ListShape.new(name: 'VpcSecurityGroupIds')
|
351
|
+
VpcSubnetIds = Shapes::ListShape.new(name: 'VpcSubnetIds')
|
347
352
|
|
348
353
|
AccountSettings.add_member(:aws_account_number, Shapes::ShapeRef.new(shape: AWSAccountNumber, location_name: "awsAccountNumber"))
|
349
354
|
AccountSettings.add_member(:unmetered_devices, Shapes::ShapeRef.new(shape: PurchasedDevicesMap, location_name: "unmeteredDevices"))
|
@@ -427,6 +432,7 @@ module Aws::DeviceFarm
|
|
427
432
|
|
428
433
|
CreateProjectRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
429
434
|
CreateProjectRequest.add_member(:default_job_timeout_minutes, Shapes::ShapeRef.new(shape: JobTimeoutMinutes, location_name: "defaultJobTimeoutMinutes"))
|
435
|
+
CreateProjectRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
|
430
436
|
CreateProjectRequest.struct_class = Types::CreateProjectRequest
|
431
437
|
|
432
438
|
CreateProjectResult.add_member(:project, Shapes::ShapeRef.new(shape: Project, location_name: "project"))
|
@@ -1083,6 +1089,7 @@ module Aws::DeviceFarm
|
|
1083
1089
|
Project.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
|
1084
1090
|
Project.add_member(:default_job_timeout_minutes, Shapes::ShapeRef.new(shape: JobTimeoutMinutes, location_name: "defaultJobTimeoutMinutes"))
|
1085
1091
|
Project.add_member(:created, Shapes::ShapeRef.new(shape: DateTime, location_name: "created"))
|
1092
|
+
Project.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
|
1086
1093
|
Project.struct_class = Types::Project
|
1087
1094
|
|
1088
1095
|
Projects.member = Shapes::ShapeRef.new(shape: Project)
|
@@ -1131,6 +1138,7 @@ module Aws::DeviceFarm
|
|
1131
1138
|
RemoteAccessSession.add_member(:device_udid, Shapes::ShapeRef.new(shape: String, location_name: "deviceUdid"))
|
1132
1139
|
RemoteAccessSession.add_member(:interaction_mode, Shapes::ShapeRef.new(shape: InteractionMode, location_name: "interactionMode"))
|
1133
1140
|
RemoteAccessSession.add_member(:skip_app_resign, Shapes::ShapeRef.new(shape: SkipAppResign, location_name: "skipAppResign"))
|
1141
|
+
RemoteAccessSession.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
|
1134
1142
|
RemoteAccessSession.struct_class = Types::RemoteAccessSession
|
1135
1143
|
|
1136
1144
|
RemoteAccessSessions.member = Shapes::ShapeRef.new(shape: RemoteAccessSession)
|
@@ -1184,6 +1192,7 @@ module Aws::DeviceFarm
|
|
1184
1192
|
Run.add_member(:skip_app_resign, Shapes::ShapeRef.new(shape: SkipAppResign, location_name: "skipAppResign"))
|
1185
1193
|
Run.add_member(:test_spec_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "testSpecArn"))
|
1186
1194
|
Run.add_member(:device_selection_result, Shapes::ShapeRef.new(shape: DeviceSelectionResult, location_name: "deviceSelectionResult"))
|
1195
|
+
Run.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
|
1187
1196
|
Run.struct_class = Types::Run
|
1188
1197
|
|
1189
1198
|
Runs.member = Shapes::ShapeRef.new(shape: Run)
|
@@ -1419,6 +1428,7 @@ module Aws::DeviceFarm
|
|
1419
1428
|
UpdateProjectRequest.add_member(:arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "arn"))
|
1420
1429
|
UpdateProjectRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
|
1421
1430
|
UpdateProjectRequest.add_member(:default_job_timeout_minutes, Shapes::ShapeRef.new(shape: JobTimeoutMinutes, location_name: "defaultJobTimeoutMinutes"))
|
1431
|
+
UpdateProjectRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
|
1422
1432
|
UpdateProjectRequest.struct_class = Types::UpdateProjectRequest
|
1423
1433
|
|
1424
1434
|
UpdateProjectResult.add_member(:project, Shapes::ShapeRef.new(shape: Project, location_name: "project"))
|
@@ -1475,6 +1485,15 @@ module Aws::DeviceFarm
|
|
1475
1485
|
|
1476
1486
|
VPCEConfigurations.member = Shapes::ShapeRef.new(shape: VPCEConfiguration)
|
1477
1487
|
|
1488
|
+
VpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: VpcSecurityGroupIds, required: true, location_name: "securityGroupIds"))
|
1489
|
+
VpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: VpcSubnetIds, required: true, location_name: "subnetIds"))
|
1490
|
+
VpcConfig.add_member(:vpc_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "vpcId"))
|
1491
|
+
VpcConfig.struct_class = Types::VpcConfig
|
1492
|
+
|
1493
|
+
VpcSecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
|
1494
|
+
|
1495
|
+
VpcSubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
|
1496
|
+
|
1478
1497
|
|
1479
1498
|
# @api private
|
1480
1499
|
API = Seahorse::Model::Api.new.tap do |api|
|
@@ -58,7 +58,7 @@ module Aws::DeviceFarm
|
|
58
58
|
#
|
59
59
|
#
|
60
60
|
#
|
61
|
-
# [1]:
|
61
|
+
# [1]: http://aws.amazon.com/device-farm/faqs/
|
62
62
|
# @return [Boolean]
|
63
63
|
#
|
64
64
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/AccountSettings AWS API Documentation
|
@@ -516,6 +516,11 @@ module Aws::DeviceFarm
|
|
516
516
|
# {
|
517
517
|
# name: "Name", # required
|
518
518
|
# default_job_timeout_minutes: 1,
|
519
|
+
# vpc_config: {
|
520
|
+
# security_group_ids: ["SecurityGroupId"], # required
|
521
|
+
# subnet_ids: ["SubnetId"], # required
|
522
|
+
# vpc_id: "NonEmptyString", # required
|
523
|
+
# },
|
519
524
|
# }
|
520
525
|
#
|
521
526
|
# @!attribute [rw] name
|
@@ -528,11 +533,16 @@ module Aws::DeviceFarm
|
|
528
533
|
# unless overridden when scheduling a run.
|
529
534
|
# @return [Integer]
|
530
535
|
#
|
536
|
+
# @!attribute [rw] vpc_config
|
537
|
+
# The VPC security groups and subnets that are attached to a project.
|
538
|
+
# @return [Types::VpcConfig]
|
539
|
+
#
|
531
540
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateProjectRequest AWS API Documentation
|
532
541
|
#
|
533
542
|
class CreateProjectRequest < Struct.new(
|
534
543
|
:name,
|
535
|
-
:default_job_timeout_minutes
|
544
|
+
:default_job_timeout_minutes,
|
545
|
+
:vpc_config)
|
536
546
|
SENSITIVE = []
|
537
547
|
include Aws::Structure
|
538
548
|
end
|
@@ -698,7 +708,7 @@ module Aws::DeviceFarm
|
|
698
708
|
#
|
699
709
|
#
|
700
710
|
#
|
701
|
-
# [1]:
|
711
|
+
# [1]: http://aws.amazon.com/device-farm/faqs/
|
702
712
|
# @return [Boolean]
|
703
713
|
#
|
704
714
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateRemoteAccessSessionRequest AWS API Documentation
|
@@ -1906,7 +1916,7 @@ module Aws::DeviceFarm
|
|
1906
1916
|
#
|
1907
1917
|
#
|
1908
1918
|
#
|
1909
|
-
# [1]:
|
1919
|
+
# [1]: http://aws.amazon.com/device-farm/faqs/
|
1910
1920
|
# @return [Boolean]
|
1911
1921
|
#
|
1912
1922
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ExecutionConfiguration AWS API Documentation
|
@@ -4767,13 +4777,18 @@ module Aws::DeviceFarm
|
|
4767
4777
|
# When the project was created.
|
4768
4778
|
# @return [Time]
|
4769
4779
|
#
|
4780
|
+
# @!attribute [rw] vpc_config
|
4781
|
+
# The VPC security groups and subnets that are attached to a project.
|
4782
|
+
# @return [Types::VpcConfig]
|
4783
|
+
#
|
4770
4784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/Project AWS API Documentation
|
4771
4785
|
#
|
4772
4786
|
class Project < Struct.new(
|
4773
4787
|
:arn,
|
4774
4788
|
:name,
|
4775
4789
|
:default_job_timeout_minutes,
|
4776
|
-
:created
|
4790
|
+
:created,
|
4791
|
+
:vpc_config)
|
4777
4792
|
SENSITIVE = []
|
4778
4793
|
include Aws::Structure
|
4779
4794
|
end
|
@@ -5065,9 +5080,13 @@ module Aws::DeviceFarm
|
|
5065
5080
|
#
|
5066
5081
|
#
|
5067
5082
|
#
|
5068
|
-
# [1]:
|
5083
|
+
# [1]: http://aws.amazon.com/device-farm/faqs/
|
5069
5084
|
# @return [Boolean]
|
5070
5085
|
#
|
5086
|
+
# @!attribute [rw] vpc_config
|
5087
|
+
# The VPC security groups and subnets that are attached to a project.
|
5088
|
+
# @return [Types::VpcConfig]
|
5089
|
+
#
|
5071
5090
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/RemoteAccessSession AWS API Documentation
|
5072
5091
|
#
|
5073
5092
|
class RemoteAccessSession < Struct.new(
|
@@ -5091,7 +5110,8 @@ module Aws::DeviceFarm
|
|
5091
5110
|
:endpoint,
|
5092
5111
|
:device_udid,
|
5093
5112
|
:interaction_mode,
|
5094
|
-
:skip_app_resign
|
5113
|
+
:skip_app_resign,
|
5114
|
+
:vpc_config)
|
5095
5115
|
SENSITIVE = []
|
5096
5116
|
include Aws::Structure
|
5097
5117
|
end
|
@@ -5514,7 +5534,7 @@ module Aws::DeviceFarm
|
|
5514
5534
|
#
|
5515
5535
|
#
|
5516
5536
|
#
|
5517
|
-
# [1]:
|
5537
|
+
# [1]: http://aws.amazon.com/device-farm/faqs/
|
5518
5538
|
# @return [Boolean]
|
5519
5539
|
#
|
5520
5540
|
# @!attribute [rw] test_spec_arn
|
@@ -5526,6 +5546,10 @@ module Aws::DeviceFarm
|
|
5526
5546
|
# run.
|
5527
5547
|
# @return [Types::DeviceSelectionResult]
|
5528
5548
|
#
|
5549
|
+
# @!attribute [rw] vpc_config
|
5550
|
+
# The VPC security groups and subnets that are attached to a project.
|
5551
|
+
# @return [Types::VpcConfig]
|
5552
|
+
#
|
5529
5553
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/Run AWS API Documentation
|
5530
5554
|
#
|
5531
5555
|
class Run < Struct.new(
|
@@ -5559,7 +5583,8 @@ module Aws::DeviceFarm
|
|
5559
5583
|
:web_url,
|
5560
5584
|
:skip_app_resign,
|
5561
5585
|
:test_spec_arn,
|
5562
|
-
:device_selection_result
|
5586
|
+
:device_selection_result,
|
5587
|
+
:vpc_config)
|
5563
5588
|
SENSITIVE = []
|
5564
5589
|
include Aws::Structure
|
5565
5590
|
end
|
@@ -7132,6 +7157,11 @@ module Aws::DeviceFarm
|
|
7132
7157
|
# arn: "AmazonResourceName", # required
|
7133
7158
|
# name: "Name",
|
7134
7159
|
# default_job_timeout_minutes: 1,
|
7160
|
+
# vpc_config: {
|
7161
|
+
# security_group_ids: ["SecurityGroupId"], # required
|
7162
|
+
# subnet_ids: ["SubnetId"], # required
|
7163
|
+
# vpc_id: "NonEmptyString", # required
|
7164
|
+
# },
|
7135
7165
|
# }
|
7136
7166
|
#
|
7137
7167
|
# @!attribute [rw] arn
|
@@ -7148,12 +7178,17 @@ module Aws::DeviceFarm
|
|
7148
7178
|
# times out.
|
7149
7179
|
# @return [Integer]
|
7150
7180
|
#
|
7181
|
+
# @!attribute [rw] vpc_config
|
7182
|
+
# The VPC security groups and subnets that are attached to a project.
|
7183
|
+
# @return [Types::VpcConfig]
|
7184
|
+
#
|
7151
7185
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateProjectRequest AWS API Documentation
|
7152
7186
|
#
|
7153
7187
|
class UpdateProjectRequest < Struct.new(
|
7154
7188
|
:arn,
|
7155
7189
|
:name,
|
7156
|
-
:default_job_timeout_minutes
|
7190
|
+
:default_job_timeout_minutes,
|
7191
|
+
:vpc_config)
|
7157
7192
|
SENSITIVE = []
|
7158
7193
|
include Aws::Structure
|
7159
7194
|
end
|
@@ -7521,5 +7556,39 @@ module Aws::DeviceFarm
|
|
7521
7556
|
include Aws::Structure
|
7522
7557
|
end
|
7523
7558
|
|
7559
|
+
# Contains the VPC configuration data necessary to interface with AWS
|
7560
|
+
# Device Farm's services.
|
7561
|
+
#
|
7562
|
+
# @note When making an API call, you may pass VpcConfig
|
7563
|
+
# data as a hash:
|
7564
|
+
#
|
7565
|
+
# {
|
7566
|
+
# security_group_ids: ["SecurityGroupId"], # required
|
7567
|
+
# subnet_ids: ["SubnetId"], # required
|
7568
|
+
# vpc_id: "NonEmptyString", # required
|
7569
|
+
# }
|
7570
|
+
#
|
7571
|
+
# @!attribute [rw] security_group_ids
|
7572
|
+
# An array of one or more security groups IDs in your Amazon VPC.
|
7573
|
+
# @return [Array<String>]
|
7574
|
+
#
|
7575
|
+
# @!attribute [rw] subnet_ids
|
7576
|
+
# An array of one or more subnet IDs in your Amazon VPC.
|
7577
|
+
# @return [Array<String>]
|
7578
|
+
#
|
7579
|
+
# @!attribute [rw] vpc_id
|
7580
|
+
# The ID of the Amazon VPC.
|
7581
|
+
# @return [String]
|
7582
|
+
#
|
7583
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/VpcConfig AWS API Documentation
|
7584
|
+
#
|
7585
|
+
class VpcConfig < Struct.new(
|
7586
|
+
:security_group_ids,
|
7587
|
+
:subnet_ids,
|
7588
|
+
:vpc_id)
|
7589
|
+
SENSITIVE = []
|
7590
|
+
include Aws::Structure
|
7591
|
+
end
|
7592
|
+
|
7524
7593
|
end
|
7525
7594
|
end
|
data/lib/aws-sdk-devicefarm.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-devicefarm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.52.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|