google-apis-discoveryengine_v1 0.54.0 → 0.56.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.
@@ -1991,77 +1991,6 @@ module Google
1991
1991
  end
1992
1992
  end
1993
1993
 
1994
- # The resource level alert config. Used in: * UserLicense * EngineUserData The
1995
- # AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
1996
- class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig
1997
- include Google::Apis::Core::Hashable
1998
-
1999
- # Optional. The enrollment state of each alert.
2000
- # Corresponds to the JSON property `alertEnrollments`
2001
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment>]
2002
- attr_accessor :alert_enrollments
2003
-
2004
- # Immutable. The fully qualified resource name of the AlertPolicy.
2005
- # Corresponds to the JSON property `alertPolicy`
2006
- # @return [String]
2007
- attr_accessor :alert_policy
2008
-
2009
- # Optional. The contact details for each alert policy.
2010
- # Corresponds to the JSON property `contactDetails`
2011
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ContactDetails>]
2012
- attr_accessor :contact_details
2013
-
2014
- # Optional. The language code used for notifications
2015
- # Corresponds to the JSON property `languageCode`
2016
- # @return [String]
2017
- attr_accessor :language_code
2018
-
2019
- def initialize(**args)
2020
- update!(**args)
2021
- end
2022
-
2023
- # Update properties of this object
2024
- def update!(**args)
2025
- @alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
2026
- @alert_policy = args[:alert_policy] if args.key?(:alert_policy)
2027
- @contact_details = args[:contact_details] if args.key?(:contact_details)
2028
- @language_code = args[:language_code] if args.key?(:language_code)
2029
- end
2030
- end
2031
-
2032
- # The alert enrollment status.
2033
- class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment
2034
- include Google::Apis::Core::Hashable
2035
-
2036
- # Immutable. The id of an alert.
2037
- # Corresponds to the JSON property `alertId`
2038
- # @return [String]
2039
- attr_accessor :alert_id
2040
-
2041
- # Required. The enrollment status of a customer.
2042
- # Corresponds to the JSON property `enrollState`
2043
- # @return [String]
2044
- attr_accessor :enroll_state
2045
-
2046
- # Optional. Parameters used to instantiate a notification. Used for
2047
- # notifications that are triggered when registered. Not stored. * Gemini
2048
- # Business welcome emails. * Gemini Business user invitation emails.
2049
- # Corresponds to the JSON property `notificationParams`
2050
- # @return [Hash<String,String>]
2051
- attr_accessor :notification_params
2052
-
2053
- def initialize(**args)
2054
- update!(**args)
2055
- end
2056
-
2057
- # Update properties of this object
2058
- def update!(**args)
2059
- @alert_id = args[:alert_id] if args.key?(:alert_id)
2060
- @enroll_state = args[:enroll_state] if args.key?(:enroll_state)
2061
- @notification_params = args[:notification_params] if args.key?(:notification_params)
2062
- end
2063
- end
2064
-
2065
1994
  # AlloyDB source import data from.
2066
1995
  class GoogleCloudDiscoveryengineV1AlloyDbSource
2067
1996
  include Google::Apis::Core::Hashable
@@ -4337,6 +4266,11 @@ module Google
4337
4266
  class GoogleCloudDiscoveryengineV1AssistantGroundedContent
4338
4267
  include Google::Apis::Core::Hashable
4339
4268
 
4269
+ # A collection of source attributions for a piece of content.
4270
+ # Corresponds to the JSON property `citationMetadata`
4271
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CitationMetadata]
4272
+ attr_accessor :citation_metadata
4273
+
4340
4274
  # Multi-modal content.
4341
4275
  # Corresponds to the JSON property `content`
4342
4276
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantContent]
@@ -4353,6 +4287,7 @@ module Google
4353
4287
 
4354
4288
  # Update properties of this object
4355
4289
  def update!(**args)
4290
+ @citation_metadata = args[:citation_metadata] if args.key?(:citation_metadata)
4356
4291
  @content = args[:content] if args.key?(:content)
4357
4292
  @text_grounding_metadata = args[:text_grounding_metadata] if args.key?(:text_grounding_metadata)
4358
4293
  end
@@ -5533,6 +5468,81 @@ module Google
5533
5468
  end
5534
5469
  end
5535
5470
 
