google-apis-discoveryengine_v1alpha 0.59.0 → 0.60.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 +4 -0
- data/lib/google/apis/discoveryengine_v1alpha/classes.rb +93 -7
- data/lib/google/apis/discoveryengine_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1alpha/representations.rb +22 -0
- data/lib/google/apis/discoveryengine_v1alpha/service.rb +43 -7
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be5f5b8b0d8097968d7ac72ec58baa91de62e68d73af95cb24c1fa1b6bf39718
|
4
|
+
data.tar.gz: 36595b70791a22d5580d30e442b804d59c56a01d46299406465d0a0002aedfe4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db73554705058c8db769e83b2b1e08bb04e06513c368046369cea77b0200ff3b2318e2500e4368eb91f50a333c9b173193b38250f5fd285c21ebc35b381e69b2
|
7
|
+
data.tar.gz: eee517907bfbfb6ad9ea72d41986f085e82f9e2e3d3cc6263c545453c44a9564729091372b86f40b5766cc73a333348a6363baa99fbbc335c85f6845605e6f22
|
data/CHANGELOG.md
CHANGED
@@ -1789,7 +1789,8 @@ module Google
|
|
1789
1789
|
attr_accessor :active_time_range
|
1790
1790
|
|
1791
1791
|
# Optional. Query regex to match the whole search query. Cannot be set when
|
1792
|
-
# Condition.query_terms is set.
|
1792
|
+
# Condition.query_terms is set. Only supported for Basic Site Search promotion
|
1793
|
+
# serving controls.
|
1793
1794
|
# Corresponds to the JSON property `queryRegex`
|
1794
1795
|
# @return [String]
|
1795
1796
|
attr_accessor :query_regex
|
@@ -3983,6 +3984,12 @@ module Google
|
|
3983
3984
|
# @return [String]
|
3984
3985
|
attr_accessor :description
|
3985
3986
|
|
3987
|
+
# Optional. The Document the user wants to promote. For site search, leave unset
|
3988
|
+
# and only populate uri. Can be set along with uri.
|
3989
|
+
# Corresponds to the JSON property `document`
|
3990
|
+
# @return [String]
|
3991
|
+
attr_accessor :document
|
3992
|
+
|
3986
3993
|
# Optional. The enabled promotion will be returned for any serving configs
|
3987
3994
|
# associated with the parent of the control this promotion is attached to. This
|
3988
3995
|
# flag is used for basic site search only.
|
@@ -4014,6 +4021,7 @@ module Google
|
|
4014
4021
|
# Update properties of this object
|
4015
4022
|
def update!(**args)
|
4016
4023
|
@description = args[:description] if args.key?(:description)
|
4024
|
+
@document = args[:document] if args.key?(:document)
|
4017
4025
|
@enabled = args[:enabled] if args.key?(:enabled)
|
4018
4026
|
@image_uri = args[:image_uri] if args.key?(:image_uri)
|
4019
4027
|
@title = args[:title] if args.key?(:title)
|
@@ -8069,6 +8077,11 @@ module Google
|
|
8069
8077
|
class GoogleCloudDiscoveryengineV1alphaChunk
|
8070
8078
|
include Google::Apis::Core::Hashable
|
8071
8079
|
|
8080
|
+
# Output only. Annotation contents if the current chunk contains annotations.
|
8081
|
+
# Corresponds to the JSON property `annotationContents`
|
8082
|
+
# @return [Array<String>]
|
8083
|
+
attr_accessor :annotation_contents
|
8084
|
+
|
8072
8085
|
# Metadata of the current chunk. This field is only populated on SearchService.
|
8073
8086
|
# Search API.
|
8074
8087
|
# Corresponds to the JSON property `chunkMetadata`
|
@@ -8080,6 +8093,13 @@ module Google
|
|
8080
8093
|
# @return [String]
|
8081
8094
|
attr_accessor :content
|
8082
8095
|
|
8096
|
+
# Output only. Image Data URLs if the current chunk contains images. Data URLs
|
8097
|
+
# are composed of four parts: a prefix (data:), a MIME type indicating the type
|
8098
|
+
# of data, an optional base64 token if non-textual, and the data itself: data:,
|
8099
|
+
# Corresponds to the JSON property `dataUrls`
|
8100
|
+
# @return [Array<String>]
|
8101
|
+
attr_accessor :data_urls
|
8102
|
+
|
8083
8103
|
# Output only. This field is OUTPUT_ONLY. It contains derived data that are not
|
8084
8104
|
# in the original input document.
|
8085
8105
|
# Corresponds to the JSON property `derivedStructData`
|
@@ -8123,8 +8143,10 @@ module Google
|
|
8123
8143
|
|
8124
8144
|
# Update properties of this object
|
8125
8145
|
def update!(**args)
|
8146
|
+
@annotation_contents = args[:annotation_contents] if args.key?(:annotation_contents)
|
8126
8147
|
@chunk_metadata = args[:chunk_metadata] if args.key?(:chunk_metadata)
|
8127
8148
|
@content = args[:content] if args.key?(:content)
|
8149
|
+
@data_urls = args[:data_urls] if args.key?(:data_urls)
|
8128
8150
|
@derived_struct_data = args[:derived_struct_data] if args.key?(:derived_struct_data)
|
8129
8151
|
@document_metadata = args[:document_metadata] if args.key?(:document_metadata)
|
8130
8152
|
@id = args[:id] if args.key?(:id)
|
@@ -8546,7 +8568,8 @@ module Google
|
|
8546
8568
|
attr_accessor :active_time_range
|
8547
8569
|
|
8548
8570
|
# Optional. Query regex to match the whole search query. Cannot be set when
|
8549
|
-
# Condition.query_terms is set.
|
8571
|
+
# Condition.query_terms is set. Only supported for Basic Site Search promotion
|
8572
|
+
# serving controls.
|
8550
8573
|
# Corresponds to the JSON property `queryRegex`
|
8551
8574
|
# @return [String]
|
8552
8575
|
attr_accessor :query_regex
|
@@ -10803,10 +10826,15 @@ module Google
|
|
10803
10826
|
include Google::Apis::Core::Hashable
|
10804
10827
|
|
10805
10828
|
# The MIME type of the content. Supported types: * `application/pdf` (PDF, only
|
10806
|
-
# native PDFs are supported for now) * `text/html` (HTML) * `
|
10807
|
-
#
|
10808
|
-
#
|
10809
|
-
#
|
10829
|
+
# native PDFs are supported for now) * `text/html` (HTML) * `text/plain` (TXT) *
|
10830
|
+
# `text/xml` (XML) * `application/json` (JSON) * `application/vnd.openxmlformats-
|
10831
|
+
# officedocument.wordprocessingml.document` (DOCX) * `application/vnd.
|
10832
|
+
# openxmlformats-officedocument.presentationml.presentation` (PPTX) * `
|
10833
|
+
# application/vnd.openxmlformats-officedocument.spreadsheetml.sheet` (XLSX) * `
|
10834
|
+
# application/vnd.ms-excel.sheet.macroenabled.12` (XLSM) The following types are
|
10835
|
+
# supported only if layout parser is enabled in the data store: * `image/bmp` (
|
10836
|
+
# BMP) * `image/gif` (GIF) * `image/jpeg` (JPEG) * `image/png` (PNG) * `image/
|
10837
|
+
# tiff` (TIFF) See https://www.iana.org/assignments/media-types/media-types.
|
10810
10838
|
# xhtml.
|
10811
10839
|
# Corresponds to the JSON property `mimeType`
|
10812
10840
|
# @return [String]
|
@@ -12305,6 +12333,49 @@ module Google
|
|
12305
12333
|
end
|
12306
12334
|
end
|
12307
12335
|
|
12336
|
+
# Response message for DataConnectorService.GetConnectorSecret.
|
12337
|
+
class GoogleCloudDiscoveryengineV1alphaGetConnectorSecretResponse
|
12338
|
+
include Google::Apis::Core::Hashable
|
12339
|
+
|
12340
|
+
# The app name of the associated Connector.
|
12341
|
+
# Corresponds to the JSON property `app`
|
12342
|
+
# @return [String]
|
12343
|
+
attr_accessor :app
|
12344
|
+
|
12345
|
+
# The client id of the associated Connector.
|
12346
|
+
# Corresponds to the JSON property `clientId`
|
12347
|
+
# @return [String]
|
12348
|
+
attr_accessor :client_id
|
12349
|
+
|
12350
|
+
# The instance name of the associated Connector.
|
12351
|
+
# Corresponds to the JSON property `instance`
|
12352
|
+
# @return [String]
|
12353
|
+
attr_accessor :instance
|
12354
|
+
|
12355
|
+
# The redirect url of the associated Connector.
|
12356
|
+
# Corresponds to the JSON property `redirectUri`
|
12357
|
+
# @return [String]
|
12358
|
+
attr_accessor :redirect_uri
|
12359
|
+
|
12360
|
+
# The tenant id of the associated Connector.
|
12361
|
+
# Corresponds to the JSON property `tenantId`
|
12362
|
+
# @return [String]
|
12363
|
+
attr_accessor :tenant_id
|
12364
|
+
|
12365
|
+
def initialize(**args)
|
12366
|
+
update!(**args)
|
12367
|
+
end
|
12368
|
+
|
12369
|
+
# Update properties of this object
|
12370
|
+
def update!(**args)
|
12371
|
+
@app = args[:app] if args.key?(:app)
|
12372
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
12373
|
+
@instance = args[:instance] if args.key?(:instance)
|
12374
|
+
@redirect_uri = args[:redirect_uri] if args.key?(:redirect_uri)
|
12375
|
+
@tenant_id = args[:tenant_id] if args.key?(:tenant_id)
|
12376
|
+
end
|
12377
|
+
end
|
12378
|
+
|
12308
12379
|
# Request for GetSession method.
|
12309
12380
|
class GoogleCloudDiscoveryengineV1alphaGetSessionRequest
|
12310
12381
|
include Google::Apis::Core::Hashable
|
@@ -16367,6 +16438,12 @@ module Google
|
|
16367
16438
|
# @return [String]
|
16368
16439
|
attr_accessor :description
|
16369
16440
|
|
16441
|
+
# Optional. The Document the user wants to promote. For site search, leave unset
|
16442
|
+
# and only populate uri. Can be set along with uri.
|
16443
|
+
# Corresponds to the JSON property `document`
|
16444
|
+
# @return [String]
|
16445
|
+
attr_accessor :document
|
16446
|
+
|
16370
16447
|
# Optional. The enabled promotion will be returned for any serving configs
|
16371
16448
|
# associated with the parent of the control this promotion is attached to. This
|
16372
16449
|
# flag is used for basic site search only.
|
@@ -16398,6 +16475,7 @@ module Google
|
|
16398
16475
|
# Update properties of this object
|
16399
16476
|
def update!(**args)
|
16400
16477
|
@description = args[:description] if args.key?(:description)
|
16478
|
+
@document = args[:document] if args.key?(:document)
|
16401
16479
|
@enabled = args[:enabled] if args.key?(:enabled)
|
16402
16480
|
@image_uri = args[:image_uri] if args.key?(:image_uri)
|
16403
16481
|
@title = args[:title] if args.key?(:title)
|
@@ -21411,7 +21489,8 @@ module Google
|
|
21411
21489
|
attr_accessor :active_time_range
|
21412
21490
|
|
21413
21491
|
# Optional. Query regex to match the whole search query. Cannot be set when
|
21414
|
-
# Condition.query_terms is set.
|
21492
|
+
# Condition.query_terms is set. Only supported for Basic Site Search promotion
|
21493
|
+
# serving controls.
|
21415
21494
|
# Corresponds to the JSON property `queryRegex`
|
21416
21495
|
# @return [String]
|
21417
21496
|
attr_accessor :query_regex
|
@@ -24112,6 +24191,12 @@ module Google
|
|
24112
24191
|
# @return [String]
|
24113
24192
|
attr_accessor :description
|
24114
24193
|
|
24194
|
+
# Optional. The Document the user wants to promote. For site search, leave unset
|
24195
|
+
# and only populate uri. Can be set along with uri.
|
24196
|
+
# Corresponds to the JSON property `document`
|
24197
|
+
# @return [String]
|
24198
|
+
attr_accessor :document
|
24199
|
+
|
24115
24200
|
# Optional. The enabled promotion will be returned for any serving configs
|
24116
24201
|
# associated with the parent of the control this promotion is attached to. This
|
24117
24202
|
# flag is used for basic site search only.
|
@@ -24143,6 +24228,7 @@ module Google
|
|
24143
24228
|
# Update properties of this object
|
24144
24229
|
def update!(**args)
|
24145
24230
|
@description = args[:description] if args.key?(:description)
|
24231
|
+
@document = args[:document] if args.key?(:document)
|
24146
24232
|
@enabled = args[:enabled] if args.key?(:enabled)
|
24147
24233
|
@image_uri = args[:image_uri] if args.key?(:image_uri)
|
24148
24234
|
@title = args[:title] if args.key?(:title)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1alpha
|
18
18
|
# Version of the google-apis-discoveryengine_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.60.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250410"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1912,6 +1912,12 @@ module Google
|
|
1912
1912
|
include Google::Apis::Core::JsonObjectSupport
|
1913
1913
|
end
|
1914
1914
|
|
1915
|
+
class GoogleCloudDiscoveryengineV1alphaGetConnectorSecretResponse
|
1916
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1917
|
+
|
1918
|
+
include Google::Apis::Core::JsonObjectSupport
|
1919
|
+
end
|
1920
|
+
|
1915
1921
|
class GoogleCloudDiscoveryengineV1alphaGetSessionRequest
|
1916
1922
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1917
1923
|
|
@@ -5211,6 +5217,7 @@ module Google
|
|
5211
5217
|
# @private
|
5212
5218
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5213
5219
|
property :description, as: 'description'
|
5220
|
+
property :document, as: 'document'
|
5214
5221
|
property :enabled, as: 'enabled'
|
5215
5222
|
property :image_uri, as: 'imageUri'
|
5216
5223
|
property :title, as: 'title'
|
@@ -6317,9 +6324,11 @@ module Google
|
|
6317
6324
|
class GoogleCloudDiscoveryengineV1alphaChunk
|
6318
6325
|
# @private
|
6319
6326
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6327
|
+
collection :annotation_contents, as: 'annotationContents'
|
6320
6328
|
property :chunk_metadata, as: 'chunkMetadata', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaChunkChunkMetadata, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaChunkChunkMetadata::Representation
|
6321
6329
|
|
6322
6330
|
property :content, as: 'content'
|
6331
|
+
collection :data_urls, as: 'dataUrls'
|
6323
6332
|
hash :derived_struct_data, as: 'derivedStructData'
|
6324
6333
|
property :document_metadata, as: 'documentMetadata', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaChunkDocumentMetadata, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaChunkDocumentMetadata::Representation
|
6325
6334
|
|
@@ -7433,6 +7442,17 @@ module Google
|
|
7433
7442
|
end
|
7434
7443
|
end
|
7435
7444
|
|
7445
|
+
class GoogleCloudDiscoveryengineV1alphaGetConnectorSecretResponse
|
7446
|
+
# @private
|
7447
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7448
|
+
property :app, as: 'app'
|
7449
|
+
property :client_id, as: 'clientId'
|
7450
|
+
property :instance, as: 'instance'
|
7451
|
+
property :redirect_uri, as: 'redirectUri'
|
7452
|
+
property :tenant_id, as: 'tenantId'
|
7453
|
+
end
|
7454
|
+
end
|
7455
|
+
|
7436
7456
|
class GoogleCloudDiscoveryengineV1alphaGetSessionRequest
|
7437
7457
|
# @private
|
7438
7458
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8624,6 +8644,7 @@ module Google
|
|
8624
8644
|
# @private
|
8625
8645
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8626
8646
|
property :description, as: 'description'
|
8647
|
+
property :document, as: 'document'
|
8627
8648
|
property :enabled, as: 'enabled'
|
8628
8649
|
property :image_uri, as: 'imageUri'
|
8629
8650
|
property :title, as: 'title'
|
@@ -10665,6 +10686,7 @@ module Google
|
|
10665
10686
|
# @private
|
10666
10687
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10667
10688
|
property :description, as: 'description'
|
10689
|
+
property :document, as: 'document'
|
10668
10690
|
property :enabled, as: 'enabled'
|
10669
10691
|
property :image_uri, as: 'imageUri'
|
10670
10692
|
property :title, as: 'title'
|
@@ -853,11 +853,11 @@ module Google
|
|
853
853
|
# @param [String] update_mask
|
854
854
|
# Indicates which fields in the provided DataConnector to update. Supported
|
855
855
|
# field paths include: - refresh_interval - params - auto_run_disabled -
|
856
|
-
# action_config -
|
857
|
-
#
|
858
|
-
#
|
859
|
-
#
|
860
|
-
# error.
|
856
|
+
# action_config - action_config.action_params - action_config.service_name -
|
857
|
+
# destination_configs - blocking_reasons - sync_mode Note: Support for these
|
858
|
+
# fields may vary depending on the connector type. For example, not all
|
859
|
+
# connectors support `destination_configs`. If an unsupported or unknown field
|
860
|
+
# path is provided, the request will return an INVALID_ARGUMENT error.
|
861
861
|
# @param [String] fields
|
862
862
|
# Selector specifying which fields to include in a partial response.
|
863
863
|
# @param [String] quota_user
|
@@ -888,6 +888,36 @@ module Google
|
|
888
888
|
execute_or_queue_command(command, &block)
|
889
889
|
end
|
890
890
|
|
891
|
+
# Get the secret for the associated connector.
|
892
|
+
# @param [String] name
|
893
|
+
# Required. The full resource name of the associated data connector.
|
894
|
+
# @param [String] fields
|
895
|
+
# Selector specifying which fields to include in a partial response.
|
896
|
+
# @param [String] quota_user
|
897
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
898
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
899
|
+
# @param [Google::Apis::RequestOptions] options
|
900
|
+
# Request-specific options
|
901
|
+
#
|
902
|
+
# @yield [result, err] Result & error if block supplied
|
903
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaGetConnectorSecretResponse] parsed result object
|
904
|
+
# @yieldparam err [StandardError] error object if request failed
|
905
|
+
#
|
906
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaGetConnectorSecretResponse]
|
907
|
+
#
|
908
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
909
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
910
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
911
|
+
def get_project_location_collection_data_connector_connector_secret(name, fields: nil, quota_user: nil, options: nil, &block)
|
912
|
+
command = make_simple_command(:get, 'v1alpha/{+name}:getConnectorSecret', options)
|
913
|
+
command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaGetConnectorSecretResponse::Representation
|
914
|
+
command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaGetConnectorSecretResponse
|
915
|
+
command.params['name'] = name unless name.nil?
|
916
|
+
command.query['fields'] = fields unless fields.nil?
|
917
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
918
|
+
execute_or_queue_command(command, &block)
|
919
|
+
end
|
920
|
+
|
891
921
|
# Starts an immediate synchronization process for a DataConnector. Third Party
|
892
922
|
# Connector Users must specify which entities should be synced. FHIR Connectors
|
893
923
|
# must provide a timestamp to indicate the point in time from which data should
|
@@ -1628,6 +1658,8 @@ module Google
|
|
1628
1658
|
# access the Document, regardless of whether or not it exists, a `
|
1629
1659
|
# PERMISSION_DENIED` error is returned. If the requested Document does not exist,
|
1630
1660
|
# a `NOT_FOUND` error is returned.
|
1661
|
+
# @param [String] image_id
|
1662
|
+
# Optional. Specifies config for IMAGE_BYTES.
|
1631
1663
|
# @param [String] processed_document_format
|
1632
1664
|
# What format output should be. If unspecified, defaults to JSON.
|
1633
1665
|
# @param [String] processed_document_type
|
@@ -1649,11 +1681,12 @@ module Google
|
|
1649
1681
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1650
1682
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1651
1683
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1652
|
-
def get_project_location_collection_data_store_branch_document_processed_document(name, processed_document_format: nil, processed_document_type: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1684
|
+
def get_project_location_collection_data_store_branch_document_processed_document(name, image_id: nil, processed_document_format: nil, processed_document_type: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1653
1685
|
command = make_simple_command(:get, 'v1alpha/{+name}:getProcessedDocument', options)
|
1654
1686
|
command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProcessedDocument::Representation
|
1655
1687
|
command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProcessedDocument
|
1656
1688
|
command.params['name'] = name unless name.nil?
|
1689
|
+
command.query['imageId'] = image_id unless image_id.nil?
|
1657
1690
|
command.query['processedDocumentFormat'] = processed_document_format unless processed_document_format.nil?
|
1658
1691
|
command.query['processedDocumentType'] = processed_document_type unless processed_document_type.nil?
|
1659
1692
|
command.query['fields'] = fields unless fields.nil?
|
@@ -6569,6 +6602,8 @@ module Google
|
|
6569
6602
|
# access the Document, regardless of whether or not it exists, a `
|
6570
6603
|
# PERMISSION_DENIED` error is returned. If the requested Document does not exist,
|
6571
6604
|
# a `NOT_FOUND` error is returned.
|
6605
|
+
# @param [String] image_id
|
6606
|
+
# Optional. Specifies config for IMAGE_BYTES.
|
6572
6607
|
# @param [String] processed_document_format
|
6573
6608
|
# What format output should be. If unspecified, defaults to JSON.
|
6574
6609
|
# @param [String] processed_document_type
|
@@ -6590,11 +6625,12 @@ module Google
|
|
6590
6625
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6591
6626
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6592
6627
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6593
|
-
def get_project_location_data_store_branch_document_processed_document(name, processed_document_format: nil, processed_document_type: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6628
|
+
def get_project_location_data_store_branch_document_processed_document(name, image_id: nil, processed_document_format: nil, processed_document_type: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6594
6629
|
command = make_simple_command(:get, 'v1alpha/{+name}:getProcessedDocument', options)
|
6595
6630
|
command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProcessedDocument::Representation
|
6596
6631
|
command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProcessedDocument
|
6597
6632
|
command.params['name'] = name unless name.nil?
|
6633
|
+
command.query['imageId'] = image_id unless image_id.nil?
|
6598
6634
|
command.query['processedDocumentFormat'] = processed_document_format unless processed_document_format.nil?
|
6599
6635
|
command.query['processedDocumentType'] = processed_document_type unless processed_document_type.nil?
|
6600
6636
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.60.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-04-
|
10
|
+
date: 2025-04-20 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.60.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|