google-apis-discoveryengine_v1alpha 0.90.0 → 0.92.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: 84b7c1c99c77f7236e4eb892c8c2ee9f4de67b173355a363b14a10d267e9f530
4
- data.tar.gz: 32f53377c406e6698a7899bf7b7a4ddfb6824592b5a475aae9bf44a0d50deafb
3
+ metadata.gz: 82f1bb3229f43029a299b4111cb1ee4c42c688a026670291dc3d75055b186c75
4
+ data.tar.gz: d5122bdad071f619f8072ba6d38910053ead75f0a5a160f1030faf5dfd4d8f35
5
5
  SHA512:
6
- metadata.gz: 708fd185de4c7c1a3cbf7b3c36134984d34adaddb369a293b5784342ee789e00abca453ec6f1715b38a43d9ac58f051851a7dd3c526f72baedc62c278a00d0ce
7
- data.tar.gz: 06e536c905d619710d09728c4c7adf04938c03e1240a0e2b0ff511fc3e06f48116cec977dae41237491d253869801f25de30bd934e492c21be1b7d418d14ec82
6
+ metadata.gz: 8b8a90f9ece009665f08a6ce7c3bd30dcd0789cb91fda2a84992f028bd5a0384e0119386c4163d71235ea178f6d9c639e889069cd1190dc105a8e93d0bc41f61
7
+ data.tar.gz: 00b5e88b7d909ce0bf5a9fcad616be11c890b2738b7d70f844189d35dab189d89bfc440ecd334874197288b0da6c79c10144115ae56b3421e1def68959f169b1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-discoveryengine_v1alpha
2
2
 
3
+ ### v0.92.0 (2026-02-01)
4
+
5
+ * Regenerated from discovery document revision 20260125
6
+
7
+ ### v0.91.0 (2026-01-25)
8
+
9
+ * Regenerated from discovery document revision 20260118
10
+
3
11
  ### v0.90.0 (2026-01-18)
4
12
 
5
13
  * Regenerated from discovery document revision 20260112
@@ -3496,9 +3496,10 @@ module Google
3496
3496
  # settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
3497
3497
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
3498
3498
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
3499
- # personalization-memory` * `disable-agent-sharing` * `disable-image-generation`
3500
- # * `disable-video-generation` * `disable-onedrive-upload` * `disable-talk-to-
3501
- # content` * `disable-google-drive-upload`
3499
+ # personalization-memory` * `personalization-suggested-highlights` * `disable-
3500
+ # agent-sharing` * `disable-image-generation` * `disable-video-generation` * `
3501
+ # disable-onedrive-upload` * `disable-talk-to-content` * `disable-google-drive-
3502
+ # upload` * `disable-welcome-emails`
3502
3503
  # Corresponds to the JSON property `features`
3503
3504
  # @return [Hash<String,String>]
3504
3505
  attr_accessor :features
@@ -4664,11 +4665,33 @@ module Google
4664
4665
  # @return [Fixnum]
4665
4666
  attr_accessor :effective_search_qpm_threshold
4666
4667
 
4668
+ # Output only. The earliest next update time for the indexing core subscription
4669
+ # threshold. This is based on the next_update_time returned by the underlying
4670
+ # Cloud Billing Subscription V3 API. This field is populated only if an update
4671
+ # indexing core subscription threshold request is succeeded.
4672
+ # Corresponds to the JSON property `indexingCoreThresholdNextUpdateTime`
4673
+ # @return [String]
4674
+ attr_accessor :indexing_core_threshold_next_update_time
4675
+
4676
+ # Output only. The earliest next update time for the search QPM subscription
4677
+ # threshold. This is based on the next_update_time returned by the underlying
4678
+ # Cloud Billing Subscription V3 API. This field is populated only if an update
4679
+ # QPM subscription threshold request is succeeded.
4680
+ # Corresponds to the JSON property `searchQpmThresholdNextUpdateTime`
4681
+ # @return [String]
4682
+ attr_accessor :search_qpm_threshold_next_update_time
4683
+
4667
4684
  # Optional. The start time of the currently active billing subscription.
4668
4685
  # Corresponds to the JSON property `startTime`
4669
4686
  # @return [String]
4670
4687
  attr_accessor :start_time
4671
4688
 
4689
+ # Output only. The latest terminate effective time of search qpm and indexing
4690
+ # core subscriptions.
4691
+ # Corresponds to the JSON property `terminateTime`
4692
+ # @return [String]
4693
+ attr_accessor :terminate_time
4694
+
4672
4695
  def initialize(**args)
4673
4696
  update!(**args)
4674
4697
  end
@@ -4677,7 +4700,10 @@ module Google
4677
4700
  def update!(**args)
4678
4701
  @effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
4679
4702
  @effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
4703
+ @indexing_core_threshold_next_update_time = args[:indexing_core_threshold_next_update_time] if args.key?(:indexing_core_threshold_next_update_time)
4704
+ @search_qpm_threshold_next_update_time = args[:search_qpm_threshold_next_update_time] if args.key?(:search_qpm_threshold_next_update_time)
4680
4705
  @start_time = args[:start_time] if args.key?(:start_time)
4706
+ @terminate_time = args[:terminate_time] if args.key?(:terminate_time)
4681
4707
  end
4682
4708
  end
4683
4709
 
@@ -6527,7 +6553,7 @@ module Google
6527
6553
  class GoogleCloudDiscoveryengineV1alphaAdvancedCompleteQueryRequest
6528
6554
  include Google::Apis::Core::Hashable
6529
6555
 
6530
- # Specification to boost suggestions based on the condtion of the suggestion.
6556
+ # Specification to boost suggestions based on the condition of the suggestion.
6531
6557
  # Corresponds to the JSON property `boostSpec`
6532
6558
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAdvancedCompleteQueryRequestBoostSpec]
6533
6559
  attr_accessor :boost_spec
@@ -6615,7 +6641,7 @@ module Google
6615
6641
  end
6616
6642
  end
6617
6643
 
6618
- # Specification to boost suggestions based on the condtion of the suggestion.
6644
+ # Specification to boost suggestions based on the condition of the suggestion.
6619
6645
  class GoogleCloudDiscoveryengineV1alphaAdvancedCompleteQueryRequestBoostSpec
6620
6646
  include Google::Apis::Core::Hashable
6621
6647
 
@@ -7271,6 +7297,11 @@ module Google
7271
7297
  # @return [String]
7272
7298
  attr_accessor :suspension_reason
7273
7299
 
