google-apis-testing_v1 0.33.0 → 0.34.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6270f72bf6b64c710aa766b0cd4ac33266158e39d34fb64d61b6014aaefc71bf
|
4
|
+
data.tar.gz: a83bf4ab465dc5e310111ceee89454eb177986faaa0e5ab63dca3e6c3a702b08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b39816aae38428bbde94ace7204020a121816881f1a0d6bdc09f1775365edba4188dad4284a965076be373f5a81e7342c4ed9d9f0aed464c731cd7acc638e74
|
7
|
+
data.tar.gz: 445ceadd0c0ee6a43e263dcf8ca4a799461a93ba540d395ca974bd8774c4339dd356c4d093a2994a9f8aa53e28b73abab3b8d9531452d7316909dc89c74ef21d
|
data/CHANGELOG.md
CHANGED
@@ -694,6 +694,11 @@ module Google
|
|
694
694
|
# @return [String]
|
695
695
|
attr_accessor :package_name
|
696
696
|
|
697
|
+
# Services contained in the tag.
|
698
|
+
# Corresponds to the JSON property `services`
|
699
|
+
# @return [Array<Google::Apis::TestingV1::Service>]
|
700
|
+
attr_accessor :services
|
701
|
+
|
697
702
|
# Specifies the API Level on which the application is designed to run.
|
698
703
|
# Corresponds to the JSON property `targetSdkVersion`
|
699
704
|
# @return [Fixnum]
|
@@ -731,6 +736,7 @@ module Google
|
|
731
736
|
@metadata = args[:metadata] if args.key?(:metadata)
|
732
737
|
@min_sdk_version = args[:min_sdk_version] if args.key?(:min_sdk_version)
|
733
738
|
@package_name = args[:package_name] if args.key?(:package_name)
|
739
|
+
@services = args[:services] if args.key?(:services)
|
734
740
|
@target_sdk_version = args[:target_sdk_version] if args.key?(:target_sdk_version)
|
735
741
|
@uses_feature = args[:uses_feature] if args.key?(:uses_feature)
|
736
742
|
@uses_permission = args[:uses_permission] if args.key?(:uses_permission)
|
@@ -2014,6 +2020,32 @@ module Google
|
|
2014
2020
|
end
|
2015
2021
|
end
|
2016
2022
|
|
2023
|
+
# The section of an tag. https://developer.android.com/guide/topics/manifest/
|
2024
|
+
# service-element
|
2025
|
+
class Service
|
2026
|
+
include Google::Apis::Core::Hashable
|
2027
|
+
|
2028
|
+
# Intent filters in the service
|
2029
|
+
# Corresponds to the JSON property `intentFilter`
|
2030
|
+
# @return [Array<Google::Apis::TestingV1::IntentFilter>]
|
2031
|
+
attr_accessor :intent_filter
|
2032
|
+
|
2033
|
+
# The android:name value
|
2034
|
+
# Corresponds to the JSON property `name`
|
2035
|
+
# @return [String]
|
2036
|
+
attr_accessor :name
|
2037
|
+
|
2038
|
+
def initialize(**args)
|
2039
|
+
update!(**args)
|
2040
|
+
end
|
2041
|
+
|
2042
|
+
# Update properties of this object
|
2043
|
+
def update!(**args)
|
2044
|
+
@intent_filter = args[:intent_filter] if args.key?(:intent_filter)
|
2045
|
+
@name = args[:name] if args.key?(:name)
|
2046
|
+
end
|
2047
|
+
end
|
2048
|
+
|
2017
2049
|
# Output only. Details about the shard.
|
2018
2050
|
class Shard
|
2019
2051
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TestingV1
|
18
18
|
# Version of the google-apis-testing_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.34.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230512"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -358,6 +358,12 @@ module Google
|
|
358
358
|
include Google::Apis::Core::JsonObjectSupport
|
359
359
|
end
|
360
360
|
|
361
|
+
class Service
|
362
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
|
+
|
364
|
+
include Google::Apis::Core::JsonObjectSupport
|
365
|
+
end
|
366
|
+
|
361
367
|
class Shard
|
362
368
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
369
|
|
@@ -649,6 +655,8 @@ module Google
|
|
649
655
|
|
650
656
|
property :min_sdk_version, as: 'minSdkVersion'
|
651
657
|
property :package_name, as: 'packageName'
|
658
|
+
collection :services, as: 'services', class: Google::Apis::TestingV1::Service, decorator: Google::Apis::TestingV1::Service::Representation
|
659
|
+
|
652
660
|
property :target_sdk_version, as: 'targetSdkVersion'
|
653
661
|
collection :uses_feature, as: 'usesFeature', class: Google::Apis::TestingV1::UsesFeature, decorator: Google::Apis::TestingV1::UsesFeature::Representation
|
654
662
|
|
@@ -1053,6 +1061,15 @@ module Google
|
|
1053
1061
|
end
|
1054
1062
|
end
|
1055
1063
|
|
1064
|
+
class Service
|
1065
|
+
# @private
|
1066
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1067
|
+
collection :intent_filter, as: 'intentFilter', class: Google::Apis::TestingV1::IntentFilter, decorator: Google::Apis::TestingV1::IntentFilter::Representation
|
1068
|
+
|
1069
|
+
property :name, as: 'name'
|
1070
|
+
end
|
1071
|
+
end
|
1072
|
+
|
1056
1073
|
class Shard
|
1057
1074
|
# @private
|
1058
1075
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-testing_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.34.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.34.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|