google-apis-discoveryengine_v1 0.66.0 → 0.68.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: ee3d22ecf0d0d7b258af15b3a8c5f7b5c0d897594fbcffcc89067654418559a0
4
- data.tar.gz: 3ad48e5c4cb6c0b5298c19e97ca7aba8ec1cebc93677518b1ce1a4ce4f6d79a3
3
+ metadata.gz: 834801ab9fa87011a448d5ce8490e7fc38d97818696df45200cd6eea400ca042
4
+ data.tar.gz: 21759606bae0b07743336c3d6c05aa294deec312aa18bb7ba2501d2fbd4506c4
5
5
  SHA512:
6
- metadata.gz: e1cb552bdbb6bcf1c8782a27a681b0819f49304faf12bd97c0eaf12b56f10c4d7fe101d337d5226f1a50d1a37a1198c2db0193dead8daea1843c1a8b4deaec36
7
- data.tar.gz: 94313b4a5aeb6b52f2fee7fc3789bb82354e265cb3ba32a54e0b64c22eb31777f1469f6f3e2f9e383721b34df2ea02605c2d2253f967a3752287969b560322ad
6
+ metadata.gz: a3645fd8353fc9efe48b5290eb5cc365ec364abbe21a289a5e249c04741fd8de2af2f9676ac3fa1f6bb918f21509182f2cba0b27a6238dde91ff8bc7b38356f4
7
+ data.tar.gz: 9adec5ded46244f07d374673ed7e5714262e62d20ff84a4dce97a512bc34adc35a6a32109b17d1511a142b534a36256b45c8f61dd1f82c4060daeb10848d38fd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.68.0 (2026-02-08)
4
+
5
+ * Regenerated from discovery document revision 20260130
6
+
7
+ ### v0.67.0 (2026-02-01)
8
+
9
+ * Regenerated from discovery document revision 20260125
10
+
3
11
  ### v0.66.0 (2026-01-25)
4
12
 
5
13
  * Regenerated from discovery document revision 20260118
@@ -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 condtion of the suggestion.
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 condtion of the suggestion.
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
 
@@ -7925,6 +7925,11 @@ module Google
7925
7925
  # @return [String]
7926
7926
  attr_accessor :name
7927
7927
 
7928
+ # Observability config for a resource.
7929
+ # Corresponds to the JSON property `observabilityConfig`
7930
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ObservabilityConfig]
7931
+ attr_accessor :observability_config
7932
+
7928
7933
  # Configurations for a Search Engine.
7929
7934
  # Corresponds to the JSON property `searchEngineConfig`
7930
7935
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig]
@@ -7962,6 +7967,7 @@ module Google
7962
7967
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
7963
7968
  @model_configs = args[:model_configs] if args.key?(:model_configs)
7964
7969
  @name = args[:name] if args.key?(:name)
7970
+ @observability_config = args[:observability_config] if args.key?(:observability_config)
7965
7971
  @search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
7966
7972
  @solution_type = args[:solution_type] if args.key?(:solution_type)
7967
7973
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -10174,6 +10180,35 @@ module Google
10174
10180
  end
10175
10181
  end
10176
10182
 
10183
+ # Observability config for a resource.
10184
+ class GoogleCloudDiscoveryengineV1ObservabilityConfig
10185
+ include Google::Apis::Core::Hashable
10186
+
10187
+ # Optional. Enables observability. If false, all other flags are ignored.
10188
+ # Corresponds to the JSON property `observabilityEnabled`
10189
+ # @return [Boolean]
10190
+ attr_accessor :observability_enabled
10191
+ alias_method :observability_enabled?, :observability_enabled
10192
+
10193
+ # Optional. Enables sensitive logging. Sensitive logging includes customer core
10194
+ # content (e.g. prompts, responses). If false, will sanitize all sensitive
10195
+ # fields.
10196
+ # Corresponds to the JSON property `sensitiveLoggingEnabled`
10197
+ # @return [Boolean]
10198
+ attr_accessor :sensitive_logging_enabled
10199
+ alias_method :sensitive_logging_enabled?, :sensitive_logging_enabled
10200
+
10201
+ def initialize(**args)
10202
+ update!(**args)
10203
+ end
10204
+
10205
+ # Update properties of this object
10206
+ def update!(**args)
10207
+ @observability_enabled = args[:observability_enabled] if args.key?(:observability_enabled)
10208
+ @sensitive_logging_enabled = args[:sensitive_logging_enabled] if args.key?(:sensitive_logging_enabled)
10209
+ end
10210
+ end
10211
+
10177
10212
  # Detailed page information.
10178
10213
  class GoogleCloudDiscoveryengineV1PageInfo
10179
10214
  include Google::Apis::Core::Hashable
@@ -10392,11 +10427,33 @@ module Google
10392
10427
  # @return [Fixnum]
10393
10428
  attr_accessor :effective_search_qpm_threshold
10394
10429
 
10430
+ # Output only. The earliest next update time for the indexing core subscription
10431
+ # threshold. This is based on the next_update_time returned by the underlying
10432
+ # Cloud Billing Subscription V3 API. This field is populated only if an update
10433
+ # indexing core subscription threshold request is succeeded.
10434
+ # Corresponds to the JSON property `indexingCoreThresholdNextUpdateTime`
10435
+ # @return [String]
10436
+ attr_accessor :indexing_core_threshold_next_update_time
10437
+
10438
+ # Output only. The earliest next update time for the search QPM subscription
10439
+ # threshold. This is based on the next_update_time returned by the underlying
10440
+ # Cloud Billing Subscription V3 API. This field is populated only if an update
10441
+ # QPM subscription threshold request is succeeded.
10442
+ # Corresponds to the JSON property `searchQpmThresholdNextUpdateTime`
10443
+ # @return [String]
10444
+ attr_accessor :search_qpm_threshold_next_update_time
10445
+
10395
10446
  # Optional. The start time of the currently active billing subscription.
10396
10447
  # Corresponds to the JSON property `startTime`
10397
10448
  # @return [String]
10398
10449
  attr_accessor :start_time
10399
10450
 
10451
+ # Output only. The latest terminate effective time of search qpm and indexing
10452
+ # core subscriptions.
10453
+ # Corresponds to the JSON property `terminateTime`
10454
+ # @return [String]
10455
+ attr_accessor :terminate_time
10456
+
10400
10457
  def initialize(**args)
10401
10458
  update!(**args)
10402
10459
  end
@@ -10405,7 +10462,10 @@ module Google
10405
10462
  def update!(**args)
10406
10463
  @effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
10407
10464
  @effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
10465
+ @indexing_core_threshold_next_update_time = args[:indexing_core_threshold_next_update_time] if args.key?(:indexing_core_threshold_next_update_time)
10466
+ @search_qpm_threshold_next_update_time = args[:search_qpm_threshold_next_update_time] if args.key?(:search_qpm_threshold_next_update_time)
10408
10467
  @start_time = args[:start_time] if args.key?(:start_time)
10468
+ @terminate_time = args[:terminate_time] if args.key?(:terminate_time)
10409
10469
  end
10410
10470
  end
10411
10471
 
@@ -10438,6 +10498,11 @@ module Google
10438
10498
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
10439
10499
  attr_accessor :model_armor_config
10440
10500
 
10501
+ # Observability config for a resource.
10502
+ # Corresponds to the JSON property `observabilityConfig`
10503
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ObservabilityConfig]
10504
+ attr_accessor :observability_config
10505
+
10441
10506
  # Optional. Whether to disable the notebook sharing feature for the project.
10442
10507
  # Default to false if not specified.
10443
10508
  # Corresponds to the JSON property `optOutNotebookSharing`
@@ -10452,6 +10517,7 @@ module Google
10452
10517
  # Update properties of this object
10453
10518
  def update!(**args)
10454
10519
  @model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
10520
+ @observability_config = args[:observability_config] if args.key?(:observability_config)
10455
10521
  @opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
10456
10522
  end
10457
10523
  end
@@ -15662,6 +15728,11 @@ module Google
15662
15728
  # @return [String]
15663
15729
  attr_accessor :name
15664
15730
 
15731
+ # Output only. The nodes associated with the Widget Config.
15732
+ # Corresponds to the JSON property `nodes`
15733
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1WidgetConfigNode>]
15734
+ attr_accessor :nodes
15735
+
15665
15736
  # The type of snippet to display in UCS widget. -
15666
15737
  # RESULT_DISPLAY_TYPE_UNSPECIFIED for existing users. - SNIPPET for new non-
15667
15738
  # enterprise search users. - EXTRACTIVE_ANSWER for new enterprise search users.
