google-apis-discoveryengine_v1beta 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: c073c9680cf16e697b678588e93dbbb5c1da42d359b0fd9fb255c9b3814f4eba
4
- data.tar.gz: 061f56c16beb96d5eab84e006c385e8484964cae19a7e63fb84df7cf1d4c3645
3
+ metadata.gz: 30b11589d92839364b805272e2a8b19de1fb651154b5808c50fc5a745e5641ef
4
+ data.tar.gz: ab20b76e3076a49db7959ea2c806ca88b8396bc85f2ef3c7c67e5020843907cc
5
5
  SHA512:
6
- metadata.gz: aaa2a49e63d0f4dc00475299fef83b77755ae5e8adac8bf7ba29da0b9691de1094a51ca0f775e5617b47f35b3bad7a29c26a27acdf9544a785041fe2f81de1ff
7
- data.tar.gz: a44d021606c86c279935ec4f5066ff1eb782d5e71251d122facf7c42d745e06d9c0f73744bb69ba9fb02360a9a8b325672af3c476676f3741a05d2dccf29c1ed
6
+ metadata.gz: 7434aaf16f043bd08446d205844aa79290d392fb8c2982d3b0364eb660e464d3ccf4aae42b0f230f62f57bd005da80a250802332423e642a31279dbab761af1d
7
+ data.tar.gz: aaa45833f068659bac96f5727b1dc73be957aa6bdaecffa8982e60f1903fddc3c7275684ed1b97d059bd692e0dc0d0abe964777ebddf7825e6a872b13eddd2c3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-discoveryengine_v1beta
2
2
 
3
+ ### v0.92.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251209
6
+
7
+ ### v0.91.0 (2025-12-07)
8
+
9
+ * Regenerated from discovery document revision 20251203
10
+
3
11
  ### v0.90.0 (2025-11-23)
4
12
 
5
13
  * Regenerated from discovery document revision 20251116
@@ -2681,6 +2681,11 @@ module Google
2681
2681
  # @return [String]
2682
2682
  attr_accessor :name
2683
2683
 
2684
+ # Configuration for Natural Language Query Understanding.
2685
+ # Corresponds to the JSON property `naturalLanguageQueryUnderstandingConfig`
2686
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1NaturalLanguageQueryUnderstandingConfig]
2687
+ attr_accessor :natural_language_query_understanding_config
2688
+
2684
2689
  # Stores information regarding the serving configurations at DataStore level.
2685
2690
  # Corresponds to the JSON property `servingConfigDataStore`
2686
2691
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DataStoreServingConfigDataStore]
@@ -2727,6 +2732,7 @@ module Google
2727
2732
  @is_infobot_faq_data_store = args[:is_infobot_faq_data_store] if args.key?(:is_infobot_faq_data_store)
2728
2733
  @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
2729
2734
  @name = args[:name] if args.key?(:name)
2735
+ @natural_language_query_understanding_config = args[:natural_language_query_understanding_config] if args.key?(:natural_language_query_understanding_config)
2730
2736
  @serving_config_data_store = args[:serving_config_data_store] if args.key?(:serving_config_data_store)
2731
2737
  @solution_types = args[:solution_types] if args.key?(:solution_types)
2732
2738
  @starting_schema = args[:starting_schema] if args.key?(:starting_schema)
@@ -3846,6 +3852,14 @@ module Google
3846
3852
  class GoogleCloudDiscoveryengineV1EngineSearchEngineConfig
3847
3853
  include Google::Apis::Core::Hashable
3848
3854
 
3855
+ # Optional. The required subscription tier of this engine. They cannot be
3856
+ # modified after engine creation. If the required subscription tier is search,
3857
+ # user with higher license tier like assist can still access the standalone app
3858
+ # associated with this engine.
3859
+ # Corresponds to the JSON property `requiredSubscriptionTier`
3860
+ # @return [String]
3861
+ attr_accessor :required_subscription_tier
3862
+
3849
3863
  # The add-on that this search engine enables.
3850
3864
  # Corresponds to the JSON property `searchAddOns`
3851
3865
  # @return [Array<String>]
@@ -3864,6 +3878,7 @@ module Google
3864
3878
 
