google-apis-discoveryengine_v1beta 0.90.0 → 0.91.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: 0ceb0dcb534a0ae9e6ec2e367be53e597e9a136a1dd3206749cb775bde85570c
4
+ data.tar.gz: d9466968878864b839662a153b699eefc905b0d1d417c9921e5d02927dc43202
5
5
  SHA512:
6
- metadata.gz: aaa2a49e63d0f4dc00475299fef83b77755ae5e8adac8bf7ba29da0b9691de1094a51ca0f775e5617b47f35b3bad7a29c26a27acdf9544a785041fe2f81de1ff
7
- data.tar.gz: a44d021606c86c279935ec4f5066ff1eb782d5e71251d122facf7c42d745e06d9c0f73744bb69ba9fb02360a9a8b325672af3c476676f3741a05d2dccf29c1ed
6
+ metadata.gz: ee87ccd1556473b7e2270dab7f03204877a216d0d66611040e9e201dfa94802b8e46f4279b9dc5bf4789dff5202dc25ee4ab2282cc0ca332c9675d9ed825ec96
7
+ data.tar.gz: 04fdab7bffeb3c7d4d0cd3e159e3887a8c40dd2789d7a7ff2302c4153a0e0156bebf699c3b02831cbdec48974cb4d926870ba14a16c17bf975120bc589a610c5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1beta
2
2
 
3
+ ### v0.91.0 (2025-12-07)
4
+
5
+ * Regenerated from discovery document revision 20251203
6
+
3
7
  ### v0.90.0 (2025-11-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20251116
@@ -3846,6 +3846,14 @@ module Google
3846
3846
  class GoogleCloudDiscoveryengineV1EngineSearchEngineConfig
3847
3847
  include Google::Apis::Core::Hashable
3848
3848
 
3849
+ # Optional. The required subscription tier of this engine. They cannot be
3850
+ # modified after engine creation. If the required subscription tier is search,
3851
+ # user with higher license tier like assist can still access the standalone app
3852
+ # associated with this engine.
3853
+ # Corresponds to the JSON property `requiredSubscriptionTier`
3854
+ # @return [String]
3855
+ attr_accessor :required_subscription_tier
3856
+
3849
3857
  # The add-on that this search engine enables.
3850
3858
  # Corresponds to the JSON property `searchAddOns`
3851
3859
  # @return [Array<String>]
@@ -3864,6 +3872,7 @@ module Google
3864
3872
 
3865
3873
  # Update properties of this object
3866
3874
  def update!(**args)
3875
+ @required_subscription_tier = args[:required_subscription_tier] if args.key?(:required_subscription_tier)
3867
3876
  @search_add_ons = args[:search_add_ons] if args.key?(:search_add_ons)
3868
3877
  @search_tier = args[:search_tier] if args.key?(:search_tier)
3869
3878
  end
@@ -10753,6 +10762,14 @@ module Google
10753
10762
  class GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig
10754
10763
  include Google::Apis::Core::Hashable
10755
10764
 
10765
+ # Optional. The required subscription tier of this engine. They cannot be
10766
+ # modified after engine creation. If the required subscription tier is search,
10767
+ # user with higher license tier like assist can still access the standalone app
10768
+ # associated with this engine.
10769
+ # Corresponds to the JSON property `requiredSubscriptionTier`
10770
+ # @return [String]
10771
+ attr_accessor :required_subscription_tier
10772
+
10756
10773
  # The add-on that this search engine enables.
10757
10774
  # Corresponds to the JSON property `searchAddOns`
10758
10775
  # @return [Array<String>]
@@ -10771,6 +10788,7 @@ module Google
10771
10788
 
10772
10789
  # Update properties of this object
10773
10790
  def update!(**args)
10791
+ @required_subscription_tier = args[:required_subscription_tier] if args.key?(:required_subscription_tier)
10774
10792
  @search_add_ons = args[:search_add_ons] if args.key?(:search_add_ons)
10775
10793
  @search_tier = args[:search_tier] if args.key?(:search_tier)
10776
10794
  end
@@ -22287,6 +22305,14 @@ module Google
22287
22305
  class GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig
22288
22306
  include Google::Apis::Core::Hashable
22289
22307
 
22308
+ # Optional. The required subscription tier of this engine. They cannot be
22309
+ # modified after engine creation. If the required subscription tier is search,
22310
+ # user with higher license tier like assist can still access the standalone app
22311
+ # associated with this engine.
22312
+ # Corresponds to the JSON property `requiredSubscriptionTier`
22313
+ # @return [String]
22314
+ attr_accessor :required_subscription_tier
22315
+
22290
22316
  # The add-on that this search engine enables.
22291
22317
  # Corresponds to the JSON property `searchAddOns`
22292
22318
  # @return [Array<String>]
@@ -22305,6 +22331,7 @@ module Google
22305
22331
 
22306
22332
  # Update properties of this object
22307
22333
  def update!(**args)
22334
+ @required_subscription_tier = args[:required_subscription_tier] if args.key?(:required_subscription_tier)
22308
22335
  @search_add_ons = args[:search_add_ons] if args.key?(:search_add_ons)
22309
22336
  @search_tier = args[:search_tier] if args.key?(:search_tier)
22310
22337
  end
@@ -22756,6 +22783,11 @@ module Google
22756
22783
  # @return [String]
22757
22784
  attr_accessor :external_identity
22758
22785
 
22786
+ # Optional. The name of the external identity.
22787
+ # Corresponds to the JSON property `externalIdentityName`
22788
+ # @return [String]
22789
+ attr_accessor :external_identity_name
22790
+
22759
22791
  # Group identifier. For Google Workspace user account, group_id should be the
22760
22792
  # google workspace group email. For non-google identity provider, group_id is
22761
22793
  # the mapped group identifier configured during the workforcepool config.
@@ -22777,6 +22809,7 @@ module Google
22777
22809
  # Update properties of this object
22778
22810
  def update!(**args)
22779
22811
  @external_identity = args[:external_identity] if args.key?(:external_identity)
22812
+ @external_identity_name = args[:external_identity_name] if args.key?(:external_identity_name)
22780
22813
  @group_id = args[:group_id] if args.key?(:group_id)
22781
22814
  @user_id = args[:user_id] if args.key?(:user_id)
22782
22815
  end
@@ -27896,6 +27929,11 @@ module Google
27896
27929
  # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchLinkPromotion>]
27897
27930
  attr_accessor :search_link_promotions
27898
27931
 
27932
+ # Output only. Indicates the semantic state of the search response.
27933
+ # Corresponds to the JSON property `semanticState`
27934
+ # @return [String]
27935
+ attr_accessor :semantic_state
27936
+
27899
27937
  # Information about the session.
27900
27938
  # Corresponds to the JSON property `sessionInfo`
27901
27939
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseSessionInfo]
@@ -27941,6 +27979,7 @@ module Google
27941
27979
  @redirect_uri = args[:redirect_uri] if args.key?(:redirect_uri)
27942
27980
  @results = args[:results] if args.key?(:results)
27943
27981
  @search_link_promotions = args[:search_link_promotions] if args.key?(:search_link_promotions)
27982
+ @semantic_state = args[:semantic_state] if args.key?(:semantic_state)
27944
27983
  @session_info = args[:session_info] if args.key?(:session_info)
27945
27984
  @suggested_query = args[:suggested_query] if args.key?(:suggested_query)
27946
27985
  @summary = args[:summary] if args.key?(:summary)
@@ -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.91.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 = "20251203"
26
26
  end
27
27
  end
28
28
  end
@@ -5940,6 +5940,7 @@ module Google
5940
5940
  class GoogleCloudDiscoveryengineV1EngineSearchEngineConfig
5941
5941
  # @private
5942
5942
  class Representation < Google::Apis::Core::JsonRepresentation
5943
+ property :required_subscription_tier, as: 'requiredSubscriptionTier'
5943
5944
  collection :search_add_ons, as: 'searchAddOns'
5944
5945
  property :search_tier, as: 'searchTier'
5945
5946
  end
@@ -7796,6 +7797,7 @@ module Google
7796
7797
  class GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig
7797
7798
  # @private
7798
7799
  class Representation < Google::Apis::Core::JsonRepresentation
7800
+ property :required_subscription_tier, as: 'requiredSubscriptionTier'
7799
7801
  collection :search_add_ons, as: 'searchAddOns'
7800
7802
  property :search_tier, as: 'searchTier'
7801
7803
  end
@@ -10918,6 +10920,7 @@ module Google
10918
10920
  class GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig
10919
10921
  # @private
10920
10922
  class Representation < Google::Apis::Core::JsonRepresentation
10923
+ property :required_subscription_tier, as: 'requiredSubscriptionTier'
10921
10924
  collection :search_add_ons, as: 'searchAddOns'
10922
10925
  property :search_tier, as: 'searchTier'
10923
10926
  end
@@ -11045,6 +11048,7 @@ module Google
11045
11048
  # @private
11046
11049
  class Representation < Google::Apis::Core::JsonRepresentation
11047
11050
  property :external_identity, as: 'externalIdentity'
11051
+ property :external_identity_name, as: 'externalIdentityName'
11048
11052
  property :group_id, as: 'groupId'
11049
11053
  property :user_id, as: 'userId'
11050
11054
  end
@@ -12443,6 +12447,7 @@ module Google
12443
12447
 
12444
12448
  collection :search_link_promotions, as: 'searchLinkPromotions', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchLinkPromotion, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchLinkPromotion::Representation
12445
12449
 
12450
+ property :semantic_state, as: 'semanticState'
12446
12451
  property :session_info, as: 'sessionInfo', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseSessionInfo, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseSessionInfo::Representation
12447
12452
 
12448
12453
  property :suggested_query, as: 'suggestedQuery'
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.91.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.91.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: