google-apis-discoveryengine_v1 0.28.0 → 0.29.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: 34f8a31843734f2a27b15f533b2907416c22c9773248a5ec080dae907771facd
4
- data.tar.gz: cd07d5064400572a8e31c72df808f12e7ec4bb367dcc1adb65016e9cf5faef7a
3
+ metadata.gz: 7c5c7feaa22ba96db67f3f04a66feee01836eb11eecd4ce15ead9b6f5b7d747f
4
+ data.tar.gz: 2cc31c4cc392c9600a6e52696db8144dcd2353bd85fa246bb4e60a80f7fb126d
5
5
  SHA512:
6
- metadata.gz: 1a747f1a33b28b2831dcc5c59439c4e69bbe7a03851a7bc08a3b3bdfdefe67fa8446273156cd76f96fb872986d54464c76a3f73f823ec00c8af41ab6de6690bf
7
- data.tar.gz: e9a5618b6f6ca2de2869c022429a9c8a5d558b884e57891cf29a5d84f7511efab4c039e7fd71b6c0d09f8e93cb18492c40fa3a3eb5d1cdd75c0be91b9824bebc
6
+ metadata.gz: 20b637b5d16b534feb32d5ea1fffe714e049719a2cddb0fcce9dfaa8c0c6f77d5ff7ddeb99abdcfdbf7d2f3d895ca84991f998dc4331039e5a211c8177d00f9f
7
+ data.tar.gz: 16b2aed778fd3c62b34568c4d14db9d79dfde80df72de2d607cb90da17c8f4204f5210eb1eee00a27e757a8060bbaa10a4f2d345f3143d70584fa775e45ca381
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.29.0 (2025-03-09)
4
+
5
+ * Regenerated from discovery document revision 20250306
6
+
3
7
  ### v0.28.0 (2025-03-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20250226
@@ -5765,594 +5765,6 @@ module Google
5765
5765
  end
5766
5766
  end
5767
5767
 
5768
- # Top-level message sent by the client for the `GenerateGroundedContent` method.
5769
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequest
5770
- include Google::Apis::Core::Hashable
5771
-
5772
- # Content of the current conversation with the model. For single-turn queries,
5773
- # this is a single instance. For multi-turn queries, this is a repeated field
5774
- # that contains conversation history + latest request.
5775
- # Corresponds to the JSON property `contents`
5776
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent>]
5777
- attr_accessor :contents
5778
-
5779
- # Content generation specification.
5780
- # Corresponds to the JSON property `generationSpec`
5781
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGenerationSpec]
5782
- attr_accessor :generation_spec
5783
-
5784
- # Grounding specification.
5785
- # Corresponds to the JSON property `groundingSpec`
5786
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSpec]
5787
- attr_accessor :grounding_spec
5788
-
5789
- # Base structured datatype containing multi-part content of a message.
5790
- # Corresponds to the JSON property `systemInstruction`
5791
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent]
5792
- attr_accessor :system_instruction
5793
-
5794
- # The user labels applied to a resource must meet the following requirements: *
5795
- # Each resource can have multiple labels, up to a maximum of 64. * Each label
5796
- # must be a key-value pair. * Keys have a minimum length of 1 character and a
5797
- # maximum length of 63 characters and cannot be empty. Values can be empty and
5798
- # have a maximum length of 63 characters. * Keys and values can contain only
5799
- # lowercase letters, numeric characters, underscores, and dashes. All characters
5800
- # must use UTF-8 encoding, and international characters are allowed. * The key
5801
- # portion of a label must be unique. However, you can use the same key with
5802
- # multiple resources. * Keys must start with a lowercase letter or international
5803
- # character. See [Google Cloud Document](https://cloud.google.com/resource-
5804
- # manager/docs/creating-managing-labels#requirements) for more details.
5805
- # Corresponds to the JSON property `userLabels`
5806
- # @return [Hash<String,String>]
5807
- attr_accessor :user_labels
5808
-
5809
- def initialize(**args)
5810
- update!(**args)
5811
- end
5812
-
5813
- # Update properties of this object
5814
- def update!(**args)
5815
- @contents = args[:contents] if args.key?(:contents)
5816
- @generation_spec = args[:generation_spec] if args.key?(:generation_spec)
5817
- @grounding_spec = args[:grounding_spec] if args.key?(:grounding_spec)
5818
- @system_instruction = args[:system_instruction] if args.key?(:system_instruction)
5819
- @user_labels = args[:user_labels] if args.key?(:user_labels)
5820
- end
5821
- end
5822
-
5823
- # Describes the options to customize dynamic retrieval.
5824
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfiguration
5825
- include Google::Apis::Core::Hashable
5826
-
5827
- # Describes the predictor settings for dynamic retrieval.
5828
- # Corresponds to the JSON property `predictor`
5829
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfigurationDynamicRetrievalPredictor]
5830
- attr_accessor :predictor
5831
-
5832
- def initialize(**args)
5833
- update!(**args)
5834
- end
5835
-
5836
- # Update properties of this object
5837
- def update!(**args)
5838
- @predictor = args[:predictor] if args.key?(:predictor)
5839
- end
5840
- end
5841
-
5842
- # Describes the predictor settings for dynamic retrieval.
5843
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfigurationDynamicRetrievalPredictor
5844
- include Google::Apis::Core::Hashable
5845
-
5846
- # The value of the threshold. If the predictor will predict a value smaller than
5847
- # this, it would suppress grounding in the source.
5848
- # Corresponds to the JSON property `threshold`
5849
- # @return [Float]
5850
- attr_accessor :threshold
5851
-
5852
- # The version of the predictor to be used in dynamic retrieval.
5853
- # Corresponds to the JSON property `version`
5854
- # @return [String]
5855
- attr_accessor :version
5856
-
5857
- def initialize(**args)
5858
- update!(**args)
5859
- end
5860
-
5861
- # Update properties of this object
5862
- def update!(**args)
5863
- @threshold = args[:threshold] if args.key?(:threshold)
5864
- @version = args[:version] if args.key?(:version)
5865
- end
5866
- end
5867
-
5868
- # Content generation specification.
5869
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGenerationSpec
5870
- include Google::Apis::Core::Hashable
5871
-
5872
- # If specified, custom value for frequency penalty will be used.
5873
- # Corresponds to the JSON property `frequencyPenalty`
5874
- # @return [Float]
5875
- attr_accessor :frequency_penalty
5876
-
5877
- # Language code for content. Use language tags defined by [BCP47](https://www.
5878
- # rfc-editor.org/rfc/bcp/bcp47.txt).
5879
- # Corresponds to the JSON property `languageCode`
5880
- # @return [String]
5881
- attr_accessor :language_code
5882
-
5883
- # If specified, custom value for max output tokens will be used.
5884
- # Corresponds to the JSON property `maxOutputTokens`
5885
- # @return [Fixnum]
5886
- attr_accessor :max_output_tokens
5887
-
5888
- # Specifies which Vertex model id to use for generation.
5889
- # Corresponds to the JSON property `modelId`
5890
- # @return [String]
5891
- attr_accessor :model_id
5892
-
5893
- # If specified, custom value for presence penalty will be used.
5894
- # Corresponds to the JSON property `presencePenalty`
5895
- # @return [Float]
5896
- attr_accessor :presence_penalty
5897
-
5898
- # If specified, custom value for the seed will be used.
5899
- # Corresponds to the JSON property `seed`
5900
- # @return [Fixnum]
5901
- attr_accessor :seed
5902
-
5903
- # If specified, custom value for the temperature will be used.
5904
- # Corresponds to the JSON property `temperature`
5905
- # @return [Float]
5906
- attr_accessor :temperature
5907
-
5908
- # If specified, custom value for top-k sampling will be used.
5909
- # Corresponds to the JSON property `topK`
5910
- # @return [Fixnum]
5911
- attr_accessor :top_k
5912
-
5913
- # If specified, custom value for nucleus sampling will be used.
5914
- # Corresponds to the JSON property `topP`
5915
- # @return [Float]
5916
- attr_accessor :top_p
5917
-
5918
- def initialize(**args)
5919
- update!(**args)
5920
- end
5921
-
5922
- # Update properties of this object
5923
- def update!(**args)
5924
- @frequency_penalty = args[:frequency_penalty] if args.key?(:frequency_penalty)
5925
- @language_code = args[:language_code] if args.key?(:language_code)
5926
- @max_output_tokens = args[:max_output_tokens] if args.key?(:max_output_tokens)
5927
- @model_id = args[:model_id] if args.key?(:model_id)
5928
- @presence_penalty = args[:presence_penalty] if args.key?(:presence_penalty)
5929
- @seed = args[:seed] if args.key?(:seed)
5930
- @temperature = args[:temperature] if args.key?(:temperature)
5931
- @top_k = args[:top_k] if args.key?(:top_k)
5932
- @top_p = args[:top_p] if args.key?(:top_p)
5933
- end
5934
- end
5935
-
5936
- # Grounding source.
5937
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSource
5938
- include Google::Apis::Core::Hashable
5939
-
5940
- # Google Search config parameters.
5941
- # Corresponds to the JSON property `googleSearchSource`
5942
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceGoogleSearchSource]
5943
- attr_accessor :google_search_source
5944
-
5945
- # Message to be used for grounding based on inline content.
5946
- # Corresponds to the JSON property `inlineSource`
5947
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceInlineSource]
5948
- attr_accessor :inline_source
5949
-
5950
- # Message to be used for grounding with Vertex AI Search.
5951
- # Corresponds to the JSON property `searchSource`
5952
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceSearchSource]
5953
- attr_accessor :search_source
5954
-
5955
- def initialize(**args)
5956
- update!(**args)
5957
- end
5958
-
5959
- # Update properties of this object
5960
- def update!(**args)
5961
- @google_search_source = args[:google_search_source] if args.key?(:google_search_source)
5962
- @inline_source = args[:inline_source] if args.key?(:inline_source)
5963
- @search_source = args[:search_source] if args.key?(:search_source)
5964
- end
5965
- end
5966
-
5967
- # Google Search config parameters.
5968
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceGoogleSearchSource
5969
- include Google::Apis::Core::Hashable
5970
-
5971
- # Describes the options to customize dynamic retrieval.
5972
- # Corresponds to the JSON property `dynamicRetrievalConfig`
5973
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfiguration]
5974
- attr_accessor :dynamic_retrieval_config
5975
-
5976
- def initialize(**args)
5977
- update!(**args)
5978
- end
5979
-
5980
- # Update properties of this object
5981
- def update!(**args)
5982
- @dynamic_retrieval_config = args[:dynamic_retrieval_config] if args.key?(:dynamic_retrieval_config)
5983
- end
5984
- end
5985
-
5986
- # Message to be used for grounding based on inline content.
5987
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceInlineSource
5988
- include Google::Apis::Core::Hashable
5989
-
5990
- # Attributes associated with the content. Common attributes include `source` (
5991
- # indicating where the content was sourced from) and `author` (indicating the
5992
- # author of the content).
5993
- # Corresponds to the JSON property `attributes`
5994
- # @return [Hash<String,String>]
5995
- attr_accessor :attributes
5996
-
5997
- # List of facts to be used for grounding.
5998
- # Corresponds to the JSON property `groundingFacts`
5999
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundingFact>]
6000
- attr_accessor :grounding_facts
6001
-
6002
- def initialize(**args)
6003
- update!(**args)
6004
- end
6005
-
6006
- # Update properties of this object
6007
- def update!(**args)
6008
- @attributes = args[:attributes] if args.key?(:attributes)
6009
- @grounding_facts = args[:grounding_facts] if args.key?(:grounding_facts)
6010
- end
6011
- end
6012
-
6013
- # Message to be used for grounding with Vertex AI Search.
6014
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceSearchSource
6015
- include Google::Apis::Core::Hashable
6016
-
6017
- # Filter expression to be applied to the search. The syntax is the same as
6018
- # SearchRequest.filter.
6019
- # Corresponds to the JSON property `filter`
6020
- # @return [String]
6021
- attr_accessor :filter
6022
-
6023
- # Number of search results to return. The default value is 10. The maximumm
6024
- # allowed value is 10.
6025
- # Corresponds to the JSON property `maxResultCount`
6026
- # @return [Fixnum]
6027
- attr_accessor :max_result_count
6028
-
6029
- # If set, safe search is enabled in Vertex AI Search requests.
6030
- # Corresponds to the JSON property `safeSearch`
6031
- # @return [Boolean]
6032
- attr_accessor :safe_search
6033
- alias_method :safe_search?, :safe_search
6034
-
6035
- # The resource name of the Engine to use. Format: `projects/`project`/locations/`
6036
- # location`/collections/`collection_id`/engines/`engine_id`/servingConfigs/`
6037
- # serving_config_id``
6038
- # Corresponds to the JSON property `servingConfig`
6039
- # @return [String]
6040
- attr_accessor :serving_config
6041
-
6042
- def initialize(**args)
6043
- update!(**args)
6044
- end
6045
-
6046
- # Update properties of this object
6047
- def update!(**args)
6048
- @filter = args[:filter] if args.key?(:filter)
6049
- @max_result_count = args[:max_result_count] if args.key?(:max_result_count)
6050
- @safe_search = args[:safe_search] if args.key?(:safe_search)
6051
- @serving_config = args[:serving_config] if args.key?(:serving_config)
6052
- end
6053
- end
6054
-
6055
- # Grounding specification.
6056
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSpec
6057
- include Google::Apis::Core::Hashable
6058
-
6059
- # Grounding sources.
6060
- # Corresponds to the JSON property `groundingSources`
6061
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSource>]
6062
- attr_accessor :grounding_sources
6063
-
6064
- def initialize(**args)
6065
- update!(**args)
6066
- end
6067
-
6068
- # Update properties of this object
6069
- def update!(**args)
6070
- @grounding_sources = args[:grounding_sources] if args.key?(:grounding_sources)
6071
- end
6072
- end
6073
-
6074
- # Response for the `GenerateGroundedContent` method.
6075
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse
6076
- include Google::Apis::Core::Hashable
6077
-
6078
- # Generated candidates.
6079
- # Corresponds to the JSON property `candidates`
6080
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidate>]
6081
- attr_accessor :candidates
6082
-
6083
- def initialize(**args)
6084
- update!(**args)
6085
- end
6086
-
6087
- # Update properties of this object
6088
- def update!(**args)
6089
- @candidates = args[:candidates] if args.key?(:candidates)
6090
- end
6091
- end
6092
-
6093
- # A response candidate generated from the model.
6094
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidate
6095
- include Google::Apis::Core::Hashable
6096
-
6097
- # Base structured datatype containing multi-part content of a message.
6098
- # Corresponds to the JSON property `content`
6099
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent]
6100
- attr_accessor :content
6101
-
6102
- # Citation for the generated content.
6103
- # Corresponds to the JSON property `groundingMetadata`
6104
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadata]
6105
- attr_accessor :grounding_metadata
6106
-
6107
- # The overall grounding score for the candidate, in the range of [0, 1].
6108
- # Corresponds to the JSON property `groundingScore`
6109
- # @return [Float]
6110
- attr_accessor :grounding_score
6111
-
6112
- # Index of the candidate.
6113
- # Corresponds to the JSON property `index`
6114
- # @return [Fixnum]
6115
- attr_accessor :index
6116
-
6117
- def initialize(**args)
6118
- update!(**args)
6119
- end
6120
-
6121
- # Update properties of this object
6122
- def update!(**args)
6123
- @content = args[:content] if args.key?(:content)
6124
- @grounding_metadata = args[:grounding_metadata] if args.key?(:grounding_metadata)
6125
- @grounding_score = args[:grounding_score] if args.key?(:grounding_score)
6126
- @index = args[:index] if args.key?(:index)
6127
- end
6128
- end
6129
-
6130
- # Citation for the generated content.
6131
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadata
6132
- include Google::Apis::Core::Hashable
6133
-
6134
- # GroundingSupport across all claims in the answer candidate. An support to a
6135
- # fact indicates that the claim is supported by the fact.
6136
- # Corresponds to the JSON property `groundingSupport`
6137
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataGroundingSupport>]
6138
- attr_accessor :grounding_support
6139
-
6140
- # Retrieval metadata to provide an understanding in the retrieval steps
6141
- # performed by the model. There can be multiple such messages which can
6142
- # correspond to different parts of the retrieval. This is a mechanism used to
6143
- # ensure transparency to our users.
6144
- # Corresponds to the JSON property `retrievalMetadata`
6145
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataRetrievalMetadata>]
6146
- attr_accessor :retrieval_metadata
6147
-
6148
- # Google search entry point.
6149
- # Corresponds to the JSON property `searchEntryPoint`
6150
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataSearchEntryPoint]
6151
- attr_accessor :search_entry_point
6152
-
6153
- # List of chunks to be attributed across all claims in the candidate. These are
6154
- # derived from the grounding sources supplied in the request.
6155
- # Corresponds to the JSON property `supportChunks`
6156
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FactChunk>]
6157
- attr_accessor :support_chunks
6158
-
6159
- # Web search queries for the following-up web search.
6160
- # Corresponds to the JSON property `webSearchQueries`
6161
- # @return [Array<String>]
6162
- attr_accessor :web_search_queries
6163
-
6164
- def initialize(**args)
6165
- update!(**args)
6166
- end
6167
-
6168
- # Update properties of this object
6169
- def update!(**args)
6170
- @grounding_support = args[:grounding_support] if args.key?(:grounding_support)
6171
- @retrieval_metadata = args[:retrieval_metadata] if args.key?(:retrieval_metadata)
6172
- @search_entry_point = args[:search_entry_point] if args.key?(:search_entry_point)
6173
- @support_chunks = args[:support_chunks] if args.key?(:support_chunks)
6174
- @web_search_queries = args[:web_search_queries] if args.key?(:web_search_queries)
6175
- end
6176
- end
6177
-
6178
- # Describes the metadata about dynamic retrieval.
6179
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalMetadata
6180
- include Google::Apis::Core::Hashable
6181
-
6182
- # Describes the metadata about the dynamic retrieval predictor.
6183
- # Corresponds to the JSON property `predictorMetadata`
6184
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalPredictorMetadata]
6185
- attr_accessor :predictor_metadata
6186
-
6187
- def initialize(**args)
6188
- update!(**args)
6189
- end
6190
-
6191
- # Update properties of this object
6192
- def update!(**args)
6193
- @predictor_metadata = args[:predictor_metadata] if args.key?(:predictor_metadata)
6194
- end
6195
- end
6196
-
6197
- # Describes the metadata about the dynamic retrieval predictor.
6198
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalPredictorMetadata
6199
- include Google::Apis::Core::Hashable
6200
-
6201
- # The value of the predictor. This should be between [0, 1] where a value of 0
6202
- # means that the query would not benefit from grounding, while a value of 1.0
6203
- # means that the query would benefit the most. In between values allow to
6204
- # differentiate between different usefulness scores for grounding.
6205
- # Corresponds to the JSON property `prediction`
6206
- # @return [Float]
6207
- attr_accessor :prediction
6208
-
6209
- # The version of the predictor which was used in dynamic retrieval.
6210
- # Corresponds to the JSON property `version`
6211
- # @return [String]
6212
- attr_accessor :version
6213
-
6214
- def initialize(**args)
6215
- update!(**args)
6216
- end
6217
-
6218
- # Update properties of this object
6219
- def update!(**args)
6220
- @prediction = args[:prediction] if args.key?(:prediction)
6221
- @version = args[:version] if args.key?(:version)
6222
- end
6223
- end
6224
-
6225
- # Grounding info for a claim in the candidate and its support.
6226
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataGroundingSupport
6227
- include Google::Apis::Core::Hashable
6228
-
6229
- # Text for the claim in the candidate. Always provided when a support is found.
6230
- # Corresponds to the JSON property `claimText`
6231
- # @return [String]
6232
- attr_accessor :claim_text
6233
-
6234
- # A list of indices (into 'support_chunks') specifying the citations associated
6235
- # with the claim. For instance [1,3,4] means that support_chunks[1],
6236
- # support_chunks[3], support_chunks[4] are the chunks attributed to the claim.
6237
- # Corresponds to the JSON property `supportChunkIndices`
6238
- # @return [Array<Fixnum>]
6239
- attr_accessor :support_chunk_indices
6240
-
6241
- # A score in the range of [0, 1] describing how grounded is a specific claim in
6242
- # the support chunks indicated. Higher value means that the claim is better
6243
- # supported by the chunks.
6244
- # Corresponds to the JSON property `supportScore`
6245
- # @return [Float]
6246
- attr_accessor :support_score
6247
-
6248
- def initialize(**args)
6249
- update!(**args)
6250
- end
6251
-
6252
- # Update properties of this object
6253
- def update!(**args)
6254
- @claim_text = args[:claim_text] if args.key?(:claim_text)
6255
- @support_chunk_indices = args[:support_chunk_indices] if args.key?(:support_chunk_indices)
6256
- @support_score = args[:support_score] if args.key?(:support_score)
6257
- end
6258
- end
6259
-
6260
- # Describes the metadata associated with a retrieval step.
6261
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataRetrievalMetadata
6262
- include Google::Apis::Core::Hashable
6263
-
6264
- # Describes the metadata about dynamic retrieval.
6265
- # Corresponds to the JSON property `dynamicRetrievalMetadata`
6266
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalMetadata]
6267
- attr_accessor :dynamic_retrieval_metadata
6268
-
6269
- # Describes the source to which the metadata is referring to.
6270
- # Corresponds to the JSON property `source`
6271
- # @return [String]
6272
- attr_accessor :source
6273
-
6274
- def initialize(**args)
6275
- update!(**args)
6276
- end
6277
-
6278
- # Update properties of this object
6279
- def update!(**args)
6280
- @dynamic_retrieval_metadata = args[:dynamic_retrieval_metadata] if args.key?(:dynamic_retrieval_metadata)
6281
- @source = args[:source] if args.key?(:source)
6282
- end
6283
- end
6284
-
6285
- # Google search entry point.
6286
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataSearchEntryPoint
6287
- include Google::Apis::Core::Hashable
6288
-
6289
- # Web content snippet that can be embedded in a web page or an app webview.
6290
- # Corresponds to the JSON property `renderedContent`
6291
- # @return [String]
6292
- attr_accessor :rendered_content
6293
-
6294
- # Base64 encoded JSON representing array of tuple.
6295
- # Corresponds to the JSON property `sdkBlob`
6296
- # NOTE: Values are automatically base64 encoded/decoded in the client library.
6297
- # @return [String]
6298
- attr_accessor :sdk_blob
6299
-
6300
- def initialize(**args)
6301
- update!(**args)
6302
- end
6303
-
6304
- # Update properties of this object
6305
- def update!(**args)
6306
- @rendered_content = args[:rendered_content] if args.key?(:rendered_content)
6307
- @sdk_blob = args[:sdk_blob] if args.key?(:sdk_blob)
6308
- end
6309
- end
6310
-
6311
- # Base structured datatype containing multi-part content of a message.
6312
- class GoogleCloudDiscoveryengineV1GroundedGenerationContent
6313
- include Google::Apis::Core::Hashable
6314
-
6315
- # Ordered `Parts` that constitute a single message.
6316
- # Corresponds to the JSON property `parts`
6317
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContentPart>]
6318
- attr_accessor :parts
6319
-
6320
- # Producer of the content. Must be either `user` or `model`. Intended to be used
6321
- # for multi-turn conversations. Otherwise, it can be left unset.
6322
- # Corresponds to the JSON property `role`
6323
- # @return [String]
6324
- attr_accessor :role
6325
-
6326
- def initialize(**args)
6327
- update!(**args)
6328
- end
6329
-
6330
- # Update properties of this object
6331
- def update!(**args)
6332
- @parts = args[:parts] if args.key?(:parts)
6333
- @role = args[:role] if args.key?(:role)
6334
- end
6335
- end
6336
-
6337
- # Single part of content.
6338
- class GoogleCloudDiscoveryengineV1GroundedGenerationContentPart
6339
- include Google::Apis::Core::Hashable
6340
-
6341
- # Inline text.
6342
- # Corresponds to the JSON property `text`
6343
- # @return [String]
6344
- attr_accessor :text
6345
-
6346
- def initialize(**args)
6347
- update!(**args)
6348
- end
6349
-
6350
- # Update properties of this object
6351
- def update!(**args)
6352
- @text = args[:text] if args.key?(:text)
6353
- end
6354
- end
6355
-
6356
5768
  # Grounding Fact.
6357
5769
  class GoogleCloudDiscoveryengineV1GroundingFact
6358
5770
  include Google::Apis::Core::Hashable
@@ -8196,7 +7608,7 @@ module Google
8196
7608
  alias_method :ignore_record_details_in_response?, :ignore_record_details_in_response
8197
7609
 
8198
7610
  # The identifier of the model to use. It is one of: * `semantic-ranker-512@
8199
- # latest`: Semantic ranking model with maxiumn input token size 512. It is set
7611
+ # latest`: Semantic ranking model with maximum input token size 512. It is set
8200
7612
  # to `semantic-ranker-512@latest` by default if unspecified.
8201
7613
  # Corresponds to the JSON property `model`
8202
7614
  # @return [String]
@@ -8734,10 +8146,10 @@ module Google
8734
8146
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestContentSearchSpec]
8735
8147
  attr_accessor :content_search_spec
8736
8148
 
8737
- # Specs defining DataStores to filter on in a search call and configurations for
8738
- # those data stores. This is only considered for Engines with multiple data
8739
- # stores. For engines with a single data store, the specs directly under
8740
- # SearchRequest should be used.
8149
+ # Specifications that define the specific [DataStore]s to be searched, along
8150
+ # with configurations for those data stores. This is only considered for Engines
8151
+ # with multiple data stores. For engines with a single data store, the specs
8152
+ # directly under SearchRequest should be used.
8741
8153
  # Corresponds to the JSON property `dataStoreSpecs`
8742
8154
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestDataStoreSpec>]
8743
8155
  attr_accessor :data_store_specs
@@ -12715,6 +12127,11 @@ module Google
12715
12127
  # @return [Fixnum]
12716
12128
  attr_accessor :indexed_record_count
12717
12129
 
12130
+ # Represents the progress of a sync run.
12131
+ # Corresponds to the JSON property `progress`
12132
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress]
12133
+ attr_accessor :progress
12134
+
12718
12135
  # The number of requests sent to 3p API.
12719
12136
  # Corresponds to the JSON property `sourceApiRequestCount`
12720
12137
  # @return [Fixnum]
@@ -12753,6 +12170,7 @@ module Google
12753
12170
  @errors = args[:errors] if args.key?(:errors)
12754
12171
  @extracted_record_count = args[:extracted_record_count] if args.key?(:extracted_record_count)
12755
12172
  @indexed_record_count = args[:indexed_record_count] if args.key?(:indexed_record_count)
12173
+ @progress = args[:progress] if args.key?(:progress)
12756
12174
  @source_api_request_count = args[:source_api_request_count] if args.key?(:source_api_request_count)
12757
12175
  @state = args[:state] if args.key?(:state)
12758
12176
  @state_update_time = args[:state_update_time] if args.key?(:state_update_time)
@@ -12761,6 +12179,38 @@ module Google
12761
12179
  end
12762
12180
  end
12763
12181
 
12182
+ # Represents the progress of a sync run.
12183
+ class GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress
12184
+ include Google::Apis::Core::Hashable
12185
+
12186
+ # The current progress.
12187
+ # Corresponds to the JSON property `currentCount`
12188
+ # @return [Fixnum]
12189
+ attr_accessor :current_count
12190
+
12191
+ # Derived. The percentile of the progress.current_count / total_count. The value
12192
+ # is between [0, 1.0] inclusive.
12193
+ # Corresponds to the JSON property `percentile`
12194
+ # @return [Float]
12195
+ attr_accessor :percentile
12196
+
12197
+ # The total.
12198
+ # Corresponds to the JSON property `totalCount`
12199
+ # @return [Fixnum]
12200
+ attr_accessor :total_count
12201
+
12202
+ def initialize(**args)
12203
+ update!(**args)
12204
+ end
12205
+
12206
+ # Update properties of this object
12207
+ def update!(**args)
12208
+ @current_count = args[:current_count] if args.key?(:current_count)
12209
+ @percentile = args[:percentile] if args.key?(:percentile)
12210
+ @total_count = args[:total_count] if args.key?(:total_count)
12211
+ end
12212
+ end
12213
+
12764
12214
  # Defines a conditioned behavior to employ during serving. Must be attached to a
12765
12215
  # ServingConfig to be considered at serving time. Permitted actions dependent on
12766
12216
  # `SolutionType`.
@@ -13309,6 +12759,13 @@ module Google
13309
12759
  # @return [Array<String>]
13310
12760
  attr_accessor :blocking_reasons
13311
12761
 
12762
+ # Output only. The type of connector. Each source can only map to one type. For
12763
+ # example, salesforce, confluence and jira have THIRD_PARTY connector type. It
12764
+ # is notmutable once set by system.
12765
+ # Corresponds to the JSON property `connectorType`
12766
+ # @return [String]
12767
+ attr_accessor :connector_type
12768
+
13312
12769
  # Output only. Timestamp the DataConnector was created at.
13313
12770
  # Corresponds to the JSON property `createTime`
13314
12771
  # @return [String]
@@ -13428,6 +12885,11 @@ module Google
13428
12885
  # @return [String]
13429
12886
  attr_accessor :private_connectivity_project_id
13430
12887
 
12888
+ # Output only. real-time sync state
12889
+ # Corresponds to the JSON property `realtimeState`
12890
+ # @return [String]
12891
+ attr_accessor :realtime_state
12892
+
13431
12893
  # Required. The refresh interval for data sync. If duration is set to 0, the
13432
12894
  # data will be synced in real time. The streaming feature is not supported yet.
13433
12895
  # The minimum is 30 minutes and maximum is 7 days.
@@ -13471,6 +12933,7 @@ module Google
13471
12933
  @auto_run_disabled = args[:auto_run_disabled] if args.key?(:auto_run_disabled)
13472
12934
  @bap_config = args[:bap_config] if args.key?(:bap_config)
13473
12935
  @blocking_reasons = args[:blocking_reasons] if args.key?(:blocking_reasons)
12936
+ @connector_type = args[:connector_type] if args.key?(:connector_type)
13474
12937
  @create_time = args[:create_time] if args.key?(:create_time)
13475
12938
  @data_source = args[:data_source] if args.key?(:data_source)
13476
12939
  @destination_configs = args[:destination_configs] if args.key?(:destination_configs)
@@ -13485,6 +12948,7 @@ module Google
13485
12948
  @next_sync_time = args[:next_sync_time] if args.key?(:next_sync_time)
13486
12949
  @params = args[:params] if args.key?(:params)
13487
12950
  @private_connectivity_project_id = args[:private_connectivity_project_id] if args.key?(:private_connectivity_project_id)
12951
+ @realtime_state = args[:realtime_state] if args.key?(:realtime_state)
13488
12952
  @refresh_interval = args[:refresh_interval] if args.key?(:refresh_interval)
13489
12953
  @state = args[:state] if args.key?(:state)
13490
12954
  @static_ip_addresses = args[:static_ip_addresses] if args.key?(:static_ip_addresses)
@@ -13800,11 +13264,21 @@ module Google
13800
13264
  class GoogleCloudDiscoveryengineV1alphaDedicatedCrawlRateTimeSeries
13801
13265
  include Google::Apis::Core::Hashable
13802
13266
 
13267
+ # The historical crawl rate timeseries data, used for monitoring.
13268
+ # Corresponds to the JSON property `autoRefreshCrawlErrorRate`
13269
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries]
13270
+ attr_accessor :auto_refresh_crawl_error_rate
13271
+
13803
13272
  # The historical crawl rate timeseries data, used for monitoring.
13804
13273
  # Corresponds to the JSON property `autoRefreshCrawlRate`
13805
13274
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries]
13806
13275
  attr_accessor :auto_refresh_crawl_rate
13807
13276
 
13277
+ # The historical crawl rate timeseries data, used for monitoring.
13278
+ # Corresponds to the JSON property `userTriggeredCrawlErrorRate`
13279
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries]
13280
+ attr_accessor :user_triggered_crawl_error_rate
13281
+
13808
13282
  # The historical crawl rate timeseries data, used for monitoring.
13809
13283
  # Corresponds to the JSON property `userTriggeredCrawlRate`
13810
13284
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries]
@@ -13816,7 +13290,9 @@ module Google
13816
13290
 
13817
13291
  # Update properties of this object
13818
13292
  def update!(**args)
13293
+ @auto_refresh_crawl_error_rate = args[:auto_refresh_crawl_error_rate] if args.key?(:auto_refresh_crawl_error_rate)
13819
13294
  @auto_refresh_crawl_rate = args[:auto_refresh_crawl_rate] if args.key?(:auto_refresh_crawl_rate)
13295
+ @user_triggered_crawl_error_rate = args[:user_triggered_crawl_error_rate] if args.key?(:user_triggered_crawl_error_rate)
13820
13296
  @user_triggered_crawl_rate = args[:user_triggered_crawl_rate] if args.key?(:user_triggered_crawl_rate)
13821
13297
  end
13822
13298
  end
@@ -16792,10 +16268,10 @@ module Google
16792
16268
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCustomFineTuningSpec]
16793
16269
  attr_accessor :custom_fine_tuning_spec
16794
16270
 
16795
- # Specs defining DataStores to filter on in a search call and configurations for
16796
- # those data stores. This is only considered for Engines with multiple data
16797
- # stores. For engines with a single data store, the specs directly under
16798
- # SearchRequest should be used.
16271
+ # Specifications that define the specific [DataStore]s to be searched, along
16272
+ # with configurations for those data stores. This is only considered for Engines
16273
+ # with multiple data stores. For engines with a single data store, the specs
16274
+ # directly under SearchRequest should be used.
16799
16275
  # Corresponds to the JSON property `dataStoreSpecs`
16800
16276
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestDataStoreSpec>]
16801
16277
  attr_accessor :data_store_specs
@@ -19727,11 +19203,21 @@ module Google
19727
19203
  class GoogleCloudDiscoveryengineV1betaDedicatedCrawlRateTimeSeries
19728
19204
  include Google::Apis::Core::Hashable
19729
19205
 
19206
+ # The historical crawl rate timeseries data, used for monitoring.
19207
+ # Corresponds to the JSON property `autoRefreshCrawlErrorRate`
19208
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
19209
+ attr_accessor :auto_refresh_crawl_error_rate
19210
+
19730
19211
  # The historical crawl rate timeseries data, used for monitoring.
19731
19212
  # Corresponds to the JSON property `autoRefreshCrawlRate`
19732
19213
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
19733
19214
  attr_accessor :auto_refresh_crawl_rate
19734
19215
 
19216
+ # The historical crawl rate timeseries data, used for monitoring.
19217
+ # Corresponds to the JSON property `userTriggeredCrawlErrorRate`
19218
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
19219
+ attr_accessor :user_triggered_crawl_error_rate
19220
+
19735
19221
  # The historical crawl rate timeseries data, used for monitoring.
19736
19222
  # Corresponds to the JSON property `userTriggeredCrawlRate`
19737
19223
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
@@ -19743,7 +19229,9 @@ module Google
19743
19229
 
19744
19230
  # Update properties of this object
19745
19231
  def update!(**args)
19232
+ @auto_refresh_crawl_error_rate = args[:auto_refresh_crawl_error_rate] if args.key?(:auto_refresh_crawl_error_rate)
19746
19233
  @auto_refresh_crawl_rate = args[:auto_refresh_crawl_rate] if args.key?(:auto_refresh_crawl_rate)
19234
+ @user_triggered_crawl_error_rate = args[:user_triggered_crawl_error_rate] if args.key?(:user_triggered_crawl_error_rate)
19747
19235
  @user_triggered_crawl_rate = args[:user_triggered_crawl_rate] if args.key?(:user_triggered_crawl_rate)
19748
19236
  end
19749
19237
  end
@@ -21660,10 +21148,10 @@ module Google
21660
21148
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestContentSearchSpec]
21661
21149
  attr_accessor :content_search_spec
21662
21150
 
21663
- # Specs defining DataStores to filter on in a search call and configurations for
21664
- # those data stores. This is only considered for Engines with multiple data
21665
- # stores. For engines with a single data store, the specs directly under
21666
- # SearchRequest should be used.
21151
+ # Specifications that define the specific [DataStore]s to be searched, along
21152
+ # with configurations for those data stores. This is only considered for Engines
21153
+ # with multiple data stores. For engines with a single data store, the specs
21154
+ # directly under SearchRequest should be used.
21667
21155
  # Corresponds to the JSON property `dataStoreSpecs`
21668
21156
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestDataStoreSpec>]
21669
21157
  attr_accessor :data_store_specs
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1
18
18
  # Version of the google-apis-discoveryengine_v1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.29.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 = "20250226"
25
+ REVISION = "20250306"
26
26
  end
27
27
  end
28
28
  end
@@ -970,120 +970,6 @@ module Google
970
970
  include Google::Apis::Core::JsonObjectSupport
971
971
  end
972
972
 
973
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequest
974
- class Representation < Google::Apis::Core::JsonRepresentation; end
975
-
976
- include Google::Apis::Core::JsonObjectSupport
977
- end
978
-
979
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfiguration
980
- class Representation < Google::Apis::Core::JsonRepresentation; end
981
-
982
- include Google::Apis::Core::JsonObjectSupport
983
- end
984
-
985
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfigurationDynamicRetrievalPredictor
986
- class Representation < Google::Apis::Core::JsonRepresentation; end
987
-
988
- include Google::Apis::Core::JsonObjectSupport
989
- end
990
-
991
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGenerationSpec
992
- class Representation < Google::Apis::Core::JsonRepresentation; end
993
-
994
- include Google::Apis::Core::JsonObjectSupport
995
- end
996
-
997
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSource
998
- class Representation < Google::Apis::Core::JsonRepresentation; end
999
-
1000
- include Google::Apis::Core::JsonObjectSupport
1001
- end
1002
-
1003
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceGoogleSearchSource
1004
- class Representation < Google::Apis::Core::JsonRepresentation; end
1005
-
1006
- include Google::Apis::Core::JsonObjectSupport
1007
- end
1008
-
1009
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceInlineSource
1010
- class Representation < Google::Apis::Core::JsonRepresentation; end
1011
-
1012
- include Google::Apis::Core::JsonObjectSupport
1013
- end
1014
-
1015
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceSearchSource
1016
- class Representation < Google::Apis::Core::JsonRepresentation; end
1017
-
1018
- include Google::Apis::Core::JsonObjectSupport
1019
- end
1020
-
1021
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSpec
1022
- class Representation < Google::Apis::Core::JsonRepresentation; end
1023
-
1024
- include Google::Apis::Core::JsonObjectSupport
1025
- end
1026
-
1027
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse
1028
- class Representation < Google::Apis::Core::JsonRepresentation; end
1029
-
1030
- include Google::Apis::Core::JsonObjectSupport
1031
- end
1032
-
1033
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidate
1034
- class Representation < Google::Apis::Core::JsonRepresentation; end
1035
-
1036
- include Google::Apis::Core::JsonObjectSupport
1037
- end
1038
-
1039
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadata
1040
- class Representation < Google::Apis::Core::JsonRepresentation; end
1041
-
1042
- include Google::Apis::Core::JsonObjectSupport
1043
- end
1044
-
1045
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalMetadata
1046
- class Representation < Google::Apis::Core::JsonRepresentation; end
1047
-
1048
- include Google::Apis::Core::JsonObjectSupport
1049
- end
1050
-
1051
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalPredictorMetadata
1052
- class Representation < Google::Apis::Core::JsonRepresentation; end
1053
-
1054
- include Google::Apis::Core::JsonObjectSupport
1055
- end
1056
-
1057
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataGroundingSupport
1058
- class Representation < Google::Apis::Core::JsonRepresentation; end
1059
-
1060
- include Google::Apis::Core::JsonObjectSupport
1061
- end
1062
-
1063
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataRetrievalMetadata
1064
- class Representation < Google::Apis::Core::JsonRepresentation; end
1065
-
1066
- include Google::Apis::Core::JsonObjectSupport
1067
- end
1068
-
1069
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataSearchEntryPoint
1070
- class Representation < Google::Apis::Core::JsonRepresentation; end
1071
-
1072
- include Google::Apis::Core::JsonObjectSupport
1073
- end
1074
-
1075
- class GoogleCloudDiscoveryengineV1GroundedGenerationContent
1076
- class Representation < Google::Apis::Core::JsonRepresentation; end
1077
-
1078
- include Google::Apis::Core::JsonObjectSupport
1079
- end
1080
-
1081
- class GoogleCloudDiscoveryengineV1GroundedGenerationContentPart
1082
- class Representation < Google::Apis::Core::JsonRepresentation; end
1083
-
1084
- include Google::Apis::Core::JsonObjectSupport
1085
- end
1086
-
1087
973
  class GoogleCloudDiscoveryengineV1GroundingFact
1088
974
  class Representation < Google::Apis::Core::JsonRepresentation; end
1089
975
 
@@ -2068,6 +1954,12 @@ module Google
2068
1954
  include Google::Apis::Core::JsonObjectSupport
2069
1955
  end
2070
1956
 
1957
+ class GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress
1958
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1959
+
1960
+ include Google::Apis::Core::JsonObjectSupport
1961
+ end
1962
+
2071
1963
  class GoogleCloudDiscoveryengineV1alphaControl
2072
1964
  class Representation < Google::Apis::Core::JsonRepresentation; end
2073
1965
 
@@ -5415,192 +5307,6 @@ module Google
5415
5307
  end
5416
5308
  end
5417
5309
 
5418
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequest
5419
- # @private
5420
- class Representation < Google::Apis::Core::JsonRepresentation
5421
- collection :contents, as: 'contents', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent::Representation
5422
-
5423
- property :generation_spec, as: 'generationSpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGenerationSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGenerationSpec::Representation
5424
-
5425
- property :grounding_spec, as: 'groundingSpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSpec::Representation
5426
-
5427
- property :system_instruction, as: 'systemInstruction', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent::Representation
5428
-
5429
- hash :user_labels, as: 'userLabels'
5430
- end
5431
- end
5432
-
5433
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfiguration
5434
- # @private
5435
- class Representation < Google::Apis::Core::JsonRepresentation
5436
- property :predictor, as: 'predictor', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfigurationDynamicRetrievalPredictor, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfigurationDynamicRetrievalPredictor::Representation
5437
-
5438
- end
5439
- end
5440
-
5441
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfigurationDynamicRetrievalPredictor
5442
- # @private
5443
- class Representation < Google::Apis::Core::JsonRepresentation
5444
- property :threshold, as: 'threshold'
5445
- property :version, as: 'version'
5446
- end
5447
- end
5448
-
5449
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGenerationSpec
5450
- # @private
5451
- class Representation < Google::Apis::Core::JsonRepresentation
5452
- property :frequency_penalty, as: 'frequencyPenalty'
5453
- property :language_code, as: 'languageCode'
5454
- property :max_output_tokens, as: 'maxOutputTokens'
5455
- property :model_id, as: 'modelId'
5456
- property :presence_penalty, as: 'presencePenalty'
5457
- property :seed, as: 'seed'
5458
- property :temperature, as: 'temperature'
5459
- property :top_k, as: 'topK'
5460
- property :top_p, as: 'topP'
5461
- end
5462
- end
5463
-
5464
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSource
5465
- # @private
5466
- class Representation < Google::Apis::Core::JsonRepresentation
5467
- property :google_search_source, as: 'googleSearchSource', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceGoogleSearchSource, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceGoogleSearchSource::Representation
5468
-
5469
- property :inline_source, as: 'inlineSource', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceInlineSource, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceInlineSource::Representation
5470
-
5471
- property :search_source, as: 'searchSource', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceSearchSource, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceSearchSource::Representation
5472
-
5473
- end
5474
- end
5475
-
5476
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceGoogleSearchSource
5477
- # @private
5478
- class Representation < Google::Apis::Core::JsonRepresentation
5479
- property :dynamic_retrieval_config, as: 'dynamicRetrievalConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfiguration, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfiguration::Representation
5480
-
5481
- end
5482
- end
5483
-
5484
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceInlineSource
5485
- # @private
5486
- class Representation < Google::Apis::Core::JsonRepresentation
5487
- hash :attributes, as: 'attributes'
5488
- collection :grounding_facts, as: 'groundingFacts', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundingFact, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundingFact::Representation
5489
-
5490
- end
5491
- end
5492
-
5493
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceSearchSource
5494
- # @private
5495
- class Representation < Google::Apis::Core::JsonRepresentation
5496
- property :filter, as: 'filter'
5497
- property :max_result_count, as: 'maxResultCount'
5498
- property :safe_search, as: 'safeSearch'
5499
- property :serving_config, as: 'servingConfig'
5500
- end
5501
- end
5502
-
5503
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSpec
5504
- # @private
5505
- class Representation < Google::Apis::Core::JsonRepresentation
5506
- collection :grounding_sources, as: 'groundingSources', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSource, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSource::Representation
5507
-
5508
- end
5509
- end
5510
-
5511
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse
5512
- # @private
5513
- class Representation < Google::Apis::Core::JsonRepresentation
5514
- collection :candidates, as: 'candidates', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidate, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidate::Representation
5515
-
5516
- end
5517
- end
5518
-
5519
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidate
5520
- # @private
5521
- class Representation < Google::Apis::Core::JsonRepresentation
5522
- property :content, as: 'content', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent::Representation
5523
-
5524
- property :grounding_metadata, as: 'groundingMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadata::Representation
5525
-
5526
- property :grounding_score, as: 'groundingScore'
5527
- property :index, as: 'index'
5528
- end
5529
- end
5530
-
5531
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadata
5532
- # @private
5533
- class Representation < Google::Apis::Core::JsonRepresentation
5534
- collection :grounding_support, as: 'groundingSupport', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataGroundingSupport, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataGroundingSupport::Representation
5535
-
5536
- collection :retrieval_metadata, as: 'retrievalMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataRetrievalMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataRetrievalMetadata::Representation
5537
-
5538
- property :search_entry_point, as: 'searchEntryPoint', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataSearchEntryPoint, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataSearchEntryPoint::Representation
5539
-
5540
- collection :support_chunks, as: 'supportChunks', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FactChunk, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FactChunk::Representation
5541
-
5542
- collection :web_search_queries, as: 'webSearchQueries'
5543
- end
5544
- end
5545
-
5546
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalMetadata
5547
- # @private
5548
- class Representation < Google::Apis::Core::JsonRepresentation
5549
- property :predictor_metadata, as: 'predictorMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalPredictorMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalPredictorMetadata::Representation
5550
-
5551
- end
5552
- end
5553
-
5554
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalPredictorMetadata
5555
- # @private
5556
- class Representation < Google::Apis::Core::JsonRepresentation
5557
- property :prediction, as: 'prediction'
5558
- property :version, as: 'version'
5559
- end
5560
- end
5561
-
5562
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataGroundingSupport
5563
- # @private
5564
- class Representation < Google::Apis::Core::JsonRepresentation
5565
- property :claim_text, as: 'claimText'
5566
- collection :support_chunk_indices, as: 'supportChunkIndices'
5567
- property :support_score, as: 'supportScore'
5568
- end
5569
- end
5570
-
5571
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataRetrievalMetadata
5572
- # @private
5573
- class Representation < Google::Apis::Core::JsonRepresentation
5574
- property :dynamic_retrieval_metadata, as: 'dynamicRetrievalMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalMetadata::Representation
5575
-
5576
- property :source, as: 'source'
5577
- end
5578
- end
5579
-
5580
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataSearchEntryPoint
5581
- # @private
5582
- class Representation < Google::Apis::Core::JsonRepresentation
5583
- property :rendered_content, as: 'renderedContent'
5584
- property :sdk_blob, :base64 => true, as: 'sdkBlob'
5585
- end
5586
- end
5587
-
5588
- class GoogleCloudDiscoveryengineV1GroundedGenerationContent
5589
- # @private
5590
- class Representation < Google::Apis::Core::JsonRepresentation
5591
- collection :parts, as: 'parts', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContentPart, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContentPart::Representation
5592
-
5593
- property :role, as: 'role'
5594
- end
5595
- end
5596
-
5597
- class GoogleCloudDiscoveryengineV1GroundedGenerationContentPart
5598
- # @private
5599
- class Representation < Google::Apis::Core::JsonRepresentation
5600
- property :text, as: 'text'
5601
- end
5602
- end
5603
-
5604
5310
  class GoogleCloudDiscoveryengineV1GroundingFact