7300
+ # Output only. The timestamp when the agent was last updated.
7301
+ # Corresponds to the JSON property `updateTime`
7302
+ # @return [String]
7303
+ attr_accessor :update_time
7304
+
7274
7305
  # Per-user annotations for an Agent, based on UserAnnotation.
7275
7306
  # Corresponds to the JSON property `userAnnotations`
7276
7307
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaUserAnnotations]
@@ -7300,6 +7331,7 @@ module Google
7300
7331
  @state = args[:state] if args.key?(:state)
7301
7332
  @suggested_prompts = args[:suggested_prompts] if args.key?(:suggested_prompts)
7302
7333
  @suspension_reason = args[:suspension_reason] if args.key?(:suspension_reason)
7334
+ @update_time = args[:update_time] if args.key?(:update_time)
7303
7335
  @user_annotations = args[:user_annotations] if args.key?(:user_annotations)
7304
7336
  @user_permissions = args[:user_permissions] if args.key?(:user_permissions)
7305
7337
  end
@@ -7567,6 +7599,34 @@ module Google
7567
7599
  end
7568
7600
  end
7569
7601
 
7602
+ # The customer controllable config for Analytics.
7603
+ class GoogleCloudDiscoveryengineV1alphaAnalyticsConfig
7604
+ include Google::Apis::Core::Hashable
7605
+
7606
+ # Required. The resource name of the analytics customer config. Format: `
7607
+ # projects/`project`/locations/`location`/collections/`collection_id`/engines/`
7608
+ # engine_id`/analytics/config`
7609
+ # Corresponds to the JSON property `name`
7610
+ # @return [String]
7611
+ attr_accessor :name
7612
+
7613
+ # Whether user-level metrics are enabled.
7614
+ # Corresponds to the JSON property `userLevelMetricsEnabled`
7615
+ # @return [Boolean]
7616
+ attr_accessor :user_level_metrics_enabled
7617
+ alias_method :user_level_metrics_enabled?, :user_level_metrics_enabled
7618
+
7619
+ def initialize(**args)
7620
+ update!(**args)
7621
+ end
7622
+
7623
+ # Update properties of this object
7624
+ def update!(**args)
7625
+ @name = args[:name] if args.key?(:name)
7626
+ @user_level_metrics_enabled = args[:user_level_metrics_enabled] if args.key?(:user_level_metrics_enabled)
7627
+ end
7628
+ end
7629
+
7570
7630
  # Defines an answer.
7571
7631
  class GoogleCloudDiscoveryengineV1alphaAnswer
7572
7632
  include Google::Apis::Core::Hashable
@@ -9502,8 +9562,8 @@ module Google
9502
9562
  # Output only. When set, uniquely identifies a reply within the `AssistAnswer`
9503
9563
  # resource. During an AssistantService.StreamAssist call, multiple `Reply`
9504
9564
  # messages with the same ID can occur within the response stream (across
9505
- # multiple AssistantService.StreamAssistResponse messages). These represent
9506
- # parts of a single `Reply` message in the final `AssistAnswer` resource.
9565
+ # multiple StreamAssistResponse messages). These represent parts of a single `
9566
+ # Reply` message in the final `AssistAnswer` resource.
9507
9567
  # Corresponds to the JSON property `replyId`
9508
9568
  # @return [String]
9509
9569
  attr_accessor :reply_id
@@ -15365,9 +15425,10 @@ module Google
15365
15425
  # settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
15366
15426
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
15367
15427
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
15368
- # personalization-memory` * `disable-agent-sharing` * `disable-image-generation`
15369
- # * `disable-video-generation` * `disable-onedrive-upload` * `disable-talk-to-
15370
- # content` * `disable-google-drive-upload`
15428
+ # personalization-memory` * `personalization-suggested-highlights` * `disable-
15429
+ # agent-sharing` * `disable-image-generation` * `disable-video-generation` * `
15430
+ # disable-onedrive-upload` * `disable-talk-to-content` * `disable-google-drive-
15431
+ # upload` * `disable-welcome-emails`
15371
15432
  # Corresponds to the JSON property `features`
15372
15433
  # @return [Hash<String,String>]
15373
15434
  attr_accessor :features
@@ -18948,7 +19009,7 @@ module Google
18948
19009
  end
18949
19010
  end
18950
19011
 
18951
- # Response message for UserLicenseService.ListLicenseConfigUsageStats method.
19012
+ # Response message for UserLicenseService.ListLicenseConfigsUsageStats method.
18952
19013
  class GoogleCloudDiscoveryengineV1alphaListLicenseConfigsUsageStatsResponse
18953
19014
  include Google::Apis::Core::Hashable
18954
19015
 
@@ -19687,11 +19748,33 @@ module Google
19687
19748
  # @return [Fixnum]
19688
19749
  attr_accessor :effective_search_qpm_threshold
19689
19750
 
19751
+ # Output only. The earliest next update time for the indexing core subscription
19752
+ # threshold. This is based on the next_update_time returned by the underlying
19753
+ # Cloud Billing Subscription V3 API. This field is populated only if an update
19754
+ # indexing core subscription threshold request is succeeded.
19755
+ # Corresponds to the JSON property `indexingCoreThresholdNextUpdateTime`
19756
+ # @return [String]
19757
+ attr_accessor :indexing_core_threshold_next_update_time
19758
+
19759
+ # Output only. The earliest next update time for the search QPM subscription
19760
+ # threshold. This is based on the next_update_time returned by the underlying
19761
+ # Cloud Billing Subscription V3 API. This field is populated only if an update
19762
+ # QPM subscription threshold request is succeeded.
19763
+ # Corresponds to the JSON property `searchQpmThresholdNextUpdateTime`
19764
+ # @return [String]
19765
+ attr_accessor :search_qpm_threshold_next_update_time
19766
+
19690
19767
  # Optional. The start time of the currently active billing subscription.
19691
19768
  # Corresponds to the JSON property `startTime`
19692
19769
  # @return [String]
19693
19770
  attr_accessor :start_time
19694
19771
 
19772
+ # Output only. The latest terminate effective time of search qpm and indexing
19773
+ # core subscriptions.
19774
+ # Corresponds to the JSON property `terminateTime`
19775
+ # @return [String]
19776
+ attr_accessor :terminate_time
19777
+
19695
19778
  def initialize(**args)
19696
19779
  update!(**args)
19697
19780
  end
@@ -19700,7 +19783,10 @@ module Google
19700
19783
  def update!(**args)
19701
19784
  @effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
19702
19785
  @effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