5471
+ # Source attributions for content.
5472
+ class GoogleCloudDiscoveryengineV1Citation
5473
+ include Google::Apis::Core::Hashable
5474
+
5475
+ # Output only. End index into the content.
5476
+ # Corresponds to the JSON property `endIndex`
5477
+ # @return [Fixnum]
5478
+ attr_accessor :end_index
5479
+
5480
+ # Output only. License of the attribution.
5481
+ # Corresponds to the JSON property `license`
5482
+ # @return [String]
5483
+ attr_accessor :license
5484
+
5485
+ # Represents a whole or partial calendar date, such as a birthday. The time of
5486
+ # day and time zone are either specified elsewhere or are insignificant. The
5487
+ # date is relative to the Gregorian Calendar. This can represent one of the
5488
+ # following: * A full date, with non-zero year, month, and day values. * A month
5489
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
5490
+ # with a zero month and a zero day. * A year and month, with a zero day (for
5491
+ # example, a credit card expiration date). Related types: * google.type.
5492
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
5493
+ # Corresponds to the JSON property `publicationDate`
5494
+ # @return [Google::Apis::DiscoveryengineV1::GoogleTypeDate]
5495
+ attr_accessor :publication_date
5496
+
5497
+ # Output only. Start index into the content.
5498
+ # Corresponds to the JSON property `startIndex`
5499
+ # @return [Fixnum]
5500
+ attr_accessor :start_index
5501
+
5502
+ # Output only. Title of the attribution.
5503
+ # Corresponds to the JSON property `title`
5504
+ # @return [String]
5505
+ attr_accessor :title
5506
+
5507
+ # Output only. Url reference of the attribution.
5508
+ # Corresponds to the JSON property `uri`
5509
+ # @return [String]
5510
+ attr_accessor :uri
5511
+
5512
+ def initialize(**args)
5513
+ update!(**args)
5514
+ end
5515
+
5516
+ # Update properties of this object
5517
+ def update!(**args)
5518
+ @end_index = args[:end_index] if args.key?(:end_index)
5519
+ @license = args[:license] if args.key?(:license)
5520
+ @publication_date = args[:publication_date] if args.key?(:publication_date)
5521
+ @start_index = args[:start_index] if args.key?(:start_index)
5522
+ @title = args[:title] if args.key?(:title)
5523
+ @uri = args[:uri] if args.key?(:uri)
5524
+ end
5525
+ end
5526
+
5527
+ # A collection of source attributions for a piece of content.
5528
+ class GoogleCloudDiscoveryengineV1CitationMetadata
5529
+ include Google::Apis::Core::Hashable
5530
+
5531
+ # Output only. List of citations.
5532
+ # Corresponds to the JSON property `citations`
5533
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Citation>]
5534
+ attr_accessor :citations
5535
+
5536
+ def initialize(**args)
5537
+ update!(**args)
5538
+ end
5539
+
5540
+ # Update properties of this object
5541
+ def update!(**args)
5542
+ @citations = args[:citations] if args.key?(:citations)
5543
+ end
5544
+ end
5545
+
5536
5546
  # Cloud SQL source import data from.
5537
5547
  class GoogleCloudDiscoveryengineV1CloudSqlSource
5538
5548
  include Google::Apis::Core::Hashable
@@ -5924,27 +5934,6 @@ module Google
5924
5934
  end
5925
5935
  end
5926
5936
 
5927
- # The contact info stored in resource level. If both project level and resource
5928
- # level is populated, the resource level contact info will override the project
5929
- # level contact info.
5930
- class GoogleCloudDiscoveryengineV1ContactDetails
5931
- include Google::Apis::Core::Hashable
5932
-
5933
- # Optional. The email address of the contact.
5934
- # Corresponds to the JSON property `emailAddress`
5935
- # @return [String]
5936
- attr_accessor :email_address
5937
-
5938
- def initialize(**args)
5939
- update!(**args)
5940
- end
5941
-
5942
- # Update properties of this object
5943
- def update!(**args)
5944
- @email_address = args[:email_address] if args.key?(:email_address)
5945
- end
5946
- end
5947
-
5948
5937
  # Defines a conditioned behavior to employ during serving. Must be attached to a
5949
5938
  # ServingConfig to be considered at serving time. Permitted actions dependent on
5950
5939
  # `SolutionType`.
@@ -10095,12 +10084,6 @@ module Google
10095
10084
  class GoogleCloudDiscoveryengineV1LicenseConfig
10096
10085
  include Google::Apis::Core::Hashable
10097
10086
 
