aws-sdk-devicefarm 1.84.0 → 1.85.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f42630c2da69c6ec2f3671ea4a55cbcd3a0581f00d0e3a07a3e7a8284239746
4
- data.tar.gz: 447afae3f05567e2b35327ea20fc4f47075822efe98d245f85a6e7acd384bfdd
3
+ metadata.gz: 24ddd732724835a78de296e6954c21558a1e0674c3d4bd4ccecf254451c63c43
4
+ data.tar.gz: 904947f2635b6edfc8079eaa1eed6827389b7952baa8e26ac8f33365b82a507f
5
5
  SHA512:
6
- metadata.gz: 3e99cde33f128af28e345656af83d742ce3b65e24a6440aef70ac4556eefa15be03fc5ee54e6e2836a8f3a1bc25fe2d6ecd82690ed86d5ec978dc8f2c6493161
7
- data.tar.gz: 0a8687c12d6799ccfe9dd836263dbc8dcc348a7fc6de9b895b44d251d4753ab83c0ab1f8fa7f4e381ed86c93b1d491220bf3be03cdc1f95007b296a70dc010fe
6
+ metadata.gz: 89665d1e0d23dbb3c908cc3b487a5b50ff251874b891e4045837709854fa985cb831e32b3dd4a8a3da79536d72364f8870277dd3ebbd98211f44179cc4d18b2b
7
+ data.tar.gz: e94e41f3dca95f0256ef41a6cba1865898f16d54c24597e16b57cbba5f6701af3e8147f5bf88b72dc03d89a9d17bb14a4b47113dcd51a14f324b73a750a560cc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.85.0 (2025-02-25)
5
+ ------------------
6
+
7
+ * Feature - Add an optional configuration to the ScheduleRun and CreateRemoteAccessSession API to set a device level http/s proxy.
8
+
4
9
  1.84.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.84.0
1
+ 1.85.0
@@ -905,6 +905,10 @@ module Aws::DeviceFarm
905
905
  # configuration: {
906
906
  # billing_method: "METERED", # accepts METERED, UNMETERED
907
907
  # vpce_configuration_arns: ["AmazonResourceName"],
908
+ # device_proxy: {
909
+ # host: "DeviceProxyHost", # required
910
+ # port: 1, # required
911
+ # },
908
912
  # },
909
913
  # interaction_mode: "INTERACTIVE", # accepts INTERACTIVE, NO_VIDEO, VIDEO_ONLY
910
914
  # skip_app_resign: false,
@@ -976,6 +980,8 @@ module Aws::DeviceFarm
976
980
  # resp.remote_access_session.vpc_config.subnet_ids #=> Array
977
981
  # resp.remote_access_session.vpc_config.subnet_ids[0] #=> String
978
982
  # resp.remote_access_session.vpc_config.vpc_id #=> String
983
+ # resp.remote_access_session.device_proxy.host #=> String
984
+ # resp.remote_access_session.device_proxy.port #=> Integer
979
985
  #
980
986
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateRemoteAccessSession AWS API Documentation
981
987
  #
@@ -1878,6 +1884,10 @@ module Aws::DeviceFarm
1878
1884
  # longitude: 1.0, # required
1879
1885
  # },
1880
1886
  # vpce_configuration_arns: ["AmazonResourceName"],
1887
+ # device_proxy: {
1888
+ # host: "DeviceProxyHost", # required
1889
+ # port: 1, # required
1890
+ # },
1881
1891
  # customer_artifact_paths: {
1882
1892
  # ios_paths: ["String"],
1883
1893
  # android_paths: ["String"],
@@ -2415,6 +2425,8 @@ module Aws::DeviceFarm
2415
2425
  # resp.remote_access_session.vpc_config.subnet_ids #=> Array
2416
2426
  # resp.remote_access_session.vpc_config.subnet_ids[0] #=> String
2417
2427
  # resp.remote_access_session.vpc_config.vpc_id #=> String
2428
+ # resp.remote_access_session.device_proxy.host #=> String
2429
+ # resp.remote_access_session.device_proxy.port #=> Integer
2418
2430
  #
