aws-sdk-devicefarm 1.5.0 → 1.6.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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7914999b766d25b67ce1437a066ed2943c11a4f7
|
|
4
|
+
data.tar.gz: 05c879c950d3c72a8f005172e3bcc8bb440a03ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 161c240ef1a2613ab6abebf072243fc9ac5ce6e5d8685ff15dea1370e3ddaf3cd562a4b0560dcbc03d40b841145edbc7a608b46b2a858283f1fe65982846dc6c
|
|
7
|
+
data.tar.gz: 2e8b97874e919cb8c7850dae0f29f9d6152eeeb03919634e3bc912921293b331f75aa5be5323c92b9e1bac4b9eedd6f309d8fc31dd81b00eb385df91875bad6f
|
data/lib/aws-sdk-devicefarm.rb
CHANGED
|
@@ -540,6 +540,7 @@ module Aws::DeviceFarm
|
|
|
540
540
|
# client_id: "ClientId",
|
|
541
541
|
# configuration: {
|
|
542
542
|
# billing_method: "METERED", # accepts METERED, UNMETERED
|
|
543
|
+
# vpce_configuration_arns: ["AmazonResourceName"],
|
|
543
544
|
# },
|
|
544
545
|
# interaction_mode: "INTERACTIVE", # accepts INTERACTIVE, NO_VIDEO, VIDEO_ONLY
|
|
545
546
|
# skip_app_resign: false,
|
|
@@ -4758,7 +4759,7 @@ module Aws::DeviceFarm
|
|
|
4758
4759
|
params: params,
|
|
4759
4760
|
config: config)
|
|
4760
4761
|
context[:gem_name] = 'aws-sdk-devicefarm'
|
|
4761
|
-
context[:gem_version] = '1.
|
|
4762
|
+
context[:gem_version] = '1.6.0'
|
|
4762
4763
|
Seahorse::Client::Request.new(handlers, context)
|
|
4763
4764
|
end
|
|
4764
4765
|
|
|
@@ -351,6 +351,7 @@ module Aws::DeviceFarm
|
|
|
351
351
|
CreateProjectResult.struct_class = Types::CreateProjectResult
|
|
352
352
|
|
|
353
353
|
CreateRemoteAccessSessionConfiguration.add_member(:billing_method, Shapes::ShapeRef.new(shape: BillingMethod, location_name: "billingMethod"))
|
|
354
|
+
CreateRemoteAccessSessionConfiguration.add_member(:vpce_configuration_arns, Shapes::ShapeRef.new(shape: AmazonResourceNames, location_name: "vpceConfigurationArns"))
|
|
354
355
|
CreateRemoteAccessSessionConfiguration.struct_class = Types::CreateRemoteAccessSessionConfiguration
|
|
355
356
|
|
|
356
357
|
CreateRemoteAccessSessionRequest.add_member(:project_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "projectArn"))
|
|
@@ -499,16 +499,23 @@ module Aws::DeviceFarm
|
|
|
499
499
|
#
|
|
500
500
|
# {
|
|
501
501
|
# billing_method: "METERED", # accepts METERED, UNMETERED
|
|
502
|
+
# vpce_configuration_arns: ["AmazonResourceName"],
|
|
502
503
|
# }
|
|
503
504
|
#
|
|
504
505
|
# @!attribute [rw] billing_method
|
|
505
506
|
# The billing method for the remote access session.
|
|
506
507
|
# @return [String]
|
|
507
508
|
#
|
|
509
|
+
# @!attribute [rw] vpce_configuration_arns
|
|
510
|
+
# An array of Amazon Resource Names (ARNs) included in the VPC
|
|
511
|
+
# endpoint configuration.
|
|
512
|
+
# @return [Array<String>]
|
|
513
|
+
#
|
|
508
514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/CreateRemoteAccessSessionConfiguration AWS API Documentation
|
|
509
515
|
#
|
|
510
516
|
class CreateRemoteAccessSessionConfiguration < Struct.new(
|
|
511
|
-
:billing_method
|
|
517
|
+
:billing_method,
|
|
518
|
+
:vpce_configuration_arns)
|
|
512
519
|
include Aws::Structure
|
|
513
520
|
end
|
|
514
521
|
|
|
@@ -529,6 +536,7 @@ module Aws::DeviceFarm
|
|
|
529
536
|
# client_id: "ClientId",
|
|
530
537
|
# configuration: {
|
|
531
538
|
# billing_method: "METERED", # accepts METERED, UNMETERED
|
|
539
|
+
# vpce_configuration_arns: ["AmazonResourceName"],
|
|
532
540
|
# },
|
|
533
541
|
# interaction_mode: "INTERACTIVE", # accepts INTERACTIVE, NO_VIDEO, VIDEO_ONLY
|
|
534
542
|
# skip_app_resign: false,
|
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.6.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: 2018-
|
|
11
|
+
date: 2018-06-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
version: '0'
|
|
76
76
|
requirements: []
|
|
77
77
|
rubyforge_project:
|
|
78
|
-
rubygems_version: 2.5.2.
|
|
78
|
+
rubygems_version: 2.5.2.3
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: AWS SDK for Ruby - AWS Device Farm
|