3865
3879
  # Update properties of this object
3866
3880
  def update!(**args)
3881
+ @required_subscription_tier = args[:required_subscription_tier] if args.key?(:required_subscription_tier)
3867
3882
  @search_add_ons = args[:search_add_ons] if args.key?(:search_add_ons)
3868
3883
  @search_tier = args[:search_tier] if args.key?(:search_tier)
3869
3884
  end
@@ -4426,6 +4441,26 @@ module Google
4426
4441
  end
4427
4442
  end
4428
4443
 
4444
+ # Configuration for Natural Language Query Understanding.
4445
+ class GoogleCloudDiscoveryengineV1NaturalLanguageQueryUnderstandingConfig
4446
+ include Google::Apis::Core::Hashable
4447
+
4448
+ # Mode of Natural Language Query Understanding. If this field is unset, the
4449
+ # behavior defaults to NaturalLanguageQueryUnderstandingConfig.Mode.DISABLED.
4450
+ # Corresponds to the JSON property `mode`
4451
+ # @return [String]
4452
+ attr_accessor :mode
4453
+
4454
+ def initialize(**args)
4455
+ update!(**args)
4456
+ end
4457
+
4458
+ # Update properties of this object
4459
+ def update!(**args)
4460
+ @mode = args[:mode] if args.key?(:mode)
4461
+ end
4462
+ end
4463
+
4429
4464
  # Metadata and configurations for a Google Cloud project in the service.
4430
4465
  class GoogleCloudDiscoveryengineV1Project
4431
4466
  include Google::Apis::Core::Hashable
@@ -10753,6 +10788,14 @@ module Google
10753
10788
  class GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig
10754
10789
  include Google::Apis::Core::Hashable
10755
10790
 
10791
+ # Optional. The required subscription tier of this engine. They cannot be
10792
+ # modified after engine creation. If the required subscription tier is search,
10793
+ # user with higher license tier like assist can still access the standalone app
10794
+ # associated with this engine.
10795
+ # Corresponds to the JSON property `requiredSubscriptionTier`
10796
+ # @return [String]
10797
+ attr_accessor :required_subscription_tier
10798
+
10756
10799
  # The add-on that this search engine enables.
10757
10800
  # Corresponds to the JSON property `searchAddOns`
10758
10801
  # @return [Array<String>]
@@ -10771,6 +10814,7 @@ module Google
10771
10814
 
10772
10815
  # Update properties of this object
10773
10816
  def update!(**args)
10817
+ @required_subscription_tier = args[:required_subscription_tier] if args.key?(:required_subscription_tier)
10774
10818
  @search_add_ons = args[:search_add_ons] if args.key?(:search_add_ons)
10775
10819
  @search_tier = args[:search_tier] if args.key?(:search_tier)
10776
10820
  end
@@ -13180,11 +13224,12 @@ module Google
13180
13224
  # be the same as UserEvent.PageInfo.page_category. This field is the equivalent
13181
13225
  # of the query for browse (navigation) queries. It's used by the browse model
13182
13226
  # when the query is empty. If the field is empty, it will not be used by the
13183
- # browse model. To represent full path of a category, use '>' character to
13184
- # separate different hierarchies. If '>' is part of the category name, replace
13185
- # it with other character(s). For example, `Graphics Cards > RTX>4090 > Founders
13186
- # Edition` where "RTX > 4090" represents one level, can be rewritten as `
13187
- # Graphics Cards > RTX_4090 > Founders Edition`
13227
+ # browse model. If the field contains more than one element, only the first
13228
+ # element will be used. To represent full path of a category, use '>' character
13229
+ # to separate different hierarchies. If '>' is part of the category name,
13230
+ # replace it with other character(s). For example, `Graphics Cards > RTX>4090 >
13231
+ # Founders Edition` where "RTX > 4090" represents one level, can be rewritten as
13232
+ # `Graphics Cards > RTX_4090 > Founders Edition`
13188
13233
  # Corresponds to the JSON property `pageCategories`
13189
13234
  # @return [Array<String>]
13190
13235
  attr_accessor :page_categories
@@ -22287,6 +22332,14 @@ module Google
22287
22332
  class GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig
22288
22333
  include Google::Apis::Core::Hashable
22289
22334
 
22335
+ # Optional. The required subscription tier of this engine. They cannot be
22336
+ # modified after engine creation. If the required subscription tier is search,
22337
+ # user with higher license tier like assist can still access the standalone app
22338
+ # associated with this engine.
22339
+ # Corresponds to the JSON property `requiredSubscriptionTier`
22340
+ # @return [String]
22341
+ attr_accessor :required_subscription_tier
22342
+
22290
22343
  # The add-on that this search engine enables.
22291
22344
  # Corresponds to the JSON property `searchAddOns`
22292
22345
  # @return [Array<String>]
@@ -22305,6 +22358,7 @@ module Google
22305
22358
 
22306
22359
  # Update properties of this object
22307
22360
  def update!(**args)
22361
+ @required_subscription_tier = args[:required_subscription_tier] if args.key?(:required_subscription_tier)
22308
22362
  @search_add_ons = args[:search_add_ons] if args.key?(:search_add_ons)
22309
22363
  @search_tier = args[:search_tier] if args.key?(:search_tier)
22310
22364
  end
@@ -22756,6 +22810,11 @@ module Google
22756
22810
  # @return [String]
22757
22811
  attr_accessor :external_identity
22758
22812
 
22813
+ # Optional. The name of the external identity.
22814
+ # Corresponds to the JSON property `externalIdentityName`
22815
+ # @return [String]
22816
+ attr_accessor :external_identity_name
22817
+
22759
22818
  # Group identifier. For Google Workspace user account, group_id should be the
22760
22819
  # google workspace group email. For non-google identity provider, group_id is
22761
22820
  # the mapped group identifier configured during the workforcepool config.
@@ -22777,6 +22836,7 @@ module Google
22777
22836
  # Update properties of this object
22778
22837
  def update!(**args)
22779
22838
  @external_identity = args[:external_identity] if args.key?(:external_identity)
22839
+ @external_identity_name = args[:external_identity_name] if args.key?(:external_identity_name)
22780
22840
  @group_id = args[:group_id] if args.key?(:group_id)
22781
22841
  @user_id = args[:user_id] if args.key?(:user_id)
22782
22842
  end
@@ -26469,11 +26529,12 @@ module Google
26469
26529
  # be the same as UserEvent.PageInfo.page_category. This field is the equivalent
26470
26530
  # of the query for browse (navigation) queries. It's used by the browse model
26471
26531
  # when the query is empty. If the field is empty, it will not be used by the
26472
- # browse model. To represent full path of a category, use '>' character to
26473
- # separate different hierarchies. If '>' is part of the category name, replace
26474
- # it with other character(s). For example, `Graphics Cards > RTX>4090 > Founders
26475
- # Edition` where "RTX > 4090" represents one level, can be rewritten as `
26476
- # Graphics Cards > RTX_4090 > Founders Edition`
26532
+ # browse model. If the field contains more than one element, only the first
26533
+ # element will be used. To represent full path of a category, use '>' character
26534
+ # to separate different hierarchies. If '>' is part of the category name,
26535
+ # replace it with other character(s). For example, `Graphics Cards > RTX>4090 >
26536
+ # Founders Edition` where "RTX > 4090" represents one level, can be rewritten as
26537
+ # `Graphics Cards > RTX_4090 > Founders Edition`
26477
26538
  # Corresponds to the JSON property `pageCategories`
26478
26539
  # @return [Array<String>]
26479
26540
  attr_accessor :page_categories
@@ -27896,6 +27957,11 @@ module Google
27896
27957
  # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchLinkPromotion>]
27897
27958
  attr_accessor :search_link_promotions
27898
27959
 
27960
+ # Output only. Indicates the semantic state of the search response.
27961
+ # Corresponds to the JSON property `semanticState`
27962
+ # @return [String]
27963
+ attr_accessor :semantic_state
27964
+
27899
27965
  # Information about the session.
27900
27966
  # Corresponds to the JSON property `sessionInfo`
27901
27967
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseSessionInfo]
@@ -27941,6 +28007,7 @@ module Google
27941
28007
  @redirect_uri = args[:redirect_uri] if args.key?(:redirect_uri)