@@ -15728,6 +15799,7 @@ module Google
15728
15799
  @llm_enabled = args[:llm_enabled] if args.key?(:llm_enabled)
15729
15800
  @minimum_data_term_accepted = args[:minimum_data_term_accepted] if args.key?(:minimum_data_term_accepted)
15730
15801
  @name = args[:name] if args.key?(:name)
15802
+ @nodes = args[:nodes] if args.key?(:nodes)
15731
15803
  @result_display_type = args[:result_display_type] if args.key?(:result_display_type)
15732
15804
  @solution_type = args[:solution_type] if args.key?(:solution_type)
15733
15805
  @ui_branding = args[:ui_branding] if args.key?(:ui_branding)
@@ -16108,6 +16180,61 @@ module Google
16108
16180
  end
16109
16181
  end
16110
16182
 
16183
+ # Represents a single reusable computational or logical unit.
16184
+ class GoogleCloudDiscoveryengineV1WidgetConfigNode
16185
+ include Google::Apis::Core::Hashable
16186
+
16187
+ # Output only. A detailed description of what the node does.
16188
+ # Corresponds to the JSON property `description`
16189
+ # @return [String]
16190
+ attr_accessor :description
16191
+
16192
+ # Output only. A human readable name for the node.
16193
+ # Corresponds to the JSON property `displayName`
16194
+ # @return [String]
16195
+ attr_accessor :display_name
16196
+
16197
+ # Output only. An identifier or URL pointing to an icon representing this node
16198
+ # type.
16199
+ # Corresponds to the JSON property `iconUrl`
16200
+ # @return [String]
16201
+ attr_accessor :icon_url
16202
+
16203
+ # Output only. The output schema of the tool. This schema is expected to conform
16204
+ # to the OpenAPI Schema standard (see https://spec.openapis.org/oas/v3.0.3.html/
16205
+ # and AIP-146). It describes the structure of the output produced by this node.
16206
+ # Corresponds to the JSON property `outputSchema`
16207
+ # @return [Hash<String,Object>]
16208
+ attr_accessor :output_schema
16209
+
16210
+ # Output only. The parameter schema of the tool. This schema is expected to
16211
+ # conform to the OpenAPI Schema standard (see https://spec.openapis.org/oas/v3.0.
16212
+ # 3.html and AIP-146). It describes the expected structure of the parameters
16213
+ # that this node accepts.
16214
+ # Corresponds to the JSON property `parameterSchema`
16215
+ # @return [Hash<String,Object>]
16216
+ attr_accessor :parameter_schema
16217
+
16218
+ # Output only. The type of the node.
16219
+ # Corresponds to the JSON property `type`
16220
+ # @return [String]
16221
+ attr_accessor :type
16222
+
16223
+ def initialize(**args)
16224
+ update!(**args)
16225
+ end
16226
+
16227
+ # Update properties of this object
16228
+ def update!(**args)
16229
+ @description = args[:description] if args.key?(:description)
16230
+ @display_name = args[:display_name] if args.key?(:display_name)
16231
+ @icon_url = args[:icon_url] if args.key?(:icon_url)
16232
+ @output_schema = args[:output_schema] if args.key?(:output_schema)
16233
+ @parameter_schema = args[:parameter_schema] if args.key?(:parameter_schema)
16234
+ @type = args[:type] if args.key?(:type)
16235
+ end
16236
+ end
16237
+
16111
16238
  # Facet field that maps to a UI Component.
16112
16239
  class GoogleCloudDiscoveryengineV1WidgetConfigUiComponentField
16113
16240
  include Google::Apis::Core::Hashable
@@ -20732,6 +20859,11 @@ module Google
20732
20859
  # @return [String]
20733
20860
  attr_accessor :name
20734
20861
 
20862
+ # Observability config for a resource.
20863
+ # Corresponds to the JSON property `observabilityConfig`
20864
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaObservabilityConfig]
20865
+ attr_accessor :observability_config
20866
+
20735
20867
  # Additional information of a recommendation engine.
20736
20868
  # Corresponds to the JSON property `recommendationMetadata`
20737
20869
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata]
@@ -20779,6 +20911,7 @@ module Google
20779
20911
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
20780
20912
  @model_configs = args[:model_configs] if args.key?(:model_configs)
20781
20913
  @name = args[:name] if args.key?(:name)
20914
+ @observability_config = args[:observability_config] if args.key?(:observability_config)
20782
20915
  @recommendation_metadata = args[:recommendation_metadata] if args.key?(:recommendation_metadata)
20783
20916
  @search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
20784
20917
  @similar_documents_config = args[:similar_documents_config] if args.key?(:similar_documents_config)
@@ -22494,6 +22627,35 @@ module Google
22494
22627
  end
22495
22628
  end
22496
22629
 
22630
+ # Observability config for a resource.
22631
+ class GoogleCloudDiscoveryengineV1alphaObservabilityConfig
22632
+ include Google::Apis::Core::Hashable
22633
+
22634
+ # Optional. Enables observability. If false, all other flags are ignored.
22635
+ # Corresponds to the JSON property `observabilityEnabled`
22636
+ # @return [Boolean]
22637
+ attr_accessor :observability_enabled
22638
+ alias_method :observability_enabled?, :observability_enabled
22639
+
22640
+ # Optional. Enables sensitive logging. Sensitive logging includes customer core
22641
+ # content (e.g. prompts, responses). If false, will sanitize all sensitive
22642
+ # fields.
22643
+ # Corresponds to the JSON property `sensitiveLoggingEnabled`
22644
+ # @return [Boolean]
22645
+ attr_accessor :sensitive_logging_enabled
22646
+ alias_method :sensitive_logging_enabled?, :sensitive_logging_enabled
22647
+
22648
+ def initialize(**args)
22649
+ update!(**args)
22650
+ end
22651
+
22652
+ # Update properties of this object
22653
+ def update!(**args)
22654
+ @observability_enabled = args[:observability_enabled] if args.key?(:observability_enabled)
22655
+ @sensitive_logging_enabled = args[:sensitive_logging_enabled] if args.key?(:sensitive_logging_enabled)
22656
+ end
22657
+ end
22658
+
22497
22659
  # Response message for CrawlRateManagementService.ObtainCrawlRate method. The
22498
22660
  # response contains organcic or dedicated crawl rate time series data for
22499
22661
  # monitoring, depending on whether dedicated crawl rate is set.
@@ -22690,11 +22852,33 @@ module Google
22690
22852
  # @return [Fixnum]
22691
22853
  attr_accessor :effective_search_qpm_threshold
22692
22854
 
22855
+ # Output only. The earliest next update time for the indexing core subscription
22856
+ # threshold. This is based on the next_update_time returned by the underlying
22857
+ # Cloud Billing Subscription V3 API. This field is populated only if an update
22858
+ # indexing core subscription threshold request is succeeded.
22859
+ # Corresponds to the JSON property `indexingCoreThresholdNextUpdateTime`
22860
+ # @return [String]
22861
+ attr_accessor :indexing_core_threshold_next_update_time
22862
+
22863
+ # Output only. The earliest next update time for the search QPM subscription
22864
+ # threshold. This is based on the next_update_time returned by the underlying
22865
+ # Cloud Billing Subscription V3 API. This field is populated only if an update
22866
+ # QPM subscription threshold request is succeeded.
22867
+ # Corresponds to the JSON property `searchQpmThresholdNextUpdateTime`
22868
+ # @return [String]
22869
+ attr_accessor :search_qpm_threshold_next_update_time
22870
+
22693
22871
  # Optional. The start time of the currently active billing subscription.
22694
22872
  # Corresponds to the JSON property `startTime`
22695
22873
  # @return [String]
22696
22874
  attr_accessor :start_time
22697
22875
 
22876
+ # Output only. The latest terminate effective time of search qpm and indexing
22877
+ # core subscriptions.
22878
+ # Corresponds to the JSON property `terminateTime`
22879
+ # @return [String]
22880
+ attr_accessor :terminate_time
22881
+
22698
22882
  def initialize(**args)
22699
22883
  update!(**args)
22700
22884
  end
@@ -22703,7 +22887,10 @@ module Google
22703
22887
  def update!(**args)
22704
22888
  @effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
22705
22889
  @effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
22890
+ @indexing_core_threshold_next_update_time = args[:indexing_core_threshold_next_update_time] if args.key?(:indexing_core_threshold_next_update_time)
22891
+ @search_qpm_threshold_next_update_time = args[:search_qpm_threshold_next_update_time] if args.key?(:search_qpm_threshold_next_update_time)
22706
22892
  @start_time = args[:start_time] if args.key?(:start_time)
