google-apis-testing_v1 0.50.0 → 0.51.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: 10b236d9cf272d8d50e4eb317ea13ff690d8f8a7948b4e3c21d5da29228c9bb1
4
- data.tar.gz: 2b308cdc93b880a3b5752958741059f18c6b54f70f93800c16a4c0c23237d227
3
+ metadata.gz: 440e78130a202544e8ff47c951d6be8b92e2f2252dce81faedfde27c3e0bcb5f
4
+ data.tar.gz: 9d35948e5c06cce2da45b3fbc65c752b91c5b32b724ef3bda711f2577c8ae700
5
5
  SHA512:
6
- metadata.gz: 6f4b2cd31fb9eb85ad7d38ec8512853d98ec1f200eaa8125886179e5a2196804e83cde870ff3bd711f8de9d3bed93dbfe5ea586130f7e8d16c2cac1acbdf3482
7
- data.tar.gz: d6501fa02d2493673e4244f0db76fa6e132aee90c2cd661d4930355a67424a41e4b0535704f11bcd18e1d7b90fd168617c202c5ab69b8ef7307b36b1b73f0909
6
+ metadata.gz: 424f909725df7963b236255ae2e4608c29b45acb01b2ed247f9f873b428986a59cd7728cf2e1f417efb743c66db4d354f49b804346fc01efa8bab878c2e1f345
7
+ data.tar.gz: f178326381d7fb36f9922548206eed19ddeacd7a009a4f14d0dd7677ad940ed1bda16201f1111678e720dfcf8b3b121a2f865d5025a419830037aab1c108c29a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-testing_v1
2
2
 
3
+ ### v0.51.0 (2024-11-17)
4
+
5
+ * Regenerated from discovery document revision 20241105
6
+
3
7
  ### v0.50.0 (2024-09-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20240917
@@ -714,11 +714,16 @@ module Google
714
714
  # @return [Array<Google::Apis::TestingV1::UsesFeature>]
715
715
  attr_accessor :uses_feature
716
716
 
717
- # Permissions declared to be used by the application
717
+ #
718
718
  # Corresponds to the JSON property `usesPermission`
719
719
  # @return [Array<String>]
720
720
  attr_accessor :uses_permission
721
721
 
722
+ # Permissions declared to be used by the application
723
+ # Corresponds to the JSON property `usesPermissionTags`
724
+ # @return [Array<Google::Apis::TestingV1::UsesPermissionTag>]
725
+ attr_accessor :uses_permission_tags
726
+
722
727
  # Version number used internally by the app.
723
728
  # Corresponds to the JSON property `versionCode`
724
729
  # @return [Fixnum]
@@ -745,6 +750,7 @@ module Google
745
750
  @target_sdk_version = args[:target_sdk_version] if args.key?(:target_sdk_version)
746
751
  @uses_feature = args[:uses_feature] if args.key?(:uses_feature)
747
752
  @uses_permission = args[:uses_permission] if args.key?(:uses_permission)
753
+ @uses_permission_tags = args[:uses_permission_tags] if args.key?(:uses_permission_tags)
748
754
  @version_code = args[:version_code] if args.key?(:version_code)
749
755
  @version_name = args[:version_name] if args.key?(:version_name)
750
756
  end
@@ -3184,6 +3190,32 @@ module Google
3184
3190
  end
3185
3191
  end
3186
3192
 
3193
+ # The tag within a manifest. https://developer.android.com/guide/topics/manifest/
3194
+ # uses-permission-element.html
3195
+ class UsesPermissionTag
3196
+ include Google::Apis::Core::Hashable
3197
+
3198
+ # The android:name value
3199
+ # Corresponds to the JSON property `maxSdkVersion`
3200
+ # @return [Fixnum]
3201
+ attr_accessor :max_sdk_version
3202
+
3203
+ # The android:name value
3204
+ # Corresponds to the JSON property `name`
3205
+ # @return [String]
3206
+ attr_accessor :name
3207
+
3208
+ def initialize(**args)
3209
+ update!(**args)
3210
+ end
3211
+
3212
+ # Update properties of this object
3213
+ def update!(**args)
3214
+ @max_sdk_version = args[:max_sdk_version] if args.key?(:max_sdk_version)
3215
+ @name = args[:name] if args.key?(:name)
3216
+ end
3217
+ end
3218
+
3187
3219
  # An Xcode version that an iOS version is compatible with.
3188
3220
  class XcodeVersion
3189
3221
  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.50.0"
19
+ GEM_VERSION = "0.51.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240917"
25
+ REVISION = "20241105"
26
26
  end
27
27
  end
28
28
  end
@@ -532,6 +532,12 @@ module Google
532
532
  include Google::Apis::Core::JsonObjectSupport
533
533
  end
534
534
 
535
+ class UsesPermissionTag
536
+ class Representation < Google::Apis::Core::JsonRepresentation; end
537
+
538
+ include Google::Apis::Core::JsonObjectSupport
539
+ end
540
+
535
541
  class XcodeVersion
536
542
  class Representation < Google::Apis::Core::JsonRepresentation; end
537
543
 
@@ -723,6 +729,8 @@ module Google
723
729
  collection :uses_feature, as: 'usesFeature', class: Google::Apis::TestingV1::UsesFeature, decorator: Google::Apis::TestingV1::UsesFeature::Representation
724
730
 
725
731
  collection :uses_permission, as: 'usesPermission'
732
+ collection :uses_permission_tags, as: 'usesPermissionTags', class: Google::Apis::TestingV1::UsesPermissionTag, decorator: Google::Apis::TestingV1::UsesPermissionTag::Representation
733
+
726
734
  property :version_code, :numeric_string => true, as: 'versionCode'
727
735
  property :version_name, as: 'versionName'
728
736
  end
@@ -1448,6 +1456,14 @@ module Google
1448
1456
  end
1449
1457
  end
1450
1458
 
1459
+ class UsesPermissionTag
1460
+ # @private
1461
+ class Representation < Google::Apis::Core::JsonRepresentation
1462
+ property :max_sdk_version, as: 'maxSdkVersion'
1463
+ property :name, as: 'name'
1464
+ end
1465
+ end
1466
+
1451
1467
  class XcodeVersion
1452
1468
  # @private
1453
1469
  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.50.0
4
+ version: 0.51.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: 2024-09-22 00:00:00.000000000 Z
11
+ date: 2024-12-04 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.50.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.51.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.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Testing API V1