10098
- # The resource level alert config. Used in: * UserLicense * EngineUserData The
10099
- # AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
10100
- # Corresponds to the JSON property `alertPolicyResourceConfig`
10101
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig]
10102
- attr_accessor :alert_policy_resource_config
10103
-
10104
10087
  # Optional. Whether the license config should be auto renewed when it reaches
10105
10088
  # the end date.
10106
10089
  # Corresponds to the JSON property `autoRenew`
@@ -10126,6 +10109,12 @@ module Google
10126
10109
  attr_accessor :free_trial
10127
10110
  alias_method :free_trial?, :free_trial
10128
10111
 
10112
+ # Output only. Whether the license config is for Gemini bundle.
10113
+ # Corresponds to the JSON property `geminiBundle`
10114
+ # @return [Boolean]
10115
+ attr_accessor :gemini_bundle
10116
+ alias_method :gemini_bundle?, :gemini_bundle
10117
+
10129
10118
  # Required. Number of licenses purchased.
10130
10119
  # Corresponds to the JSON property `licenseCount`
10131
10120
  # @return [Fixnum]
@@ -10171,10 +10160,10 @@ module Google
10171
10160
 
10172
10161
  # Update properties of this object
10173
10162
  def update!(**args)
10174
- @alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
10175
10163
  @auto_renew = args[:auto_renew] if args.key?(:auto_renew)
10176
10164
  @end_date = args[:end_date] if args.key?(:end_date)
10177
10165
  @free_trial = args[:free_trial] if args.key?(:free_trial)
10166
+ @gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
10178
10167
  @license_count = args[:license_count] if args.key?(:license_count)
10179
10168
  @name = args[:name] if args.key?(:name)
10180
10169
  @start_date = args[:start_date] if args.key?(:start_date)
@@ -10754,6 +10743,13 @@ module Google
10754
10743
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
10755
10744
  attr_accessor :model_armor_config
10756
10745
 
10746
+ # Optional. Whether to disable the notebook sharing feature for the project.
10747
+ # Default to false if not specified.
10748
+ # Corresponds to the JSON property `optOutNotebookSharing`
10749
+ # @return [Boolean]
10750
+ attr_accessor :opt_out_notebook_sharing
10751
+ alias_method :opt_out_notebook_sharing?, :opt_out_notebook_sharing
10752
+
10757
10753
  def initialize(**args)
10758
10754
  update!(**args)
10759
10755
  end
@@ -10761,6 +10757,7 @@ module Google
10761
10757
  # Update properties of this object
10762
10758
  def update!(**args)
10763
10759
  @model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
10760
+ @opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
10764
10761
  end
10765
10762
  end
10766
10763
 
@@ -13988,6 +13985,12 @@ module Google
13988
13985
  attr_accessor :is_pinned
13989
13986
  alias_method :is_pinned?, :is_pinned
13990
13987
 
13988
+ # Optional. The labels for the session. Can be set as filter in
13989
+ # ListSessionsRequest.
13990
+ # Corresponds to the JSON property `labels`
13991
+ # @return [Array<String>]
13992
+ attr_accessor :labels
13993
+
13991
13994
  # Immutable. Fully qualified name `projects/`project`/locations/global/
13992
13995
  # collections/`collection`/engines/`engine`/sessions/*`
13993
13996
  # Corresponds to the JSON property `name`
@@ -14023,6 +14026,7 @@ module Google
14023
14026
  @display_name = args[:display_name] if args.key?(:display_name)
14024
14027
  @end_time = args[:end_time] if args.key?(:end_time)
14025
14028
  @is_pinned = args[:is_pinned] if args.key?(:is_pinned)
14029
+ @labels = args[:labels] if args.key?(:labels)
14026
14030
  @name = args[:name] if args.key?(:name)
14027
14031
  @start_time = args[:start_time] if args.key?(:start_time)
14028
14032
  @state = args[:state] if args.key?(:state)
@@ -15367,6 +15371,62 @@ module Google
15367
15371
  end
15368
15372
  end
15369
15373
 
15374
+ # Configures metadata that is used for End User entities.
15375
+ class GoogleCloudDiscoveryengineV1UserStore
15376
+ include Google::Apis::Core::Hashable
15377
+
15378
+ # Optional. The default subscription LicenseConfig for the UserStore, if
15379
+ # UserStore.enable_license_auto_register is true, new users will automatically
15380
+ # register under the default subscription. If default LicenseConfig doesn't have
15381
+ # remaining license seats left, new users will not be assigned with license and
15382
+ # will be blocked for Vertex AI Search features. This is used if `
15383
+ # license_assignment_tier_rules` is not configured.
15384
+ # Corresponds to the JSON property `defaultLicenseConfig`
15385
+ # @return [String]
15386
+ attr_accessor :default_license_config
15387
+
15388
+ # The display name of the User Store.
15389
+ # Corresponds to the JSON property `displayName`
15390
+ # @return [String]
15391
+ attr_accessor :display_name
15392
+
15393
+ # Optional. Whether to enable license auto update for users in this User Store.
15394
+ # If true, users with expired licenses will automatically be updated to use the
15395
+ # default license config as long as the default license config has seats left.
15396
+ # Corresponds to the JSON property `enableExpiredLicenseAutoUpdate`
15397
+ # @return [Boolean]
15398
+ attr_accessor :enable_expired_license_auto_update
15399
+ alias_method :enable_expired_license_auto_update?, :enable_expired_license_auto_update
15400
+
15401
+ # Optional. Whether to enable license auto register for users in this User Store.
15402
+ # If true, new users will automatically register under the default license
15403
+ # config as long as the default license config has seats left.
15404
+ # Corresponds to the JSON property `enableLicenseAutoRegister`
15405
+ # @return [Boolean]
15406
+ attr_accessor :enable_license_auto_register
15407
+ alias_method :enable_license_auto_register?, :enable_license_auto_register
15408
+
15409
+ # Immutable. The full resource name of the User Store, in the format of `
15410
+ # projects/`project`/locations/`location`/userStores/`user_store``. This field
15411
+ # must be a UTF-8 encoded string with a length limit of 1024 characters.
15412
+ # Corresponds to the JSON property `name`
15413
+ # @return [String]
15414
+ attr_accessor :name
15415
+
15416
+ def initialize(**args)
15417
+ update!(**args)
15418
+ end
15419
+
15420
+ # Update properties of this object
15421
+ def update!(**args)
15422
+ @default_license_config = args[:default_license_config] if args.key?(:default_license_config)
15423
+ @display_name = args[:display_name] if args.key?(:display_name)
15424
+ @enable_expired_license_auto_update = args[:enable_expired_license_auto_update] if args.key?(:enable_expired_license_auto_update)
15425
+ @enable_license_auto_register = args[:enable_license_auto_register] if args.key?(:enable_license_auto_register)
15426
+ @name = args[:name] if args.key?(:name)
15427
+ end
15428
+ end
15429
+
15370
15430
  # Config to store data store type configuration for workspace data
15371
15431
  class GoogleCloudDiscoveryengineV1WorkspaceConfig
15372
15432
  include Google::Apis::Core::Hashable
@@ -16731,6 +16791,11 @@ module Google
16731
16791
  class GoogleCloudDiscoveryengineV1alphaAssistantGroundedContent
16732
16792
  include Google::Apis::Core::Hashable
16733
16793
 
16794
+ # A collection of source attributions for a piece of content.
16795
+ # Corresponds to the JSON property `citationMetadata`
16796
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCitationMetadata]
16797
+ attr_accessor :citation_metadata
16798
+
16734
16799
  # Multi-modal content.
16735
16800
  # Corresponds to the JSON property `content`
16736
16801
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAssistantContent]
@@ -16747,6 +16812,7 @@ module Google
16747
16812
 
16748
16813
  # Update properties of this object
16749
16814
  def update!(**args)
16815
+ @citation_metadata = args[:citation_metadata] if args.key?(:citation_metadata)
16750
16816
  @content = args[:content] if args.key?(:content)
16751
16817
  @text_grounding_metadata = args[:text_grounding_metadata] if args.key?(:text_grounding_metadata)
16752
16818
  end
@@ -17037,6 +17103,81 @@ module Google
17037
17103
  end
17038
17104
  end
17039
17105
 
17106
+ # Source attributions for content.
17107
+ class GoogleCloudDiscoveryengineV1alphaCitation
17108
+ include Google::Apis::Core::Hashable
17109
+
17110
+ # Output only. End index into the content.
17111
+ # Corresponds to the JSON property `endIndex`
17112
+ # @return [Fixnum]
17113
+ attr_accessor :end_index
17114
+
17115
+ # Output only. License of the attribution.
17116
+ # Corresponds to the JSON property `license`
17117
+ # @return [String]
17118
+ attr_accessor :license
17119
+
17120
+ # Represents a whole or partial calendar date, such as a birthday. The time of
17121
+ # day and time zone are either specified elsewhere or are insignificant. The
17122
+ # date is relative to the Gregorian Calendar. This can represent one of the
17123
+ # following: * A full date, with non-zero year, month, and day values. * A month
17124
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
17125
+ # with a zero month and a zero day. * A year and month, with a zero day (for
17126
+ # example, a credit card expiration date). Related types: * google.type.
17127
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
17128
+ # Corresponds to the JSON property `publicationDate`
17129
+ # @return [Google::Apis::DiscoveryengineV1::GoogleTypeDate]
17130
+ attr_accessor :publication_date
17131
+
17132
+ # Output only. Start index into the content.
17133
+ # Corresponds to the JSON property `startIndex`
17134
+ # @return [Fixnum]
17135
+ attr_accessor :start_index
17136
+
17137
+ # Output only. Title of the attribution.
17138
+ # Corresponds to the JSON property `title`
17139
+ # @return [String]
17140
+ attr_accessor :title
17141
+
17142
+ # Output only. Url reference of the attribution.
17143
+ # Corresponds to the JSON property `uri`
17144
+ # @return [String]
17145
+ attr_accessor :uri
17146
+
17147
+ def initialize(**args)
17148
+ update!(**args)
17149
+ end
17150
+
17151
+ # Update properties of this object
17152
+ def update!(**args)
17153
+ @end_index = args[:end_index] if args.key?(:end_index)
17154
+ @license = args[:license] if args.key?(:license)
17155
+ @publication_date = args[:publication_date] if args.key?(:publication_date)
17156
+ @start_index = args[:start_index] if args.key?(:start_index)
17157
+ @title = args[:title] if args.key?(:title)
17158
+ @uri = args[:uri] if args.key?(:uri)
17159
+ end
17160
+ end
17161
+
17162
+ # A collection of source attributions for a piece of content.
17163
+ class GoogleCloudDiscoveryengineV1alphaCitationMetadata
17164
+ include Google::Apis::Core::Hashable
17165
+
17166
+ # Output only. List of citations.
17167
+ # Corresponds to the JSON property `citations`
17168
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCitation>]
17169
+ attr_accessor :citations
17170
+
17171
+ def initialize(**args)
17172
+ update!(**args)
17173
+ end
17174
+
17175
+ # Update properties of this object
17176
+ def update!(**args)
17177
+ @citations = args[:citations] if args.key?(:citations)
17178
+ end
17179
+ end
17180
+
17040
17181
  # Configurations used to enable CMEK data encryption with Cloud KMS keys.
17041
17182
  class GoogleCloudDiscoveryengineV1alphaCmekConfig
17042
17183
  include Google::Apis::Core::Hashable
@@ -19020,6 +19161,35 @@ module Google
19020
19161
  end
19021
19162
  end
19022
19163
 
19164
+ # Metadata related to the progress of the UserStoreService.DeleteUserStore
19165
+ # operation. This will be returned by the google.longrunning.Operation.metadata
19166
+ # field. Delete UserStore will delete all the end users under the user store,
19167
+ # return the number of end users successfully deleted or failed to delete in the
19168
+ # metadata.
19169
+ class GoogleCloudDiscoveryengineV1alphaDeleteUserStoreMetadata
19170
+ include Google::Apis::Core::Hashable
19171
+
19172
+ # The number of end users under the user store that failed to be deleted.
19173
+ # Corresponds to the JSON property `failureCount`
19174
+ # @return [Fixnum]
19175
+ attr_accessor :failure_count
19176
+
19177
+ # The number of end users under the user store that were successfully deleted.
19178
+ # Corresponds to the JSON property `successCount`
19179
+ # @return [Fixnum]
19180
+ attr_accessor :success_count
19181
+
19182
+ def initialize(**args)
19183
+ update!(**args)
19184
+ end
19185
+
19186
+ # Update properties of this object
19187
+ def update!(**args)
19188
+ @failure_count = args[:failure_count] if args.key?(:failure_count)
19189
+ @success_count = args[:success_count] if args.key?(:success_count)
19190
+ end
19191
+ end
19192
+
19023
19193
  # Defines target endpoints used to connect to third-party sources.
19024
19194
  class GoogleCloudDiscoveryengineV1alphaDestinationConfig
19025
19195
  include Google::Apis::Core::Hashable
@@ -20969,6 +21139,12 @@ module Google
20969
21139
  attr_accessor :free_trial
20970
21140
  alias_method :free_trial?, :free_trial
20971
21141
 