22893
+ @terminate_time = args[:terminate_time] if args.key?(:terminate_time)
22707
22894
  end
22708
22895
  end
22709
22896
 
@@ -22736,6 +22923,11 @@ module Google
22736
22923
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
22737
22924
  attr_accessor :model_armor_config
22738
22925
 
22926
+ # Observability config for a resource.
22927
+ # Corresponds to the JSON property `observabilityConfig`
22928
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaObservabilityConfig]
22929
+ attr_accessor :observability_config
22930
+
22739
22931
  # Optional. Whether to disable the notebook sharing feature for the project.
22740
22932
  # Default to false if not specified.
22741
22933
  # Corresponds to the JSON property `optOutNotebookSharing`
@@ -22750,6 +22942,7 @@ module Google
22750
22942
  # Update properties of this object
22751
22943
  def update!(**args)
22752
22944
  @model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
22945
+ @observability_config = args[:observability_config] if args.key?(:observability_config)
22753
22946
  @opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
22754
22947
  end
22755
22948
  end
@@ -27767,6 +27960,11 @@ module Google
27767
27960
  # @return [String]
27768
27961
  attr_accessor :name
27769
27962
 
27963
+ # Observability config for a resource.
27964
+ # Corresponds to the JSON property `observabilityConfig`
27965
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaObservabilityConfig]
27966
+ attr_accessor :observability_config
27967
+
27770
27968
  # Configurations for a Search Engine.
27771
27969
  # Corresponds to the JSON property `searchEngineConfig`
27772
27970
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig]
@@ -27804,6 +28002,7 @@ module Google
27804
28002
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
27805
28003
  @model_configs = args[:model_configs] if args.key?(:model_configs)
27806
28004
  @name = args[:name] if args.key?(:name)
28005
+ @observability_config = args[:observability_config] if args.key?(:observability_config)
27807
28006
  @search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
27808
28007
  @solution_type = args[:solution_type] if args.key?(:solution_type)
27809
28008
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -29035,6 +29234,35 @@ module Google
29035
29234
  end
29036
29235
  end
29037
29236
 
29237
+ # Observability config for a resource.
29238
+ class GoogleCloudDiscoveryengineV1betaObservabilityConfig
29239
+ include Google::Apis::Core::Hashable
29240
+
29241
+ # Optional. Enables observability. If false, all other flags are ignored.
29242
+ # Corresponds to the JSON property `observabilityEnabled`
29243
+ # @return [Boolean]
29244
+ attr_accessor :observability_enabled
29245
+ alias_method :observability_enabled?, :observability_enabled
29246
+
29247
+ # Optional. Enables sensitive logging. Sensitive logging includes customer core
29248
+ # content (e.g. prompts, responses). If false, will sanitize all sensitive
29249
+ # fields.
29250
+ # Corresponds to the JSON property `sensitiveLoggingEnabled`
29251
+ # @return [Boolean]
29252
+ attr_accessor :sensitive_logging_enabled
29253
+ alias_method :sensitive_logging_enabled?, :sensitive_logging_enabled
29254
+
29255
+ def initialize(**args)
29256
+ update!(**args)
29257
+ end
29258
+
29259
+ # Update properties of this object
29260
+ def update!(**args)
29261
+ @observability_enabled = args[:observability_enabled] if args.key?(:observability_enabled)
29262
+ @sensitive_logging_enabled = args[:sensitive_logging_enabled] if args.key?(:sensitive_logging_enabled)
29263
+ end
29264
+ end
29265
+
29038
29266
  # Response message for CrawlRateManagementService.ObtainCrawlRate method. The
29039
29267
  # response contains organcic or dedicated crawl rate time series data for
29040
29268
  # monitoring, depending on whether dedicated crawl rate is set.
@@ -29192,11 +29420,33 @@ module Google
29192
29420
  # @return [Fixnum]
29193
29421
  attr_accessor :effective_search_qpm_threshold
29194
29422
 
