google-apis-dataform_v1beta1 0.15.0 → 0.17.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ae8b6237ad16ac8c4fac97ad8e959fb061a14653b68b8244e24606e3acb05d8
|
4
|
+
data.tar.gz: 69f79d2fc365eb4fef7ee6d17cc990da42f4562caf46d56809ae411c36ae7ef2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0385bc62f9f406eb1d973fe0467556a8a424a458267b44ae8d2b778758654752df8fbb99e2c3646a5eb3d5e846a232bb1769c98fbedd8b411c0a010dfa33c71e'
|
7
|
+
data.tar.gz: 8fbe40d2f306b46f98326210adab0187797d51002e34a7d0df8c82080922d7048c4938ce7169b12c83984c0a061ee0586c901acef8f46367225806960b15c22d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataform_v1beta1
|
2
2
|
|
3
|
+
### v0.17.0 (2023-11-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231111
|
6
|
+
|
7
|
+
### v0.16.0 (2023-09-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230916
|
10
|
+
|
3
11
|
### v0.15.0 (2023-09-17)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230909
|
@@ -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>]
|
@@ -675,6 +675,25 @@ module Google
|
|
675
675
|
end
|
676
676
|
end
|
677
677
|
|
678
|
+
# Client-facing representation of a directory entry in search results.
|
679
|
+
class DirectorySearchResult
|
680
|
+
include Google::Apis::Core::Hashable
|
681
|
+
|
682
|
+
# File system path relative to the workspace root.
|
683
|
+
# Corresponds to the JSON property `path`
|
684
|
+
# @return [String]
|
685
|
+
attr_accessor :path
|
686
|
+
|
687
|
+
def initialize(**args)
|
688
|
+
update!(**args)
|
689
|
+
end
|
690
|
+
|
691
|
+
# Update properties of this object
|
692
|
+
def update!(**args)
|
693
|
+
@path = args[:path] if args.key?(:path)
|
694
|
+
end
|
695
|
+
end
|
696
|
+
|
678
697
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
679
698
|
# messages in your APIs. A typical example is to use it as the request or the
|
680
699
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -879,6 +898,25 @@ module Google
|
|
879
898
|
end
|
880
899
|
end
|
881
900
|
|
901
|
+
# Client-facing representation of a file entry in search results.
|
902
|
+
class FileSearchResult
|
903
|
+
include Google::Apis::Core::Hashable
|
904
|
+
|
905
|
+
# File system path relative to the workspace root.
|
906
|
+
# Corresponds to the JSON property `path`
|
907
|
+
# @return [String]
|
908
|
+
attr_accessor :path
|
909
|
+
|
910
|
+
def initialize(**args)
|
911
|
+
update!(**args)
|
912
|
+
end
|
913
|
+
|
914
|
+
# Update properties of this object
|
915
|
+
def update!(**args)
|
916
|
+
@path = args[:path] if args.key?(:path)
|
917
|
+
end
|
918
|
+
end
|
919
|
+
|
882
920
|
# Controls Git remote configuration for a repository.
|
883
921
|
class GitRemoteSettings
|
884
922
|
include Google::Apis::Core::Hashable
|
@@ -2278,6 +2316,57 @@ module Google
|
|
2278
2316
|
end
|
2279
2317
|
end
|
2280
2318
|
|
2319
|
+
# Client-facing representation of a file search response.
|
2320
|
+
class SearchFilesResponse
|
2321
|
+
include Google::Apis::Core::Hashable
|
2322
|
+
|
2323
|
+
# Optional. A token, which can be sent as `page_token` to retrieve the next page.
|
2324
|
+
# If this field is omitted, there are no subsequent pages.
|
2325
|
+
# Corresponds to the JSON property `nextPageToken`
|
2326
|
+
# @return [String]
|
2327
|
+
attr_accessor :next_page_token
|
2328
|
+
|
2329
|
+
# List of matched results.
|
2330
|
+
# Corresponds to the JSON property `searchResults`
|
2331
|
+
# @return [Array<Google::Apis::DataformV1beta1::SearchResult>]
|
2332
|
+
attr_accessor :search_results
|
2333
|
+
|
2334
|
+
def initialize(**args)
|
2335
|
+
update!(**args)
|
2336
|
+
end
|
2337
|
+
|
2338
|
+
# Update properties of this object
|
2339
|
+
def update!(**args)
|
2340
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2341
|
+
@search_results = args[:search_results] if args.key?(:search_results)
|
2342
|
+
end
|
2343
|
+
end
|
2344
|
+
|
2345
|
+
# Client-facing representation of a search result entry.
|
2346
|
+
class SearchResult
|
2347
|
+
include Google::Apis::Core::Hashable
|
2348
|
+
|
2349
|
+
# Client-facing representation of a directory entry in search results.
|
2350
|
+
# Corresponds to the JSON property `directory`
|
2351
|
+
# @return [Google::Apis::DataformV1beta1::DirectorySearchResult]
|
2352
|
+
attr_accessor :directory
|
2353
|
+
|
2354
|
+
# Client-facing representation of a file entry in search results.
|
2355
|
+
# Corresponds to the JSON property `file`
|
2356
|
+
# @return [Google::Apis::DataformV1beta1::FileSearchResult]
|
2357
|
+
attr_accessor :file
|
2358
|
+
|
2359
|
+
def initialize(**args)
|
2360
|
+
update!(**args)
|
2361
|
+
end
|
2362
|
+
|
2363
|
+
# Update properties of this object
|
2364
|
+
def update!(**args)
|
2365
|
+
@directory = args[:directory] if args.key?(:directory)
|
2366
|
+
@file = args[:file] if args.key?(:file)
|
2367
|
+
end
|
2368
|
+
end
|
2369
|
+
|
2281
2370
|
# Request message for `SetIamPolicy` method.
|
2282
2371
|
class SetIamPolicyRequest
|
2283
2372
|
include Google::Apis::Core::Hashable
|
@@ -2573,6 +2662,13 @@ module Google
|
|
2573
2662
|
# @return [String]
|
2574
2663
|
attr_accessor :name
|
2575
2664
|
|
2665
|
+
# Output only. The resolved compilation result that was used to create this
|
2666
|
+
# invocation. Will be in the format `projects/*/locations/*/repositories/*/
|
2667
|
+
# compilationResults/*`.
|
2668
|
+
# Corresponds to the JSON property `resolvedCompilationResult`
|
2669
|
+
# @return [String]
|
2670
|
+
attr_accessor :resolved_compilation_result
|
2671
|
+
|
2576
2672
|
# Output only. This workflow invocation's current state.
|
2577
2673
|
# Corresponds to the JSON property `state`
|
2578
2674
|
# @return [String]
|
@@ -2594,6 +2690,7 @@ module Google
|
|
2594
2690
|
@invocation_config = args[:invocation_config] if args.key?(:invocation_config)
|
2595
2691
|
@invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
|
2596
2692
|
@name = args[:name] if args.key?(:name)
|
2693
|
+
@resolved_compilation_result = args[:resolved_compilation_result] if args.key?(:resolved_compilation_result)
|
2597
2694
|
@state = args[:state] if args.key?(:state)
|
2598
2695
|
@workflow_config = args[:workflow_config] if args.key?(:workflow_config)
|
2599
2696
|
end
|
@@ -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.17.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 = "20231111"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -130,6 +130,12 @@ module Google
|
|
130
130
|
include Google::Apis::Core::JsonObjectSupport
|
131
131
|
end
|
132
132
|
|
133
|
+
class DirectorySearchResult
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
133
139
|
class Empty
|
134
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
141
|
|
@@ -178,6 +184,12 @@ module Google
|
|
178
184
|
include Google::Apis::Core::JsonObjectSupport
|
179
185
|
end
|
180
186
|
|
187
|
+
class FileSearchResult
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
181
193
|
class GitRemoteSettings
|
182
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
195
|
|
@@ -418,6 +430,18 @@ module Google
|
|
418
430
|
include Google::Apis::Core::JsonObjectSupport
|
419
431
|
end
|
420
432
|
|
433
|
+
class SearchFilesResponse
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
|
+
|
436
|
+
include Google::Apis::Core::JsonObjectSupport
|
437
|
+
end
|
438
|
+
|
439
|
+
class SearchResult
|
440
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
|
+
|
442
|
+
include Google::Apis::Core::JsonObjectSupport
|
443
|
+
end
|
444
|
+
|
421
445
|
class SetIamPolicyRequest
|
422
446
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
447
|
|
@@ -693,6 +717,13 @@ module Google
|
|
693
717
|
end
|
694
718
|
end
|
695
719
|
|
720
|
+
class DirectorySearchResult
|
721
|
+
# @private
|
722
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
723
|
+
property :path, as: 'path'
|
724
|
+
end
|
725
|
+
end
|
726
|
+
|
696
727
|
class Empty
|
697
728
|
# @private
|
698
729
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -758,6 +789,13 @@ module Google
|
|
758
789
|
end
|
759
790
|
end
|
760
791
|
|
792
|
+
class FileSearchResult
|
793
|
+
# @private
|
794
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
795
|
+
property :path, as: 'path'
|
796
|
+
end
|
797
|
+
end
|
798
|
+
|
761
799
|
class GitRemoteSettings
|
762
800
|
# @private
|
763
801
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1145,6 +1183,25 @@ module Google
|
|
1145
1183
|
end
|
1146
1184
|
end
|
1147
1185
|
|
1186
|
+
class SearchFilesResponse
|
1187
|
+
# @private
|
1188
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1189
|
+
property :next_page_token, as: 'nextPageToken'
|
1190
|
+
collection :search_results, as: 'searchResults', class: Google::Apis::DataformV1beta1::SearchResult, decorator: Google::Apis::DataformV1beta1::SearchResult::Representation
|
1191
|
+
|
1192
|
+
end
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
class SearchResult
|
1196
|
+
# @private
|
1197
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1198
|
+
property :directory, as: 'directory', class: Google::Apis::DataformV1beta1::DirectorySearchResult, decorator: Google::Apis::DataformV1beta1::DirectorySearchResult::Representation
|
1199
|
+
|
1200
|
+
property :file, as: 'file', class: Google::Apis::DataformV1beta1::FileSearchResult, decorator: Google::Apis::DataformV1beta1::FileSearchResult::Representation
|
1201
|
+
|
1202
|
+
end
|
1203
|
+
end
|
1204
|
+
|
1148
1205
|
class SetIamPolicyRequest
|
1149
1206
|
# @private
|
1150
1207
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1224,6 +1281,7 @@ module Google
|
|
1224
1281
|
property :invocation_timing, as: 'invocationTiming', class: Google::Apis::DataformV1beta1::Interval, decorator: Google::Apis::DataformV1beta1::Interval::Representation
|
1225
1282
|
|
1226
1283
|
property :name, as: 'name'
|
1284
|
+
property :resolved_compilation_result, as: 'resolvedCompilationResult'
|
1227
1285
|
property :state, as: 'state'
|
1228
1286
|
property :workflow_config, as: 'workflowConfig'
|
1229
1287
|
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
|
@@ -2081,6 +2202,51 @@ module Google
|
|
2081
2202
|
execute_or_queue_command(command, &block)
|
2082
2203
|
end
|
2083
2204
|
|
2205
|
+
# Finds the contents of a given Workspace directory by filter.
|
2206
|
+
# @param [String] workspace
|
2207
|
+
# Required. The workspace's name.
|
2208
|
+
# @param [String] filter
|
2209
|
+
# Optional. Optional filter for the returned list in go/filtering format.
|
2210
|
+
# Filtering is only currently supported on the `path` field.
|
2211
|
+
# @param [Fixnum] page_size
|
2212
|
+
# Optional. Maximum number of search results to return. The server may return
|
2213
|
+
# fewer items than requested. If unspecified, the server will pick an
|
2214
|
+
# appropriate default.
|
2215
|
+
# @param [String] page_token
|
2216
|
+
# Optional. Page token received from a previous `SearchFilesRequest` call.
|
2217
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
2218
|
+
# parameters provided to `SearchFilesRequest` must match the call that provided
|
2219
|
+
# the page token.
|
2220
|
+
# @param [String] fields
|
2221
|
+
# Selector specifying which fields to include in a partial response.
|
2222
|
+
# @param [String] quota_user
|
2223
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2224
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2225
|
+
# @param [Google::Apis::RequestOptions] options
|
2226
|
+
# Request-specific options
|
2227
|
+
#
|
2228
|
+
# @yield [result, err] Result & error if block supplied
|
2229
|
+
# @yieldparam result [Google::Apis::DataformV1beta1::SearchFilesResponse] parsed result object
|
2230
|
+
# @yieldparam err [StandardError] error object if request failed
|
2231
|
+
#
|
2232
|
+
# @return [Google::Apis::DataformV1beta1::SearchFilesResponse]
|
2233
|
+
#
|
2234
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2235
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2236
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2237
|
+
def search_project_location_repository_workspace_files(workspace, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2238
|
+
command = make_simple_command(:get, 'v1beta1/{+workspace}:searchFiles', options)
|
2239
|
+
command.response_representation = Google::Apis::DataformV1beta1::SearchFilesResponse::Representation
|
2240
|
+
command.response_class = Google::Apis::DataformV1beta1::SearchFilesResponse
|
2241
|
+
command.params['workspace'] = workspace unless workspace.nil?
|
2242
|
+
command.query['filter'] = filter unless filter.nil?
|
2243
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
2244
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
2245
|
+
command.query['fields'] = fields unless fields.nil?
|
2246
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2247
|
+
execute_or_queue_command(command, &block)
|
2248
|
+
end
|
2249
|
+
|
2084
2250
|
# Sets the access control policy on the specified resource. Replaces any
|
2085
2251
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
2086
2252
|
# PERMISSION_DENIED` errors.
|
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.17.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-
|
11
|
+
date: 2023-11-19 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.17.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: []
|