2419
2431
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetRemoteAccessSession AWS API Documentation
2420
2432
  #
@@ -2515,6 +2527,8 @@ module Aws::DeviceFarm
2515
2527
  # resp.run.network_profile.downlink_jitter_ms #=> Integer
2516
2528
  # resp.run.network_profile.uplink_loss_percent #=> Integer
2517
2529
  # resp.run.network_profile.downlink_loss_percent #=> Integer
2530
+ # resp.run.device_proxy.host #=> String
2531
+ # resp.run.device_proxy.port #=> Integer
2518
2532
  # resp.run.parsing_result_url #=> String
2519
2533
  # resp.run.result_code #=> String, one of "PARSING_FAILED", "VPC_ENDPOINT_SETUP_FAILED"
2520
2534
  # resp.run.seed #=> Integer
@@ -3987,6 +4001,8 @@ module Aws::DeviceFarm
3987
4001
  # resp.remote_access_sessions[0].vpc_config.subnet_ids #=> Array
3988
4002
  # resp.remote_access_sessions[0].vpc_config.subnet_ids[0] #=> String
3989
4003
  # resp.remote_access_sessions[0].vpc_config.vpc_id #=> String
4004
+ # resp.remote_access_sessions[0].device_proxy.host #=> String
4005
+ # resp.remote_access_sessions[0].device_proxy.port #=> Integer
3990
4006
  # resp.next_token #=> String
3991
4007
  #
3992
4008
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListRemoteAccessSessions AWS API Documentation
@@ -4102,6 +4118,8 @@ module Aws::DeviceFarm
4102
4118
  # resp.runs[0].network_profile.downlink_jitter_ms #=> Integer
4103
4119
  # resp.runs[0].network_profile.uplink_loss_percent #=> Integer
4104
4120
  # resp.runs[0].network_profile.downlink_loss_percent #=> Integer
4121
+ # resp.runs[0].device_proxy.host #=> String
4122
+ # resp.runs[0].device_proxy.port #=> Integer
4105
4123
  # resp.runs[0].parsing_result_url #=> String
4106
4124
  # resp.runs[0].result_code #=> String, one of "PARSING_FAILED", "VPC_ENDPOINT_SETUP_FAILED"
4107
4125
  # resp.runs[0].seed #=> Integer
@@ -5136,6 +5154,10 @@ module Aws::DeviceFarm
5136
5154
  # longitude: 1.0, # required
5137
5155
  # },
5138
5156
  # vpce_configuration_arns: ["AmazonResourceName"],
5157
+ # device_proxy: {
5158
+ # host: "DeviceProxyHost", # required
5159
+ # port: 1, # required
5160
+ # },
5139
5161
  # customer_artifact_paths: {
5140
5162
  # ios_paths: ["String"],
5141
5163
  # android_paths: ["String"],
@@ -5196,6 +5218,8 @@ module Aws::DeviceFarm
5196
5218
  # resp.run.network_profile.downlink_jitter_ms #=> Integer
5197
5219
  # resp.run.network_profile.uplink_loss_percent #=> Integer
5198
5220
  # resp.run.network_profile.downlink_loss_percent #=> Integer
5221
+ # resp.run.device_proxy.host #=> String
5222
+ # resp.run.device_proxy.port #=> Integer
5199
5223
  # resp.run.parsing_result_url #=> String
5200
5224
  # resp.run.result_code #=> String, one of "PARSING_FAILED", "VPC_ENDPOINT_SETUP_FAILED"
5201
5225
  # resp.run.seed #=> Integer
@@ -5414,6 +5438,8 @@ module Aws::DeviceFarm
5414
5438
  # resp.remote_access_session.vpc_config.subnet_ids #=> Array
5415
5439
  # resp.remote_access_session.vpc_config.subnet_ids[0] #=> String
5416
5440
  # resp.remote_access_session.vpc_config.vpc_id #=> String
5441
+ # resp.remote_access_session.device_proxy.host #=> String
5442
+ # resp.remote_access_session.device_proxy.port #=> Integer
5417
5443
  #
5418
5444
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopRemoteAccessSession AWS API Documentation
5419
5445
  #
