google-apis-testing_v1 0.27.0 → 0.29.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: 5dc31b09e263c0145e4aa9a36622228994ba39d8e4c704ed4e95b9f1eeddf665
4
- data.tar.gz: '08fbe4426da461be8251242748dcdcd216cf1086602d2e5f1bb7da9efc18260b'
3
+ metadata.gz: cb4fc09535992ba7e44b4cf54c0926ba931387fb2353a2232964c977c70bca2c
4
+ data.tar.gz: e43721b804249e649938edecb5f279388760560ec37a4c1e60900aceb070727c
5
5
  SHA512:
6
- metadata.gz: fd3112a0e1c6f1a792c30fd1e0af354444d011417480b50fc676ba175b40c4d73fa72ae88c6e4ea8cce57000350e6b1647504f7019d9f08eec2e5c4bfccacd68
7
- data.tar.gz: 8cfbde0235b1dc6a0d11ced170f15984de6a1711714b876f1582a2e416c755faf8737ecb76ed1c53cdeb927c123e8c870c036a8717c1c972bfd0d164eb6dbd22
6
+ metadata.gz: fc97ed3a2fb4e0b85bb585f5c8f3b1a01fc786e20dff258a6cd4e72c72749b347d840800851e27efd7268df24502e845dfa909cb0fbea0d5f81262f57c7b17f9
7
+ data.tar.gz: c3ff07c7dce913a8a86dda6f09f458c5bbc9b9b21b7baebc22324f2eaff1cee207df61b60236149693287c60503167e9a312cdc8cf6ee6d45b474306a1981559
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-testing_v1
2
2
 
3
+ ### v0.29.0 (2023-01-08)
4
+
5
+ * Regenerated from discovery document revision 20230103
6
+ * Regenerated using generator version 0.11.1
7
+
8
+ ### v0.28.0 (2022-11-19)
9
+
10
+ * Regenerated from discovery document revision 20221108
11
+
3
12
  ### v0.27.0 (2022-10-20)
4
13
 
5
14
  * Regenerated from discovery document revision 20221004
@@ -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)
@@ -1620,7 +1632,7 @@ module Google
1620
1632
  # manually-created shard. You must specify at least one shard if this field is
1621
1633
  # present. When you select one or more physical devices, the number of repeated
1622
1634
  # test_targets_for_shard must be <= 50. When you select one or more ARM virtual
1623
- # devices, it must be <= 50. When you select only x86 virtual devices, it must
1635
+ # devices, it must be <= 100. When you select only x86 virtual devices, it must
1624
1636
  # be <= 500.
1625
1637
  # Corresponds to the JSON property `testTargetsForShard`
1626
1638
  # @return [Array<Google::Apis::TestingV1::TestTargetsForShard>]
@@ -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
@@ -2617,8 +2655,8 @@ module Google
2617
2655
  # Required. The total number of shards to create. This must always be a positive
2618
2656
  # number that is no greater than the total number of test cases. When you select
2619
2657
  # one or more physical devices, the number of shards must be <= 50. When you
2620
- # select one or more ARM virtual devices, it must be <= 50. When you select only
2621
- # x86 virtual devices, it must be <= 500.
2658
+ # select one or more ARM virtual devices, it must be <= 100. When you select
2659
+ # only x86 virtual devices, it must be <= 500.
2622
2660
  # Corresponds to the JSON property `numShards`
2623
2661
  # @return [Fixnum]
2624
2662
  attr_accessor :num_shards
@@ -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.27.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221004"
25
+ REVISION = "20230103"
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.27.0
4
+ version: 0.29.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-10-26 00:00:00.000000000 Z
11
+ date: 2023-01-08 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.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.29.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Testing API V1