27942
28008
  @results = args[:results] if args.key?(:results)
27943
28009
  @search_link_promotions = args[:search_link_promotions] if args.key?(:search_link_promotions)
28010
+ @semantic_state = args[:semantic_state] if args.key?(:semantic_state)
27944
28011
  @session_info = args[:session_info] if args.key?(:session_info)
27945
28012
  @suggested_query = args[:suggested_query] if args.key?(:suggested_query)
27946
28013
  @summary = args[:summary] if args.key?(:summary)
@@ -30373,15 +30440,15 @@ module Google
30373
30440
  # @return [String]
30374
30441
  attr_accessor :event_type
30375
30442
 
30376
- # The filter syntax consists of an expression language for constructing a
30377
- # predicate from one or more fields of the documents being filtered. One example
30378
- # is for `search` events, the associated SearchRequest may contain a filter
30379
- # expression in SearchRequest.filter conforming to https://google.aip.dev/160#
30380
- # filtering. Similarly, for `view-item-list` events that are generated from a
30381
- # RecommendRequest, this field may be populated directly from RecommendRequest.
30382
- # filter conforming to https://google.aip.dev/160#filtering. The value must be a
30383
- # UTF-8 encoded string with a length limit of 1,000 characters. Otherwise, an `
30384
- # INVALID_ARGUMENT` error is returned.
30443
+ # Optional. The filter syntax consists of an expression language for
30444
+ # constructing a predicate from one or more fields of the documents being
30445
+ # filtered. One example is for `search` events, the associated SearchRequest may
30446
+ # contain a filter expression in SearchRequest.filter conforming to https://
30447
+ # google.aip.dev/160#filtering. Similarly, for `view-item-list` events that are
30448
+ # generated from a RecommendRequest, this field may be populated directly from
30449
+ # RecommendRequest.filter conforming to https://google.aip.dev/160#filtering.
30450
+ # The value must be a UTF-8 encoded string with a length limit of 1,000
30451
+ # characters. Otherwise, an `INVALID_ARGUMENT` error is returned.
30385
30452
  # Corresponds to the JSON property `filter`
30386
30453
  # @return [String]
30387
30454
  attr_accessor :filter
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1beta
18
18
  # Version of the google-apis-discoveryengine_v1beta 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 = "20251116"
25
+ REVISION = "20251209"
26
26
  end
27
27
  end
28
28
  end
@@ -700,6 +700,12 @@ module Google
700
700
  include Google::Apis::Core::JsonObjectSupport
701
701
  end
702
702
 
703
+ class GoogleCloudDiscoveryengineV1NaturalLanguageQueryUnderstandingConfig
704
+ class Representation < Google::Apis::Core::JsonRepresentation; end
705
+
706
+ include Google::Apis::Core::JsonObjectSupport
707
+ end
708
+
703
709
  class GoogleCloudDiscoveryengineV1Project
704
710
  class Representation < Google::Apis::Core::JsonRepresentation; end
705
711
 
@@ -5619,6 +5625,8 @@ module Google
5619
5625
  property :is_infobot_faq_data_store, as: 'isInfobotFaqDataStore'
5620
5626
  property :kms_key_name, as: 'kmsKeyName'
5621
5627
  property :name, as: 'name'
5628
+ property :natural_language_query_understanding_config, as: 'naturalLanguageQueryUnderstandingConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1NaturalLanguageQueryUnderstandingConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1NaturalLanguageQueryUnderstandingConfig::Representation
5629
+
5622
5630
  property :serving_config_data_store, as: 'servingConfigDataStore', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DataStoreServingConfigDataStore, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DataStoreServingConfigDataStore::Representation
5623
5631
 
5624
5632
  collection :solution_types, as: 'solutionTypes'
@@ -5940,6 +5948,7 @@ module Google
5940
5948
  class GoogleCloudDiscoveryengineV1EngineSearchEngineConfig
5941
5949
  # @private
5942
5950
  class Representation < Google::Apis::Core::JsonRepresentation