21142
+ # Output only. Whether the license config is for Gemini bundle.
21143
+ # Corresponds to the JSON property `geminiBundle`
21144
+ # @return [Boolean]
21145
+ attr_accessor :gemini_bundle
21146
+ alias_method :gemini_bundle?, :gemini_bundle
21147
+
20972
21148
  # Required. Number of licenses purchased.
20973
21149
  # Corresponds to the JSON property `licenseCount`
20974
21150
  # @return [Fixnum]
@@ -21018,6 +21194,7 @@ module Google
21018
21194
  @auto_renew = args[:auto_renew] if args.key?(:auto_renew)
21019
21195
  @end_date = args[:end_date] if args.key?(:end_date)
21020
21196
  @free_trial = args[:free_trial] if args.key?(:free_trial)
21197
+ @gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
21021
21198
  @license_count = args[:license_count] if args.key?(:license_count)
21022
21199
  @name = args[:name] if args.key?(:name)
21023
21200
  @start_date = args[:start_date] if args.key?(:start_date)
@@ -21279,6 +21456,13 @@ module Google
21279
21456
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
21280
21457
  attr_accessor :model_armor_config
21281
21458
 
21459
+ # Optional. Whether to disable the notebook sharing feature for the project.
21460
+ # Default to false if not specified.
21461
+ # Corresponds to the JSON property `optOutNotebookSharing`
21462
+ # @return [Boolean]
21463
+ attr_accessor :opt_out_notebook_sharing
21464
+ alias_method :opt_out_notebook_sharing?, :opt_out_notebook_sharing
21465
+
21282
21466
  def initialize(**args)
21283
21467
  update!(**args)
21284
21468
  end
@@ -21286,6 +21470,7 @@ module Google
21286
21470
  # Update properties of this object
21287
21471
  def update!(**args)
21288
21472
  @model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
21473
+ @opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
21289
21474
  end
21290
21475
  end
21291
21476
 
@@ -23556,6 +23741,12 @@ module Google
23556
23741
  attr_accessor :is_pinned
23557
23742
  alias_method :is_pinned?, :is_pinned
23558
23743
 
23744
+ # Optional. The labels for the session. Can be set as filter in
23745
+ # ListSessionsRequest.
23746
+ # Corresponds to the JSON property `labels`
23747
+ # @return [Array<String>]
23748
+ attr_accessor :labels
23749
+
23559
23750
  # Immutable. Fully qualified name `projects/`project`/locations/global/
23560
23751
  # collections/`collection`/engines/`engine`/sessions/*`
23561
23752
  # Corresponds to the JSON property `name`
@@ -23591,6 +23782,7 @@ module Google
23591
23782
  @display_name = args[:display_name] if args.key?(:display_name)
23592
23783
  @end_time = args[:end_time] if args.key?(:end_time)
23593
23784
  @is_pinned = args[:is_pinned] if args.key?(:is_pinned)
23785
+ @labels = args[:labels] if args.key?(:labels)
23594
23786
  @name = args[:name] if args.key?(:name)
23595
23787
  @start_time = args[:start_time] if args.key?(:start_time)
23596
23788
  @state = args[:state] if args.key?(:state)
@@ -24442,77 +24634,6 @@ module Google
24442
24634
  end
24443
24635
  end
24444
24636
 
24445
- # The resource level alert config. Used in: * UserLicense * EngineUserData The
24446
- # AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
24447
- class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig
24448
- include Google::Apis::Core::Hashable
24449
-
24450
- # Optional. The enrollment state of each alert.
24451
- # Corresponds to the JSON property `alertEnrollments`
24452
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment>]
24453
- attr_accessor :alert_enrollments
24454
-
24455
- # Immutable. The fully qualified resource name of the AlertPolicy.
24456
- # Corresponds to the JSON property `alertPolicy`
24457
- # @return [String]
24458
- attr_accessor :alert_policy
24459
-
24460
- # Optional. The contact details for each alert policy.
24461
- # Corresponds to the JSON property `contactDetails`
24462
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaContactDetails>]
24463
- attr_accessor :contact_details
24464
-
24465
- # Optional. The language code used for notifications
24466
- # Corresponds to the JSON property `languageCode`
24467
- # @return [String]
24468
- attr_accessor :language_code
24469
-
24470
- def initialize(**args)
24471
- update!(**args)
24472
- end
24473
-
24474
- # Update properties of this object
24475
- def update!(**args)
24476
- @alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
24477
- @alert_policy = args[:alert_policy] if args.key?(:alert_policy)
24478
- @contact_details = args[:contact_details] if args.key?(:contact_details)
24479
- @language_code = args[:language_code] if args.key?(:language_code)
24480
- end
24481
- end
24482
-
24483
- # The alert enrollment status.
24484
- class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment
24485
- include Google::Apis::Core::Hashable
24486
-
24487
- # Immutable. The id of an alert.
24488
- # Corresponds to the JSON property `alertId`
24489
- # @return [String]
24490
- attr_accessor :alert_id
24491
-
24492
- # Required. The enrollment status of a customer.
24493
- # Corresponds to the JSON property `enrollState`
24494
- # @return [String]
24495
- attr_accessor :enroll_state
24496
-
24497
- # Optional. Parameters used to instantiate a notification. Used for
24498
- # notifications that are triggered when registered. Not stored. * Gemini
24499
- # Business welcome emails. * Gemini Business user invitation emails.
24500
- # Corresponds to the JSON property `notificationParams`
24501
- # @return [Hash<String,String>]
24502
- attr_accessor :notification_params
24503
-
24504
- def initialize(**args)
24505
- update!(**args)
24506
- end
24507
-
24508
- # Update properties of this object
24509
- def update!(**args)
24510
- @alert_id = args[:alert_id] if args.key?(:alert_id)
24511
- @enroll_state = args[:enroll_state] if args.key?(:enroll_state)
24512
- @notification_params = args[:notification_params] if args.key?(:notification_params)
24513
- end
24514
- end
24515
-
24516
24637
  # Metadata related to the progress of the SiteSearchEngineService.
24517
24638
  # BatchCreateTargetSites operation. This will be returned by the google.
24518
24639
  # longrunning.Operation.metadata field.
@@ -24779,27 +24900,6 @@ module Google
24779
24900
  end
24780
24901
  end
24781
24902
 
24782
- # The contact info stored in resource level. If both project level and resource
24783
- # level is populated, the resource level contact info will override the project
24784
- # level contact info.
24785
- class GoogleCloudDiscoveryengineV1betaContactDetails
24786
- include Google::Apis::Core::Hashable
24787
-
24788
- # Optional. The email address of the contact.
24789
- # Corresponds to the JSON property `emailAddress`
24790
- # @return [String]
24791
- attr_accessor :email_address
24792
-
24793
- def initialize(**args)
24794
- update!(**args)
24795
- end
24796
-
24797
- # Update properties of this object
24798
- def update!(**args)
24799
- @email_address = args[:email_address] if args.key?(:email_address)
24800
- end
24801
- end
24802
-
24803
24903
  # Defines a conditioned behavior to employ during serving. Must be attached to a
24804
24904
  # ServingConfig to be considered at serving time. Permitted actions dependent on
24805
24905
  # `SolutionType`.
@@ -27188,12 +27288,6 @@ module Google
27188
27288
  class GoogleCloudDiscoveryengineV1betaLicenseConfig
27189
27289
  include Google::Apis::Core::Hashable
27190
27290
 
27191
- # The resource level alert config. Used in: * UserLicense * EngineUserData The
27192
- # AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
27193
- # Corresponds to the JSON property `alertPolicyResourceConfig`
27194
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig]
27195
- attr_accessor :alert_policy_resource_config
27196
-
27197
27291
  # Optional. Whether the license config should be auto renewed when it reaches
27198
27292
  # the end date.
27199
27293
  # Corresponds to the JSON property `autoRenew`
@@ -27219,6 +27313,12 @@ module Google
27219
27313
  attr_accessor :free_trial
27220
27314
  alias_method :free_trial?, :free_trial
27221
27315
 
27316
+ # Output only. Whether the license config is for Gemini bundle.
27317
+ # Corresponds to the JSON property `geminiBundle`
27318
+ # @return [Boolean]
27319
+ attr_accessor :gemini_bundle
27320
+ alias_method :gemini_bundle?, :gemini_bundle
27321
+
27222
27322
  # Required. Number of licenses purchased.
27223
27323
  # Corresponds to the JSON property `licenseCount`
27224
27324
  # @return [Fixnum]
@@ -27264,10 +27364,10 @@ module Google
27264
27364
 
27265
27365
  # Update properties of this object
27266
27366
  def update!(**args)
27267
- @alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
27268
27367
  @auto_renew = args[:auto_renew] if args.key?(:auto_renew)
27269
27368
  @end_date = args[:end_date] if args.key?(:end_date)
