aws-sdk-devicefarm 1.51.0 → 1.52.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e0a4c7c6c2851e8bd76b54c3a57f594c85876873fd1bf2a322a5419307c551ba
4
- data.tar.gz: 5b5a52c4b23d792e0280fd820cb950f9b1919c6b71823cced4cfdc84d77cb324
3
+ metadata.gz: 6963feeb329396da93b0f1fa34f8de51a88a6838c393f0b4b11eb474d85803f4
4
+ data.tar.gz: e3e2b289dceb5246f0d0b5eac063ef2807bf16beb09e20dcf5654e345f880da2
5
5
  SHA512:
6
- metadata.gz: 44061f2f8327cb4ad3b4c2bcde22175bbf8028cf4f4c4e4f4f1ef25825b65c610f3586fc085b25e30cf60411ef7ed135816ce86d4cbb862f7634f230c7f1da70
7
- data.tar.gz: b90ccd28de9db5e74b63d24c1a9d676291330bece63e08506d770ba49d2487cfc35e0815d9a1fb303ee60b05a55117625e8da2cf39ad84a809a4652e88eb01ce
6
+ metadata.gz: e575824081fdd66775bc044498f962bd4d65e78a3701ea972c98a14347619138935f9efc3afdfb56ba3ba765954c3be41a4b2dae5d4477e8a65a16e2e1ec09f1
7
+ data.tar.gz: 541d4331a66fbb2c44f0fe9189a90aad82bd9156a8b4780df089dfaf13cbc1260ca309e4f2f58ef9ad3455b1763baa67d13f8f6c981e1f0cb202321ebe7f665e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.51.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.51.0
1
+ 1.52.0
@@ -604,6 +604,9 @@ module Aws::DeviceFarm
604
604
  # runs in this project use the specified execution timeout value unless
605
605
  # overridden when scheduling a run.
606
606
  #
607
+ # @option params [Types::VpcConfig] :vpc_config
608
+ # The VPC security groups and subnets that are attached to a project.
609
+ #
607
610
  # @return [Types::CreateProjectResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
608
611
  #
609
612
  # * {Types::CreateProjectResult#project #project} => Types::Project
@@ -631,6 +634,11 @@ module Aws::DeviceFarm
631
634
  # resp = client.create_project({
632
635
  # name: "Name", # required
633
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
+ # },
634
642
  # })
635
643
  #
636
644
  # @example Response structure
@@ -639,6 +647,11 @@ module Aws::DeviceFarm
639
647
  # resp.project.name #=> String
640
648
  # resp.project.default_job_timeout_minutes #=> Integer
641
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
642
655
  #
643
656
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateProject AWS API Documentation
644
657
  #
@@ -735,7 +748,7 @@ module Aws::DeviceFarm
735
748
  #
736
749
  #
737
750
  #
738
- # [1]: https://aws.amazon.com/device-farm/faq/
751
+ # [1]: http://aws.amazon.com/device-farm/faqs/
739
752
  #
740
753
  # @return [Types::CreateRemoteAccessSessionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
741
754
  #
@@ -842,6 +855,11 @@ module Aws::DeviceFarm
842
855
  # resp.remote_access_session.device_udid #=> String
843
856
  # resp.remote_access_session.interaction_mode #=> String, one of "INTERACTIVE", "NO_VIDEO", "VIDEO_ONLY"
844
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
845
863
  #
846
864
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateRemoteAccessSession AWS API Documentation
847
865
  #
@@ -2185,6 +2203,11 @@ module Aws::DeviceFarm
2185
2203
  # resp.project.name #=> String
2186
2204
  # resp.project.default_job_timeout_minutes #=> Integer
2187
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
2188
2211
  #
2189
2212
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetProject AWS API Documentation
2190
2213
  #
@@ -2287,6 +2310,11 @@ module Aws::DeviceFarm
2287
2310
  # resp.remote_access_session.device_udid #=> String
2288
2311
  # resp.remote_access_session.interaction_mode #=> String, one of "INTERACTIVE", "NO_VIDEO", "VIDEO_ONLY"
2289
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
2290
2318
  #
2291
2319
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetRemoteAccessSession AWS API Documentation
2292
2320
  #
@@ -2418,6 +2446,11 @@ module Aws::DeviceFarm
2418
2446
  # resp.run.device_selection_result.filters[0].values[0] #=> String
2419
2447
  # resp.run.device_selection_result.matched_devices_count #=> Integer
2420
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
2421
2454
  #
2422
2455
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetRun AWS API Documentation
2423
2456
  #