@@ -5497,6 +5523,8 @@ module Aws::DeviceFarm
5497
5523
  # resp.run.network_profile.downlink_jitter_ms #=> Integer
5498
5524
  # resp.run.network_profile.uplink_loss_percent #=> Integer
5499
5525
  # resp.run.network_profile.downlink_loss_percent #=> Integer
5526
+ # resp.run.device_proxy.host #=> String
5527
+ # resp.run.device_proxy.port #=> Integer
5500
5528
  # resp.run.parsing_result_url #=> String
5501
5529
  # resp.run.result_code #=> String, one of "PARSING_FAILED", "VPC_ENDPOINT_SETUP_FAILED"
5502
5530
  # resp.run.seed #=> Integer
@@ -6177,7 +6205,7 @@ module Aws::DeviceFarm
6177
6205
  tracer: tracer
6178
6206
  )
6179
6207
  context[:gem_name] = 'aws-sdk-devicefarm'
6180
- context[:gem_version] = '1.84.0'
6208
+ context[:gem_version] = '1.85.0'
6181
6209
  Seahorse::Client::Request.new(handlers, context)
6182
6210
  end
6183
6211
 
@@ -92,6 +92,9 @@ module Aws::DeviceFarm
92
92
  DevicePoolCompatibilityResults = Shapes::ListShape.new(name: 'DevicePoolCompatibilityResults')
93
93
  DevicePoolType = Shapes::StringShape.new(name: 'DevicePoolType')
94
94
  DevicePools = Shapes::ListShape.new(name: 'DevicePools')
95
+ DeviceProxy = Shapes::StructureShape.new(name: 'DeviceProxy')
96
+ DeviceProxyHost = Shapes::StringShape.new(name: 'DeviceProxyHost')
97
+ DeviceProxyPort = Shapes::IntegerShape.new(name: 'DeviceProxyPort')
95
98
  DeviceSelectionConfiguration = Shapes::StructureShape.new(name: 'DeviceSelectionConfiguration')
96
99
  DeviceSelectionResult = Shapes::StructureShape.new(name: 'DeviceSelectionResult')
97
100
  Devices = Shapes::ListShape.new(name: 'Devices')
@@ -441,6 +444,7 @@ module Aws::DeviceFarm
441
444
 
442
445
  CreateRemoteAccessSessionConfiguration.add_member(:billing_method, Shapes::ShapeRef.new(shape: BillingMethod, location_name: "billingMethod"))
443
446
  CreateRemoteAccessSessionConfiguration.add_member(:vpce_configuration_arns, Shapes::ShapeRef.new(shape: AmazonResourceNames, location_name: "vpceConfigurationArns"))
447
+ CreateRemoteAccessSessionConfiguration.add_member(:device_proxy, Shapes::ShapeRef.new(shape: DeviceProxy, location_name: "deviceProxy"))
444
448
  CreateRemoteAccessSessionConfiguration.struct_class = Types::CreateRemoteAccessSessionConfiguration
445
449
 
446
450
  CreateRemoteAccessSessionRequest.add_member(:project_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "projectArn"))
@@ -610,6 +614,10 @@ module Aws::DeviceFarm
610
614
 
611
615
  DevicePools.member = Shapes::ShapeRef.new(shape: DevicePool)
612
616
 
617
+ DeviceProxy.add_member(:host, Shapes::ShapeRef.new(shape: DeviceProxyHost, required: true, location_name: "host"))
618
+ DeviceProxy.add_member(:port, Shapes::ShapeRef.new(shape: DeviceProxyPort, required: true, location_name: "port"))
619
+ DeviceProxy.struct_class = Types::DeviceProxy
620
+
613
621
  DeviceSelectionConfiguration.add_member(:filters, Shapes::ShapeRef.new(shape: DeviceFilters, required: true, location_name: "filters"))
614
622
  DeviceSelectionConfiguration.add_member(:max_devices, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "maxDevices"))
615
623
  DeviceSelectionConfiguration.struct_class = Types::DeviceSelectionConfiguration