29423
+ # Output only. The earliest next update time for the indexing core subscription
29424
+ # threshold. This is based on the next_update_time returned by the underlying
29425
+ # Cloud Billing Subscription V3 API. This field is populated only if an update
29426
+ # indexing core subscription threshold request is succeeded.
29427
+ # Corresponds to the JSON property `indexingCoreThresholdNextUpdateTime`
29428
+ # @return [String]
29429
+ attr_accessor :indexing_core_threshold_next_update_time
29430
+
29431
+ # Output only. The earliest next update time for the search QPM subscription
29432
+ # threshold. This is based on the next_update_time returned by the underlying
29433
+ # Cloud Billing Subscription V3 API. This field is populated only if an update
29434
+ # QPM subscription threshold request is succeeded.
29435
+ # Corresponds to the JSON property `searchQpmThresholdNextUpdateTime`
29436
+ # @return [String]
29437
+ attr_accessor :search_qpm_threshold_next_update_time
29438
+
29195
29439
  # Optional. The start time of the currently active billing subscription.
29196
29440
  # Corresponds to the JSON property `startTime`
29197
29441
  # @return [String]
29198
29442
  attr_accessor :start_time
29199
29443
 
29444
+ # Output only. The latest terminate effective time of search qpm and indexing
29445
+ # core subscriptions.
29446
+ # Corresponds to the JSON property `terminateTime`
29447
+ # @return [String]
29448
+ attr_accessor :terminate_time
29449
+
29200
29450
  def initialize(**args)
29201
29451
  update!(**args)
29202
29452
  end
@@ -29205,7 +29455,10 @@ module Google
29205
29455
  def update!(**args)
29206
29456
  @effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
29207
29457
  @effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
29458
+ @indexing_core_threshold_next_update_time = args[:indexing_core_threshold_next_update_time] if args.key?(:indexing_core_threshold_next_update_time)
29459
+ @search_qpm_threshold_next_update_time = args[:search_qpm_threshold_next_update_time] if args.key?(:search_qpm_threshold_next_update_time)
29208
29460
  @start_time = args[:start_time] if args.key?(:start_time)
29461
+ @terminate_time = args[:terminate_time] if args.key?(:terminate_time)
29209
29462
  end
29210
29463
  end
29211
29464
 
@@ -29238,6 +29491,11 @@ module Google
29238
29491
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
29239
29492
  attr_accessor :model_armor_config
29240
29493
 
29494
+ # Observability config for a resource.
29495
+ # Corresponds to the JSON property `observabilityConfig`
29496
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaObservabilityConfig]
29497
+ attr_accessor :observability_config
29498
+
29241
29499
  # Optional. Whether to disable the notebook sharing feature for the project.
29242
29500
  # Default to false if not specified.
29243
29501
  # Corresponds to the JSON property `optOutNotebookSharing`
@@ -29252,6 +29510,7 @@ module Google
29252
29510
  # Update properties of this object
29253
29511
  def update!(**args)
29254
29512
  @model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
29513
+ @observability_config = args[:observability_config] if args.key?(:observability_config)
29255
29514
  @opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
29256
29515
  end
29257
29516
  end
@@ -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.66.0"
19
+ GEM_VERSION = "0.68.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 = "20260118"
25
+ REVISION = "20260130"
26
26
  end
27
27
  end
28
28
  end
@@ -1672,6 +1672,12 @@ module Google
1672
1672
  include Google::Apis::Core::JsonObjectSupport
1673
1673
  end
1674
1674
 
1675
+ class GoogleCloudDiscoveryengineV1ObservabilityConfig
1676
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1677
+
1678
+ include Google::Apis::Core::JsonObjectSupport
1679
+ end
1680
+
1675
1681
  class GoogleCloudDiscoveryengineV1PageInfo
1676
1682
  class Representation < Google::Apis::Core::JsonRepresentation; end
1677
1683
 
@@ -2494,6 +2500,12 @@ module Google
2494
2500
  include Google::Apis::Core::JsonObjectSupport
2495
2501
  end
2496
2502
 
2503
+ class GoogleCloudDiscoveryengineV1WidgetConfigNode
2504
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2505
+
2506
+ include Google::Apis::Core::JsonObjectSupport
2507
+ end
2508
+
2497
2509
  class GoogleCloudDiscoveryengineV1WidgetConfigUiComponentField
2498
2510
  class Representation < Google::Apis::Core::JsonRepresentation; end
2499
2511
 
@@ -3484,6 +3496,12 @@ module Google
3484
3496
  include Google::Apis::Core::JsonObjectSupport
3485
3497
  end
3486
3498
 