19786
+ @indexing_core_threshold_next_update_time = args[:indexing_core_threshold_next_update_time] if args.key?(:indexing_core_threshold_next_update_time)
19787
+ @search_qpm_threshold_next_update_time = args[:search_qpm_threshold_next_update_time] if args.key?(:search_qpm_threshold_next_update_time)
19703
19788
  @start_time = args[:start_time] if args.key?(:start_time)
19789
+ @terminate_time = args[:terminate_time] if args.key?(:terminate_time)
19704
19790
  end
19705
19791
  end
19706
19792
 
@@ -22158,15 +22244,15 @@ module Google
22158
22244
 
22159
22245
  # Optional. The categories associated with a category page. Must be set for
22160
22246
  # category navigation queries to achieve good search quality. The format should
22161
- # be the same as UserEvent.PageInfo.page_category. This field is the equivalent
22162
- # of the query for browse (navigation) queries. It's used by the browse model
22163
- # when the query is empty. If the field is empty, it will not be used by the
22164
- # browse model. If the field contains more than one element, only the first
22165
- # element will be used. To represent full path of a category, use '>' character
22166
- # to separate different hierarchies. If '>' is part of the category name,
22167
- # replace it with other character(s). For example, `Graphics Cards > RTX>4090 >
22168
- # Founders Edition` where "RTX > 4090" represents one level, can be rewritten as
22169
- # `Graphics Cards > RTX_4090 > Founders Edition`
22247
+ # be the same as PageInfo.page_category. This field is the equivalent of the
22248
+ # query for browse (navigation) queries. It's used by the browse model when the
22249
+ # query is empty. If the field is empty, it will not be used by the browse model.
22250
+ # If the field contains more than one element, only the first element will be
22251
+ # used. To represent full path of a category, use '>' character to separate
22252
+ # different hierarchies. If '>' is part of the category name, replace it with
22253
+ # other character(s). For example, `Graphics Cards > RTX>4090 > Founders Edition`
22254
+ # where "RTX > 4090" represents one level, can be rewritten as `Graphics Cards >
22255
+ # RTX_4090 > Founders Edition`
22170
22256
  # Corresponds to the JSON property `pageCategories`
22171
22257
  # @return [Array<String>]
22172
22258
  attr_accessor :page_categories
@@ -23305,8 +23391,8 @@ module Google
23305
23391
  # search, the default is `HARD_FILTER`. For multi-datastore search, the default
23306
23392
  # behavior is `SOFT_BOOST`. Location-based filters are always applied as hard
23307
23393
  # filters, and the `SOFT_BOOST` setting will not affect them. This field is only
23308
- # used if SearchRequest.natural_language_query_understanding_spec.
23309
- # filter_extraction_condition is set to FilterExtractionCondition.ENABLED.
23394
+ # used if SearchRequest.NaturalLanguageQueryUnderstandingSpec.
23395
+ # FilterExtractionCondition is set to FilterExtractionCondition.ENABLED.
23310
23396
  # Corresponds to the JSON property `extractedFilterBehavior`
23311
23397
  # @return [String]
23312
23398
  attr_accessor :extracted_filter_behavior
@@ -27017,6 +27103,11 @@ module Google
27017
27103
  # @return [String]
27018
27104
  attr_accessor :name
27019
27105
 
27106
+ # Output only. The nodes associated with the Widget Config.
27107
+ # Corresponds to the JSON property `nodes`
27108
+ # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigNode>]
27109
+ attr_accessor :nodes
27110
+
27020
27111
  # The type of snippet to display in UCS widget. -
27021
27112
  # RESULT_DISPLAY_TYPE_UNSPECIFIED for existing users. - SNIPPET for new non-
27022
27113
  # enterprise search users. - EXTRACTIVE_ANSWER for new enterprise search users.
@@ -27083,6 +27174,7 @@ module Google
27083
27174
  @llm_enabled = args[:llm_enabled] if args.key?(:llm_enabled)
27084
27175
  @minimum_data_term_accepted = args[:minimum_data_term_accepted] if args.key?(:minimum_data_term_accepted)
27085
27176
  @name = args[:name] if args.key?(:name)
27177
+ @nodes = args[:nodes] if args.key?(:nodes)
27086
27178
  @result_display_type = args[:result_display_type] if args.key?(:result_display_type)
27087
27179
  @solution_type = args[:solution_type] if args.key?(:solution_type)
27088
27180
  @ui_branding = args[:ui_branding] if args.key?(:ui_branding)
@@ -27226,7 +27318,7 @@ module Google
27226
27318
 
27227
27319
  # The name of the collection. It should be collection resource name. Format: `
27228
27320
  # projects/`project`/locations/`location`/collections/`collection_id``. For APIs
27229
- # under WidgetService, such as WidgetService.LookUpWidgetConfig, the project
27321
+ # under WidgetService, such as WidgetService.LookupWidgetConfig, the project
27230
27322
  # number and location part is erased in this field.
27231
27323
  # Corresponds to the JSON property `name`
27232
27324
  # @return [String]
@@ -27303,7 +27395,7 @@ module Google
27303
27395
  # The name of the data store. It should be data store resource name Format: `
27304
27396
  # projects/`project`/locations/`location`/collections/`collection_id`/dataStores/
27305
27397
  # `data_store_id``. For APIs under WidgetService, such as WidgetService.
27306
- # LookUpWidgetConfig, the project number and location part is erased in this
27398
+ # LookupWidgetConfig, the project number and location part is erased in this
27307
27399
  # field.
27308
27400
  # Corresponds to the JSON property `name`
27309
27401
  # @return [String]
@@ -27359,7 +27451,7 @@ module Google
27359
27451
  # The name of the data store. It should be data store resource name Format: `
27360
27452
  # projects/`project`/locations/`location`/collections/`collection_id`/dataStores/
27361
27453
  # `data_store_id``. For APIs under WidgetService, such as WidgetService.
27362
- # LookUpWidgetConfig, the project number and location part is erased in this
27454
+ # LookupWidgetConfig, the project number and location part is erased in this
27363
27455
  # field.
27364
27456
  # Corresponds to the JSON property `name`
27365
27457
  # @return [String]
@@ -27476,6 +27568,61 @@ module Google
27476
27568
  end
27477
27569
  end
27478
27570
 
27571
+ # Represents a single reusable computational or logical unit.
27572
+ class GoogleCloudDiscoveryengineV1alphaWidgetConfigNode
27573
+ include Google::Apis::Core::Hashable
27574
+
27575
+ # Output only. A detailed description of what the node does.
27576
+ # Corresponds to the JSON property `description`
27577
+ # @return [String]
27578
+ attr_accessor :description
27579
+
27580
+ # Output only. A human readable name for the node.
27581
+ # Corresponds to the JSON property `displayName`
27582
+ # @return [String]
27583
+ attr_accessor :display_name
27584
+
27585
+ # Output only. An identifier or URL pointing to an icon representing this node
27586
+ # type.
27587
+ # Corresponds to the JSON property `iconUrl`
27588
+ # @return [String]
27589
+ attr_accessor :icon_url
27590
+
27591
+ # Output only. The output schema of the tool. This schema is expected to conform
27592
+ # to the OpenAPI Schema standard (see https://spec.openapis.org/oas/v3.0.3.html/
27593
+ # and AIP-146). It describes the structure of the output produced by this node.
27594
+ # Corresponds to the JSON property `outputSchema`
27595
+ # @return [Hash<String,Object>]
27596
+ attr_accessor :output_schema
27597
+
27598
+ # Output only. The parameter schema of the tool. This schema is expected to
27599
+ # conform to the OpenAPI Schema standard (see https://spec.openapis.org/oas/v3.0.
27600
+ # 3.html and AIP-146). It describes the expected structure of the parameters
27601
+ # that this node accepts.
27602
+ # Corresponds to the JSON property `parameterSchema`
27603
+ # @return [Hash<String,Object>]
27604
+ attr_accessor :parameter_schema
27605
+
27606
+ # Output only. The type of the node.
27607
+ # Corresponds to the JSON property `type`
27608
+ # @return [String]
27609
+ attr_accessor :type
27610
+
27611
+ def initialize(**args)
27612
+ update!(**args)
27613
+ end
27614
+
27615
+ # Update properties of this object
27616
+ def update!(**args)
27617
+ @description = args[:description] if args.key?(:description)
27618
+ @display_name = args[:display_name] if args.key?(:display_name)
27619
+ @icon_url = args[:icon_url] if args.key?(:icon_url)
27620
+ @output_schema = args[:output_schema] if args.key?(:output_schema)
27621
+ @parameter_schema = args[:parameter_schema] if args.key?(:parameter_schema)
27622
+ @type = args[:type] if args.key?(:type)
27623
+ end
27624
+ end
27625
+
27479
27626
  # Facet field that maps to a UI Component.
27480
27627
  class GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField
27481
27628
  include Google::Apis::Core::Hashable
@@ -27598,9 +27745,10 @@ module Google
27598
27745
  # Supported keys: * `agent-gallery` * `no-code-agent-builder` * `prompt-gallery`
27599
27746
  # * `model-selector` * `notebook-lm` * `people-search` * `people-search-org-
27600
27747
  # chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
27601
- # personalization-memory` * `disable-agent-sharing` * `disable-image-generation`
27602
- # * `disable-video-generation` * `disable-onedrive-upload` * `disable-talk-to-
27603
- # content` * `disable-google-drive-upload`
27748
+ # personalization-memory` * `personalization-suggested-highlights` * `disable-
27749
+ # agent-sharing` * `disable-image-generation` * `disable-video-generation` * `
27750
+ # disable-onedrive-upload` * `disable-talk-to-content` * `disable-google-drive-
27751
+ # upload` * `disable-welcome-emails`
27604
27752
  # Corresponds to the JSON property `features`
27605
27753
  # @return [Hash<String,String>]
27606
27754
  attr_accessor :features
@@ -29501,9 +29649,10 @@ module Google
29501
29649
  # settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
29502
29650
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
29503
29651
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
29504
- # personalization-memory` * `disable-agent-sharing` * `disable-image-generation`
29505
- # * `disable-video-generation` * `disable-onedrive-upload` * `disable-talk-to-
29506
- # content` * `disable-google-drive-upload`
29652
+ # personalization-memory` * `personalization-suggested-highlights` * `disable-
29653
+ # agent-sharing` * `disable-image-generation` * `disable-video-generation` * `
29654
+ # disable-onedrive-upload` * `disable-talk-to-content` * `disable-google-drive-
29655
+ # upload` * `disable-welcome-emails`
29507
29656
  # Corresponds to the JSON property `features`
29508
29657
  # @return [Hash<String,String>]
29509
29658
  attr_accessor :features
@@ -30970,11 +31119,33 @@ module Google
30970
31119
  # @return [Fixnum]
30971
31120
  attr_accessor :effective_search_qpm_threshold
30972
31121
 
31122
+ # Output only. The earliest next update time for the indexing core subscription
31123
+ # threshold. This is based on the next_update_time returned by the underlying
31124
+ # Cloud Billing Subscription V3 API. This field is populated only if an update
31125
+ # indexing core subscription threshold request is succeeded.
31126
+ # Corresponds to the JSON property `indexingCoreThresholdNextUpdateTime`
31127
+ # @return [String]
31128
+ attr_accessor :indexing_core_threshold_next_update_time
31129
+
31130
+ # Output only. The earliest next update time for the search QPM subscription
31131
+ # threshold. This is based on the next_update_time returned by the underlying
31132
+ # Cloud Billing Subscription V3 API. This field is populated only if an update
31133
+ # QPM subscription threshold request is succeeded.
31134
+ # Corresponds to the JSON property `searchQpmThresholdNextUpdateTime`
31135
+ # @return [String]
31136
+ attr_accessor :search_qpm_threshold_next_update_time
31137
+
30973
31138
  # Optional. The start time of the currently active billing subscription.
30974
31139
  # Corresponds to the JSON property `startTime`
30975
31140
  # @return [String]
30976
31141
  attr_accessor :start_time
30977
31142
 
31143
+ # Output only. The latest terminate effective time of search qpm and indexing
31144
+ # core subscriptions.
31145
+ # Corresponds to the JSON property `terminateTime`
31146
+ # @return [String]
31147
+ attr_accessor :terminate_time
31148
+
30978
31149
  def initialize(**args)
30979
31150
  update!(**args)
30980
31151
  end
@@ -30983,7 +31154,10 @@ module Google
30983
31154
  def update!(**args)
30984
31155
  @effective_indexing_core_threshold = args[:effective_indexing_core_threshold] if args.key?(:effective_indexing_core_threshold)
30985
31156
  @effective_search_qpm_threshold = args[:effective_search_qpm_threshold] if args.key?(:effective_search_qpm_threshold)
31157
+ @indexing_core_threshold_next_update_time = args[:indexing_core_threshold_next_update_time] if args.key?(:indexing_core_threshold_next_update_time)
31158
+ @search_qpm_threshold_next_update_time = args[:search_qpm_threshold_next_update_time] if args.key?(:search_qpm_threshold_next_update_time)
30986
31159
  @start_time = args[:start_time] if args.key?(:start_time)
