google-apis-backupdr_v1 0.9.0 → 0.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/backupdr_v1/gem_version.rb +3 -3
- data/lib/google/apis/backupdr_v1/service.rb +0 -39
- 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: 0f13bf94fcf3d0b9bbddaaf7a17570cdc6fea1078204b3bca7d936bb37728bca
|
4
|
+
data.tar.gz: 8ad9ba30712c7329699f54f46e0e98bade356039615015c92a4bb1ba2cd95a49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6302654ccfc969c3935c22584f42ee07bfe9fd9f1cc4f058d1d78be94ace5429a2b9ffb4389d8ba747c51109bba4b87003169eb4d9c22d6b5740731474ee539e
|
7
|
+
data.tar.gz: 13de5e4788b5421001744e88f58a62b78bebb1a9b92e8bd716b15a4b9f9c5452c6260f25a8eca7c6e1a0784ca43c3d149c1a10cf229de44816f5cb36b39745c2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-backupdr_v1
|
2
2
|
|
3
|
+
### v0.10.0 (2024-05-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240508
|
6
|
+
* Regenerated using generator version 0.15.0
|
7
|
+
|
3
8
|
### v0.9.0 (2024-04-21)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240410
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BackupdrV1
|
18
18
|
# Version of the google-apis-backupdr_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240508"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,45 +124,6 @@ module Google
|
|
124
124
|
execute_or_queue_command(command, &block)
|
125
125
|
end
|
126
126
|
|
127
|
-
# Returns permissions that a caller has on the specified resource. If the
|
128
|
-
# resource does not exist, this will return an empty set of permissions, not a `
|
129
|
-
# NOT_FOUND` error. Note: This operation is designed to be used for building
|
130
|
-
# permission-aware UIs and command-line tools, not for authorization checking.
|
131
|
-
# This operation may "fail open" without warning.
|
132
|
-
# @param [String] resource
|
133
|
-
# REQUIRED: The resource for which the policy detail is being requested. See [
|
134
|
-
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
135
|
-
# appropriate value for this field.
|
136
|
-
# @param [Google::Apis::BackupdrV1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
137
|
-
# @param [String] fields
|
138
|
-
# Selector specifying which fields to include in a partial response.
|
139
|
-
# @param [String] quota_user
|
140
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
141
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
142
|
-
# @param [Google::Apis::RequestOptions] options
|
143
|
-
# Request-specific options
|
144
|
-
#
|
145
|
-
# @yield [result, err] Result & error if block supplied
|
146
|
-
# @yieldparam result [Google::Apis::BackupdrV1::TestIamPermissionsResponse] parsed result object
|
147
|
-
# @yieldparam err [StandardError] error object if request failed
|
148
|
-
#
|
149
|
-
# @return [Google::Apis::BackupdrV1::TestIamPermissionsResponse]
|
150
|
-
#
|
151
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
152
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
153
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
154
|
-
def test_backup_vault_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
155
|
-
command = make_simple_command(:post, 'v1/{+resource}:testIamPermissions', options)
|
156
|
-
command.request_representation = Google::Apis::BackupdrV1::TestIamPermissionsRequest::Representation
|
157
|
-
command.request_object = test_iam_permissions_request_object
|
158
|
-
command.response_representation = Google::Apis::BackupdrV1::TestIamPermissionsResponse::Representation
|
159
|
-
command.response_class = Google::Apis::BackupdrV1::TestIamPermissionsResponse
|
160
|
-
command.params['resource'] = resource unless resource.nil?
|
161
|
-
command.query['fields'] = fields unless fields.nil?
|
162
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
163
|
-
execute_or_queue_command(command, &block)
|
164
|
-
end
|
165
|
-
|
166
127
|
# Creates a new ManagementServer in a given project and location.
|
167
128
|
# @param [String] parent
|
168
129
|
# Required. The management server project and location in the format `projects/`
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-backupdr_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-05-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-backupdr_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.10.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-backupdr_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|