27270
27369
  @free_trial = args[:free_trial] if args.key?(:free_trial)
27370
+ @gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
27271
27371
  @license_count = args[:license_count] if args.key?(:license_count)
27272
27372
  @name = args[:name] if args.key?(:name)
27273
27373
  @start_date = args[:start_date] if args.key?(:start_date)
@@ -27449,6 +27549,13 @@ module Google
27449
27549
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
27450
27550
  attr_accessor :model_armor_config
27451
27551
 
27552
+ # Optional. Whether to disable the notebook sharing feature for the project.
27553
+ # Default to false if not specified.
27554
+ # Corresponds to the JSON property `optOutNotebookSharing`
27555
+ # @return [Boolean]
27556
+ attr_accessor :opt_out_notebook_sharing
27557
+ alias_method :opt_out_notebook_sharing?, :opt_out_notebook_sharing
27558
+
27452
27559
  def initialize(**args)
27453
27560
  update!(**args)
27454
27561
  end
@@ -27456,6 +27563,7 @@ module Google
27456
27563
  # Update properties of this object
27457
27564
  def update!(**args)
27458
27565
  @model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
27566
+ @opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
27459
27567
  end
27460
27568
  end
27461
27569
 
@@ -29854,6 +29962,62 @@ module Google
29854
29962
  end
29855
29963
  end
29856
29964
 
29965
+ # Configures metadata that is used for End User entities.
29966
+ class GoogleCloudDiscoveryengineV1betaUserStore
29967
+ include Google::Apis::Core::Hashable
29968
+
29969
+ # Optional. The default subscription LicenseConfig for the UserStore, if
29970
+ # UserStore.enable_license_auto_register is true, new users will automatically
29971
+ # register under the default subscription. If default LicenseConfig doesn't have
29972
+ # remaining license seats left, new users will not be assigned with license and
29973
+ # will be blocked for Vertex AI Search features. This is used if `
29974
+ # license_assignment_tier_rules` is not configured.
29975
+ # Corresponds to the JSON property `defaultLicenseConfig`
29976
+ # @return [String]
29977
+ attr_accessor :default_license_config
29978
+
29979
+ # The display name of the User Store.
29980
+ # Corresponds to the JSON property `displayName`
29981
+ # @return [String]
29982
+ attr_accessor :display_name
29983
+
29984
+ # Optional. Whether to enable license auto update for users in this User Store.
29985
+ # If true, users with expired licenses will automatically be updated to use the
29986
+ # default license config as long as the default license config has seats left.
29987
+ # Corresponds to the JSON property `enableExpiredLicenseAutoUpdate`
29988
+ # @return [Boolean]
29989
+ attr_accessor :enable_expired_license_auto_update
29990
+ alias_method :enable_expired_license_auto_update?, :enable_expired_license_auto_update
29991
+
29992
+ # Optional. Whether to enable license auto register for users in this User Store.
29993
+ # If true, new users will automatically register under the default license
29994
+ # config as long as the default license config has seats left.
29995
+ # Corresponds to the JSON property `enableLicenseAutoRegister`
29996
+ # @return [Boolean]
29997
+ attr_accessor :enable_license_auto_register
29998
+ alias_method :enable_license_auto_register?, :enable_license_auto_register
29999
+
30000
+ # Immutable. The full resource name of the User Store, in the format of `
30001
+ # projects/`project`/locations/`location`/userStores/`user_store``. This field
30002
+ # must be a UTF-8 encoded string with a length limit of 1024 characters.
30003
+ # Corresponds to the JSON property `name`
30004
+ # @return [String]
30005
+ attr_accessor :name
30006
+
30007
+ def initialize(**args)
30008
+ update!(**args)
30009
+ end
30010
+
30011
+ # Update properties of this object
30012
+ def update!(**args)
30013
+ @default_license_config = args[:default_license_config] if args.key?(:default_license_config)
30014
+ @display_name = args[:display_name] if args.key?(:display_name)
30015
+ @enable_expired_license_auto_update = args[:enable_expired_license_auto_update] if args.key?(:enable_expired_license_auto_update)
30016
+ @enable_license_auto_register = args[:enable_license_auto_register] if args.key?(:enable_license_auto_register)
30017
+ @name = args[:name] if args.key?(:name)
30018
+ end
30019
+ end
30020
+
29857
30021
  # Config to store data store type configuration for workspace data
29858
30022
  class GoogleCloudDiscoveryengineV1betaWorkspaceConfig
29859
30023
  include Google::Apis::Core::Hashable