31160
+ @terminate_time = args[:terminate_time] if args.key?(:terminate_time)
30987
31161
  end
30988
31162
  end
30989
31163
 
@@ -31618,15 +31792,15 @@ module Google
31618
31792
 
31619
31793
  # Optional. The categories associated with a category page. Must be set for
31620
31794
  # category navigation queries to achieve good search quality. The format should
31621
- # be the same as UserEvent.PageInfo.page_category. This field is the equivalent
31622
- # of the query for browse (navigation) queries. It's used by the browse model
31623
- # when the query is empty. If the field is empty, it will not be used by the
31624
- # browse model. If the field contains more than one element, only the first
31625
- # element will be used. To represent full path of a category, use '>' character
31626
- # to separate different hierarchies. If '>' is part of the category name,
31627
- # replace it with other character(s). For example, `Graphics Cards > RTX>4090 >
31628
- # Founders Edition` where "RTX > 4090" represents one level, can be rewritten as
31629
- # `Graphics Cards > RTX_4090 > Founders Edition`
31795
+ # be the same as PageInfo.page_category. This field is the equivalent of the
31796
+ # query for browse (navigation) queries. It's used by the browse model when the
31797
+ # query is empty. If the field is empty, it will not be used by the browse model.
31798
+ # If the field contains more than one element, only the first element will be
31799
+ # used. To represent full path of a category, use '>' character to separate
31800
+ # different hierarchies. If '>' is part of the category name, replace it with
31801
+ # other character(s). For example, `Graphics Cards > RTX>4090 > Founders Edition`
31802
+ # where "RTX > 4090" represents one level, can be rewritten as `Graphics Cards >
31803
+ # RTX_4090 > Founders Edition`
31630
31804
  # Corresponds to the JSON property `pageCategories`
31631
31805
  # @return [Array<String>]
31632
31806
  attr_accessor :page_categories
@@ -32754,8 +32928,8 @@ module Google
32754
32928
  # search, the default is `HARD_FILTER`. For multi-datastore search, the default
32755
32929
  # behavior is `SOFT_BOOST`. Location-based filters are always applied as hard
32756
32930
  # filters, and the `SOFT_BOOST` setting will not affect them. This field is only
32757
- # used if SearchRequest.natural_language_query_understanding_spec.
32758
- # filter_extraction_condition is set to FilterExtractionCondition.ENABLED.
32931
+ # used if SearchRequest.NaturalLanguageQueryUnderstandingSpec.
32932
+ # FilterExtractionCondition is set to FilterExtractionCondition.ENABLED.
32759
32933
  # Corresponds to the JSON property `extractedFilterBehavior`
32760
32934
  # @return [String]
32761
32935
  attr_accessor :extracted_filter_behavior
@@ -33845,7 +34019,7 @@ module Google
33845
34019
  end
33846
34020
  end
33847
34021
 
33848
- # Request for SourceService.BatchDeleteSourcesRequest method.
34022
+ # Request for BatchDeleteSourcesRequest method.
33849
34023
  class GoogleCloudNotebooklmV1alphaBatchDeleteSourcesRequest
33850
34024
  include Google::Apis::Core::Hashable
33851
34025
 
@@ -33948,11 +34122,21 @@ module Google
33948
34122
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonIngestionError]
33949
34123
  attr_accessor :ingestion_error
33950
34124
 
34125
+ # Indicates that the source MIME type is blocked.
34126
+ # Corresponds to the JSON property `mimeTypeBlocked`
34127
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonMimeTypeBlocked]
34128
+ attr_accessor :mime_type_blocked
34129
+
33951
34130
  # Indicates that the source is paywalled and cannot be ingested.
33952
34131
  # Corresponds to the JSON property `paywallError`
33953
34132
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonPaywallError]
33954
34133
  attr_accessor :paywall_error
33955
34134
 
34135
+ # Indicates that the policy check failed.
34136
+ # Corresponds to the JSON property `policyCheckFailed`
34137
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonPolicyCheckFailed]
34138
+ attr_accessor :policy_check_failed
34139
+
33956
34140
  # Indicates that the source is empty.
33957
34141
  # Corresponds to the JSON property `sourceEmpty`
33958
34142
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonSourceEmpty]
@@ -33999,7 +34183,9 @@ module Google
33999
34183
  @domain_blocked = args[:domain_blocked] if args.key?(:domain_blocked)
34000
34184
  @google_drive_error = args[:google_drive_error] if args.key?(:google_drive_error)
34001
34185
  @ingestion_error = args[:ingestion_error] if args.key?(:ingestion_error)
34186
+ @mime_type_blocked = args[:mime_type_blocked] if args.key?(:mime_type_blocked)
34002
34187
  @paywall_error = args[:paywall_error] if args.key?(:paywall_error)
34188
+ @policy_check_failed = args[:policy_check_failed] if args.key?(:policy_check_failed)
34003
34189
  @source_empty = args[:source_empty] if args.key?(:source_empty)
34004
34190
  @source_limit_exceeded = args[:source_limit_exceeded] if args.key?(:source_limit_exceeded)
34005
34191
  @source_too_long = args[:source_too_long] if args.key?(:source_too_long)
@@ -34119,6 +34305,19 @@ module Google
34119
34305
  end
34120
34306
  end
34121
34307
 
34308
+ # Indicates that the source MIME type is blocked.
34309
+ class GoogleCloudNotebooklmV1alphaFailureReasonMimeTypeBlocked
34310
+ include Google::Apis::Core::Hashable
34311
+
34312
+ def initialize(**args)
34313
+ update!(**args)
34314
+ end
34315
+
34316
+ # Update properties of this object
34317
+ def update!(**args)
34318
+ end
34319
+ end
34320
+
34122
34321
  # Indicates that the source is paywalled and cannot be ingested.
34123
34322
  class GoogleCloudNotebooklmV1alphaFailureReasonPaywallError
34124
34323
  include Google::Apis::Core::Hashable
@@ -34132,6 +34331,19 @@ module Google
34132
34331
  end
34133
34332
  end
34134
34333
 
34334
+ # Indicates that the policy check failed.
34335
+ class GoogleCloudNotebooklmV1alphaFailureReasonPolicyCheckFailed
34336
+ include Google::Apis::Core::Hashable
34337
+
34338
+ def initialize(**args)
34339
+ update!(**args)
34340
+ end
34341
+
34342
+ # Update properties of this object
34343
+ def update!(**args)
34344
+ end
34345
+ end
34346
+
34135
34347
  # Indicates that the source is empty.
