google-apis-osconfig_v2 0.3.0 → 0.5.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 623d5f75faace3833ce256af7565fe49542a6ceb53ac10fee8ba76e53a7c24c4
|
|
4
|
+
data.tar.gz: f7d5254f3c4352bf208b9a694c9efde4dc800de29d326a531a15add246fd495f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b77fb5963f9c9dadf17a7cd5e2642a319bd3460d1f82b961f32e54b54172e76ea0729c66d2a1a568d481c519bfd503dfece8b9b19fe4b0191c1ee8f8f90e2b56
|
|
7
|
+
data.tar.gz: b5cf3be33c1bafa471945b1632341d1292f66c8ee4e63e5578515d00c744134343a91169171352ca26fabb7fdd5fc2a40d857daf156c248052a324468162df4e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-osconfig_v2
|
|
2
2
|
|
|
3
|
+
### v0.5.0 (2025-11-23)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251117
|
|
6
|
+
|
|
7
|
+
### v0.4.0 (2025-10-05)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250928
|
|
10
|
+
* Regenerated using generator version 0.18.0
|
|
11
|
+
|
|
3
12
|
### v0.3.0 (2025-05-18)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20250511
|
|
@@ -624,6 +624,14 @@ 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.
|
|
629
|
+
# For example, when attempting to list all resources across all supported
|
|
630
|
+
# locations.
|
|
631
|
+
# Corresponds to the JSON property `unreachable`
|
|
632
|
+
# @return [Array<String>]
|
|
633
|
+
attr_accessor :unreachable
|
|
634
|
+
|
|
627
635
|
def initialize(**args)
|
|
628
636
|
update!(**args)
|
|
629
637
|
end
|
|
@@ -632,6 +640,7 @@ module Google
|
|
|
632
640
|
def update!(**args)
|
|
633
641
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
634
642
|
@operations = args[:operations] if args.key?(:operations)
|
|
643
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
635
644
|
end
|
|
636
645
|
end
|
|
637
646
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.5.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251117"
|
|
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,14 @@ 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.
|
|
401
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
402
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
403
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
404
|
+
# documentation.
|
|
397
405
|
# @param [String] fields
|
|
398
406
|
# Selector specifying which fields to include in a partial response.
|
|
399
407
|
# @param [String] quota_user
|
|
@@ -411,7 +419,7 @@ module Google
|
|
|
411
419
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
412
420
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
413
421
|
# @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)
|
|
422
|
+
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
423
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
|
416
424
|
command.response_representation = Google::Apis::OsconfigV2::ListOperationsResponse::Representation
|
|
417
425
|
command.response_class = Google::Apis::OsconfigV2::ListOperationsResponse
|
|
@@ -419,6 +427,7 @@ module Google
|
|
|
419
427
|
command.query['filter'] = filter unless filter.nil?
|
|
420
428
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
421
429
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
430
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
422
431
|
command.query['fields'] = fields unless fields.nil?
|
|
423
432
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
424
433
|
execute_or_queue_command(command, &block)
|
|
@@ -766,6 +775,14 @@ module Google
|
|
|
766
775
|
# The standard list page size.
|
|
767
776
|
# @param [String] page_token
|
|
768
777
|
# The standard list page token.
|
|
778
|
+
# @param [Boolean] return_partial_success
|
|
779
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
780
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
781
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
782
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
783
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
784
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
785
|
+
# documentation.
|
|
769
786
|
# @param [String] fields
|
|
770
787
|
# Selector specifying which fields to include in a partial response.
|
|
771
788
|
# @param [String] quota_user
|
|
@@ -783,7 +800,7 @@ module Google
|
|
|
783
800
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
784
801
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
785
802
|
# @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)
|
|
803
|
+
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
804
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
|
788
805
|
command.response_representation = Google::Apis::OsconfigV2::ListOperationsResponse::Representation
|
|
789
806
|
command.response_class = Google::Apis::OsconfigV2::ListOperationsResponse
|
|
@@ -791,6 +808,7 @@ module Google
|
|
|
791
808
|
command.query['filter'] = filter unless filter.nil?
|
|
792
809
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
793
810
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
811
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
794
812
|
command.query['fields'] = fields unless fields.nil?
|
|
795
813
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
796
814
|
execute_or_queue_command(command, &block)
|
|
@@ -1138,6 +1156,14 @@ module Google
|
|
|
1138
1156
|
# The standard list page size.
|
|
1139
1157
|
# @param [String] page_token
|
|
1140
1158
|
# The standard list page token.
|
|
1159
|
+
# @param [Boolean] return_partial_success
|
|
1160
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1161
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1162
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
1163
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
1164
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
1165
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
1166
|
+
# documentation.
|
|
1141
1167
|
# @param [String] fields
|
|
1142
1168
|
# Selector specifying which fields to include in a partial response.
|
|
1143
1169
|
# @param [String] quota_user
|
|
@@ -1155,7 +1181,7 @@ module Google
|
|
|
1155
1181
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1156
1182
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1157
1183
|
# @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)
|
|
1184
|
+
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
1185
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
|
1160
1186
|
command.response_representation = Google::Apis::OsconfigV2::ListOperationsResponse::Representation
|
|
1161
1187
|
command.response_class = Google::Apis::OsconfigV2::ListOperationsResponse
|
|
@@ -1163,6 +1189,7 @@ module Google
|
|
|
1163
1189
|
command.query['filter'] = filter unless filter.nil?
|
|
1164
1190
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1165
1191
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1192
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
1166
1193
|
command.query['fields'] = fields unless fields.nil?
|
|
1167
1194
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1168
1195
|
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.
|
|
4
|
+
version: 0.5.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v2/v0.5.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.
|
|
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: []
|