@@ -3735,6 +3768,11 @@ module Aws::DeviceFarm
3735
3768
  # resp.projects[0].name #=> String
3736
3769
  # resp.projects[0].default_job_timeout_minutes #=> Integer
3737
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
3738
3776
  # resp.next_token #=> String
3739
3777
  #
3740
3778
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListProjects AWS API Documentation
@@ -3847,6 +3885,11 @@ module Aws::DeviceFarm
3847
3885
  # resp.remote_access_sessions[0].device_udid #=> String
3848
3886
  # resp.remote_access_sessions[0].interaction_mode #=> String, one of "INTERACTIVE", "NO_VIDEO", "VIDEO_ONLY"
3849
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
3850
3893
  # resp.next_token #=> String
3851
3894
  #
3852
3895
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListRemoteAccessSessions AWS API Documentation
@@ -3993,6 +4036,11 @@ module Aws::DeviceFarm
3993
4036
  # resp.runs[0].device_selection_result.filters[0].values[0] #=> String
3994
4037
  # resp.runs[0].device_selection_result.matched_devices_count #=> Integer
3995
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
3996
4044
  # resp.next_token #=> String
3997
4045
  #
3998
4046
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListRuns AWS API Documentation
@@ -5088,6 +5136,11 @@ module Aws::DeviceFarm
5088
5136
  # resp.run.device_selection_result.filters[0].values[0] #=> String
5089
5137
  # resp.run.device_selection_result.matched_devices_count #=> Integer
5090
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
5091
5144
  #
5092
5145
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ScheduleRun AWS API Documentation
5093
5146
  #
@@ -5266,6 +5319,11 @@ module Aws::DeviceFarm
5266
5319
  # resp.remote_access_session.device_udid #=> String
5267
5320
  # resp.remote_access_session.interaction_mode #=> String, one of "INTERACTIVE", "NO_VIDEO", "VIDEO_ONLY"
5268
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
5269
5327
  #
5270
5328
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopRemoteAccessSession AWS API Documentation
5271
5329
  #
@@ -5379,6 +5437,11 @@ module Aws::DeviceFarm
5379
5437
  # resp.run.device_selection_result.filters[0].values[0] #=> String
5380
5438
  # resp.run.device_selection_result.matched_devices_count #=> Integer
5381
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
5382
5445
  #
5383
5446
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopRun AWS API Documentation
5384
5447
  #
@@ -5788,6 +5851,9 @@ module Aws::DeviceFarm
5788
5851
  # The number of minutes a test run in the project executes before it
5789
5852
  # times out.
5790
5853
  #
5854
+ # @option params [Types::VpcConfig] :vpc_config
5855
+ # The VPC security groups and subnets that are attached to a project.
5856
+ #
5791
5857
  # @return [Types::UpdateProjectResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5792
5858
  #
5793
5859
  # * {Types::UpdateProjectResult#project #project} => Types::Project
@@ -5817,6 +5883,11 @@ module Aws::DeviceFarm
5817
5883
  # arn: "AmazonResourceName", # required
5818
5884
  # name: "Name",
5819
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
+ # },
5820
5891
  # })
5821
5892
  #
5822
5893
  # @example Response structure
@@ -5825,6 +5896,11 @@ module Aws::DeviceFarm
5825
5896
  # resp.project.name #=> String
5826
5897
  # resp.project.default_job_timeout_minutes #=> Integer
5827
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
5828
5904
  #
5829
5905
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateProject AWS API Documentation
5830
5906
  #
@@ -6006,7 +6082,7 @@ module Aws::DeviceFarm
6006
6082
  params: params,
6007
6083
  config: config)
6008
6084
  context[:gem_name] = 'aws-sdk-devicefarm'
6009
- context[:gem_version] = '1.51.0'
6085
+ context[:gem_version] = '1.52.0'
6010
6086
  Seahorse::Client::Request.new(handlers, context)
6011
6087
  end
6012
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]: https://aws.amazon.com/device-farm/faq/
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]: https://aws.amazon.com/device-farm/faq/
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]: https://aws.amazon.com/device-farm/faq/
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]: https://aws.amazon.com/device-farm/faq/
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]: https://aws.amazon.com/device-farm/faq/
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
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-devicefarm/customizations'
48
48
  # @!group service
49
49
  module Aws::DeviceFarm
50
50
 
51
- GEM_VERSION = '1.51.0'
51
+ GEM_VERSION = '1.52.0'
52
52
 
53
53
  end
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.51.0
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-02-24 00:00:00.000000000 Z
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