google-apis-discoveryengine_v1 0.8.0 → 0.9.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/discoveryengine_v1/classes.rb +4643 -1311
- data/lib/google/apis/discoveryengine_v1/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1/representations.rb +2734 -1460
- data/lib/google/apis/discoveryengine_v1/service.rb +71 -0
- metadata +3 -3
@@ -6315,6 +6315,77 @@ module Google
|
|
6315
6315
|
execute_or_queue_command(command, &block)
|
6316
6316
|
end
|
6317
6317
|
|
6318
|
+
# Gets the latest state of a long-running operation. Clients can use this method
|
6319
|
+
# to poll the operation result at intervals as recommended by the API service.
|
6320
|
+
# @param [String] name
|
6321
|
+
# The name of the operation resource.
|
6322
|
+
# @param [String] fields
|
6323
|
+
# Selector specifying which fields to include in a partial response.
|
6324
|
+
# @param [String] quota_user
|
6325
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
6326
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
6327
|
+
# @param [Google::Apis::RequestOptions] options
|
6328
|
+
# Request-specific options
|
6329
|
+
#
|
6330
|
+
# @yield [result, err] Result & error if block supplied
|
6331
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation] parsed result object
|
6332
|
+
# @yieldparam err [StandardError] error object if request failed
|
6333
|
+
#
|
6334
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation]
|
6335
|
+
#
|
6336
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6337
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6338
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6339
|
+
def get_project_location_identity_mapping_store_operation(name, fields: nil, quota_user: nil, options: nil, &block)
|
6340
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
6341
|
+
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation::Representation
|
6342
|
+
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation
|
6343
|
+
command.params['name'] = name unless name.nil?
|
6344
|
+
command.query['fields'] = fields unless fields.nil?
|
6345
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6346
|
+
execute_or_queue_command(command, &block)
|
6347
|
+
end
|
6348
|
+
|
6349
|
+
# Lists operations that match the specified filter in the request. If the server
|
6350
|
+
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
6351
|
+
# @param [String] name
|
6352
|
+
# The name of the operation's parent resource.
|
6353
|
+
# @param [String] filter
|
6354
|
+
# The standard list filter.
|
6355
|
+
# @param [Fixnum] page_size
|
6356
|
+
# The standard list page size.
|
6357
|
+
# @param [String] page_token
|
6358
|
+
# The standard list page token.
|
6359
|
+
# @param [String] fields
|
6360
|
+
# Selector specifying which fields to include in a partial response.
|
6361
|
+
# @param [String] quota_user
|
6362
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
6363
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
6364
|
+
# @param [Google::Apis::RequestOptions] options
|
6365
|
+
# Request-specific options
|
6366
|
+
#
|
6367
|
+
# @yield [result, err] Result & error if block supplied
|
6368
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse] parsed result object
|
6369
|
+
# @yieldparam err [StandardError] error object if request failed
|
6370
|
+
#
|
6371
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse]
|
6372
|
+
#
|
6373
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6374
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6375
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6376
|
+
def list_project_location_identity_mapping_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6377
|
+
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
6378
|
+
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
6379
|
+
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
6380
|
+
command.params['name'] = name unless name.nil?
|
6381
|
+
command.query['filter'] = filter unless filter.nil?
|
6382
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
6383
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
6384
|
+
command.query['fields'] = fields unless fields.nil?
|
6385
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6386
|
+
execute_or_queue_command(command, &block)
|
6387
|
+
end
|
6388
|
+
|
6318
6389
|
# Gets the latest state of a long-running operation. Clients can use this method
|
6319
6390
|
# to poll the operation result at intervals as recommended by the API service.
|
6320
6391
|
# @param [String] name
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.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: 2024-
|
11
|
+
date: 2024-07-25 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-discoveryengine_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.9.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|