5951
+ property :required_subscription_tier, as: 'requiredSubscriptionTier'
5943
5952
  collection :search_add_ons, as: 'searchAddOns'
5944
5953
  property :search_tier, as: 'searchTier'
5945
5954
  end
@@ -6101,6 +6110,13 @@ module Google
6101
6110
  end
6102
6111
  end
6103
6112
 
6113
+ class GoogleCloudDiscoveryengineV1NaturalLanguageQueryUnderstandingConfig
6114
+ # @private
6115
+ class Representation < Google::Apis::Core::JsonRepresentation
6116
+ property :mode, as: 'mode'
6117
+ end
6118
+ end
6119
+
6104
6120
  class GoogleCloudDiscoveryengineV1Project
6105
6121
  # @private
6106
6122
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7796,6 +7812,7 @@ module Google
7796
7812
  class GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig
7797
7813
  # @private
7798
7814
  class Representation < Google::Apis::Core::JsonRepresentation
7815
+ property :required_subscription_tier, as: 'requiredSubscriptionTier'
7799
7816
  collection :search_add_ons, as: 'searchAddOns'
7800
7817
  property :search_tier, as: 'searchTier'
7801
7818
  end
@@ -10918,6 +10935,7 @@ module Google
10918
10935
  class GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig
10919
10936
  # @private
10920
10937
  class Representation < Google::Apis::Core::JsonRepresentation
10938
+ property :required_subscription_tier, as: 'requiredSubscriptionTier'
10921
10939
  collection :search_add_ons, as: 'searchAddOns'
10922
10940
  property :search_tier, as: 'searchTier'
10923
10941
  end
@@ -11045,6 +11063,7 @@ module Google
11045
11063
  # @private
11046
11064
  class Representation < Google::Apis::Core::JsonRepresentation
11047
11065
  property :external_identity, as: 'externalIdentity'
11066
+ property :external_identity_name, as: 'externalIdentityName'
11048
11067
  property :group_id, as: 'groupId'
11049
11068
  property :user_id, as: 'userId'
11050
11069
  end
@@ -12443,6 +12462,7 @@ module Google
12443
12462
 
12444
12463
  collection :search_link_promotions, as: 'searchLinkPromotions', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchLinkPromotion, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchLinkPromotion::Representation
12445
12464
 
12465
+ property :semantic_state, as: 'semanticState'
12446
12466
  property :session_info, as: 'sessionInfo', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseSessionInfo, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseSessionInfo::Representation
12447
12467
 
12448
12468
  property :suggested_query, as: 'suggestedQuery'
@@ -2377,6 +2377,39 @@ module Google
2377
2377
  execute_or_queue_command(command, &block)
2378
2378
  end
2379
2379
 
2380
+ # Deletes a ServingConfig. Returns a NOT_FOUND error if the ServingConfig does
2381
+ # not exist.
2382
+ # @param [String] name
2383
+ # Required. The resource name of the ServingConfig to delete. Format: `projects/`
2384
+ # project`/locations/`location`/collections/`collection`/engines/`engine`/
2385
+ # servingConfigs/`serving_config_id``
2386
+ # @param [String] fields
2387
+ # Selector specifying which fields to include in a partial response.
2388
+ # @param [String] quota_user
2389
+ # Available to use for quota purposes for server-side applications. Can be any
2390
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2391
+ # @param [Google::Apis::RequestOptions] options
2392
+ # Request-specific options
2393
+ #
2394
+ # @yield [result, err] Result & error if block supplied
2395
+ # @yieldparam result [Google::Apis::DiscoveryengineV1beta::GoogleProtobufEmpty] parsed result object
2396
+ # @yieldparam err [StandardError] error object if request failed
2397
+ #
2398
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleProtobufEmpty]
2399
+ #
2400
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2401
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2402
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2403
+ def delete_project_location_collection_data_store_serving_config(name, fields: nil, quota_user: nil, options: nil, &block)
2404
+ command = make_simple_command(:delete, 'v1beta/{+name}', options)
2405
+ command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleProtobufEmpty::Representation
2406
+ command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleProtobufEmpty
2407
+ command.params['name'] = name unless name.nil?
2408
+ command.query['fields'] = fields unless fields.nil?
2409
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2410
+ execute_or_queue_command(command, &block)
2411
+ end
2412
+
2380
2413
  # Gets a ServingConfig. Returns a NotFound error if the ServingConfig does not