5605
5311
  # @private
5606
5312
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7293,6 +6999,8 @@ module Google
7293
6999
 
7294
7000
  property :extracted_record_count, :numeric_string => true, as: 'extractedRecordCount'
7295
7001
  property :indexed_record_count, :numeric_string => true, as: 'indexedRecordCount'
7002
+ property :progress, as: 'progress', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress::Representation
7003
+
7296
7004
  property :source_api_request_count, :numeric_string => true, as: 'sourceApiRequestCount'
7297
7005
  property :state, as: 'state'
7298
7006
  property :state_update_time, as: 'stateUpdateTime'
@@ -7301,6 +7009,15 @@ module Google
7301
7009
  end
7302
7010
  end
7303
7011
 
7012
+ class GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress
7013
+ # @private
7014
+ class Representation < Google::Apis::Core::JsonRepresentation
7015
+ property :current_count, :numeric_string => true, as: 'currentCount'
7016
+ property :percentile, as: 'percentile'
7017
+ property :total_count, :numeric_string => true, as: 'totalCount'
7018
+ end
7019
+ end
7020
+
7304
7021
  class GoogleCloudDiscoveryengineV1alphaControl
7305
7022
  # @private
7306
7023
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7456,6 +7173,7 @@ module Google
7456
7173
  property :bap_config, as: 'bapConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaBapConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaBapConfig::Representation
7457
7174
 
7458
7175
  collection :blocking_reasons, as: 'blockingReasons'
7176
+ property :connector_type, as: 'connectorType'
7459
7177
  property :create_time, as: 'createTime'
7460
7178
  property :data_source, as: 'dataSource'
7461
7179
  collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDestinationConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDestinationConfig::Representation
@@ -7475,6 +7193,7 @@ module Google
7475
7193
 
7476
7194
  hash :params, as: 'params'
7477
7195
  property :private_connectivity_project_id, as: 'privateConnectivityProjectId'
7196
+ property :realtime_state, as: 'realtimeState'
7478
7197
  property :refresh_interval, as: 'refreshInterval'
7479
7198
  property :state, as: 'state'
7480
7199
  collection :static_ip_addresses, as: 'staticIpAddresses'
@@ -7559,8 +7278,12 @@ module Google
7559
7278
  class GoogleCloudDiscoveryengineV1alphaDedicatedCrawlRateTimeSeries
7560
7279
  # @private
7561
7280
  class Representation < Google::Apis::Core::JsonRepresentation
7281
+ property :auto_refresh_crawl_error_rate, as: 'autoRefreshCrawlErrorRate', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries::Representation
7282
+
7562
7283
  property :auto_refresh_crawl_rate, as: 'autoRefreshCrawlRate', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries::Representation
7563
7284
 
7285
+ property :user_triggered_crawl_error_rate, as: 'userTriggeredCrawlErrorRate', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries::Representation
7286
+
7564
7287
  property :user_triggered_crawl_rate, as: 'userTriggeredCrawlRate', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries::Representation
7565
7288
 
7566
7289
  end
@@ -9150,8 +8873,12 @@ module Google
9150
8873
  class GoogleCloudDiscoveryengineV1betaDedicatedCrawlRateTimeSeries
9151
8874
  # @private
9152
8875
  class Representation < Google::Apis::Core::JsonRepresentation
8876
+ property :auto_refresh_crawl_error_rate, as: 'autoRefreshCrawlErrorRate', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries::Representation
8877
+
9153
8878
  property :auto_refresh_crawl_rate, as: 'autoRefreshCrawlRate', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries::Representation
9154
8879
 
8880
+ property :user_triggered_crawl_error_rate, as: 'userTriggeredCrawlErrorRate', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries::Representation
8881
+
9155
8882
  property :user_triggered_crawl_rate, as: 'userTriggeredCrawlRate', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries::Representation
9156
8883
 
9157
8884
  end
@@ -88,39 +88,6 @@ module Google
88
88
  execute_or_queue_command(command, &block)
89
89
  end
90
90
 
91
- # Generates grounded content.
92
- # @param [String] location
93
- # Required. Location resource. Format: `projects/`project`/locations/`location``.
94
- # @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequest] google_cloud_discoveryengine_v1_generate_grounded_content_request_object
95
- # @param [String] fields
96
- # Selector specifying which fields to include in a partial response.
97
- # @param [String] quota_user
98
- # Available to use for quota purposes for server-side applications. Can be any
99
- # arbitrary string assigned to a user, but should not exceed 40 characters.
100
- # @param [Google::Apis::RequestOptions] options
101
- # Request-specific options
102
- #
103
- # @yield [result, err] Result & error if block supplied
104
- # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse] parsed result object
105
- # @yieldparam err [StandardError] error object if request failed
106
- #
107
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse]
108
- #
109
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
110
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
111
- # @raise [Google::Apis::AuthorizationError] Authorization is required
112
- def generate_project_location_grounded_content(location, google_cloud_discoveryengine_v1_generate_grounded_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
113
- command = make_simple_command(:post, 'v1/{+location}:generateGroundedContent', options)
114
- command.request_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequest::Representation
115
- command.request_object = google_cloud_discoveryengine_v1_generate_grounded_content_request_object
116
- command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse::Representation
117
- command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse
118
- command.params['location'] = location unless location.nil?
119
- command.query['fields'] = fields unless fields.nil?
120
- command.query['quotaUser'] = quota_user unless quota_user.nil?
121
- execute_or_queue_command(command, &block)
122
- end
123
-
124
91
  # Gets the latest state of a long-running operation. Clients can use this method
125
92
  # to poll the operation result at intervals as recommended by the API service.
126
93
  # @param [String] name
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.29.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-02 00:00:00.000000000 Z
10
+ date: 2025-03-09 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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.28.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.29.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
62
62
  rdoc_options: []
63
63
  require_paths: