google-apis-discoveryengine_v1 0.66.0 → 0.67.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: aa09d82f6de848baba057e39a9d5abd53523b3d2633a1125ddd176f01e6600ed
|
|
4
|
+
data.tar.gz: 48a4193bff92b0cf3a1dfdeaca76661be273027b83a27190b5fb95e30b29413f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8bcaefa254e85ae949f1ded522443809c5e8150cf4846313c66c29d109186e662bbbe1ca82dc79cfc959959ade210ee5f2fd3106ea6066b14071a74a74a8e696
|
|
7
|
+
data.tar.gz: 66a9bfec8136b0d458573d21e44460e6f09b9607f2d88d3200988537e2acf027abdf88f5bc589cf1d8d2526e8f73e53b78723fea893bbc3a09fce54913e41e64
|
data/CHANGELOG.md
CHANGED
|
@@ -840,7 +840,7 @@ module Google
|
|
|
840
840
|
class GoogleCloudDiscoveryengineV1AdvancedCompleteQueryRequest
|
|
841
841
|
include Google::Apis::Core::Hashable
|
|
842
842
|
|
|
843
|
-
# Specification to boost suggestions based on the
|
|
843
|
+
# Specification to boost suggestions based on the condition of the suggestion.
|
|
844
844
|
# Corresponds to the JSON property `boostSpec`
|
|
845
845
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AdvancedCompleteQueryRequestBoostSpec]
|
|
846
846
|
attr_accessor :boost_spec
|
|
@@ -928,7 +928,7 @@ module Google
|
|
|
928
928
|
end
|
|
929
929
|
end
|
|
930
930
|
|
|
931
|
-
# Specification to boost suggestions based on the
|
|
931
|
+
# Specification to boost suggestions based on the condition of the suggestion.
|
|
932
932
|
class GoogleCloudDiscoveryengineV1AdvancedCompleteQueryRequestBoostSpec
|
|
933
933
|
include Google::Apis::Core::Hashable
|
|
934
934
|
|
|
@@ -10392,11 +10392,33 @@ module Google
|
|
|
10392
10392
|
# @return [Fixnum]
|
|
10393
10393
|
attr_accessor :effective_search_qpm_threshold
|
|
10394
10394
|
|
|
10395
|
+
# Output only. The earliest next update time for the indexing core subscription
|
|
10396
|
+
# threshold. This is based on the next_update_time returned by the underlying
|
|
10397
|
+
# Cloud Billing Subscription V3 API. This field is populated only if an update
|
|
10398
|
+
# indexing core subscription threshold request is succeeded.
|
|
10399
|
+
# Corresponds to the JSON property `indexingCoreThresholdNextUpdateTime`
|
|
10400
|
+
# @return [String]
|
|
10401
|
+
attr_accessor :indexing_core_threshold_next_update_time
|
|
10402
|
+
|
|
10403
|
+
# Output only. The earliest next update time for the search QPM subscription
|
|
10404
|
+
# threshold. This is based on the next_update_time returned by the underlying
|
|
10405
|
+
# Cloud Billing Subscription V3 API. This field is populated only if an update
|
|
10406
|
+
# QPM subscription threshold request is succeeded.
|
|
10407
|
+
# Corresponds to the JSON property `searchQpmThresholdNextUpdateTime`
|
|
10408
|
+
# @return [String]
|
|
10409
|
+
attr_accessor :search_qpm_threshold_next_update_time
|
|
10410
|
+
|
|
10395
10411
|
# Optional. The start time of the currently active billing subscription.
|
|
10396
10412
|
# Corresponds to the JSON property `startTime`
|
|
10397
10413
|
# @return [String]
|
|
10398
10414
|
attr_accessor :start_time
|
|
10399
10415
|
|
|
10416
|
+
# Output only. The latest terminate effective time of search qpm and indexing
|
|
10417
|
+
# core subscriptions.
|
|
10418
|
+
# Corresponds to the JSON property `terminateTime`
|
|
10419
|
+
# @return [String]
|
|
10420
|
+
attr_accessor :terminate_time
|
|
10421
|
+
|
|
10400
10422
|
def initialize(**args)
|
|
10401
10423
|
update!(**args)
|
|
10402
10424
|
end
|
|
@@ -10405,7 +10427,10 @@ module Google
|
|
|
10405
10427
|
def update!(**args)
|
|
10406
10428
|
@effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
|
|
10407
10429
|
@effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
|
|
10430
|
+
@indexing_core_threshold_next_update_time = args[:indexing_core_threshold_next_update_time] if args.key?(:indexing_core_threshold_next_update_time)
|
|
10431
|
+
@search_qpm_threshold_next_update_time = args[:search_qpm_threshold_next_update_time] if args.key?(:search_qpm_threshold_next_update_time)
|
|
10408
10432
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
10433
|
+
@terminate_time = args[:terminate_time] if args.key?(:terminate_time)
|
|
10409
10434
|
end
|
|
10410
10435
|
end
|
|
10411
10436
|
|
|
@@ -15662,6 +15687,11 @@ module Google
|
|
|
15662
15687
|
# @return [String]
|
|
15663
15688
|
attr_accessor :name
|
|
15664
15689
|
|
|
15690
|
+
# Output only. The nodes associated with the Widget Config.
|
|
15691
|
+
# Corresponds to the JSON property `nodes`
|
|
15692
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1WidgetConfigNode>]
|
|
15693
|
+
attr_accessor :nodes
|
|
15694
|
+
|
|
15665
15695
|
# The type of snippet to display in UCS widget. -
|
|
15666
15696
|
# RESULT_DISPLAY_TYPE_UNSPECIFIED for existing users. - SNIPPET for new non-
|
|
15667
15697
|
# enterprise search users. - EXTRACTIVE_ANSWER for new enterprise search users.
|
|
@@ -15728,6 +15758,7 @@ module Google
|
|
|
15728
15758
|
@llm_enabled = args[:llm_enabled] if args.key?(:llm_enabled)
|
|
15729
15759
|
@minimum_data_term_accepted = args[:minimum_data_term_accepted] if args.key?(:minimum_data_term_accepted)
|
|
15730
15760
|
@name = args[:name] if args.key?(:name)
|
|
15761
|
+
@nodes = args[:nodes] if args.key?(:nodes)
|
|
15731
15762
|
@result_display_type = args[:result_display_type] if args.key?(:result_display_type)
|
|
15732
15763
|
@solution_type = args[:solution_type] if args.key?(:solution_type)
|
|
15733
15764
|
@ui_branding = args[:ui_branding] if args.key?(:ui_branding)
|
|
@@ -16108,6 +16139,61 @@ module Google
|
|
|
16108
16139
|
end
|
|
16109
16140
|
end
|
|
16110
16141
|
|
|
16142
|
+
# Represents a single reusable computational or logical unit.
|
|
16143
|
+
class GoogleCloudDiscoveryengineV1WidgetConfigNode
|
|
16144
|
+
include Google::Apis::Core::Hashable
|
|
16145
|
+
|
|
16146
|
+
# Output only. A detailed description of what the node does.
|
|
16147
|
+
# Corresponds to the JSON property `description`
|
|
16148
|
+
# @return [String]
|
|
16149
|
+
attr_accessor :description
|
|
16150
|
+
|
|
16151
|
+
# Output only. A human readable name for the node.
|
|
16152
|
+
# Corresponds to the JSON property `displayName`
|
|
16153
|
+
# @return [String]
|
|
16154
|
+
attr_accessor :display_name
|
|
16155
|
+
|
|
16156
|
+
# Output only. An identifier or URL pointing to an icon representing this node
|
|
16157
|
+
# type.
|
|
16158
|
+
# Corresponds to the JSON property `iconUrl`
|
|
16159
|
+
# @return [String]
|
|
16160
|
+
attr_accessor :icon_url
|
|
16161
|
+
|
|
16162
|
+
# Output only. The output schema of the tool. This schema is expected to conform
|
|
16163
|
+
# to the OpenAPI Schema standard (see https://spec.openapis.org/oas/v3.0.3.html/
|
|
16164
|
+
# and AIP-146). It describes the structure of the output produced by this node.
|
|
16165
|
+
# Corresponds to the JSON property `outputSchema`
|
|
16166
|
+
# @return [Hash<String,Object>]
|
|
16167
|
+
attr_accessor :output_schema
|
|
16168
|
+
|
|
16169
|
+
# Output only. The parameter schema of the tool. This schema is expected to
|
|
16170
|
+
# conform to the OpenAPI Schema standard (see https://spec.openapis.org/oas/v3.0.
|
|
16171
|
+
# 3.html and AIP-146). It describes the expected structure of the parameters
|
|
16172
|
+
# that this node accepts.
|
|
16173
|
+
# Corresponds to the JSON property `parameterSchema`
|
|
16174
|
+
# @return [Hash<String,Object>]
|
|
16175
|
+
attr_accessor :parameter_schema
|
|
16176
|
+
|
|
16177
|
+
# Output only. The type of the node.
|
|
16178
|
+
# Corresponds to the JSON property `type`
|
|
16179
|
+
# @return [String]
|
|
16180
|
+
attr_accessor :type
|
|
16181
|
+
|
|
16182
|
+
def initialize(**args)
|
|
16183
|
+
update!(**args)
|
|
16184
|
+
end
|
|
16185
|
+
|
|
16186
|
+
# Update properties of this object
|
|
16187
|
+
def update!(**args)
|
|
16188
|
+
@description = args[:description] if args.key?(:description)
|
|
16189
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
16190
|
+
@icon_url = args[:icon_url] if args.key?(:icon_url)
|
|
16191
|
+
@output_schema = args[:output_schema] if args.key?(:output_schema)
|
|
16192
|
+
@parameter_schema = args[:parameter_schema] if args.key?(:parameter_schema)
|
|
16193
|
+
@type = args[:type] if args.key?(:type)
|
|
16194
|
+
end
|
|
16195
|
+
end
|
|
16196
|
+
|
|
16111
16197
|
# Facet field that maps to a UI Component.
|
|
16112
16198
|
class GoogleCloudDiscoveryengineV1WidgetConfigUiComponentField
|
|
16113
16199
|
include Google::Apis::Core::Hashable
|
|
@@ -22690,11 +22776,33 @@ module Google
|
|
|
22690
22776
|
# @return [Fixnum]
|
|
22691
22777
|
attr_accessor :effective_search_qpm_threshold
|
|
22692
22778
|
|
|
22779
|
+
# Output only. The earliest next update time for the indexing core subscription
|
|
22780
|
+
# threshold. This is based on the next_update_time returned by the underlying
|
|
22781
|
+
# Cloud Billing Subscription V3 API. This field is populated only if an update
|
|
22782
|
+
# indexing core subscription threshold request is succeeded.
|
|
22783
|
+
# Corresponds to the JSON property `indexingCoreThresholdNextUpdateTime`
|
|
22784
|
+
# @return [String]
|
|
22785
|
+
attr_accessor :indexing_core_threshold_next_update_time
|
|
22786
|
+
|
|
22787
|
+
# Output only. The earliest next update time for the search QPM subscription
|
|
22788
|
+
# threshold. This is based on the next_update_time returned by the underlying
|
|
22789
|
+
# Cloud Billing Subscription V3 API. This field is populated only if an update
|
|
22790
|
+
# QPM subscription threshold request is succeeded.
|
|
22791
|
+
# Corresponds to the JSON property `searchQpmThresholdNextUpdateTime`
|
|
22792
|
+
# @return [String]
|
|
22793
|
+
attr_accessor :search_qpm_threshold_next_update_time
|
|
22794
|
+
|
|
22693
22795
|
# Optional. The start time of the currently active billing subscription.
|
|
22694
22796
|
# Corresponds to the JSON property `startTime`
|
|
22695
22797
|
# @return [String]
|
|
22696
22798
|
attr_accessor :start_time
|
|
22697
22799
|
|
|
22800
|
+
# Output only. The latest terminate effective time of search qpm and indexing
|
|
22801
|
+
# core subscriptions.
|
|
22802
|
+
# Corresponds to the JSON property `terminateTime`
|
|
22803
|
+
# @return [String]
|
|
22804
|
+
attr_accessor :terminate_time
|
|
22805
|
+
|
|
22698
22806
|
def initialize(**args)
|
|
22699
22807
|
update!(**args)
|
|
22700
22808
|
end
|
|
@@ -22703,7 +22811,10 @@ module Google
|
|
|
22703
22811
|
def update!(**args)
|
|
22704
22812
|
@effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
|
|
22705
22813
|
@effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
|
|
22814
|
+
@indexing_core_threshold_next_update_time = args[:indexing_core_threshold_next_update_time] if args.key?(:indexing_core_threshold_next_update_time)
|
|
22815
|
+
@search_qpm_threshold_next_update_time = args[:search_qpm_threshold_next_update_time] if args.key?(:search_qpm_threshold_next_update_time)
|
|
22706
22816
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
22817
|
+
@terminate_time = args[:terminate_time] if args.key?(:terminate_time)
|
|
22707
22818
|
end
|
|
22708
22819
|
end
|
|
22709
22820
|
|
|
@@ -29192,11 +29303,33 @@ module Google
|
|
|
29192
29303
|
# @return [Fixnum]
|
|
29193
29304
|
attr_accessor :effective_search_qpm_threshold
|
|
29194
29305
|
|
|
29306
|
+
# Output only. The earliest next update time for the indexing core subscription
|
|
29307
|
+
# threshold. This is based on the next_update_time returned by the underlying
|
|
29308
|
+
# Cloud Billing Subscription V3 API. This field is populated only if an update
|
|
29309
|
+
# indexing core subscription threshold request is succeeded.
|
|
29310
|
+
# Corresponds to the JSON property `indexingCoreThresholdNextUpdateTime`
|
|
29311
|
+
# @return [String]
|
|
29312
|
+
attr_accessor :indexing_core_threshold_next_update_time
|
|
29313
|
+
|
|
29314
|
+
# Output only. The earliest next update time for the search QPM subscription
|
|
29315
|
+
# threshold. This is based on the next_update_time returned by the underlying
|
|
29316
|
+
# Cloud Billing Subscription V3 API. This field is populated only if an update
|
|
29317
|
+
# QPM subscription threshold request is succeeded.
|
|
29318
|
+
# Corresponds to the JSON property `searchQpmThresholdNextUpdateTime`
|
|
29319
|
+
# @return [String]
|
|
29320
|
+
attr_accessor :search_qpm_threshold_next_update_time
|
|
29321
|
+
|
|
29195
29322
|
# Optional. The start time of the currently active billing subscription.
|
|
29196
29323
|
# Corresponds to the JSON property `startTime`
|
|
29197
29324
|
# @return [String]
|
|
29198
29325
|
attr_accessor :start_time
|
|
29199
29326
|
|
|
29327
|
+
# Output only. The latest terminate effective time of search qpm and indexing
|
|
29328
|
+
# core subscriptions.
|
|
29329
|
+
# Corresponds to the JSON property `terminateTime`
|
|
29330
|
+
# @return [String]
|
|
29331
|
+
attr_accessor :terminate_time
|
|
29332
|
+
|
|
29200
29333
|
def initialize(**args)
|
|
29201
29334
|
update!(**args)
|
|
29202
29335
|
end
|
|
@@ -29205,7 +29338,10 @@ module Google
|
|
|
29205
29338
|
def update!(**args)
|
|
29206
29339
|
@effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
|
|
29207
29340
|
@effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
|
|
29341
|
+
@indexing_core_threshold_next_update_time = args[:indexing_core_threshold_next_update_time] if args.key?(:indexing_core_threshold_next_update_time)
|
|
29342
|
+
@search_qpm_threshold_next_update_time = args[:search_qpm_threshold_next_update_time] if args.key?(:search_qpm_threshold_next_update_time)
|
|
29208
29343
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
29344
|
+
@terminate_time = args[:terminate_time] if args.key?(:terminate_time)
|
|
29209
29345
|
end
|
|
29210
29346
|
end
|
|
29211
29347
|
|
|
@@ -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.67.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260125"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2494,6 +2494,12 @@ module Google
|
|
|
2494
2494
|
include Google::Apis::Core::JsonObjectSupport
|
|
2495
2495
|
end
|
|
2496
2496
|
|
|
2497
|
+
class GoogleCloudDiscoveryengineV1WidgetConfigNode
|
|
2498
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2499
|
+
|
|
2500
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2501
|
+
end
|
|
2502
|
+
|
|
2497
2503
|
class GoogleCloudDiscoveryengineV1WidgetConfigUiComponentField
|
|
2498
2504
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2499
2505
|
|
|
@@ -7849,7 +7855,10 @@ module Google
|
|
|
7849
7855
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7850
7856
|
property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
|
|
7851
7857
|
property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
|
|
7858
|
+
property :indexing_core_threshold_next_update_time, as: 'indexingCoreThresholdNextUpdateTime'
|
|
7859
|
+
property :search_qpm_threshold_next_update_time, as: 'searchQpmThresholdNextUpdateTime'
|
|
7852
7860
|
property :start_time, as: 'startTime'
|
|
7861
|
+
property :terminate_time, as: 'terminateTime'
|
|
7853
7862
|
end
|
|
7854
7863
|
end
|
|
7855
7864
|
|
|
@@ -9161,6 +9170,8 @@ module Google
|
|
|
9161
9170
|
property :llm_enabled, as: 'llmEnabled'
|
|
9162
9171
|
property :minimum_data_term_accepted, as: 'minimumDataTermAccepted'
|
|
9163
9172
|
property :name, as: 'name'
|
|
9173
|
+
collection :nodes, as: 'nodes', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1WidgetConfigNode, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1WidgetConfigNode::Representation
|
|
9174
|
+
|
|
9164
9175
|
property :result_display_type, as: 'resultDisplayType'
|
|
9165
9176
|
property :solution_type, as: 'solutionType'
|
|
9166
9177
|
property :ui_branding, as: 'uiBranding', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1WidgetConfigUiBrandingSettings, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1WidgetConfigUiBrandingSettings::Representation
|
|
@@ -9269,6 +9280,18 @@ module Google
|
|
|
9269
9280
|
end
|
|
9270
9281
|
end
|
|
9271
9282
|
|
|
9283
|
+
class GoogleCloudDiscoveryengineV1WidgetConfigNode
|
|
9284
|
+
# @private
|
|
9285
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9286
|
+
property :description, as: 'description'
|
|
9287
|
+
property :display_name, as: 'displayName'
|
|
9288
|
+
property :icon_url, as: 'iconUrl'
|
|
9289
|
+
hash :output_schema, as: 'outputSchema'
|
|
9290
|
+
hash :parameter_schema, as: 'parameterSchema'
|
|
9291
|
+
property :type, as: 'type'
|
|
9292
|
+
end
|
|
9293
|
+
end
|
|
9294
|
+
|
|
9272
9295
|
class GoogleCloudDiscoveryengineV1WidgetConfigUiComponentField
|
|
9273
9296
|
# @private
|
|
9274
9297
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -11044,7 +11067,10 @@ module Google
|
|
|
11044
11067
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11045
11068
|
property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
|
|
11046
11069
|
property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
|
|
11070
|
+
property :indexing_core_threshold_next_update_time, as: 'indexingCoreThresholdNextUpdateTime'
|
|
11071
|
+
property :search_qpm_threshold_next_update_time, as: 'searchQpmThresholdNextUpdateTime'
|
|
11047
11072
|
property :start_time, as: 'startTime'
|
|
11073
|
+
property :terminate_time, as: 'terminateTime'
|
|
11048
11074
|
end
|
|
11049
11075
|
end
|
|
11050
11076
|
|
|
@@ -12756,7 +12782,10 @@ module Google
|
|
|
12756
12782
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
12757
12783
|
property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
|
|
12758
12784
|
property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
|
|
12785
|
+
property :indexing_core_threshold_next_update_time, as: 'indexingCoreThresholdNextUpdateTime'
|
|
12786
|
+
property :search_qpm_threshold_next_update_time, as: 'searchQpmThresholdNextUpdateTime'
|
|
12759
12787
|
property :start_time, as: 'startTime'
|
|
12788
|
+
property :terminate_time, as: 'terminateTime'
|
|
12760
12789
|
end
|
|
12761
12790
|
end
|
|
12762
12791
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.67.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.67.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:
|