google-apis-discoveryengine_v1alpha 0.59.0 → 0.61.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/discoveryengine_v1alpha/classes.rb +817 -9
- data/lib/google/apis/discoveryengine_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1alpha/representations.rb +328 -0
- data/lib/google/apis/discoveryengine_v1alpha/service.rb +43 -7
- metadata +3 -3
@@ -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.61.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-27 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.61.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:
|