3499
+ class GoogleCloudDiscoveryengineV1alphaObservabilityConfig
3500
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3501
+
3502
+ include Google::Apis::Core::JsonObjectSupport
3503
+ end
3504
+
3487
3505
  class GoogleCloudDiscoveryengineV1alphaObtainCrawlRateResponse
3488
3506
  class Representation < Google::Apis::Core::JsonRepresentation; end
3489
3507
 
@@ -4510,6 +4528,12 @@ module Google
4510
4528
  include Google::Apis::Core::JsonObjectSupport
4511
4529
  end
4512
4530
 
4531
+ class GoogleCloudDiscoveryengineV1betaObservabilityConfig
4532
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4533
+
4534
+ include Google::Apis::Core::JsonObjectSupport
4535
+ end
4536
+
4513
4537
  class GoogleCloudDiscoveryengineV1betaObtainCrawlRateResponse
4514
4538
  class Representation < Google::Apis::Core::JsonRepresentation; end
4515
4539
 
@@ -7137,6 +7161,8 @@ module Google
7137
7161
 
7138
7162
  hash :model_configs, as: 'modelConfigs'
7139
7163
  property :name, as: 'name'
7164
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ObservabilityConfig::Representation
7165
+
7140
7166
  property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig::Representation
7141
7167
 
7142
7168
  property :solution_type, as: 'solutionType'
@@ -7798,6 +7824,14 @@ module Google
7798
7824
  end
7799
7825
  end
7800
7826
 
7827
+ class GoogleCloudDiscoveryengineV1ObservabilityConfig
7828
+ # @private
7829
+ class Representation < Google::Apis::Core::JsonRepresentation
7830
+ property :observability_enabled, as: 'observabilityEnabled'
7831
+ property :sensitive_logging_enabled, as: 'sensitiveLoggingEnabled'
7832
+ end
7833
+ end
7834
+
7801
7835
  class GoogleCloudDiscoveryengineV1PageInfo
7802
7836
  # @private
7803
7837
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7849,7 +7883,10 @@ module Google
7849
7883
  class Representation < Google::Apis::Core::JsonRepresentation
7850
7884
  property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
7851
7885
  property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
7886
+ property :indexing_core_threshold_next_update_time, as: 'indexingCoreThresholdNextUpdateTime'
7887
+ property :search_qpm_threshold_next_update_time, as: 'searchQpmThresholdNextUpdateTime'
7852
7888
  property :start_time, as: 'startTime'
7889
+ property :terminate_time, as: 'terminateTime'
7853
7890
  end
7854
7891
  end
7855
7892
 
@@ -7866,6 +7903,8 @@ module Google
7866
7903
  class Representation < Google::Apis::Core::JsonRepresentation
7867
7904
  property :model_armor_config, as: 'modelArmorConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig::Representation
7868
7905
 
7906
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ObservabilityConfig::Representation
7907
+
7869
7908
  property :opt_out_notebook_sharing, as: 'optOutNotebookSharing'
7870
7909
  end
7871
7910
  end
@@ -9161,6 +9200,8 @@ module Google
9161
9200
  property :llm_enabled, as: 'llmEnabled'
9162
9201
  property :minimum_data_term_accepted, as: 'minimumDataTermAccepted'
9163
9202
  property :name, as: 'name'
9203
+ collection :nodes, as: 'nodes', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1WidgetConfigNode, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1WidgetConfigNode::Representation
9204
+
9164
9205
  property :result_display_type, as: 'resultDisplayType'
9165
9206
  property :solution_type, as: 'solutionType'
9166
9207
  property :ui_branding, as: 'uiBranding', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1WidgetConfigUiBrandingSettings, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1WidgetConfigUiBrandingSettings::Representation
@@ -9269,6 +9310,18 @@ module Google
9269
9310
  end
9270
9311
  end
9271
9312
 
9313
+ class GoogleCloudDiscoveryengineV1WidgetConfigNode
9314
+ # @private
9315
+ class Representation < Google::Apis::Core::JsonRepresentation
9316
+ property :description, as: 'description'
9317
+ property :display_name, as: 'displayName'
9318
+ property :icon_url, as: 'iconUrl'
9319
+ hash :output_schema, as: 'outputSchema'
9320
+ hash :parameter_schema, as: 'parameterSchema'
9321
+ property :type, as: 'type'
9322
+ end
9323
+ end
9324
+
9272
9325
  class GoogleCloudDiscoveryengineV1WidgetConfigUiComponentField
