google-apis-androidenterprise_v1 0.13.0 → 0.15.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: dc2fb5a800fe809ac8d4a337c002bd91f608761a2f0ac08c3878d8b007a4aee4
4
- data.tar.gz: d9b83432c6b11707e7b64ffead2a00e041f149a80c32dc9b1eac3d9ec8aea402
3
+ metadata.gz: da3eaaca9ef3bdbb6a913c2802811cc84d7df8c6ebe764d21231af3a934f45f1
4
+ data.tar.gz: 9803be94efaf1be1c6d3fd02f218cc18798e4fba923ba62b6a6e655de53b3e85
5
5
  SHA512:
6
- metadata.gz: 9910cfb782ca61de91a26ffe18335cb587d9d9919e2c36a370eac0181bdb3f81ff3ac3689401707a9062cf10ee102cf9978d7bbea07e3f90c279ab62f9c04fc3
7
- data.tar.gz: 348aeddb7576a084bc0cf5d15d65053e58fc2ecdb1d6c8da842bf11f6c3ceaaf62ddbe4aca9d365536bc90ce964b171e3301981e6fcd00e9db7d9008c36559c7
6
+ metadata.gz: dff8075a88967fbcbd8ba6899ddc79fe6803ecafb5ae5573f2acb9e4c7a21b50164b0279d9ceeca3f37ab75b733b3f8b5398e7b8c1e7f77958cbdeab4c15daa6
7
+ data.tar.gz: 4ea264710e692f034bd6d63631e36454d0160ef51bbd7293fc2bd14b6fe184f124d352b81a8a2afeb87346de157270337494d287acaf65d3488f82f82abba075
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-androidenterprise_v1
2
2
 
3
+ ### v0.15.0 (2022-09-13)
4
+
5
+ * Regenerated from discovery document revision 20220910
6
+
7
+ ### v0.14.0 (2022-07-22)
8
+
9
+ * Regenerated from discovery document revision 20220720
10
+ * Regenerated using generator version 0.9.0
11
+
3
12
  ### v0.13.0 (2022-06-30)
4
13
 
5
14
  * Regenerated using generator version 0.8.0
@@ -1886,6 +1886,12 @@ module Google
1886
1886
  class Product
1887
1887
  include Google::Apis::Core::Hashable
1888
1888
 
1889
+ # Represents the list of app restrictions available to be pre-configured for the
1890
+ # product.
1891
+ # Corresponds to the JSON property `appRestrictionsSchema`
1892
+ # @return [Google::Apis::AndroidenterpriseV1::AppRestrictionsSchema]
1893
+ attr_accessor :app_restrictions_schema
1894
+
1889
1895
  # The tracks visible to the enterprise.
1890
1896
  # Corresponds to the JSON property `appTracks`
1891
1897
  # @return [Array<Google::Apis::AndroidenterpriseV1::TrackInfo>]
@@ -2025,6 +2031,7 @@ module Google
2025
2031
 
2026
2032
  # Update properties of this object
2027
2033
  def update!(**args)
2034
+ @app_restrictions_schema = args[:app_restrictions_schema] if args.key?(:app_restrictions_schema)
2028
2035
  @app_tracks = args[:app_tracks] if args.key?(:app_tracks)
2029
2036
  @app_version = args[:app_version] if args.key?(:app_version)
2030
2037
  @author_name = args[:author_name] if args.key?(:author_name)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AndroidenterpriseV1
18
18
  # Version of the google-apis-androidenterprise_v1 gem
19
- GEM_VERSION = "0.13.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.8.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220407"
25
+ REVISION = "20220910"
26
26
  end
27
27
  end
28
28
  end
@@ -1063,6 +1063,8 @@ module Google
1063
1063
  class Product
1064
1064
  # @private
1065
1065
  class Representation < Google::Apis::Core::JsonRepresentation
1066
+ property :app_restrictions_schema, as: 'appRestrictionsSchema', class: Google::Apis::AndroidenterpriseV1::AppRestrictionsSchema, decorator: Google::Apis::AndroidenterpriseV1::AppRestrictionsSchema::Representation
1067
+
1066
1068
  collection :app_tracks, as: 'appTracks', class: Google::Apis::AndroidenterpriseV1::TrackInfo, decorator: Google::Apis::AndroidenterpriseV1::TrackInfo::Representation
1067
1069
 
1068
1070
  collection :app_version, as: 'appVersion', class: Google::Apis::AndroidenterpriseV1::AppVersion, decorator: Google::Apis::AndroidenterpriseV1::AppVersion::Representation
@@ -775,7 +775,9 @@ module Google
775
775
  execute_or_queue_command(command, &block)
776
776
  end
777
777
 
778
- # Removes an entitlement to an app for a user.
778
+ # Removes an entitlement to an app for a user. **Note:** This item has been
779
+ # deprecated. New integrations cannot use this method and can refer to our new
780
+ # recommendations.
779
781
  # @param [String] enterprise_id
780
782
  # The ID of the enterprise.
781
783
  # @param [String] user_id
@@ -809,7 +811,9 @@ module Google
809
811
  execute_or_queue_command(command, &block)
810
812
  end
811
813
 
812
- # Retrieves details of an entitlement.
814
+ # Retrieves details of an entitlement. **Note:** This item has been deprecated.
815
+ # New integrations cannot use this method and can refer to our new
816
+ # recommendations.
813
817
  # @param [String] enterprise_id
814
818
  # The ID of the enterprise.
815
819
  # @param [String] user_id
@@ -845,7 +849,9 @@ module Google
845
849
  execute_or_queue_command(command, &block)
846
850
  end
847
851
 
848
- # Lists all entitlements for the specified user. Only the ID is set.
852
+ # Lists all entitlements for the specified user. Only the ID is set. **Note:**
853
+ # This item has been deprecated. New integrations cannot use this method and can
854
+ # refer to our new recommendations.
849
855
  # @param [String] enterprise_id
850
856
  # The ID of the enterprise.
851
857
  # @param [String] user_id
@@ -878,7 +884,9 @@ module Google
878
884
  execute_or_queue_command(command, &block)
879
885
  end
880
886
 
881
- # Adds or updates an entitlement to an app for a user.
887
+ # Adds or updates an entitlement to an app for a user. **Note:** This item has
888
+ # been deprecated. New integrations cannot use this method and can refer to our
889
+ # new recommendations.
882
890
  # @param [String] enterprise_id
883
891
  # The ID of the enterprise.
884
892
  # @param [String] user_id
@@ -923,7 +931,9 @@ module Google
923
931
  execute_or_queue_command(command, &block)
924
932
  end
925
933
 
926
- # Retrieves details of an enterprise's group license for a product.
934
+ # Retrieves details of an enterprise's group license for a product. **Note:**
935
+ # This item has been deprecated. New integrations cannot use this method and can
936
+ # refer to our new recommendations.
927
937
  # @param [String] enterprise_id
928
938
  # The ID of the enterprise.
929
939
  # @param [String] group_license_id
@@ -957,7 +967,9 @@ module Google
957
967
  execute_or_queue_command(command, &block)
958
968
  end
959
969
 
960
- # Retrieves IDs of all products for which the enterprise has a group license.
970
+ # Retrieves IDs of all products for which the enterprise has a group license. **
971
+ # Note:** This item has been deprecated. New integrations cannot use this method
972
+ # and can refer to our new recommendations.
961
973
  # @param [String] enterprise_id
962
974
  # The ID of the enterprise.
963
975
  # @param [String] fields
@@ -988,7 +1000,8 @@ module Google
988
1000
  end
989
1001
 
990
1002
  # Retrieves the IDs of the users who have been granted entitlements under the
991
- # license.
1003
+ # license. **Note:** This item has been deprecated. New integrations cannot use
1004
+ # this method and can refer to our new recommendations.
992
1005
  # @param [String] enterprise_id
993
1006
  # The ID of the enterprise.
994
1007
  # @param [String] group_license_id
@@ -1561,7 +1574,9 @@ module Google
1561
1574
  # Approves the specified product and the relevant app permissions, if any. The
1562
1575
  # maximum number of products that you can approve per enterprise customer is 1,
1563
1576
  # 000. To learn how to use managed Google Play to design and create a store
1564
- # layout to display approved products to your users, see Store Layout Design.
1577
+ # layout to display approved products to your users, see Store Layout Design. **
1578
+ # Note:** This item has been deprecated. New integrations cannot use this method
1579
+ # and can refer to our new recommendations.
1565
1580
  # @param [String] enterprise_id
1566
1581
  # The ID of the enterprise.
1567
1582
  # @param [String] product_id
@@ -1602,7 +1617,8 @@ module Google
1602
1617
  # UI element in the EMM console, which in turn should trigger the use of this
1603
1618
  # URL as the approvalUrlInfo.approvalUrl property in a Products.approve call to
1604
1619
  # approve the product. This URL can only be used to display permissions for up
1605
- # to 1 day.
1620
+ # to 1 day. **Note:** This item has been deprecated. New integrations cannot use
1621
+ # this method and can refer to our new recommendations.
1606
1622
  # @param [String] enterprise_id
1607
1623
  # The ID of the enterprise.
1608
1624
  # @param [String] product_id
@@ -1750,7 +1766,8 @@ module Google
1750
1766
  end
1751
1767
 
1752
1768
  # Finds approved products that match a query, or all approved products if there
1753
- # is no query.
1769
+ # is no query. **Note:** This item has been deprecated. New integrations cannot
1770
+ # use this method and can refer to our new recommendations.
1754
1771
  # @param [String] enterprise_id
1755
1772
  # The ID of the enterprise.
1756
1773
  # @param [Boolean] approved
@@ -1802,7 +1819,9 @@ module Google
1802
1819
  execute_or_queue_command(command, &block)
1803
1820
  end
1804
1821
 
1805
- # Unapproves the specified product (and the relevant app permissions, if any)
1822
+ # Unapproves the specified product (and the relevant app permissions, if any) **
1823
+ # Note:** This item has been deprecated. New integrations cannot use this method
1824
+ # and can refer to our new recommendations.
1806
1825
  # @param [String] enterprise_id
1807
1826
  # The ID of the enterprise.
1808
1827
  # @param [String] product_id
@@ -2379,7 +2398,9 @@ module Google
2379
2398
  execute_or_queue_command(command, &block)
2380
2399
  end
2381
2400
 
2382
- # Retrieves the set of products a user is entitled to access.
2401
+ # Retrieves the set of products a user is entitled to access. **Note:** This
2402
+ # item has been deprecated. New integrations cannot use this method and can
2403
+ # refer to our new recommendations.
2383
2404
  # @param [String] enterprise_id
2384
2405
  # The ID of the enterprise.
2385
2406
  # @param [String] user_id
@@ -2519,7 +2540,9 @@ module Google
2519
2540
 
2520
2541
  # Modifies the set of products that a user is entitled to access (referred to as
2521
2542
  # *whitelisted* products). Only products that are approved or products that were
2522
- # previously approved (products with revoked approval) can be whitelisted.
2543
+ # previously approved (products with revoked approval) can be whitelisted. **
2544
+ # Note:** This item has been deprecated. New integrations cannot use this method
2545
+ # and can refer to our new recommendations.
2523
2546
  # @param [String] enterprise_id
2524
2547
  # The ID of the enterprise.
2525
2548
  # @param [String] user_id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-androidenterprise_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.15.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-07-04 00:00:00.000000000 Z
11
+ date: 2022-09-19 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-androidenterprise_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.15.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidenterprise_v1
63
63
  post_install_message:
64
64
  rdoc_options: []