google-apis-assuredworkloads_v1 0.60.0 → 0.62.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/OVERVIEW.md +1 -1
- data/lib/google/apis/assuredworkloads_v1/classes.rb +8 -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 +9 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c39e886649e0fe75c224f91f194cbffc79dbb997d5eee7578a6bcef74c5e8f5
|
4
|
+
data.tar.gz: ebf2986f6edd840a5b1a16436c07a18b98d74ac747dc55d526392c46a9da919a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9fb7038fc397f7af4a90b09a661e23996056398d545b94010540aa709ae7e77c86009eac1aecedf60b0d911adeb786588a0ad7b109b49fd37b2d15aa573f18d
|
7
|
+
data.tar.gz: eac54f1e646f88f76dfbb794794387acafd2127c0a377579b78b840b6455066b61f940ad015cbdd3c1963e69cf00f35133c12ffdb7ec5d6d6e0be72d63c6544b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-assuredworkloads_v1
|
2
2
|
|
3
|
+
### v0.62.0 (2025-10-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20251002
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
8
|
+
### v0.61.0 (2025-05-04)
|
9
|
+
|
10
|
+
* Regenerated using generator version 0.17.0
|
11
|
+
|
3
12
|
### v0.60.0 (2025-04-20)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250410
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/learnmoreurl) may provide g
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -1450,6 +1450,13 @@ 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 e.g.
|
1455
|
+
# when attempting to list all resources across all supported locations.
|
1456
|
+
# Corresponds to the JSON property `unreachable`
|
1457
|
+
# @return [Array<String>]
|
1458
|
+
attr_accessor :unreachable
|
1459
|
+
|
1453
1460
|
def initialize(**args)
|
1454
1461
|
update!(**args)
|
1455
1462
|
end
|
@@ -1458,6 +1465,7 @@ module Google
|
|
1458
1465
|
def update!(**args)
|
1459
1466
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1460
1467
|
@operations = args[:operations] if args.key?(:operations)
|
1468
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1461
1469
|
end
|
1462
1470
|
end
|
1463
1471
|
|
@@ -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.62.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 = "20251002"
|
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,13 @@ 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 e.
|
99
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
100
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
101
|
+
# explicitly documented otherwise in service or product specific documentation.
|
95
102
|
# @param [String] fields
|
96
103
|
# Selector specifying which fields to include in a partial response.
|
97
104
|
# @param [String] quota_user
|
@@ -109,7 +116,7 @@ module Google
|
|
109
116
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
110
117
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
111
118
|
# @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)
|
119
|
+
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
120
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
114
121
|
command.response_representation = Google::Apis::AssuredworkloadsV1::GoogleLongrunningListOperationsResponse::Representation
|
115
122
|
command.response_class = Google::Apis::AssuredworkloadsV1::GoogleLongrunningListOperationsResponse
|
@@ -117,6 +124,7 @@ module Google
|
|
117
124
|
command.query['filter'] = filter unless filter.nil?
|
118
125
|
command.query['pageSize'] = page_size unless page_size.nil?
|
119
126
|
command.query['pageToken'] = page_token unless page_token.nil?
|
127
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
120
128
|
command.query['fields'] = fields unless fields.nil?
|
121
129
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
122
130
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.62.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.62.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:
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '3.1'
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
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: []
|