google-apis-contentwarehouse_v1 0.11.0 → 0.13.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/contentwarehouse_v1/classes.rb +1383 -355
- data/lib/google/apis/contentwarehouse_v1/gem_version.rb +2 -2
- data/lib/google/apis/contentwarehouse_v1/representations.rb +498 -116
- data/lib/google/apis/contentwarehouse_v1/service.rb +0 -97
- metadata +3 -3
@@ -160,103 +160,6 @@ module Google
|
|
160
160
|
execute_or_queue_command(command, &block)
|
161
161
|
end
|
162
162
|
|
163
|
-
# Run a predefined pipeline.
|
164
|
-
# @param [String] name
|
165
|
-
# Required. The resource name which owns the resources of the pipeline. Format:
|
166
|
-
# projects/`project_number`/locations/`location`.
|
167
|
-
# @param [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1RunPipelineRequest] google_cloud_contentwarehouse_v1_run_pipeline_request_object
|
168
|
-
# @param [String] fields
|
169
|
-
# Selector specifying which fields to include in a partial response.
|
170
|
-
# @param [String] quota_user
|
171
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
172
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
173
|
-
# @param [Google::Apis::RequestOptions] options
|
174
|
-
# Request-specific options
|
175
|
-
#
|
176
|
-
# @yield [result, err] Result & error if block supplied
|
177
|
-
# @yieldparam result [Google::Apis::ContentwarehouseV1::GoogleLongrunningOperation] parsed result object
|
178
|
-
# @yieldparam err [StandardError] error object if request failed
|
179
|
-
#
|
180
|
-
# @return [Google::Apis::ContentwarehouseV1::GoogleLongrunningOperation]
|
181
|
-
#
|
182
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
183
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
184
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
185
|
-
def run_project_location_pipeline(name, google_cloud_contentwarehouse_v1_run_pipeline_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
186
|
-
command = make_simple_command(:post, 'v1/{+name}:runPipeline', options)
|
187
|
-
command.request_representation = Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1RunPipelineRequest::Representation
|
188
|
-
command.request_object = google_cloud_contentwarehouse_v1_run_pipeline_request_object
|
189
|
-
command.response_representation = Google::Apis::ContentwarehouseV1::GoogleLongrunningOperation::Representation
|
190
|
-
command.response_class = Google::Apis::ContentwarehouseV1::GoogleLongrunningOperation
|
191
|
-
command.params['name'] = name unless name.nil?
|
192
|
-
command.query['fields'] = fields unless fields.nil?
|
193
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
194
|
-
execute_or_queue_command(command, &block)
|
195
|
-
end
|
196
|
-
|
197
|
-
# Archives a data export job.
|
198
|
-
# @param [String] name
|
199
|
-
# Required. The resource name.
|
200
|
-
# @param [String] fields
|
201
|
-
# Selector specifying which fields to include in a partial response.
|
202
|
-
# @param [String] quota_user
|
203
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
204
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
205
|
-
# @param [Google::Apis::RequestOptions] options
|
206
|
-
# Request-specific options
|
207
|
-
#
|
208
|
-
# @yield [result, err] Result & error if block supplied
|
209
|
-
# @yieldparam result [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DataExportJob] parsed result object
|
210
|
-
# @yieldparam err [StandardError] error object if request failed
|
211
|
-
#
|
212
|
-
# @return [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DataExportJob]
|
213
|
-
#
|
214
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
215
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
216
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
217
|
-
def archive_project_location_data_export_job_data_export_job(name, fields: nil, quota_user: nil, options: nil, &block)
|
218
|
-
command = make_simple_command(:delete, 'v1/{+name}', options)
|
219
|
-
command.response_representation = Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DataExportJob::Representation
|
220
|
-
command.response_class = Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DataExportJob
|
221
|
-
command.params['name'] = name unless name.nil?
|
222
|
-
command.query['fields'] = fields unless fields.nil?
|
223
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
224
|
-
execute_or_queue_command(command, &block)
|
225
|
-
end
|
226
|
-
|
227
|
-
# Creates a data export job.
|
228
|
-
# @param [String] parent
|
229
|
-
# Required. The resource parent name.
|
230
|
-
# @param [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DataExportJob] google_cloud_contentwarehouse_v1_data_export_job_object
|
231
|
-
# @param [String] fields
|
232
|
-
# Selector specifying which fields to include in a partial response.
|
233
|
-
# @param [String] quota_user
|
234
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
235
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
236
|
-
# @param [Google::Apis::RequestOptions] options
|
237
|
-
# Request-specific options
|
238
|
-
#
|
239
|
-
# @yield [result, err] Result & error if block supplied
|
240
|
-
# @yieldparam result [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DataExportJob] parsed result object
|
241
|
-
# @yieldparam err [StandardError] error object if request failed
|
242
|
-
#
|
243
|
-
# @return [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DataExportJob]
|
244
|
-
#
|
245
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
246
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
247
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
248
|
-
def create_project_location_data_export_job(parent, google_cloud_contentwarehouse_v1_data_export_job_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
249
|
-
command = make_simple_command(:post, 'v1/{+parent}/dataExportJobs', options)
|
250
|
-
command.request_representation = Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DataExportJob::Representation
|
251
|
-
command.request_object = google_cloud_contentwarehouse_v1_data_export_job_object
|
252
|
-
command.response_representation = Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DataExportJob::Representation
|
253
|
-
command.response_class = Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1DataExportJob
|
254
|
-
command.params['parent'] = parent unless parent.nil?
|
255
|
-
command.query['fields'] = fields unless fields.nil?
|
256
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
257
|
-
execute_or_queue_command(command, &block)
|
258
|
-
end
|
259
|
-
|
260
163
|
# Creates a document schema.
|
261
164
|
# @param [String] parent
|
262
165
|
# Required. The parent name.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-contentwarehouse_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.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-04-16 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-contentwarehouse_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contentwarehouse_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contentwarehouse_v1/v0.13.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contentwarehouse_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|