google-apis-discoveryengine_v1 0.21.0 → 0.22.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9023c1e7c82c5388440ba1c2855421fed94f02fa3f1e31fa9da6382f2170399
|
4
|
+
data.tar.gz: b916fa4ba05d9e71cbc9dce11935b950fe8e16ae6bc3885663e80665faa4a93a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83257c3ad83b18f057230a10e4538ab57dd31f4756d9973a36771da7b60c09f070d79a7bafc6a6c890b7d95b0fa7490d048a8b4f9fc24ed10955501cea0ad102
|
7
|
+
data.tar.gz: b25ee15534b31b6e98be822933dec05e1f54910543c78d026a108dcffd5c4ffe35973a038e57b63bc2d9d138b9a147c60bd215797eda3081673f98f80a51db5a
|
data/CHANGELOG.md
CHANGED
@@ -2537,9 +2537,15 @@ module Google
|
|
2537
2537
|
# List of facts cited across all claims in the answer candidate. These are
|
2538
2538
|
# derived from the facts supplied in the request.
|
2539
2539
|
# Corresponds to the JSON property `citedChunks`
|
2540
|
-
# @return [Array<Google::Apis::DiscoveryengineV1::
|
2540
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FactChunk>]
|
2541
2541
|
attr_accessor :cited_chunks
|
2542
2542
|
|
2543
|
+
# List of facts cited across all claims in the answer candidate. These are
|
2544
|
+
# derived from the facts supplied in the request.
|
2545
|
+
# Corresponds to the JSON property `citedFacts`
|
2546
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CheckGroundingResponseCheckGroundingFactChunk>]
|
2547
|
+
attr_accessor :cited_facts
|
2548
|
+
|
2543
2549
|
# Claim texts and citation info across all claims in the answer candidate.
|
2544
2550
|
# Corresponds to the JSON property `claims`
|
2545
2551
|
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CheckGroundingResponseClaim>]
|
@@ -2559,11 +2565,31 @@ module Google
|
|
2559
2565
|
# Update properties of this object
|
2560
2566
|
def update!(**args)
|
2561
2567
|
@cited_chunks = args[:cited_chunks] if args.key?(:cited_chunks)
|
2568
|
+
@cited_facts = args[:cited_facts] if args.key?(:cited_facts)
|
2562
2569
|
@claims = args[:claims] if args.key?(:claims)
|
2563
2570
|
@support_score = args[:support_score] if args.key?(:support_score)
|
2564
2571
|
end
|
2565
2572
|
end
|
2566
2573
|
|
2574
|
+
# Fact chunk for grounding check.
|
2575
|
+
class GoogleCloudDiscoveryengineV1CheckGroundingResponseCheckGroundingFactChunk
|
2576
|
+
include Google::Apis::Core::Hashable
|
2577
|
+
|
2578
|
+
# Text content of the fact chunk. Can be at most 10K characters long.
|
2579
|
+
# Corresponds to the JSON property `chunkText`
|
2580
|
+
# @return [String]
|
2581
|
+
attr_accessor :chunk_text
|
2582
|
+
|
2583
|
+
def initialize(**args)
|
2584
|
+
update!(**args)
|
2585
|
+
end
|
2586
|
+
|
2587
|
+
# Update properties of this object
|
2588
|
+
def update!(**args)
|
2589
|
+
@chunk_text = args[:chunk_text] if args.key?(:chunk_text)
|
2590
|
+
end
|
2591
|
+
end
|
2592
|
+
|
2567
2593
|
# Text and citation info for a claim in the answer candidate.
|
2568
2594
|
class GoogleCloudDiscoveryengineV1CheckGroundingResponseClaim
|
2569
2595
|
include Google::Apis::Core::Hashable
|
@@ -2617,33 +2643,6 @@ module Google
|
|
2617
2643
|
end
|
2618
2644
|
end
|
2619
2645
|
|
2620
|
-
# Fact chunk for grounding check.
|
2621
|
-
class GoogleCloudDiscoveryengineV1CheckGroundingResponseFactChunk
|
2622
|
-
include Google::Apis::Core::Hashable
|
2623
|
-
|
2624
|
-
# Text content of the fact chunk. Can be at most 10K characters long.
|
2625
|
-
# Corresponds to the JSON property `chunkText`
|
2626
|
-
# @return [String]
|
2627
|
-
attr_accessor :chunk_text
|
2628
|
-
|
2629
|
-
# Source from which this fact chunk was retrieved. For a fact chunk retrieved
|
2630
|
-
# from inline facts, this field will contain the index of the specific fact from
|
2631
|
-
# which this chunk was retrieved.
|
2632
|
-
# Corresponds to the JSON property `source`
|
2633
|
-
# @return [String]
|
2634
|
-
attr_accessor :source
|
2635
|
-
|
2636
|
-
def initialize(**args)
|
2637
|
-
update!(**args)
|
2638
|
-
end
|
2639
|
-
|
2640
|
-
# Update properties of this object
|
2641
|
-
def update!(**args)
|
2642
|
-
@chunk_text = args[:chunk_text] if args.key?(:chunk_text)
|
2643
|
-
@source = args[:source] if args.key?(:source)
|
2644
|
-
end
|
2645
|
-
end
|
2646
|
-
|
2647
2646
|
# Specification for the grounding check.
|
2648
2647
|
class GoogleCloudDiscoveryengineV1CheckGroundingSpec
|
2649
2648
|
include Google::Apis::Core::Hashable
|
@@ -4868,6 +4867,116 @@ module Google
|
|
4868
4867
|
end
|
4869
4868
|
end
|
4870
4869
|
|
4870
|
+
# Fact Chunk.
|
4871
|
+
class GoogleCloudDiscoveryengineV1FactChunk
|
4872
|
+
include Google::Apis::Core::Hashable
|
4873
|
+
|
4874
|
+
# Text content of the fact chunk. Can be at most 10K characters long.
|
4875
|
+
# Corresponds to the JSON property `chunkText`
|
4876
|
+
# @return [String]
|
4877
|
+
attr_accessor :chunk_text
|
4878
|
+
|
4879
|
+
# The index of this chunk. Currently, only used for the streaming mode.
|
4880
|
+
# Corresponds to the JSON property `index`
|
4881
|
+
# @return [Fixnum]
|
4882
|
+
attr_accessor :index
|
4883
|
+
|
4884
|
+
# Source from which this fact chunk was retrieved. If it was retrieved from the
|
4885
|
+
# GroundingFacts provided in the request then this field will contain the index
|
4886
|
+
# of the specific fact from which this chunk was retrieved.
|
4887
|
+
# Corresponds to the JSON property `source`
|
4888
|
+
# @return [String]
|
4889
|
+
attr_accessor :source
|
4890
|
+
|
4891
|
+
# More fine-grained information for the source reference.
|
4892
|
+
# Corresponds to the JSON property `sourceMetadata`
|
4893
|
+
# @return [Hash<String,String>]
|
4894
|
+
attr_accessor :source_metadata
|
4895
|
+
|
4896
|
+
def initialize(**args)
|
4897
|
+
update!(**args)
|
4898
|
+
end
|
4899
|
+
|
4900
|
+
# Update properties of this object
|
4901
|
+
def update!(**args)
|
4902
|
+
@chunk_text = args[:chunk_text] if args.key?(:chunk_text)
|
4903
|
+
@index = args[:index] if args.key?(:index)
|
4904
|
+
@source = args[:source] if args.key?(:source)
|
4905
|
+
@source_metadata = args[:source_metadata] if args.key?(:source_metadata)
|
4906
|
+
end
|
4907
|
+
end
|
4908
|
+
|
4909
|
+
# Information about the user feedback. This information will be used for logging
|
4910
|
+
# and metrics purpose.
|
4911
|
+
class GoogleCloudDiscoveryengineV1Feedback
|
4912
|
+
include Google::Apis::Core::Hashable
|
4913
|
+
|
4914
|
+
# Optional. The additional user comment of the feedback if user gives a thumb
|
4915
|
+
# down.
|
4916
|
+
# Corresponds to the JSON property `comment`
|
4917
|
+
# @return [String]
|
4918
|
+
attr_accessor :comment
|
4919
|
+
|
4920
|
+
# The conversation information such as the question index and session name.
|
4921
|
+
# Corresponds to the JSON property `conversationInfo`
|
4922
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FeedbackConversationInfo]
|
4923
|
+
attr_accessor :conversation_info
|
4924
|
+
|
4925
|
+
# Required. Indicate whether the user gives a positive or negative feedback. If
|
4926
|
+
# the user gives a negative feedback, there might be more feedback details.
|
4927
|
+
# Corresponds to the JSON property `feedbackType`
|
4928
|
+
# @return [String]
|
4929
|
+
attr_accessor :feedback_type
|
4930
|
+
|
4931
|
+
# The version of the LLM model that was used to generate the response.
|
4932
|
+
# Corresponds to the JSON property `llmModelVersion`
|
4933
|
+
# @return [String]
|
4934
|
+
attr_accessor :llm_model_version
|
4935
|
+
|
4936
|
+
# Optional. The reason if user gives a thumb down.
|
4937
|
+
# Corresponds to the JSON property `reasons`
|
4938
|
+
# @return [Array<String>]
|
4939
|
+
attr_accessor :reasons
|
4940
|
+
|
4941
|
+
def initialize(**args)
|
4942
|
+
update!(**args)
|
4943
|
+
end
|
4944
|
+
|
4945
|
+
# Update properties of this object
|
4946
|
+
def update!(**args)
|
4947
|
+
@comment = args[:comment] if args.key?(:comment)
|
4948
|
+
@conversation_info = args[:conversation_info] if args.key?(:conversation_info)
|
4949
|
+
@feedback_type = args[:feedback_type] if args.key?(:feedback_type)
|
4950
|
+
@llm_model_version = args[:llm_model_version] if args.key?(:llm_model_version)
|
4951
|
+
@reasons = args[:reasons] if args.key?(:reasons)
|
4952
|
+
end
|
4953
|
+
end
|
4954
|
+
|
4955
|
+
# The conversation information such as the question index and session name.
|
4956
|
+
class GoogleCloudDiscoveryengineV1FeedbackConversationInfo
|
4957
|
+
include Google::Apis::Core::Hashable
|
4958
|
+
|
4959
|
+
# The index of the user input within the conversation messages.
|
4960
|
+
# Corresponds to the JSON property `questionIndex`
|
4961
|
+
# @return [Fixnum]
|
4962
|
+
attr_accessor :question_index
|
4963
|
+
|
4964
|
+
# Name of the newly generated or continued session.
|
4965
|
+
# Corresponds to the JSON property `session`
|
4966
|
+
# @return [String]
|
4967
|
+
attr_accessor :session
|
4968
|
+
|
4969
|
+
def initialize(**args)
|
4970
|
+
update!(**args)
|
4971
|
+
end
|
4972
|
+
|
4973
|
+
# Update properties of this object
|
4974
|
+
def update!(**args)
|
4975
|
+
@question_index = args[:question_index] if args.key?(:question_index)
|
4976
|
+
@session = args[:session] if args.key?(:session)
|
4977
|
+
end
|
4978
|
+
end
|
4979
|
+
|
4871
4980
|
# Response message for SiteSearchEngineService.FetchDomainVerificationStatus
|
4872
4981
|
# method.
|
4873
4982
|
class GoogleCloudDiscoveryengineV1FetchDomainVerificationStatusResponse
|
@@ -6007,6 +6116,11 @@ module Google
|
|
6007
6116
|
# @return [String]
|
6008
6117
|
attr_accessor :display_name
|
6009
6118
|
|
6119
|
+
# Optional. The document IDs associated with this panel.
|
6120
|
+
# Corresponds to the JSON property `documents`
|
6121
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DocumentInfo>]
|
6122
|
+
attr_accessor :documents
|
6123
|
+
|
6010
6124
|
# Required. The panel ID.
|
6011
6125
|
# Corresponds to the JSON property `panelId`
|
6012
6126
|
# @return [String]
|
@@ -6031,6 +6145,7 @@ module Google
|
|
6031
6145
|
# Update properties of this object
|
6032
6146
|
def update!(**args)
|
6033
6147
|
@display_name = args[:display_name] if args.key?(:display_name)
|
6148
|
+
@documents = args[:documents] if args.key?(:documents)
|
6034
6149
|
@panel_id = args[:panel_id] if args.key?(:panel_id)
|
6035
6150
|
@panel_position = args[:panel_position] if args.key?(:panel_position)
|
6036
6151
|
@total_panels = args[:total_panels] if args.key?(:total_panels)
|
@@ -9219,6 +9334,12 @@ module Google
|
|
9219
9334
|
# @return [String]
|
9220
9335
|
attr_accessor :event_type
|
9221
9336
|
|
9337
|
+
# Information about the user feedback. This information will be used for logging
|
9338
|
+
# and metrics purpose.
|
9339
|
+
# Corresponds to the JSON property `feedback`
|
9340
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Feedback]
|
9341
|
+
attr_accessor :feedback
|
9342
|
+
|
9222
9343
|
# The filter syntax consists of an expression language for constructing a
|
9223
9344
|
# predicate from one or more fields of the documents being filtered. One example
|
9224
9345
|
# is for `search` events, the associated SearchRequest may contain a filter
|
@@ -9247,6 +9368,12 @@ module Google
|
|
9247
9368
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1PanelInfo]
|
9248
9369
|
attr_accessor :panel
|
9249
9370
|
|
9371
|
+
# Optional. List of panels associated with this event. Used for page-level
|
9372
|
+
# impression data.
|
9373
|
+
# Corresponds to the JSON property `panels`
|
9374
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1PanelInfo>]
|
9375
|
+
attr_accessor :panels
|
9376
|
+
|
9250
9377
|
# The promotion IDs if this is an event associated with promotions. Currently,
|
9251
9378
|
# this field is restricted to at most one ID.
|
9252
9379
|
# Corresponds to the JSON property `promotionIds`
|
@@ -9314,10 +9441,12 @@ module Google
|
|
9314
9441
|
@engine = args[:engine] if args.key?(:engine)
|
9315
9442
|
@event_time = args[:event_time] if args.key?(:event_time)
|
9316
9443
|
@event_type = args[:event_type] if args.key?(:event_type)
|
9444
|
+
@feedback = args[:feedback] if args.key?(:feedback)
|
9317
9445
|
@filter = args[:filter] if args.key?(:filter)
|
9318
9446
|
@media_info = args[:media_info] if args.key?(:media_info)
|
9319
9447
|
@page_info = args[:page_info] if args.key?(:page_info)
|
9320
9448
|
@panel = args[:panel] if args.key?(:panel)
|
9449
|
+
@panels = args[:panels] if args.key?(:panels)
|
9321
9450
|
@promotion_ids = args[:promotion_ids] if args.key?(:promotion_ids)
|
9322
9451
|
@search_info = args[:search_info] if args.key?(:search_info)
|
9323
9452
|
@session_id = args[:session_id] if args.key?(:session_id)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.22.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241031"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -454,13 +454,13 @@ module Google
|
|
454
454
|
include Google::Apis::Core::JsonObjectSupport
|
455
455
|
end
|
456
456
|
|
457
|
-
class
|
457
|
+
class GoogleCloudDiscoveryengineV1CheckGroundingResponseCheckGroundingFactChunk
|
458
458
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
459
|
|
460
460
|
include Google::Apis::Core::JsonObjectSupport
|
461
461
|
end
|
462
462
|
|
463
|
-
class
|
463
|
+
class GoogleCloudDiscoveryengineV1CheckGroundingResponseClaim
|
464
464
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
465
|
|
466
466
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -832,6 +832,24 @@ module Google
|
|
832
832
|
include Google::Apis::Core::JsonObjectSupport
|
833
833
|
end
|
834
834
|
|
835
|
+
class GoogleCloudDiscoveryengineV1FactChunk
|
836
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
837
|
+
|
838
|
+
include Google::Apis::Core::JsonObjectSupport
|
839
|
+
end
|
840
|
+
|
841
|
+
class GoogleCloudDiscoveryengineV1Feedback
|
842
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
843
|
+
|
844
|
+
include Google::Apis::Core::JsonObjectSupport
|
845
|
+
end
|
846
|
+
|
847
|
+
class GoogleCloudDiscoveryengineV1FeedbackConversationInfo
|
848
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
849
|
+
|
850
|
+
include Google::Apis::Core::JsonObjectSupport
|
851
|
+
end
|
852
|
+
|
835
853
|
class GoogleCloudDiscoveryengineV1FetchDomainVerificationStatusResponse
|
836
854
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
837
855
|
|
@@ -3914,7 +3932,9 @@ module Google
|
|
3914
3932
|
class GoogleCloudDiscoveryengineV1CheckGroundingResponse
|
3915
3933
|
# @private
|
3916
3934
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3917
|
-
collection :cited_chunks, as: 'citedChunks', class: Google::Apis::DiscoveryengineV1::
|
3935
|
+
collection :cited_chunks, as: 'citedChunks', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FactChunk, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FactChunk::Representation
|
3936
|
+
|
3937
|
+
collection :cited_facts, as: 'citedFacts', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CheckGroundingResponseCheckGroundingFactChunk, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CheckGroundingResponseCheckGroundingFactChunk::Representation
|
3918
3938
|
|
3919
3939
|
collection :claims, as: 'claims', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CheckGroundingResponseClaim, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CheckGroundingResponseClaim::Representation
|
3920
3940
|
|
@@ -3922,6 +3942,13 @@ module Google
|
|
3922
3942
|
end
|
3923
3943
|
end
|
3924
3944
|
|
3945
|
+
class GoogleCloudDiscoveryengineV1CheckGroundingResponseCheckGroundingFactChunk
|
3946
|
+
# @private
|
3947
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3948
|
+
property :chunk_text, as: 'chunkText'
|
3949
|
+
end
|
3950
|
+
end
|
3951
|
+
|
3925
3952
|
class GoogleCloudDiscoveryengineV1CheckGroundingResponseClaim
|
3926
3953
|
# @private
|
3927
3954
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3933,14 +3960,6 @@ module Google
|
|
3933
3960
|
end
|
3934
3961
|
end
|
3935
3962
|
|
3936
|
-
class GoogleCloudDiscoveryengineV1CheckGroundingResponseFactChunk
|
3937
|
-
# @private
|
3938
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
3939
|
-
property :chunk_text, as: 'chunkText'
|
3940
|
-
property :source, as: 'source'
|
3941
|
-
end
|
3942
|
-
end
|
3943
|
-
|
3944
3963
|
class GoogleCloudDiscoveryengineV1CheckGroundingSpec
|
3945
3964
|
# @private
|
3946
3965
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4549,6 +4568,36 @@ module Google
|
|
4549
4568
|
end
|
4550
4569
|
end
|
4551
4570
|
|
4571
|
+
class GoogleCloudDiscoveryengineV1FactChunk
|
4572
|
+
# @private
|
4573
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4574
|
+
property :chunk_text, as: 'chunkText'
|
4575
|
+
property :index, as: 'index'
|
4576
|
+
property :source, as: 'source'
|
4577
|
+
hash :source_metadata, as: 'sourceMetadata'
|
4578
|
+
end
|
4579
|
+
end
|
4580
|
+
|
4581
|
+
class GoogleCloudDiscoveryengineV1Feedback
|
4582
|
+
# @private
|
4583
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4584
|
+
property :comment, as: 'comment'
|
4585
|
+
property :conversation_info, as: 'conversationInfo', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FeedbackConversationInfo, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FeedbackConversationInfo::Representation
|
4586
|
+
|
4587
|
+
property :feedback_type, as: 'feedbackType'
|
4588
|
+
property :llm_model_version, as: 'llmModelVersion'
|
4589
|
+
collection :reasons, as: 'reasons'
|
4590
|
+
end
|
4591
|
+
end
|
4592
|
+
|
4593
|
+
class GoogleCloudDiscoveryengineV1FeedbackConversationInfo
|
4594
|
+
# @private
|
4595
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4596
|
+
property :question_index, as: 'questionIndex'
|
4597
|
+
property :session, as: 'session'
|
4598
|
+
end
|
4599
|
+
end
|
4600
|
+
|
4552
4601
|
class GoogleCloudDiscoveryengineV1FetchDomainVerificationStatusResponse
|
4553
4602
|
# @private
|
4554
4603
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4895,6 +4944,8 @@ module Google
|
|
4895
4944
|
# @private
|
4896
4945
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4897
4946
|
property :display_name, as: 'displayName'
|
4947
|
+
collection :documents, as: 'documents', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DocumentInfo, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DocumentInfo::Representation
|
4948
|
+
|
4898
4949
|
property :panel_id, as: 'panelId'
|
4899
4950
|
property :panel_position, as: 'panelPosition'
|
4900
4951
|
property :total_panels, as: 'totalPanels'
|
@@ -5703,6 +5754,8 @@ module Google
|
|
5703
5754
|
property :engine, as: 'engine'
|
5704
5755
|
property :event_time, as: 'eventTime'
|
5705
5756
|
property :event_type, as: 'eventType'
|
5757
|
+
property :feedback, as: 'feedback', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Feedback, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Feedback::Representation
|
5758
|
+
|
5706
5759
|
property :filter, as: 'filter'
|
5707
5760
|
property :media_info, as: 'mediaInfo', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1MediaInfo, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1MediaInfo::Representation
|
5708
5761
|
|
@@ -5710,6 +5763,8 @@ module Google
|
|
5710
5763
|
|
5711
5764
|
property :panel, as: 'panel', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1PanelInfo, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1PanelInfo::Representation
|
5712
5765
|
|
5766
|
+
collection :panels, as: 'panels', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1PanelInfo, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1PanelInfo::Representation
|
5767
|
+
|
5713
5768
|
collection :promotion_ids, as: 'promotionIds'
|
5714
5769
|
property :search_info, as: 'searchInfo', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchInfo, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchInfo::Representation
|
5715
5770
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.22.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Discovery Engine API V1
|