google-apis-androidmanagement_v1 0.100.0 → 0.101.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: 6912728b8a769c1eb2c9381e01b60a2c14370a8d6d849155c9b7a4fe7b70f321
4
- data.tar.gz: 169b2d55bc03636e2e832cb7c56be162d648532c1e7284aa06219d643a1e4310
3
+ metadata.gz: 741b6509c387f9f086c220b35f0f6a4ec389c1a89d4fc12f0d40432f3d8f0e4b
4
+ data.tar.gz: e455638e3c361cf69ad2cb0faf574c45a9e206c77e6bd9da7bc64e3cda07bde3
5
5
  SHA512:
6
- metadata.gz: 429dd1ce108167e30f44c85140251d118cfa7f2b63dfccc34c07d3667617024a6f195cc1c1f4f61f51cb5bb10be98991c901828bb027f609d4113e56107b4381
7
- data.tar.gz: 35f11f860feba4fb49540bd3c1389c479dc9e0afc474f9bbecd23abee6148bdd19150c659568ade8ec65489cd657d8963c0efeda5ec705feca0ecd71446ab85c
6
+ metadata.gz: 9e90a03f1b1d555444609b621aa76f04fe7e3ab9e3e528336b2f7011d386f70b9fa51dd629dad48f77339c459f859767e784f4301e4f8f183cdc43b666e9d639
7
+ data.tar.gz: 634e59c695471b6238474bdb09ef2e9dc6e0ce6603e8a6647de7bc2fcc3a97af930c19810e17a95e71426de907430bc35d20623214bfceed1a83a24c7b2360e6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidmanagement_v1
2
2
 
3
+ ### v0.101.0 (2025-09-28)
4
+
5
+ * Regenerated from discovery document revision 20250924
6
+
3
7
  ### v0.100.0 (2025-09-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20250916
@@ -3883,6 +3883,13 @@ module Google
3883
3883
  # @return [Array<Google::Apis::AndroidmanagementV1::Operation>]
3884
3884
  attr_accessor :operations
3885
3885
 
3886
+ # Unordered list. Unreachable resources. Populated when the request sets
3887
+ # ListOperationsRequest.return_partial_success and reads across collections e.g.
3888
+ # when attempting to list all resources across all supported locations.
3889
+ # Corresponds to the JSON property `unreachable`
3890
+ # @return [Array<String>]
3891
+ attr_accessor :unreachable
3892
+
3886
3893
  def initialize(**args)
3887
3894
  update!(**args)
3888
3895
  end
@@ -3891,6 +3898,7 @@ module Google
3891
3898
  def update!(**args)
3892
3899
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3893
3900
  @operations = args[:operations] if args.key?(:operations)
3901
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
3894
3902
  end
3895
3903
  end
3896
3904
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AndroidmanagementV1
18
18
  # Version of the google-apis-androidmanagement_v1 gem
19
- GEM_VERSION = "0.100.0"
19
+ GEM_VERSION = "0.101.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250916"
25
+ REVISION = "20250924"
26
26
  end
27
27
  end
28
28
  end
@@ -1978,6 +1978,7 @@ module Google
1978
1978
  property :next_page_token, as: 'nextPageToken'
1979
1979
  collection :operations, as: 'operations', class: Google::Apis::AndroidmanagementV1::Operation, decorator: Google::Apis::AndroidmanagementV1::Operation::Representation
1980
1980
 
1981
+ collection :unreachable, as: 'unreachable'
1981
1982
  end
1982
1983
  end
1983
1984
 
@@ -585,6 +585,13 @@ module Google
585
585
  # The standard list page size.
586
586
  # @param [String] page_token
587
587
  # The standard list page token.
588
+ # @param [Boolean] return_partial_success
589
+ # When set to true, operations that are reachable are returned as normal, and
590
+ # those that are unreachable are returned in the ListOperationsResponse.
591
+ # unreachable field.This can only be true when reading across collections e.g.
592
+ # when parent is set to "projects/example/locations/-".This field is not by
593
+ # default supported and will result in an UNIMPLEMENTED error if set unless
594
+ # explicitly documented otherwise in service or product specific documentation.
588
595
  # @param [String] fields
589
596
  # Selector specifying which fields to include in a partial response.
590
597
  # @param [String] quota_user
@@ -602,7 +609,7 @@ module Google
602
609
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
603
610
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
604
611
  # @raise [Google::Apis::AuthorizationError] Authorization is required
605
- def list_enterprise_device_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
612
+ def list_enterprise_device_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
606
613
  command = make_simple_command(:get, 'v1/{+name}', options)
607
614
  command.response_representation = Google::Apis::AndroidmanagementV1::ListOperationsResponse::Representation
608
615
  command.response_class = Google::Apis::AndroidmanagementV1::ListOperationsResponse
@@ -610,6 +617,7 @@ module Google
610
617
  command.query['filter'] = filter unless filter.nil?
611
618
  command.query['pageSize'] = page_size unless page_size.nil?
612
619
  command.query['pageToken'] = page_token unless page_token.nil?
620
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
613
621
  command.query['fields'] = fields unless fields.nil?
614
622
  command.query['quotaUser'] = quota_user unless quota_user.nil?
615
623
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-androidmanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.100.0
4
+ version: 0.101.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.100.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.101.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1
62
62
  rdoc_options: []
63
63
  require_paths: