google-apis-testing_v1 0.27.0 → 0.28.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:
|
4
|
-
data.tar.gz: '
|
3
|
+
metadata.gz: 6e896f258d2cbc3c594ec563271ae9be9e1daf1300adf9e50f9bdb510876e6b8
|
4
|
+
data.tar.gz: '0419311142a2e1a66e0580999cd81f134d4c7101b56e508e1ccf87daa63bab8c'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 474ef1b230cd257a875bed5a419608232ab7d90c2e7b9e5e5df6626034d84d192d829ea25a0bbeb563805416c09d2a2a6d62cca3adba2c8a21df4a3c1189c6dd
|
7
|
+
data.tar.gz: 10d34d46a55e6e41304cf42e8914b28b43f63b626a8b7a09ef00ff7c73bf27a80482a53a5ebe01632906134ec4a42066f7a5385621f777383badf85dbac5bc65
|
data/CHANGELOG.md
CHANGED
@@ -673,6 +673,11 @@ module Google
|
|
673
673
|
# @return [Fixnum]
|
674
674
|
attr_accessor :max_sdk_version
|
675
675
|
|
676
|
+
# Meta-data tags defined in the manifest.
|
677
|
+
# Corresponds to the JSON property `metadata`
|
678
|
+
# @return [Array<Google::Apis::TestingV1::Metadata>]
|
679
|
+
attr_accessor :metadata
|
680
|
+
|
676
681
|
# Minimum API level required for the application to run.
|
677
682
|
# Corresponds to the JSON property `minSdkVersion`
|
678
683
|
# @return [Fixnum]
|
@@ -688,6 +693,11 @@ module Google
|
|
688
693
|
# @return [Fixnum]
|
689
694
|
attr_accessor :target_sdk_version
|
690
695
|
|
696
|
+
# Feature usage tags defined in the manifest.
|
697
|
+
# Corresponds to the JSON property `usesFeature`
|
698
|
+
# @return [Array<Google::Apis::TestingV1::UsesFeature>]
|
699
|
+
attr_accessor :uses_feature
|
700
|
+
|
691
701
|
# Permissions declared to be used by the application
|
692
702
|
# Corresponds to the JSON property `usesPermission`
|
693
703
|
# @return [Array<String>]
|
@@ -712,9 +722,11 @@ module Google
|
|
712
722
|
@application_label = args[:application_label] if args.key?(:application_label)
|
713
723
|
@intent_filters = args[:intent_filters] if args.key?(:intent_filters)
|
714
724
|
@max_sdk_version = args[:max_sdk_version] if args.key?(:max_sdk_version)
|
725
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
715
726
|
@min_sdk_version = args[:min_sdk_version] if args.key?(:min_sdk_version)
|
716
727
|
@package_name = args[:package_name] if args.key?(:package_name)
|
717
728
|
@target_sdk_version = args[:target_sdk_version] if args.key?(:target_sdk_version)
|
729
|
+
@uses_feature = args[:uses_feature] if args.key?(:uses_feature)
|
718
730
|
@uses_permission = args[:uses_permission] if args.key?(:uses_permission)
|
719
731
|
@version_code = args[:version_code] if args.key?(:version_code)
|
720
732
|
@version_name = args[:version_name] if args.key?(:version_name)
|
@@ -1636,6 +1648,32 @@ module Google
|
|
1636
1648
|
end
|
1637
1649
|
end
|
1638
1650
|
|
1651
|
+
# A tag within a manifest. https://developer.android.com/guide/topics/manifest/
|
1652
|
+
# meta-data-element.html
|
1653
|
+
class Metadata
|
1654
|
+
include Google::Apis::Core::Hashable
|
1655
|
+
|
1656
|
+
# The android:name value
|
1657
|
+
# Corresponds to the JSON property `name`
|
1658
|
+
# @return [String]
|
1659
|
+
attr_accessor :name
|
1660
|
+
|
1661
|
+
# The android:value value
|
1662
|
+
# Corresponds to the JSON property `value`
|
1663
|
+
# @return [String]
|
1664
|
+
attr_accessor :value
|
1665
|
+
|
1666
|
+
def initialize(**args)
|
1667
|
+
update!(**args)
|
1668
|
+
end
|
1669
|
+
|
1670
|
+
# Update properties of this object
|
1671
|
+
def update!(**args)
|
1672
|
+
@name = args[:name] if args.key?(:name)
|
1673
|
+
@value = args[:value] if args.key?(:value)
|
1674
|
+
end
|
1675
|
+
end
|
1676
|
+
|
1639
1677
|
#
|
1640
1678
|
class NetworkConfiguration
|
1641
1679
|
include Google::Apis::Core::Hashable
|
@@ -2633,6 +2671,33 @@ module Google
|
|
2633
2671
|
end
|
2634
2672
|
end
|
2635
2673
|
|
2674
|
+
# A tag within a manifest. https://developer.android.com/guide/topics/manifest/
|
2675
|
+
# uses-feature-element.html
|
2676
|
+
class UsesFeature
|
2677
|
+
include Google::Apis::Core::Hashable
|
2678
|
+
|
2679
|
+
# The android:required value
|
2680
|
+
# Corresponds to the JSON property `isRequired`
|
2681
|
+
# @return [Boolean]
|
2682
|
+
attr_accessor :is_required
|
2683
|
+
alias_method :is_required?, :is_required
|
2684
|
+
|
2685
|
+
# The android:name value
|
2686
|
+
# Corresponds to the JSON property `name`
|
2687
|
+
# @return [String]
|
2688
|
+
attr_accessor :name
|
2689
|
+
|
2690
|
+
def initialize(**args)
|
2691
|
+
update!(**args)
|
2692
|
+
end
|
2693
|
+
|
2694
|
+
# Update properties of this object
|
2695
|
+
def update!(**args)
|
2696
|
+
@is_required = args[:is_required] if args.key?(:is_required)
|
2697
|
+
@name = args[:name] if args.key?(:name)
|
2698
|
+
end
|
2699
|
+
end
|
2700
|
+
|
2636
2701
|
# An Xcode version that an iOS version is compatible with.
|
2637
2702
|
class XcodeVersion
|
2638
2703
|
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.28.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221108"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -286,6 +286,12 @@ module Google
|
|
286
286
|
include Google::Apis::Core::JsonObjectSupport
|
287
287
|
end
|
288
288
|
|
289
|
+
class Metadata
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
289
295
|
class NetworkConfiguration
|
290
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
297
|
|
@@ -436,6 +442,12 @@ module Google
|
|
436
442
|
include Google::Apis::Core::JsonObjectSupport
|
437
443
|
end
|
438
444
|
|
445
|
+
class UsesFeature
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
+
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
449
|
+
end
|
450
|
+
|
439
451
|
class XcodeVersion
|
440
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
453
|
|
@@ -613,9 +625,13 @@ module Google
|
|
613
625
|
collection :intent_filters, as: 'intentFilters', class: Google::Apis::TestingV1::IntentFilter, decorator: Google::Apis::TestingV1::IntentFilter::Representation
|
614
626
|
|
615
627
|
property :max_sdk_version, as: 'maxSdkVersion'
|
628
|
+
collection :metadata, as: 'metadata', class: Google::Apis::TestingV1::Metadata, decorator: Google::Apis::TestingV1::Metadata::Representation
|
629
|
+
|
616
630
|
property :min_sdk_version, as: 'minSdkVersion'
|
617
631
|
property :package_name, as: 'packageName'
|
618
632
|
property :target_sdk_version, as: 'targetSdkVersion'
|
633
|
+
collection :uses_feature, as: 'usesFeature', class: Google::Apis::TestingV1::UsesFeature, decorator: Google::Apis::TestingV1::UsesFeature::Representation
|
634
|
+
|
619
635
|
collection :uses_permission, as: 'usesPermission'
|
620
636
|
property :version_code, :numeric_string => true, as: 'versionCode'
|
621
637
|
property :version_name, as: 'versionName'
|
@@ -904,6 +920,14 @@ module Google
|
|
904
920
|
end
|
905
921
|
end
|
906
922
|
|
923
|
+
class Metadata
|
924
|
+
# @private
|
925
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
926
|
+
property :name, as: 'name'
|
927
|
+
property :value, as: 'value'
|
928
|
+
end
|
929
|
+
end
|
930
|
+
|
907
931
|
class NetworkConfiguration
|
908
932
|
# @private
|
909
933
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1190,6 +1214,14 @@ module Google
|
|
1190
1214
|
end
|
1191
1215
|
end
|
1192
1216
|
|
1217
|
+
class UsesFeature
|
1218
|
+
# @private
|
1219
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1220
|
+
property :is_required, as: 'isRequired'
|
1221
|
+
property :name, as: 'name'
|
1222
|
+
end
|
1223
|
+
end
|
1224
|
+
|
1193
1225
|
class XcodeVersion
|
1194
1226
|
# @private
|
1195
1227
|
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.28.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: 2022-
|
11
|
+
date: 2022-12-12 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.28.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: []
|