google-apis-dataform_v1beta1 0.16.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
@@ -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
|
@@ -2202,6 +2202,51 @@ module Google
|
|
2202
2202
|
execute_or_queue_command(command, &block)
|
2203
2203
|
end
|
2204
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
|
+
|
2205
2250
|
# Sets the access control policy on the specified resource. Replaces any
|
2206
2251
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
2207
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: []
|