2381
2414
  # exist.
2382
2415
  # @param [String] name
@@ -4946,6 +4979,39 @@ module Google
4946
4979
  execute_or_queue_command(command, &block)
4947
4980
  end
4948
4981
 
4982
+ # Deletes a ServingConfig. Returns a NOT_FOUND error if the ServingConfig does
4983
+ # not exist.
4984
+ # @param [String] name
4985
+ # Required. The resource name of the ServingConfig to delete. Format: `projects/`
4986
+ # project`/locations/`location`/collections/`collection`/engines/`engine`/
4987
+ # servingConfigs/`serving_config_id``
4988
+ # @param [String] fields
4989
+ # Selector specifying which fields to include in a partial response.
4990
+ # @param [String] quota_user
4991
+ # Available to use for quota purposes for server-side applications. Can be any
4992
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4993
+ # @param [Google::Apis::RequestOptions] options
4994
+ # Request-specific options
4995
+ #
4996
+ # @yield [result, err] Result & error if block supplied
4997
+ # @yieldparam result [Google::Apis::DiscoveryengineV1beta::GoogleProtobufEmpty] parsed result object
4998
+ # @yieldparam err [StandardError] error object if request failed
4999
+ #
5000
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleProtobufEmpty]
5001
+ #
5002
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5003
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5004
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
5005
+ def delete_project_location_collection_engine_serving_config(name, fields: nil, quota_user: nil, options: nil, &block)
5006
+ command = make_simple_command(:delete, 'v1beta/{+name}', options)
5007
+ command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleProtobufEmpty::Representation
5008
+ command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleProtobufEmpty
5009
+ command.params['name'] = name unless name.nil?
5010
+ command.query['fields'] = fields unless fields.nil?
5011
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
5012
+ execute_or_queue_command(command, &block)
5013
+ end
5014
+
4949
5015
  # Gets a ServingConfig. Returns a NotFound error if the ServingConfig does not
4950
5016
  # exist.
4951
5017
  # @param [String] name
@@ -7198,6 +7264,39 @@ module Google
7198
7264
  execute_or_queue_command(command, &block)
7199
7265
  end
7200
7266
 
7267
+ # Deletes a ServingConfig. Returns a NOT_FOUND error if the ServingConfig does
7268
+ # not exist.
7269
+ # @param [String] name
7270
+ # Required. The resource name of the ServingConfig to delete. Format: `projects/`
7271
+ # project`/locations/`location`/collections/`collection`/engines/`engine`/
7272
+ # servingConfigs/`serving_config_id``
7273
+ # @param [String] fields
7274
+ # Selector specifying which fields to include in a partial response.
7275
+ # @param [String] quota_user
7276
+ # Available to use for quota purposes for server-side applications. Can be any
7277
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
7278
+ # @param [Google::Apis::RequestOptions] options
7279
+ # Request-specific options
7280
+ #
7281
+ # @yield [result, err] Result & error if block supplied
7282
+ # @yieldparam result [Google::Apis::DiscoveryengineV1beta::GoogleProtobufEmpty] parsed result object
7283
+ # @yieldparam err [StandardError] error object if request failed
7284
+ #
7285
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleProtobufEmpty]
7286
+ #
7287
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7288
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7289
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
7290
+ def delete_project_location_data_store_serving_config(name, fields: nil, quota_user: nil, options: nil, &block)
7291
+ command = make_simple_command(:delete, 'v1beta/{+name}', options)
7292
+ command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleProtobufEmpty::Representation
7293
+ command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleProtobufEmpty
7294
+ command.params['name'] = name unless name.nil?
7295
+ command.query['fields'] = fields unless fields.nil?
7296
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
7297
+ execute_or_queue_command(command, &block)
7298
+ end
7299
+
7201
7300
  # Gets a ServingConfig. Returns a NotFound error if the ServingConfig does not
7202
7301
  # exist.
7203
7302
  # @param [String] name
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1beta
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_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.90.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.92.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: