google-apis-dataform_v1beta1 0.15.0 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e06c97fa8c505ef25eba6708abf33a6e0c64b55cf066bd14ba24e77d1713bf20
|
4
|
+
data.tar.gz: be71b95b6fd24d8e3c9b50f9a369dbca382be1e960d9b9547a154f7d1830dfa2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8921c525af3d81926fbe3ab1f7e7d7d9a2f6b6aee1a92b298e6bc92694131b90bc62fb48d89ac01993f4f4b6d10654ef0608e569b28d2c2c562ea224966e1311
|
7
|
+
data.tar.gz: 8a1975052092faf316d16e9a0bc52166783fa83f5fb71392827fd24d0b4d1e9c2dc88ea4a9ae259a34bbe16c15d01ac6dfaae4ab2e528567e782fffa36bc290a
|
data/CHANGELOG.md
CHANGED
@@ -376,7 +376,7 @@ module Google
|
|
376
376
|
# @return [Google::Apis::DataformV1beta1::CommitMetadata]
|
377
377
|
attr_accessor :commit_metadata
|
378
378
|
|
379
|
-
# A map to the path of the file to the operation. The path is the
|
379
|
+
# A map to the path of the file to the operation. The path is the full file path
|
380
380
|
# including filename, from repository root.
|
381
381
|
# Corresponds to the JSON property `fileOperations`
|
382
382
|
# @return [Hash<String,Google::Apis::DataformV1beta1::FileOperation>]
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DataformV1beta1
|
18
18
|
# Version of the google-apis-dataform_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.16.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230916"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -123,6 +123,127 @@ module Google
|
|
123
123
|
execute_or_queue_command(command, &block)
|
124
124
|
end
|
125
125
|
|
126
|
+
# Gets the access control policy for a resource. Returns an empty policy if the
|
127
|
+
# resource exists and does not have a policy set.
|
128
|
+
# @param [String] resource
|
129
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
130
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
131
|
+
# appropriate value for this field.
|
132
|
+
# @param [Fixnum] options_requested_policy_version
|
133
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
134
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
135
|
+
# rejected. Requests for policies with any conditional role bindings must
|
136
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
137
|
+
# valid value or leave the field unset. The policy in the response might use the
|
138
|
+
# policy version that you specified, or it might use a lower policy version. For
|
139
|
+
# example, if you specify version 3, but the policy has no conditional role
|
140
|
+
# bindings, the response uses version 1. To learn which resources support
|
141
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
142
|
+
# google.com/iam/help/conditions/resource-policies).
|
143
|
+
# @param [String] fields
|
144
|
+
# Selector specifying which fields to include in a partial response.
|
145
|
+
# @param [String] quota_user
|
146
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
147
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
148
|
+
# @param [Google::Apis::RequestOptions] options
|
149
|
+
# Request-specific options
|
150
|
+
#
|
151
|
+
# @yield [result, err] Result & error if block supplied
|
152
|
+
# @yieldparam result [Google::Apis::DataformV1beta1::Policy] parsed result object
|
153
|
+
# @yieldparam err [StandardError] error object if request failed
|
154
|
+
#
|
155
|
+
# @return [Google::Apis::DataformV1beta1::Policy]
|
156
|
+
#
|
157
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
158
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
159
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
160
|
+
def get_project_location_collection_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
161
|
+
command = make_simple_command(:get, 'v1beta1/{+resource}:getIamPolicy', options)
|
162
|
+
command.response_representation = Google::Apis::DataformV1beta1::Policy::Representation
|
163
|
+
command.response_class = Google::Apis::DataformV1beta1::Policy
|
164
|
+
command.params['resource'] = resource unless resource.nil?
|
165
|
+
command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
|
166
|
+
command.query['fields'] = fields unless fields.nil?
|
167
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
168
|
+
execute_or_queue_command(command, &block)
|
169
|
+
end
|
170
|
+
|
171
|
+
# Sets the access control policy on the specified resource. Replaces any
|
172
|
+
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
173
|
+
# PERMISSION_DENIED` errors.
|
174
|
+
# @param [String] resource
|
175
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
176
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
177
|
+
# appropriate value for this field.
|
178
|
+
# @param [Google::Apis::DataformV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
|
179
|
+
# @param [String] fields
|
180
|
+
# Selector specifying which fields to include in a partial response.
|
181
|
+
# @param [String] quota_user
|
182
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
183
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
184
|
+
# @param [Google::Apis::RequestOptions] options
|
185
|
+
# Request-specific options
|
186
|
+
#
|
187
|
+
# @yield [result, err] Result & error if block supplied
|
188
|
+
# @yieldparam result [Google::Apis::DataformV1beta1::Policy] parsed result object
|
189
|
+
# @yieldparam err [StandardError] error object if request failed
|
190
|
+
#
|
191
|
+
# @return [Google::Apis::DataformV1beta1::Policy]
|
192
|
+
#
|
193
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
194
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
195
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
196
|
+
def set_collection_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
197
|
+
command = make_simple_command(:post, 'v1beta1/{+resource}:setIamPolicy', options)
|
198
|
+
command.request_representation = Google::Apis::DataformV1beta1::SetIamPolicyRequest::Representation
|
199
|
+
command.request_object = set_iam_policy_request_object
|
200
|
+
command.response_representation = Google::Apis::DataformV1beta1::Policy::Representation
|
201
|
+
command.response_class = Google::Apis::DataformV1beta1::Policy
|
202
|
+
command.params['resource'] = resource unless resource.nil?
|
203
|
+
command.query['fields'] = fields unless fields.nil?
|
204
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
205
|
+
execute_or_queue_command(command, &block)
|
206
|
+
end
|
207
|
+
|
208
|
+
# Returns permissions that a caller has on the specified resource. If the
|
209
|
+
# resource does not exist, this will return an empty set of permissions, not a `
|
210
|
+
# NOT_FOUND` error. Note: This operation is designed to be used for building
|
211
|
+
# permission-aware UIs and command-line tools, not for authorization checking.
|
212
|
+
# This operation may "fail open" without warning.
|
213
|
+
# @param [String] resource
|
214
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
215
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
216
|
+
# appropriate value for this field.
|
217
|
+
# @param [Google::Apis::DataformV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
218
|
+
# @param [String] fields
|
219
|
+
# Selector specifying which fields to include in a partial response.
|
220
|
+
# @param [String] quota_user
|
221
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
222
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
223
|
+
# @param [Google::Apis::RequestOptions] options
|
224
|
+
# Request-specific options
|
225
|
+
#
|
226
|
+
# @yield [result, err] Result & error if block supplied
|
227
|
+
# @yieldparam result [Google::Apis::DataformV1beta1::TestIamPermissionsResponse] parsed result object
|
228
|
+
# @yieldparam err [StandardError] error object if request failed
|
229
|
+
#
|
230
|
+
# @return [Google::Apis::DataformV1beta1::TestIamPermissionsResponse]
|
231
|
+
#
|
232
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
233
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
234
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
235
|
+
def test_collection_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
236
|
+
command = make_simple_command(:post, 'v1beta1/{+resource}:testIamPermissions', options)
|
237
|
+
command.request_representation = Google::Apis::DataformV1beta1::TestIamPermissionsRequest::Representation
|
238
|
+
command.request_object = test_iam_permissions_request_object
|
239
|
+
command.response_representation = Google::Apis::DataformV1beta1::TestIamPermissionsResponse::Representation
|
240
|
+
command.response_class = Google::Apis::DataformV1beta1::TestIamPermissionsResponse
|
241
|
+
command.params['resource'] = resource unless resource.nil?
|
242
|
+
command.query['fields'] = fields unless fields.nil?
|
243
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
244
|
+
execute_or_queue_command(command, &block)
|
245
|
+
end
|
246
|
+
|
126
247
|
# Applies a Git commit to a Repository. The Repository must not have a value for
|
127
248
|
# `git_remote_settings.url`.
|
128
249
|
# @param [String] name
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dataform_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.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: 2023-09-
|
11
|
+
date: 2023-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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-dataform_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.16.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|