@@ -1140,6 +1148,7 @@ module Aws::DeviceFarm
1140
1148
  RemoteAccessSession.add_member(:interaction_mode, Shapes::ShapeRef.new(shape: InteractionMode, location_name: "interactionMode"))
1141
1149
  RemoteAccessSession.add_member(:skip_app_resign, Shapes::ShapeRef.new(shape: SkipAppResign, location_name: "skipAppResign"))
1142
1150
  RemoteAccessSession.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
1151
+ RemoteAccessSession.add_member(:device_proxy, Shapes::ShapeRef.new(shape: DeviceProxy, location_name: "deviceProxy"))
1143
1152
  RemoteAccessSession.struct_class = Types::RemoteAccessSession
1144
1153
 
1145
1154
  RemoteAccessSessions.member = Shapes::ShapeRef.new(shape: RemoteAccessSession)
@@ -1178,6 +1187,7 @@ module Aws::DeviceFarm
1178
1187
  Run.add_member(:billing_method, Shapes::ShapeRef.new(shape: BillingMethod, location_name: "billingMethod"))
1179
1188
  Run.add_member(:device_minutes, Shapes::ShapeRef.new(shape: DeviceMinutes, location_name: "deviceMinutes"))
1180
1189
  Run.add_member(:network_profile, Shapes::ShapeRef.new(shape: NetworkProfile, location_name: "networkProfile"))
1190
+ Run.add_member(:device_proxy, Shapes::ShapeRef.new(shape: DeviceProxy, location_name: "deviceProxy"))
1181
1191
  Run.add_member(:parsing_result_url, Shapes::ShapeRef.new(shape: String, location_name: "parsingResultUrl"))
1182
1192
  Run.add_member(:result_code, Shapes::ShapeRef.new(shape: ExecutionResultCode, location_name: "resultCode"))
1183
1193
  Run.add_member(:seed, Shapes::ShapeRef.new(shape: Integer, location_name: "seed"))
@@ -1210,6 +1220,7 @@ module Aws::DeviceFarm
1210
1220
  ScheduleRunConfiguration.add_member(:locale, Shapes::ShapeRef.new(shape: String, location_name: "locale"))
1211
1221
  ScheduleRunConfiguration.add_member(:location, Shapes::ShapeRef.new(shape: Location, location_name: "location"))
1212
1222
  ScheduleRunConfiguration.add_member(:vpce_configuration_arns, Shapes::ShapeRef.new(shape: AmazonResourceNames, location_name: "vpceConfigurationArns"))
1223
+ ScheduleRunConfiguration.add_member(:device_proxy, Shapes::ShapeRef.new(shape: DeviceProxy, location_name: "deviceProxy"))
1213
1224
  ScheduleRunConfiguration.add_member(:customer_artifact_paths, Shapes::ShapeRef.new(shape: CustomerArtifactPaths, location_name: "customerArtifactPaths"))
1214
1225
  ScheduleRunConfiguration.add_member(:radios, Shapes::ShapeRef.new(shape: Radios, location_name: "radios"))
1215
1226
  ScheduleRunConfiguration.add_member(:auxiliary_apps, Shapes::ShapeRef.new(shape: AmazonResourceNames, location_name: "auxiliaryApps"))
@@ -499,11 +499,17 @@ module Aws::DeviceFarm
499
499
  # An array of ARNs included in the VPC endpoint configuration.
500
500
  # @return [Array<String>]
501
501
  #
502
+ # @!attribute [rw] device_proxy
503
+ # The device proxy to be configured on the device for the remote
504
+ # access session.
505
+ # @return [Types::DeviceProxy]
506
+ #
502
507
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateRemoteAccessSessionConfiguration AWS API Documentation
503
508
  #
504
509
  class CreateRemoteAccessSessionConfiguration < Struct.new(
505
510
  :billing_method,
506
- :vpce_configuration_arns)
511
+ :vpce_configuration_arns,
512
+ :device_proxy)
507
513
  SENSITIVE = []
508
514
  include Aws::Structure
509
515
  end
@@ -1497,6 +1503,26 @@ module Aws::DeviceFarm
1497
1503
  include Aws::Structure
1498
1504
  end
1499
1505
 
1506
+ # Represents the http/s proxy configuration that will be applied to a
1507
+ # device during a run.
1508
+ #
1509
+ # @!attribute [rw] host
1510
+ # Hostname or IPv4 address of the proxy.
1511
+ # @return [String]
1512
+ #
1513
+ # @!attribute [rw] port
1514
+ # The port number on which the http/s proxy is listening.
1515
+ # @return [Integer]
1516
+ #
1517
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/DeviceProxy AWS API Documentation
1518
+ #
1519
+ class DeviceProxy < Struct.new(
1520
+ :host,
1521
+ :port)
1522
+ SENSITIVE = []
1523
+ include Aws::Structure
1524
+ end
1525
+
1500
1526
  # Represents the device filters used in a test run and the maximum
1501
1527
  # number of devices to be included in the run. It is passed in as the
1502
1528
  # `deviceSelectionConfiguration` request parameter in ScheduleRun.
@@ -4403,6 +4429,10 @@ module Aws::DeviceFarm
4403
4429
  # The VPC security groups and subnets that are attached to a project.
4404
4430
  # @return [Types::VpcConfig]
4405
4431
  #
4432
+ # @!attribute [rw] device_proxy
4433
+ # The device proxy configured for the remote access session.
4434
+ # @return [Types::DeviceProxy]
4435
+ #
4406
4436
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/RemoteAccessSession AWS API Documentation
4407
4437
  #
4408
4438
  class RemoteAccessSession < Struct.new(
@@ -4427,7 +4457,8 @@ module Aws::DeviceFarm
4427
4457
  :device_udid,
4428
4458
  :interaction_mode,
4429
4459
  :skip_app_resign,
4430
- :vpc_config)
4460
+ :vpc_config,
4461
+ :device_proxy)
4431
4462
  SENSITIVE = []
4432
4463
  include Aws::Structure
4433
4464
  end
@@ -4754,6 +4785,10 @@ module Aws::DeviceFarm
4754
4785
  # The network profile being used for a test run.
4755
4786
  # @return [Types::NetworkProfile]
4756
4787
  #
4788
+ # @!attribute [rw] device_proxy
4789
+ # The device proxy configured for the devices in the run.
4790
+ # @return [Types::DeviceProxy]
4791
+ #
4757
4792
  # @!attribute [rw] parsing_result_url
4758
4793
  # Read-only URL for an object in an S3 bucket where you can get the
4759
4794
  # parsing results of the test package. If the test package doesn't
@@ -4855,6 +4890,7 @@ module Aws::DeviceFarm
4855
4890
  :billing_method,
4856
4891
  :device_minutes,
4857
4892
  :network_profile,
4893
+ :device_proxy,
4858
4894
  :parsing_result_url,
4859
4895
  :result_code,
4860
4896
  :seed,
@@ -4967,6 +5003,10 @@ module Aws::DeviceFarm
4967
5003
  # An array of ARNs for your VPC endpoint configurations.
4968
5004
  # @return [Array<String>]
4969
5005
  #
5006
+ # @!attribute [rw] device_proxy
5007
+ # The device proxy to be configured on the device for the run.
5008
+ # @return [Types::DeviceProxy]
5009
+ #
4970
5010
  # @!attribute [rw] customer_artifact_paths
4971
5011
  # Input `CustomerArtifactPaths` object for the scheduled run
4972
5012
  # configuration.
@@ -5001,6 +5041,7 @@ module Aws::DeviceFarm
5001
5041
  :locale,
5002
5042
  :location,
5003
5043
  :vpce_configuration_arns,
5044
+ :device_proxy,
5004
5045
  :customer_artifact_paths,
5005
5046
  :radios,
5006
5047
  :auxiliary_apps,
@@ -54,7 +54,7 @@ module Aws::DeviceFarm
54
54
  autoload :EndpointProvider, 'aws-sdk-devicefarm/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-devicefarm/endpoints'
56
56
 
57
- GEM_VERSION = '1.84.0'
57
+ GEM_VERSION = '1.85.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -166,7 +166,11 @@ module Aws
166
166
  ?client_id: ::String,
167
167
  ?configuration: {
168
168
  billing_method: ("METERED" | "UNMETERED")?,
169
- vpce_configuration_arns: Array[::String]?
169
+ vpce_configuration_arns: Array[::String]?,
170
+ device_proxy: {
171
+ host: ::String,
172
+ port: ::Integer
173
+ }?
170
174
  },
171
175
  ?interaction_mode: ("INTERACTIVE" | "NO_VIDEO" | "VIDEO_ONLY"),
172
176
  ?skip_app_resign: bool
@@ -373,6 +377,10 @@ module Aws
373
377
  longitude: ::Float
374
378
  }?,
375
379
  vpce_configuration_arns: Array[::String]?,
380
+ device_proxy: {
381
+ host: ::String,
382
+ port: ::Integer
383
+ }?,
376
384
  customer_artifact_paths: {
377
385
  ios_paths: Array[::String]?,
378
386
  android_paths: Array[::String]?,
@@ -897,6 +905,10 @@ module Aws
897
905
  longitude: ::Float
898
906
  }?,
899
907
  vpce_configuration_arns: Array[::String]?,
908
+ device_proxy: {
909
+ host: ::String,
910
+ port: ::Integer
911
+ }?,
900
912
  customer_artifact_paths: {
901
913
  ios_paths: Array[::String]?,
902
914
  android_paths: Array[::String]?,
data/sig/types.rbs CHANGED
@@ -121,6 +121,7 @@ module Aws::DeviceFarm
121
121
  class CreateRemoteAccessSessionConfiguration
122
122
  attr_accessor billing_method: ("METERED" | "UNMETERED")
123
123
  attr_accessor vpce_configuration_arns: ::Array[::String]
124
+ attr_accessor device_proxy: Types::DeviceProxy
124
125
  SENSITIVE: []
125
126
  end
126
127
 
@@ -340,6 +341,12 @@ module Aws::DeviceFarm
340
341
  SENSITIVE: []
341
342
  end
342
343
 
344
+ class DeviceProxy
345
+ attr_accessor host: ::String
346
+ attr_accessor port: ::Integer
347
+ SENSITIVE: []
348
+ end
349
+
343
350
  class DeviceSelectionConfiguration
344
351
  attr_accessor filters: ::Array[Types::DeviceFilter]
345
352
  attr_accessor max_devices: ::Integer
@@ -1057,6 +1064,7 @@ module Aws::DeviceFarm
1057
1064
  attr_accessor interaction_mode: ("INTERACTIVE" | "NO_VIDEO" | "VIDEO_ONLY")
1058
1065
  attr_accessor skip_app_resign: bool
1059
1066
  attr_accessor vpc_config: Types::VpcConfig
1067
+ attr_accessor device_proxy: Types::DeviceProxy
1060
1068
  SENSITIVE: []
1061
1069
  end
1062
1070
 
@@ -1101,6 +1109,7 @@ module Aws::DeviceFarm
1101
1109
  attr_accessor billing_method: ("METERED" | "UNMETERED")
1102
1110
  attr_accessor device_minutes: Types::DeviceMinutes
1103
1111
  attr_accessor network_profile: Types::NetworkProfile
1112
+ attr_accessor device_proxy: Types::DeviceProxy
1104
1113
  attr_accessor parsing_result_url: ::String
1105
1114
  attr_accessor result_code: ("PARSING_FAILED" | "VPC_ENDPOINT_SETUP_FAILED")
1106
1115
  attr_accessor seed: ::Integer
@@ -1133,6 +1142,7 @@ module Aws::DeviceFarm
1133
1142
  attr_accessor locale: ::String
1134
1143
  attr_accessor location: Types::Location
1135
1144
  attr_accessor vpce_configuration_arns: ::Array[::String]
1145
+ attr_accessor device_proxy: Types::DeviceProxy
1136
1146
  attr_accessor customer_artifact_paths: Types::CustomerArtifactPaths
1137
1147
  attr_accessor radios: Types::Radios
1138
1148
  attr_accessor auxiliary_apps: ::Array[::String]
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.84.0
4
+ version: 1.85.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: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core