9273
9326
  # @private
9274
9327
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10529,6 +10582,8 @@ module Google
10529
10582
 
10530
10583
  hash :model_configs, as: 'modelConfigs'
10531
10584
  property :name, as: 'name'
10585
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaObservabilityConfig::Representation
10586
+
10532
10587
  property :recommendation_metadata, as: 'recommendationMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata::Representation
10533
10588
 
10534
10589
  property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig::Representation
@@ -10991,6 +11046,14 @@ module Google
10991
11046
  end
10992
11047
  end
10993
11048
 
11049
+ class GoogleCloudDiscoveryengineV1alphaObservabilityConfig
11050
+ # @private
11051
+ class Representation < Google::Apis::Core::JsonRepresentation
11052
+ property :observability_enabled, as: 'observabilityEnabled'
11053
+ property :sensitive_logging_enabled, as: 'sensitiveLoggingEnabled'
11054
+ end
11055
+ end
11056
+
10994
11057
  class GoogleCloudDiscoveryengineV1alphaObtainCrawlRateResponse
10995
11058
  # @private
10996
11059
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -11044,7 +11107,10 @@ module Google
11044
11107
  class Representation < Google::Apis::Core::JsonRepresentation
11045
11108
  property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
11046
11109
  property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
11110
+ property :indexing_core_threshold_next_update_time, as: 'indexingCoreThresholdNextUpdateTime'
11111
+ property :search_qpm_threshold_next_update_time, as: 'searchQpmThresholdNextUpdateTime'
11047
11112
  property :start_time, as: 'startTime'
11113
+ property :terminate_time, as: 'terminateTime'
11048
11114
  end
11049
11115
  end
11050
11116
 
@@ -11061,6 +11127,8 @@ module Google
11061
11127
  class Representation < Google::Apis::Core::JsonRepresentation
11062
11128
  property :model_armor_config, as: 'modelArmorConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig::Representation
11063
11129
 
11130
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaObservabilityConfig::Representation
11131
+
11064
11132
  property :opt_out_notebook_sharing, as: 'optOutNotebookSharing'
11065
11133
  end
11066
11134
  end
@@ -12365,6 +12433,8 @@ module Google
12365
12433
 
12366
12434
  hash :model_configs, as: 'modelConfigs'
12367
12435
  property :name, as: 'name'
12436
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaObservabilityConfig::Representation
12437
+
12368
12438
  property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig::Representation
12369
12439
 
12370
12440
  property :solution_type, as: 'solutionType'
@@ -12713,6 +12783,14 @@ module Google
12713
12783
  end
12714
12784
  end
12715
12785
 
12786
+ class GoogleCloudDiscoveryengineV1betaObservabilityConfig
12787
+ # @private
12788
+ class Representation < Google::Apis::Core::JsonRepresentation
12789
+ property :observability_enabled, as: 'observabilityEnabled'
12790
+ property :sensitive_logging_enabled, as: 'sensitiveLoggingEnabled'
12791
+ end
12792
+ end
12793
+
12716
12794
  class GoogleCloudDiscoveryengineV1betaObtainCrawlRateResponse
12717
12795
  # @private
12718
12796
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12756,7 +12834,10 @@ module Google
12756
12834
  class Representation < Google::Apis::Core::JsonRepresentation
12757
12835
  property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
12758
12836
  property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
12837
+ property :indexing_core_threshold_next_update_time, as: 'indexingCoreThresholdNextUpdateTime'
12838
+ property :search_qpm_threshold_next_update_time, as: 'searchQpmThresholdNextUpdateTime'
12759
12839
  property :start_time, as: 'startTime'
12840
+ property :terminate_time, as: 'terminateTime'
12760
12841
  end
12761
12842
  end
12762
12843
 
@@ -12773,6 +12854,8 @@ module Google
12773
12854
  class Representation < Google::Apis::Core::JsonRepresentation
12774
12855
  property :model_armor_config, as: 'modelArmorConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig::Representation
12775
12856
 
12857
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaObservabilityConfig::Representation
12858
+
12776
12859
  property :opt_out_notebook_sharing, as: 'optOutNotebookSharing'
12777
12860
  end
12778
12861
  end
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.66.0
4
+ version: 0.68.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.66.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.68.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: