aws-sdk-devicefarm 1.95.0 → 1.96.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: ce3939c8ce43dc2a0bb54a9967379f28830205e9e07572cbebf3a483c58c2756
4
- data.tar.gz: 04c3a188121deda2abea21efeee148028e154d0e7e852b7fee77fa8a71704cd6
3
+ metadata.gz: e66f1c0999be41d7357f3c0b3fb2dc24d9818575610f4813f64a3757663facd9
4
+ data.tar.gz: 375e18ec072c55b0a802a0fe28cf065cf3fc5ce401bb0b9f8002ad68d134b584
5
5
  SHA512:
6
- metadata.gz: 61611f877f40c20481bd3cd79f4787165cc8429b8b0a848d045b73cd70f64001542cbc84502559e6344c93dc76fa9ba0be1bed814e475afe6104c20cb8a11158
7
- data.tar.gz: d6101290fdcd4e07119173bd4792fa5d15c9fdbe65f2f34940184442f1f47f9bdf2586a17a47669a83ff981b1e87860c6b4648fdbf9d4a1ae6ff44f705485785
6
+ metadata.gz: 2070c5d3f8a3cbd539cae39e91d5e24c602b8efd5eb4decadb9718b45f65b29a02b8c0fbb3d7ccff28c88ac46eced3be8de453325426c12fadb116dd668c596c
7
+ data.tar.gz: ab31f0c49454503c2fd66928fc17d1021209b6a0859d7da833413d4b75fa9d6ca056b37e5e9819f32facf748c48e9801568804058fc10f29f965ea0b4e62c753
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.96.0 (2025-10-22)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for optionally including an app as part of a CreateRemoteAccessSession request
8
+
4
9
  1.95.0 (2025-10-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.96.0
@@ -794,6 +794,10 @@ module Aws::DeviceFarm
794
794
  # The ARN of the device for which you want to create a remote access
795
795
  # session.
796
796
  #
797
+ # @option params [String] :app_arn
798
+ # The Amazon Resource Name (ARN) of the app to create the remote access
799
+ # session.
800
+ #
797
801
  # @option params [String] :instance_arn
798
802
  # The Amazon Resource Name (ARN) of the device instance for which you
799
803
  # want to create a remote access session.
@@ -901,6 +905,7 @@ module Aws::DeviceFarm
901
905
  # resp = client.create_remote_access_session({
902
906
  # project_arn: "AmazonResourceName", # required
903
907
  # device_arn: "AmazonResourceName", # required
908
+ # app_arn: "AmazonResourceName",
904
909
  # instance_arn: "AmazonResourceName",
905
910
  # ssh_public_key: "SshPublicKey",
906
911
  # remote_debug_enabled: false,
@@ -909,6 +914,7 @@ module Aws::DeviceFarm
909
914
  # name: "Name",
910
915
  # client_id: "ClientId",
911
916
  # configuration: {
917
+ # auxiliary_apps: ["AmazonResourceName"],
912
918
  # billing_method: "METERED", # accepts METERED, UNMETERED
913
919
  # vpce_configuration_arns: ["AmazonResourceName"],
914
920
  # device_proxy: {
@@ -988,6 +994,7 @@ module Aws::DeviceFarm
988
994
  # resp.remote_access_session.vpc_config.vpc_id #=> String
989
995
  # resp.remote_access_session.device_proxy.host #=> String
990
996
  # resp.remote_access_session.device_proxy.port #=> Integer
997
+ # resp.remote_access_session.app_upload #=> String
991
998
  #
992
999
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateRemoteAccessSession AWS API Documentation
993
1000
  #
@@ -2438,6 +2445,7 @@ module Aws::DeviceFarm
2438
2445
  # resp.remote_access_session.vpc_config.vpc_id #=> String
2439
2446
  # resp.remote_access_session.device_proxy.host #=> String
2440
2447
  # resp.remote_access_session.device_proxy.port #=> Integer
2448
+ # resp.remote_access_session.app_upload #=> String
2441
2449
  #
2442
2450
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/GetRemoteAccessSession AWS API Documentation
2443
2451
  #
@@ -4014,6 +4022,7 @@ module Aws::DeviceFarm
4014
4022
  # resp.remote_access_sessions[0].vpc_config.vpc_id #=> String
4015
4023
  # resp.remote_access_sessions[0].device_proxy.host #=> String
4016
4024
  # resp.remote_access_sessions[0].device_proxy.port #=> Integer
4025
+ # resp.remote_access_sessions[0].app_upload #=> String
4017
4026
  # resp.next_token #=> String
4018
4027
  #
4019
4028
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListRemoteAccessSessions AWS API Documentation
@@ -5451,6 +5460,7 @@ module Aws::DeviceFarm
5451
5460
  # resp.remote_access_session.vpc_config.vpc_id #=> String
5452
5461
  # resp.remote_access_session.device_proxy.host #=> String
5453
5462
  # resp.remote_access_session.device_proxy.port #=> Integer
5463
+ # resp.remote_access_session.app_upload #=> String
5454
5464
  #
5455
5465
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/StopRemoteAccessSession AWS API Documentation
5456
5466
  #
@@ -6216,7 +6226,7 @@ module Aws::DeviceFarm
6216
6226
  tracer: tracer
6217
6227
  )
6218
6228
  context[:gem_name] = 'aws-sdk-devicefarm'
6219
- context[:gem_version] = '1.95.0'
6229
+ context[:gem_version] = '1.96.0'
6220
6230
  Seahorse::Client::Request.new(handlers, context)
6221
6231
  end
6222
6232
 
@@ -26,6 +26,7 @@ module Aws::DeviceFarm
26
26
  ArtifactCategory = Shapes::StringShape.new(name: 'ArtifactCategory')
27
27
  ArtifactType = Shapes::StringShape.new(name: 'ArtifactType')
28
28
  Artifacts = Shapes::ListShape.new(name: 'Artifacts')
29
+ AuxiliaryAppArnList = Shapes::ListShape.new(name: 'AuxiliaryAppArnList')
29
30
  BillingMethod = Shapes::StringShape.new(name: 'BillingMethod')
30
31
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
31
32
  CPU = Shapes::StructureShape.new(name: 'CPU')
@@ -380,6 +381,8 @@ module Aws::DeviceFarm
380
381
 
381
382
  Artifacts.member = Shapes::ShapeRef.new(shape: Artifact)
382
383
 
384
+ AuxiliaryAppArnList.member = Shapes::ShapeRef.new(shape: AmazonResourceName)
385
+
383
386
  CPU.add_member(:frequency, Shapes::ShapeRef.new(shape: String, location_name: "frequency"))
384
387
  CPU.add_member(:architecture, Shapes::ShapeRef.new(shape: String, location_name: "architecture"))
385
388
  CPU.add_member(:clock, Shapes::ShapeRef.new(shape: Double, location_name: "clock"))
@@ -442,6 +445,7 @@ module Aws::DeviceFarm
442
445
  CreateProjectResult.add_member(:project, Shapes::ShapeRef.new(shape: Project, location_name: "project"))
443
446
  CreateProjectResult.struct_class = Types::CreateProjectResult
444
447
 
448
+ CreateRemoteAccessSessionConfiguration.add_member(:auxiliary_apps, Shapes::ShapeRef.new(shape: AuxiliaryAppArnList, location_name: "auxiliaryApps"))
445
449
  CreateRemoteAccessSessionConfiguration.add_member(:billing_method, Shapes::ShapeRef.new(shape: BillingMethod, location_name: "billingMethod"))
446
450
  CreateRemoteAccessSessionConfiguration.add_member(:vpce_configuration_arns, Shapes::ShapeRef.new(shape: AmazonResourceNames, location_name: "vpceConfigurationArns"))
447
451
  CreateRemoteAccessSessionConfiguration.add_member(:device_proxy, Shapes::ShapeRef.new(shape: DeviceProxy, location_name: "deviceProxy"))
@@ -449,6 +453,7 @@ module Aws::DeviceFarm
449
453
 
450
454
  CreateRemoteAccessSessionRequest.add_member(:project_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "projectArn"))
451
455
  CreateRemoteAccessSessionRequest.add_member(:device_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "deviceArn"))
456
+ CreateRemoteAccessSessionRequest.add_member(:app_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "appArn"))
452
457
  CreateRemoteAccessSessionRequest.add_member(:instance_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "instanceArn"))
453
458
  CreateRemoteAccessSessionRequest.add_member(:ssh_public_key, Shapes::ShapeRef.new(shape: SshPublicKey, location_name: "sshPublicKey"))
454
459
  CreateRemoteAccessSessionRequest.add_member(:remote_debug_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "remoteDebugEnabled"))
@@ -1150,6 +1155,7 @@ module Aws::DeviceFarm
1150
1155
  RemoteAccessSession.add_member(:skip_app_resign, Shapes::ShapeRef.new(shape: SkipAppResign, location_name: "skipAppResign"))
1151
1156
  RemoteAccessSession.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
1152
1157
  RemoteAccessSession.add_member(:device_proxy, Shapes::ShapeRef.new(shape: DeviceProxy, location_name: "deviceProxy"))
1158
+ RemoteAccessSession.add_member(:app_upload, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "appUpload"))
1153
1159
  RemoteAccessSession.struct_class = Types::RemoteAccessSession
1154
1160
 
1155
1161
  RemoteAccessSessions.member = Shapes::ShapeRef.new(shape: RemoteAccessSession)
@@ -13,22 +13,22 @@ module Aws::DeviceFarm
13
13
  # @!attribute region
14
14
  # The AWS region used to dispatch the request.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute use_dual_stack
19
19
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute use_fips
24
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
@@ -491,6 +491,11 @@ module Aws::DeviceFarm
491
491
  # Configuration settings for a remote access session, including billing
492
492
  # method.
493
493
  #
494
+ # @!attribute [rw] auxiliary_apps
495
+ # A list of upload ARNs for app packages to be installed onto your
496
+ # device. (Maximum 3)
497
+ # @return [Array<String>]
498
+ #
494
499
  # @!attribute [rw] billing_method
495
500
  # The billing method for the remote access session.
496
501
  # @return [String]
@@ -507,6 +512,7 @@ module Aws::DeviceFarm
507
512
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateRemoteAccessSessionConfiguration AWS API Documentation
508
513
  #
509
514
  class CreateRemoteAccessSessionConfiguration < Struct.new(
515
+ :auxiliary_apps,
510
516
  :billing_method,
511
517
  :vpce_configuration_arns,
512
518
  :device_proxy)
@@ -526,6 +532,11 @@ module Aws::DeviceFarm
526
532
  # session.
527
533
  # @return [String]
528
534
  #
535
+ # @!attribute [rw] app_arn
536
+ # The Amazon Resource Name (ARN) of the app to create the remote
537
+ # access session.
538
+ # @return [String]
539
+ #
529
540
  # @!attribute [rw] instance_arn
530
541
  # The Amazon Resource Name (ARN) of the device instance for which you
531
542
  # want to create a remote access session.
@@ -620,6 +631,7 @@ module Aws::DeviceFarm
620
631
  class CreateRemoteAccessSessionRequest < Struct.new(
621
632
  :project_arn,
622
633
  :device_arn,
634
+ :app_arn,
623
635
  :instance_arn,
624
636
  :ssh_public_key,
625
637
  :remote_debug_enabled,
@@ -4439,6 +4451,10 @@ module Aws::DeviceFarm
4439
4451
  # The device proxy configured for the remote access session.
4440
4452
  # @return [Types::DeviceProxy]
4441
4453
  #
4454
+ # @!attribute [rw] app_upload
4455
+ # The ARN for the app to be installed onto your device.
4456
+ # @return [String]
4457
+ #
4442
4458
  # @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/RemoteAccessSession AWS API Documentation
4443
4459
  #
4444
4460
  class RemoteAccessSession < Struct.new(
@@ -4464,7 +4480,8 @@ module Aws::DeviceFarm
4464
4480
  :interaction_mode,
4465
4481
  :skip_app_resign,
4466
4482
  :vpc_config,
4467
- :device_proxy)
4483
+ :device_proxy,
4484
+ :app_upload)
4468
4485
  SENSITIVE = []
4469
4486
  include Aws::Structure
4470
4487
  end
@@ -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.95.0'
57
+ GEM_VERSION = '1.96.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -158,6 +158,7 @@ module Aws
158
158
  def create_remote_access_session: (
159
159
  project_arn: ::String,
160
160
  device_arn: ::String,
161
+ ?app_arn: ::String,
161
162
  ?instance_arn: ::String,
162
163
  ?ssh_public_key: ::String,
163
164
  ?remote_debug_enabled: bool,
@@ -166,6 +167,7 @@ module Aws
166
167
  ?name: ::String,
167
168
  ?client_id: ::String,
168
169
  ?configuration: {
170
+ auxiliary_apps: Array[::String]?,
169
171
  billing_method: ("METERED" | "UNMETERED")?,
170
172
  vpce_configuration_arns: Array[::String]?,
171
173
  device_proxy: {
data/sig/types.rbs CHANGED
@@ -119,6 +119,7 @@ module Aws::DeviceFarm
119
119
  end
120
120
 
121
121
  class CreateRemoteAccessSessionConfiguration
122
+ attr_accessor auxiliary_apps: ::Array[::String]
122
123
  attr_accessor billing_method: ("METERED" | "UNMETERED")
123
124
  attr_accessor vpce_configuration_arns: ::Array[::String]
124
125
  attr_accessor device_proxy: Types::DeviceProxy
@@ -128,6 +129,7 @@ module Aws::DeviceFarm
128
129
  class CreateRemoteAccessSessionRequest
129
130
  attr_accessor project_arn: ::String
130
131
  attr_accessor device_arn: ::String
132
+ attr_accessor app_arn: ::String
131
133
  attr_accessor instance_arn: ::String
132
134
  attr_accessor ssh_public_key: ::String
133
135
  attr_accessor remote_debug_enabled: bool
@@ -1066,6 +1068,7 @@ module Aws::DeviceFarm
1066
1068
  attr_accessor skip_app_resign: bool
1067
1069
  attr_accessor vpc_config: Types::VpcConfig
1068
1070
  attr_accessor device_proxy: Types::DeviceProxy
1071
+ attr_accessor app_upload: ::String
1069
1072
  SENSITIVE: []
1070
1073
  end
1071
1074
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-devicefarm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.95.0
4
+ version: 1.96.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services