google-apis-gkehub_v1 0.3.0 → 0.4.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 +4 -0
- data/lib/google/apis/gkehub_v1/gem_version.rb +2 -2
- data/lib/google/apis/gkehub_v1/service.rb +115 -0
- 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: a735787405903a92dd9240eaab8b23720a1449207c7a163231844b956503928f
|
4
|
+
data.tar.gz: 487282f9d625c8fa374a040a096af45fccb51c78c4e1801a1a62d023b91c4d1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b52b4efd36603bca87f13e91d776a5183d5097d410f953d3c9a1ca591013302b9d632ab4115f34c424aa0b22c5bd8c6a5a9e99499b15bec905d3c1a668b00ccd
|
7
|
+
data.tar.gz: 9692f789bf3fb6bebb4502e108eca74dbb5b0524bc35f46640cec51830dfb39cc93ad2f6f3fced13d43c5ceaf2136c6eff4358e6f1aa1e02ff126cfc7a7f272d
|
data/CHANGELOG.md
CHANGED
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1
|
18
18
|
# Version of the google-apis-gkehub_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.4.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210521"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -122,6 +122,121 @@ module Google
|
|
122
122
|
execute_or_queue_command(command, &block)
|
123
123
|
end
|
124
124
|
|
125
|
+
# Gets the access control policy for a resource. Returns an empty policy if the
|
126
|
+
# resource exists and does not have a policy set.
|
127
|
+
# @param [String] resource
|
128
|
+
# REQUIRED: The resource for which the policy is being requested. See the
|
129
|
+
# operation documentation for the appropriate value for this field.
|
130
|
+
# @param [Fixnum] options_requested_policy_version
|
131
|
+
# Optional. The policy format version to be returned. Valid values are 0, 1, and
|
132
|
+
# 3. Requests specifying an invalid value will be rejected. Requests for
|
133
|
+
# policies with any conditional bindings must specify version 3. Policies
|
134
|
+
# without any conditional bindings may specify any valid value or leave the
|
135
|
+
# field unset. To learn which resources support conditions in their IAM policies,
|
136
|
+
# see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
|
137
|
+
# resource-policies).
|
138
|
+
# @param [String] fields
|
139
|
+
# Selector specifying which fields to include in a partial response.
|
140
|
+
# @param [String] quota_user
|
141
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
142
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
143
|
+
# @param [Google::Apis::RequestOptions] options
|
144
|
+
# Request-specific options
|
145
|
+
#
|
146
|
+
# @yield [result, err] Result & error if block supplied
|
147
|
+
# @yieldparam result [Google::Apis::GkehubV1::Policy] parsed result object
|
148
|
+
# @yieldparam err [StandardError] error object if request failed
|
149
|
+
#
|
150
|
+
# @return [Google::Apis::GkehubV1::Policy]
|
151
|
+
#
|
152
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
153
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
154
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
155
|
+
def get_project_location_feature_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
156
|
+
command = make_simple_command(:get, 'v1/{+resource}:getIamPolicy', options)
|
157
|
+
command.response_representation = Google::Apis::GkehubV1::Policy::Representation
|
158
|
+
command.response_class = Google::Apis::GkehubV1::Policy
|
159
|
+
command.params['resource'] = resource unless resource.nil?
|
160
|
+
command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.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
|
+
# Sets the access control policy on the specified resource. Replaces any
|
167
|
+
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
168
|
+
# PERMISSION_DENIED` errors.
|
169
|
+
# @param [String] resource
|
170
|
+
# REQUIRED: The resource for which the policy is being specified. See the
|
171
|
+
# operation documentation for the appropriate value for this field.
|
172
|
+
# @param [Google::Apis::GkehubV1::SetIamPolicyRequest] set_iam_policy_request_object
|
173
|
+
# @param [String] fields
|
174
|
+
# Selector specifying which fields to include in a partial response.
|
175
|
+
# @param [String] quota_user
|
176
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
177
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
178
|
+
# @param [Google::Apis::RequestOptions] options
|
179
|
+
# Request-specific options
|
180
|
+
#
|
181
|
+
# @yield [result, err] Result & error if block supplied
|
182
|
+
# @yieldparam result [Google::Apis::GkehubV1::Policy] parsed result object
|
183
|
+
# @yieldparam err [StandardError] error object if request failed
|
184
|
+
#
|
185
|
+
# @return [Google::Apis::GkehubV1::Policy]
|
186
|
+
#
|
187
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
188
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
189
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
190
|
+
def set_feature_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
191
|
+
command = make_simple_command(:post, 'v1/{+resource}:setIamPolicy', options)
|
192
|
+
command.request_representation = Google::Apis::GkehubV1::SetIamPolicyRequest::Representation
|
193
|
+
command.request_object = set_iam_policy_request_object
|
194
|
+
command.response_representation = Google::Apis::GkehubV1::Policy::Representation
|
195
|
+
command.response_class = Google::Apis::GkehubV1::Policy
|
196
|
+
command.params['resource'] = resource unless resource.nil?
|
197
|
+
command.query['fields'] = fields unless fields.nil?
|
198
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
199
|
+
execute_or_queue_command(command, &block)
|
200
|
+
end
|
201
|
+
|
202
|
+
# Returns permissions that a caller has on the specified resource. If the
|
203
|
+
# resource does not exist, this will return an empty set of permissions, not a `
|
204
|
+
# NOT_FOUND` error. Note: This operation is designed to be used for building
|
205
|
+
# permission-aware UIs and command-line tools, not for authorization checking.
|
206
|
+
# This operation may "fail open" without warning.
|
207
|
+
# @param [String] resource
|
208
|
+
# REQUIRED: The resource for which the policy detail is being requested. See the
|
209
|
+
# operation documentation for the appropriate value for this field.
|
210
|
+
# @param [Google::Apis::GkehubV1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
211
|
+
# @param [String] fields
|
212
|
+
# Selector specifying which fields to include in a partial response.
|
213
|
+
# @param [String] quota_user
|
214
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
215
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
216
|
+
# @param [Google::Apis::RequestOptions] options
|
217
|
+
# Request-specific options
|
218
|
+
#
|
219
|
+
# @yield [result, err] Result & error if block supplied
|
220
|
+
# @yieldparam result [Google::Apis::GkehubV1::TestIamPermissionsResponse] parsed result object
|
221
|
+
# @yieldparam err [StandardError] error object if request failed
|
222
|
+
#
|
223
|
+
# @return [Google::Apis::GkehubV1::TestIamPermissionsResponse]
|
224
|
+
#
|
225
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
226
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
227
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
228
|
+
def test_feature_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
229
|
+
command = make_simple_command(:post, 'v1/{+resource}:testIamPermissions', options)
|
230
|
+
command.request_representation = Google::Apis::GkehubV1::TestIamPermissionsRequest::Representation
|
231
|
+
command.request_object = test_iam_permissions_request_object
|
232
|
+
command.response_representation = Google::Apis::GkehubV1::TestIamPermissionsResponse::Representation
|
233
|
+
command.response_class = Google::Apis::GkehubV1::TestIamPermissionsResponse
|
234
|
+
command.params['resource'] = resource unless resource.nil?
|
235
|
+
command.query['fields'] = fields unless fields.nil?
|
236
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
237
|
+
execute_or_queue_command(command, &block)
|
238
|
+
end
|
239
|
+
|
125
240
|
# Creates a new Membership. **This is currently only supported for GKE clusters
|
126
241
|
# on Google Cloud**. To register other clusters, follow the instructions at
|
127
242
|
# https://cloud.google.com/anthos/multicluster-management/connect/registering-a-
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.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: 2021-05-
|
11
|
+
date: 2021-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-gkehub_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.4.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-gkehub_v1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|