google-apis-osconfig_v2 0.3.0 → 0.4.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: 1ed72cc31763f35ddb67a4671d1327ba9b67318f4d5403e76c630266bb32618a
4
- data.tar.gz: 6312478e9cab8e8f3f7b98feb46ccba2cf2a5aaa4263ae171d80add9e33afd61
3
+ metadata.gz: 8f904191eb9bb7c096639b373794a94205c37001e07fc1e02c3fdf9616278d5b
4
+ data.tar.gz: 382a160fff119344d1f60cece29fbefeefb85ad73a6b7f2892c3d259176068c7
5
5
  SHA512:
6
- metadata.gz: f8a40a7d8871ce4667ed3578acc11e9690a244d92a1ed3b7b96de4598bd10c37e3fc1898a17979f9f37bb322cd4cca1934b951b32f5c2d79f33a7e7175b07a03
7
- data.tar.gz: 71f21963209ea12fa3b1dbc3204288011b4a4215aebe361eeb3009befc189769ead601c228407ed950b645c29f15c8d0dc9670706ab19d40387a83b887779174
6
+ metadata.gz: a00c604d83321a3fef404f530bf7cc75af946b68d85e8cda1541983aa47ec5ca4b01dcf327a19acd4c200ff014395ed46697d263de803e89ec75d309c72908a1
7
+ data.tar.gz: bd7f338f2cf81a08905096fd5f9e6badb662c340871c418bcdb16cdbbc4b50a039fc807a31d8b78daafff0c8e7c9bf7ec90a66319a4b5caa4ec8958fa99a742e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-osconfig_v2
2
2
 
3
+ ### v0.4.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250928
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.3.0 (2025-05-18)
4
9
 
5
10
  * Regenerated from discovery document revision 20250511
@@ -624,6 +624,13 @@ module Google
624
624
  # @return [Array<Google::Apis::OsconfigV2::Operation>]
625
625
  attr_accessor :operations
626
626
 
627
+ # Unordered list. Unreachable resources. Populated when the request sets `
628
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
629
+ # when attempting to list all resources across all supported locations.
630
+ # Corresponds to the JSON property `unreachable`
631
+ # @return [Array<String>]
632
+ attr_accessor :unreachable
633
+
627
634
  def initialize(**args)
628
635
  update!(**args)
629
636
  end
@@ -632,6 +639,7 @@ module Google
632
639
  def update!(**args)
633
640
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
634
641
  @operations = args[:operations] if args.key?(:operations)
642
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
635
643
  end
636
644
  end
637
645
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module OsconfigV2
18
18
  # Version of the google-apis-osconfig_v2 gem
19
- GEM_VERSION = "0.3.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250511"
25
+ REVISION = "20250928"
26
26
  end
27
27
  end
28
28
  end
@@ -477,6 +477,7 @@ module Google
477
477
  property :next_page_token, as: 'nextPageToken'
478
478
  collection :operations, as: 'operations', class: Google::Apis::OsconfigV2::Operation, decorator: Google::Apis::OsconfigV2::Operation::Representation
479
479
 
480
+ collection :unreachable, as: 'unreachable'
480
481
  end
481
482
  end
482
483
 
@@ -394,6 +394,13 @@ module Google
394
394
  # The standard list page size.
395
395
  # @param [String] page_token
396
396
  # The standard list page token.
397
+ # @param [Boolean] return_partial_success
398
+ # When set to `true`, operations that are reachable are returned as normal, and
399
+ # those that are unreachable are returned in the [ListOperationsResponse.
400
+ # unreachable] field. This can only be `true` when reading across collections e.
401
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
402
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
403
+ # explicitly documented otherwise in service or product specific documentation.
397
404
  # @param [String] fields
398
405
  # Selector specifying which fields to include in a partial response.
399
406
  # @param [String] quota_user
@@ -411,7 +418,7 @@ module Google
411
418
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
412
419
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
413
420
  # @raise [Google::Apis::AuthorizationError] Authorization is required
414
- def list_folder_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
421
+ def list_folder_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
415
422
  command = make_simple_command(:get, 'v2/{+name}/operations', options)
416
423
  command.response_representation = Google::Apis::OsconfigV2::ListOperationsResponse::Representation
417
424
  command.response_class = Google::Apis::OsconfigV2::ListOperationsResponse
@@ -419,6 +426,7 @@ module Google
419
426
  command.query['filter'] = filter unless filter.nil?
420
427
  command.query['pageSize'] = page_size unless page_size.nil?
421
428
  command.query['pageToken'] = page_token unless page_token.nil?
429
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
422
430
  command.query['fields'] = fields unless fields.nil?
423
431
  command.query['quotaUser'] = quota_user unless quota_user.nil?
424
432
  execute_or_queue_command(command, &block)
@@ -766,6 +774,13 @@ module Google
766
774
  # The standard list page size.
767
775
  # @param [String] page_token
768
776
  # The standard list page token.
777
+ # @param [Boolean] return_partial_success
778
+ # When set to `true`, operations that are reachable are returned as normal, and
779
+ # those that are unreachable are returned in the [ListOperationsResponse.
780
+ # unreachable] field. This can only be `true` when reading across collections e.
781
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
782
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
783
+ # explicitly documented otherwise in service or product specific documentation.
769
784
  # @param [String] fields
770
785
  # Selector specifying which fields to include in a partial response.
771
786
  # @param [String] quota_user
@@ -783,7 +798,7 @@ module Google
783
798
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
784
799
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
785
800
  # @raise [Google::Apis::AuthorizationError] Authorization is required
786
- def list_organization_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
801
+ def list_organization_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
787
802
  command = make_simple_command(:get, 'v2/{+name}/operations', options)
788
803
  command.response_representation = Google::Apis::OsconfigV2::ListOperationsResponse::Representation
789
804
  command.response_class = Google::Apis::OsconfigV2::ListOperationsResponse
@@ -791,6 +806,7 @@ module Google
791
806
  command.query['filter'] = filter unless filter.nil?
792
807
  command.query['pageSize'] = page_size unless page_size.nil?
793
808
  command.query['pageToken'] = page_token unless page_token.nil?
809
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
794
810
  command.query['fields'] = fields unless fields.nil?
795
811
  command.query['quotaUser'] = quota_user unless quota_user.nil?
796
812
  execute_or_queue_command(command, &block)
@@ -1138,6 +1154,13 @@ module Google
1138
1154
  # The standard list page size.
1139
1155
  # @param [String] page_token
1140
1156
  # The standard list page token.
1157
+ # @param [Boolean] return_partial_success
1158
+ # When set to `true`, operations that are reachable are returned as normal, and
1159
+ # those that are unreachable are returned in the [ListOperationsResponse.
1160
+ # unreachable] field. This can only be `true` when reading across collections e.
1161
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1162
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1163
+ # explicitly documented otherwise in service or product specific documentation.
1141
1164
  # @param [String] fields
1142
1165
  # Selector specifying which fields to include in a partial response.
1143
1166
  # @param [String] quota_user
@@ -1155,7 +1178,7 @@ module Google
1155
1178
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1156
1179
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1157
1180
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1158
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1181
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
1159
1182
  command = make_simple_command(:get, 'v2/{+name}/operations', options)
1160
1183
  command.response_representation = Google::Apis::OsconfigV2::ListOperationsResponse::Representation
1161
1184
  command.response_class = Google::Apis::OsconfigV2::ListOperationsResponse
@@ -1163,6 +1186,7 @@ module Google
1163
1186
  command.query['filter'] = filter unless filter.nil?
1164
1187
  command.query['pageSize'] = page_size unless page_size.nil?
1165
1188
  command.query['pageToken'] = page_token unless page_token.nil?
1189
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1166
1190
  command.query['fields'] = fields unless fields.nil?
1167
1191
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1168
1192
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-osconfig_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.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-osconfig_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v2/v0.3.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v2/v0.4.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-osconfig_v2
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for OS Config API V2
79
79
  test_files: []