google-apis-assuredworkloads_v1 0.61.0 → 0.63.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/assuredworkloads_v1/classes.rb +9 -0
- data/lib/google/apis/assuredworkloads_v1/gem_version.rb +3 -3
- data/lib/google/apis/assuredworkloads_v1/representations.rb +1 -0
- data/lib/google/apis/assuredworkloads_v1/service.rb +10 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c31937585941a93f706111cf01440b80589ccb71f8b01d2d2075b36670e61372
|
|
4
|
+
data.tar.gz: d3f12a79e21c993dab9402a0498403ea06a8b2789a7a7ce5f0b6eaa1d4f836b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3dd908ad50b40a997e30a942433abb65c610188840c1ca9d05ed0e63faa9fffeef0a98144794ce6fa4aab23c7ec2aaf011b73450f76c866fa2a5578bcc65912
|
|
7
|
+
data.tar.gz: ba9f02e159c71342da326032f77b6e4589b2373003de6ea216236c7798346a977c74491fabb770d92169af86ebc69fff314aae17465f205b718c22a01d7dc6f1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-assuredworkloads_v1
|
|
2
2
|
|
|
3
|
+
### v0.63.0 (2025-12-21)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251209
|
|
6
|
+
|
|
7
|
+
### v0.62.0 (2025-10-12)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251002
|
|
10
|
+
* Regenerated using generator version 0.18.0
|
|
11
|
+
|
|
3
12
|
### v0.61.0 (2025-05-04)
|
|
4
13
|
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
|
@@ -1450,6 +1450,14 @@ module Google
|
|
|
1450
1450
|
# @return [Array<Google::Apis::AssuredworkloadsV1::GoogleLongrunningOperation>]
|
|
1451
1451
|
attr_accessor :operations
|
|
1452
1452
|
|
|
1453
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1454
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1455
|
+
# For example, when attempting to list all resources across all supported
|
|
1456
|
+
# locations.
|
|
1457
|
+
# Corresponds to the JSON property `unreachable`
|
|
1458
|
+
# @return [Array<String>]
|
|
1459
|
+
attr_accessor :unreachable
|
|
1460
|
+
|
|
1453
1461
|
def initialize(**args)
|
|
1454
1462
|
update!(**args)
|
|
1455
1463
|
end
|
|
@@ -1458,6 +1466,7 @@ module Google
|
|
|
1458
1466
|
def update!(**args)
|
|
1459
1467
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
1460
1468
|
@operations = args[:operations] if args.key?(:operations)
|
|
1469
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
1461
1470
|
end
|
|
1462
1471
|
end
|
|
1463
1472
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AssuredworkloadsV1
|
|
18
18
|
# Version of the google-apis-assuredworkloads_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.63.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 = "20251209"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -692,6 +692,7 @@ module Google
|
|
|
692
692
|
property :next_page_token, as: 'nextPageToken'
|
|
693
693
|
collection :operations, as: 'operations', class: Google::Apis::AssuredworkloadsV1::GoogleLongrunningOperation, decorator: Google::Apis::AssuredworkloadsV1::GoogleLongrunningOperation::Representation
|
|
694
694
|
|
|
695
|
+
collection :unreachable, as: 'unreachable'
|
|
695
696
|
end
|
|
696
697
|
end
|
|
697
698
|
|
|
@@ -92,6 +92,14 @@ module Google
|
|
|
92
92
|
# The standard list page size.
|
|
93
93
|
# @param [String] page_token
|
|
94
94
|
# The standard list page token.
|
|
95
|
+
# @param [Boolean] return_partial_success
|
|
96
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
97
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
98
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
99
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
100
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
101
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
102
|
+
# documentation.
|
|
95
103
|
# @param [String] fields
|
|
96
104
|
# Selector specifying which fields to include in a partial response.
|
|
97
105
|
# @param [String] quota_user
|
|
@@ -109,7 +117,7 @@ module Google
|
|
|
109
117
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
110
118
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
111
119
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
112
|
-
def list_organization_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
120
|
+
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)
|
|
113
121
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
114
122
|
command.response_representation = Google::Apis::AssuredworkloadsV1::GoogleLongrunningListOperationsResponse::Representation
|
|
115
123
|
command.response_class = Google::Apis::AssuredworkloadsV1::GoogleLongrunningListOperationsResponse
|
|
@@ -117,6 +125,7 @@ module Google
|
|
|
117
125
|
command.query['filter'] = filter unless filter.nil?
|
|
118
126
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
119
127
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
128
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
120
129
|
command.query['fields'] = fields unless fields.nil?
|
|
121
130
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
122
131
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-assuredworkloads_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.63.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-assuredworkloads_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.63.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-assuredworkloads_v1
|
|
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 Assured Workloads API V1
|
|
79
79
|
test_files: []
|