34136
34348
  class GoogleCloudNotebooklmV1alphaFailureReasonSourceEmpty
34137
34349
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1alpha
18
18
  # Version of the google-apis-discoveryengine_v1alpha gem
19
- GEM_VERSION = "0.90.0"
19
+ GEM_VERSION = "0.92.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 = "20260112"
25
+ REVISION = "20260125"
26
26
  end
27
27
  end
28
28
  end
@@ -1156,6 +1156,12 @@ module Google
1156
1156
  include Google::Apis::Core::JsonObjectSupport
1157
1157
  end
1158
1158
 
1159
+ class GoogleCloudDiscoveryengineV1alphaAnalyticsConfig
1160
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1161
+
1162
+ include Google::Apis::Core::JsonObjectSupport
1163
+ end
1164
+
1159
1165
  class GoogleCloudDiscoveryengineV1alphaAnswer
1160
1166
  class Representation < Google::Apis::Core::JsonRepresentation; end
1161
1167
 
@@ -4324,6 +4330,12 @@ module Google
4324
4330
  include Google::Apis::Core::JsonObjectSupport
4325
4331
  end
4326
4332
 
4333
+ class GoogleCloudDiscoveryengineV1alphaWidgetConfigNode
4334
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4335
+
4336
+ include Google::Apis::Core::JsonObjectSupport
4337
+ end
4338
+
4327
4339
  class GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField
4328
4340
  class Representation < Google::Apis::Core::JsonRepresentation; end
4329
4341
 
@@ -5380,12 +5392,24 @@ module Google
5380
5392
  include Google::Apis::Core::JsonObjectSupport
5381
5393
  end
5382
5394
 
5395
+ class GoogleCloudNotebooklmV1alphaFailureReasonMimeTypeBlocked
5396
+ class Representation < Google::Apis::Core::JsonRepresentation; end
5397
+
5398
+ include Google::Apis::Core::JsonObjectSupport
5399
+ end
5400
+
5383
5401
  class GoogleCloudNotebooklmV1alphaFailureReasonPaywallError
5384
5402
  class Representation < Google::Apis::Core::JsonRepresentation; end
5385
5403
 
5386
5404
  include Google::Apis::Core::JsonObjectSupport
5387
5405
  end
5388
5406
 
5407
+ class GoogleCloudNotebooklmV1alphaFailureReasonPolicyCheckFailed
5408
+ class Representation < Google::Apis::Core::JsonRepresentation; end
5409
+
5410
+ include Google::Apis::Core::JsonObjectSupport
5411
+ end
5412
+
5389
5413
  class GoogleCloudNotebooklmV1alphaFailureReasonSourceEmpty
5390
5414
  class Representation < Google::Apis::Core::JsonRepresentation; end
5391
5415
 
@@ -6847,7 +6871,10 @@ module Google
6847
6871
  class Representation < Google::Apis::Core::JsonRepresentation
6848
6872
  property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
6849
6873
  property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
6874
+ property :indexing_core_threshold_next_update_time, as: 'indexingCoreThresholdNextUpdateTime'
6875
+ property :search_qpm_threshold_next_update_time, as: 'searchQpmThresholdNextUpdateTime'
6850
6876
  property :start_time, as: 'startTime'
6877
+ property :terminate_time, as: 'terminateTime'
6851
6878
  end
6852
6879
  end
6853
6880
 
@@ -7510,6 +7537,7 @@ module Google
7510
7537
  collection :suggested_prompts, as: 'suggestedPrompts', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentViewSuggestedPrompt, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentViewSuggestedPrompt::Representation
7511
7538
 
7512
7539
  property :suspension_reason, as: 'suspensionReason'
7540
+ property :update_time, as: 'updateTime'
7513
7541
  property :user_annotations, as: 'userAnnotations', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaUserAnnotations, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaUserAnnotations::Representation
7514
7542
 
7515
7543
  property :user_permissions, as: 'userPermissions', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentViewUserPermissions, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentViewUserPermissions::Representation
@@ -7587,6 +7615,14 @@ module Google
7587
7615
  end
7588
7616
  end
7589
7617
 
7618
+ class GoogleCloudDiscoveryengineV1alphaAnalyticsConfig
7619
+ # @private
7620
+ class Representation < Google::Apis::Core::JsonRepresentation
7621
+ property :name, as: 'name'
7622
+ property :user_level_metrics_enabled, as: 'userLevelMetricsEnabled'
7623
+ end
7624
+ end
7625
+
7590
7626
  class GoogleCloudDiscoveryengineV1alphaAnswer
7591
7627
  # @private
7592
7628
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10995,7 +11031,10 @@ module Google
10995
11031
  class Representation < Google::Apis::Core::JsonRepresentation
10996
11032
  property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
10997
11033
  property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
11034
+ property :indexing_core_threshold_next_update_time, as: 'indexingCoreThresholdNextUpdateTime'
11035
+ property :search_qpm_threshold_next_update_time, as: 'searchQpmThresholdNextUpdateTime'
10998
11036
  property :start_time, as: 'startTime'
11037
+ property :terminate_time, as: 'terminateTime'
10999
11038
  end
11000
11039
  end
11001
11040
 
@@ -12889,6 +12928,8 @@ module Google
12889
12928
  property :llm_enabled, as: 'llmEnabled'
12890
12929
  property :minimum_data_term_accepted, as: 'minimumDataTermAccepted'
12891
12930
  property :name, as: 'name'
12931
+ collection :nodes, as: 'nodes', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigNode, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigNode::Representation
12932
+
12892
12933
  property :result_display_type, as: 'resultDisplayType'
12893
12934
  property :solution_type, as: 'solutionType'
12894
12935
  property :ui_branding, as: 'uiBranding', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigUiBrandingSettings, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigUiBrandingSettings::Representation
@@ -12999,6 +13040,18 @@ module Google
12999
13040
  end
13000
13041
  end
13001
13042
 
13043
+ class GoogleCloudDiscoveryengineV1alphaWidgetConfigNode
13044
+ # @private
13045
+ class Representation < Google::Apis::Core::JsonRepresentation
13046
+ property :description, as: 'description'
13047
+ property :display_name, as: 'displayName'
13048
+ property :icon_url, as: 'iconUrl'
13049
+ hash :output_schema, as: 'outputSchema'
13050
+ hash :parameter_schema, as: 'parameterSchema'
13051
+ property :type, as: 'type'
13052
+ end
13053
+ end
13054
+
13002
13055
  class GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField
13003
13056
  # @private
13004
13057
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -13950,7 +14003,10 @@ module Google
13950
14003
  class Representation < Google::Apis::Core::JsonRepresentation
13951
14004
  property :effective_indexing_core_threshold, :numeric_string => true, as: 'effectiveIndexingCoreThreshold'
13952
14005
  property :effective_search_qpm_threshold, :numeric_string => true, as: 'effectiveSearchQpmThreshold'
14006
+ property :indexing_core_threshold_next_update_time, as: 'indexingCoreThresholdNextUpdateTime'
14007
+ property :search_qpm_threshold_next_update_time, as: 'searchQpmThresholdNextUpdateTime'
13953
14008
  property :start_time, as: 'startTime'
14009
+ property :terminate_time, as: 'terminateTime'
13954
14010
  end
13955
14011
  end
13956
14012
 
@@ -14706,8 +14762,12 @@ module Google
14706
14762
 
14707
14763
  property :ingestion_error, as: 'ingestionError', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonIngestionError, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonIngestionError::Representation
14708
14764
 
14765
+ property :mime_type_blocked, as: 'mimeTypeBlocked', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonMimeTypeBlocked, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonMimeTypeBlocked::Representation
14766
+
14709
14767
  property :paywall_error, as: 'paywallError', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonPaywallError, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonPaywallError::Representation
14710
14768
 
14769
+ property :policy_check_failed, as: 'policyCheckFailed', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonPolicyCheckFailed, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonPolicyCheckFailed::Representation
14770
+
14711
14771
  property :source_empty, as: 'sourceEmpty', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonSourceEmpty, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonSourceEmpty::Representation
14712
14772
 
14713
14773
  property :source_limit_exceeded, as: 'sourceLimitExceeded', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonSourceLimitExceeded, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudNotebooklmV1alphaFailureReasonSourceLimitExceeded::Representation
@@ -14773,12 +14833,24 @@ module Google
14773
14833
  end
14774
14834
  end
14775
14835
 
14836
+ class GoogleCloudNotebooklmV1alphaFailureReasonMimeTypeBlocked
14837
+ # @private
14838
+ class Representation < Google::Apis::Core::JsonRepresentation
14839
+ end
14840
+ end
14841
+
14776
14842
  class GoogleCloudNotebooklmV1alphaFailureReasonPaywallError
14777
14843
  # @private
14778
14844
  class Representation < Google::Apis::Core::JsonRepresentation
14779
14845
  end
14780
14846
  end
14781
14847
 
14848
+ class GoogleCloudNotebooklmV1alphaFailureReasonPolicyCheckFailed
14849
+ # @private
14850
+ class Representation < Google::Apis::Core::JsonRepresentation
14851
+ end
14852
+ end
14853
+
14782
14854
  class GoogleCloudNotebooklmV1alphaFailureReasonSourceEmpty
14783
14855
  # @private
14784
14856
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -229,7 +229,8 @@ module Google
229
229
  # @param [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProject] google_cloud_discoveryengine_v1alpha_project_object
230
230
  # @param [String] update_mask
231
231
  # Optional. The list of fields to update. Supported fields: * `
232
- # customer_provided_config`
232
+ # customer_provided_config` * `customer_provided_config.notebooklm_config.
233
+ # observability_config`
233
234
  # @param [String] fields
234
235
  # Selector specifying which fields to include in a partial response.
235
236
  # @param [String] quota_user
@@ -2229,8 +2230,8 @@ module Google
2229
2230
  # can be used as a special branch_id, it returns the default branch that has
2230
2231
  # been set for the document.
2231
2232
  # @param [String] view
2232
- # The view to apply to the returned Branch. Defaults to Branch.BranchView.BASIC
2233
- # if unspecified.
2233
+ # The view to apply to the returned Branch. Defaults to BranchView.
2234
+ # BRANCH_VIEW_BASIC if unspecified.
2234
2235
  # @param [String] fields
2235
2236
  # Selector specifying which fields to include in a partial response.
2236
2237
  # @param [String] quota_user
@@ -2263,8 +2264,8 @@ module Google
2263
2264
  # @param [String] parent
2264
2265
  # Required. The parent data store resource name.
2265
2266
  # @param [String] view
2266
- # The view to apply to the returned Branch. Defaults to Branch.BranchView.BASIC
2267
- # if unspecified.
2267
+ # The view to apply to the returned Branch. Defaults to BranchView.
2268
+ # BRANCH_VIEW_BASIC if unspecified.
2268
2269
  # @param [String] fields
2269
2270
  # Selector specifying which fields to include in a partial response.
2270
2271
  # @param [String] quota_user
@@ -5836,6 +5837,77 @@ module Google
5836
5837
  execute_or_queue_command(command, &block)
5837
5838
  end
5838
5839
 
5840
+ # Gets the AnalyticsConfig.
5841
+ # @param [String] name
5842
+ # Required. The resource name of the analytics customer config. Format: `
5843
+ # projects/`project`/locations/`location`/collections/`collection_id`/engines/`
5844
+ # engine_id`/analytics/config`
5845
+ # @param [String] fields
5846
+ # Selector specifying which fields to include in a partial response.
5847
+ # @param [String] quota_user
5848
+ # Available to use for quota purposes for server-side applications. Can be any
5849
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
5850
+ # @param [Google::Apis::RequestOptions] options
5851
+ # Request-specific options
5852
+ #
5853
+ # @yield [result, err] Result & error if block supplied
5854
+ # @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig] parsed result object
5855
+ # @yieldparam err [StandardError] error object if request failed
5856
+ #
5857
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig]
5858
+ #
5859
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5860
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5861
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
5862
+ def get_project_location_collection_engine_analytic_config(name, fields: nil, quota_user: nil, options: nil, &block)
5863
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
5864
+ command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig::Representation
5865
+ command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig
5866
+ command.params['name'] = name unless name.nil?
5867
+ command.query['fields'] = fields unless fields.nil?
5868
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
5869
+ execute_or_queue_command(command, &block)
5870
+ end
5871
+
5872
+ # Updates the AnalyticsConfig for analytics.
5873
+ # @param [String] name
5874
+ # Required. The resource name of the analytics customer config. Format: `
5875
+ # projects/`project`/locations/`location`/collections/`collection_id`/engines/`
5876
+ # engine_id`/analytics/config`
5877
+ # @param [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig] google_cloud_discoveryengine_v1alpha_analytics_config_object
5878
+ # @param [String] update_mask
5879
+ # The list of fields of AnalyticsConfig to update. If not specified, the method
5880
+ # will perform a full replacement.
5881
+ # @param [String] fields
5882
+ # Selector specifying which fields to include in a partial response.
5883
+ # @param [String] quota_user
5884
+ # Available to use for quota purposes for server-side applications. Can be any
5885
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
5886
+ # @param [Google::Apis::RequestOptions] options
5887
+ # Request-specific options
5888
+ #
5889
+ # @yield [result, err] Result & error if block supplied
5890
+ # @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig] parsed result object
5891
+ # @yieldparam err [StandardError] error object if request failed
5892
+ #
5893
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig]
5894
+ #
5895
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5896
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5897
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
5898
+ def update_project_location_collection_engine_analytic_config(name, google_cloud_discoveryengine_v1alpha_analytics_config_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
5899
+ command = make_simple_command(:patch, 'v1alpha/{+name}', options)
5900
+ command.request_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig::Representation
5901
+ command.request_object = google_cloud_discoveryengine_v1alpha_analytics_config_object
5902
+ command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig::Representation
5903
+ command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnalyticsConfig
5904
+ command.params['name'] = name unless name.nil?
5905
+ command.query['updateMask'] = update_mask unless update_mask.nil?
5906
+ command.query['fields'] = fields unless fields.nil?
5907
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
5908
+ execute_or_queue_command(command, &block)
5909
+ end
5910
+
5839
5911
  # Creates an Assistant.
5840
5912
  # @param [String] parent
5841
5913
  # Required. The parent resource name. Format: `projects/`project`/locations/`
@@ -6009,7 +6081,7 @@ module Google
6009
6081
  # @param [Fixnum] max_suggested_prompts
6010
6082
  # Optional. The maximum number of suggested prompts to return per agent.
6011
6083
  # @param [Fixnum] page_size
6012
- # Optional. Maximum number of AgentViewss to return. If unspecified, defaults to
6084
+ # Optional. Maximum number of AgentViews to return. If unspecified, defaults to
6013
6085
  # 100. The maximum allowed value is 1000; anything above that will be coerced
6014
6086
  # down to 1000.
6015
6087
  # @param [String] page_token
@@ -6207,6 +6279,9 @@ module Google
6207
6279
  # Required. The name of the Agent to disable. Format: `projects/`project`/
6208
6280
  # locations/`location`/collections/`collection`/engines/`engine`/assistants/`
6209
6281
  # assistant`/agents/`agent``
6282
+ # @param [String] revision_id
6283
+ # Optional. The Revision ID of the Agent to disable. If not specified, the
6284
+ # latest revision will be disabled.
6210
6285
  # @param [String] fields
6211
6286
  # Selector specifying which fields to include in a partial response.
6212
6287
  # @param [String] quota_user
@@ -6224,11 +6299,12 @@ module Google
6224
6299
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6225
6300
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6226
6301
  # @raise [Google::Apis::AuthorizationError] Authorization is required
6227
- def disable_project_location_collection_engine_assistant_agent_agent(name, fields: nil, quota_user: nil, options: nil, &block)
6302
+ def disable_project_location_collection_engine_assistant_agent_agent(name, revision_id: nil, fields: nil, quota_user: nil, options: nil, &block)
6228
6303
  command = make_simple_command(:post, 'v1alpha/{+name}:disableAgent', options)
6229
6304
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgent::Representation
6230
6305
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgent
6231
6306
  command.params['name'] = name unless name.nil?
6307
+ command.query['revisionId'] = revision_id unless revision_id.nil?
6232
6308
  command.query['fields'] = fields unless fields.nil?
6233
6309
  command.query['quotaUser'] = quota_user unless quota_user.nil?
6234
6310
  execute_or_queue_command(command, &block)
@@ -6240,6 +6316,9 @@ module Google
6240
6316
  # Required. The name of the Agent to enable. Format: `projects/`project`/
6241
6317
  # locations/`location`/collections/`collection`/engines/`engine`/assistants/`
6242
6318
  # assistant`/agents/`agent``
6319
+ # @param [String] revision_id
6320
+ # Optional. The Revision ID of the Agent to enable. If not specified, the latest
6321
+ # revision will be enabled.
6243
6322
  # @param [String] fields
6244
6323
  # Selector specifying which fields to include in a partial response.
6245
6324
  # @param [String] quota_user
@@ -6257,11 +6336,12 @@ module Google
6257
6336
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6258
6337
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6259
6338
  # @raise [Google::Apis::AuthorizationError] Authorization is required
6260
- def enable_project_location_collection_engine_assistant_agent_agent(name, fields: nil, quota_user: nil, options: nil, &block)
6339
+ def enable_project_location_collection_engine_assistant_agent_agent(name, revision_id: nil, fields: nil, quota_user: nil, options: nil, &block)
6261
6340
  command = make_simple_command(:post, 'v1alpha/{+name}:enableAgent', options)
6262
6341
  command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgent::Representation
6263
6342
  command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgent
6264
6343
  command.params['name'] = name unless name.nil?
6344
+ command.query['revisionId'] = revision_id unless revision_id.nil?
6265
6345
  command.query['fields'] = fields unless fields.nil?
6266
6346
  command.query['quotaUser'] = quota_user unless quota_user.nil?
6267
6347
  execute_or_queue_command(command, &block)
@@ -8915,8 +8995,8 @@ module Google
8915
8995
  # can be used as a special branch_id, it returns the default branch that has
8916
8996
  # been set for the document.
8917
8997
  # @param [String] view
8918
- # The view to apply to the returned Branch. Defaults to Branch.BranchView.BASIC
8919
- # if unspecified.
8998
+ # The view to apply to the returned Branch. Defaults to BranchView.
8999
+ # BRANCH_VIEW_BASIC if unspecified.
8920
9000
  # @param [String] fields
8921
9001
  # Selector specifying which fields to include in a partial response.
8922
9002
  # @param [String] quota_user
@@ -8949,8 +9029,8 @@ module Google
8949
9029
  # @param [String] parent
8950
9030
  # Required. The parent data store resource name.
8951
9031
  # @param [String] view
8952
- # The view to apply to the returned Branch. Defaults to Branch.BranchView.BASIC
8953
- # if unspecified.
9032
+ # The view to apply to the returned Branch. Defaults to BranchView.
9033
+ # BRANCH_VIEW_BASIC if unspecified.
8954
9034
  # @param [String] fields
8955
9035
  # Selector specifying which fields to include in a partial response.
8956
9036
  # @param [String] quota_user
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.90.0
4
+ version: 0.92.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_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.90.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.92.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: