google-apis-discoveryengine_v1alpha 0.79.0 → 0.81.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/discoveryengine_v1alpha/classes.rb +745 -204
- data/lib/google/apis/discoveryengine_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1alpha/representations.rb +316 -93
- data/lib/google/apis/discoveryengine_v1alpha/service.rb +526 -0
- data/lib/google/apis/discoveryengine_v1alpha.rb +6 -0
- metadata +2 -2
|
@@ -1800,77 +1800,6 @@ module Google
|
|
|
1800
1800
|
end
|
|
1801
1801
|
end
|
|
1802
1802
|
|
|
1803
|
-
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
|
1804
|
-
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
|
1805
|
-
class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig
|
|
1806
|
-
include Google::Apis::Core::Hashable
|
|
1807
|
-
|
|
1808
|
-
# Optional. The enrollment state of each alert.
|
|
1809
|
-
# Corresponds to the JSON property `alertEnrollments`
|
|
1810
|
-
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment>]
|
|
1811
|
-
attr_accessor :alert_enrollments
|
|
1812
|
-
|
|
1813
|
-
# Immutable. The fully qualified resource name of the AlertPolicy.
|
|
1814
|
-
# Corresponds to the JSON property `alertPolicy`
|
|
1815
|
-
# @return [String]
|
|
1816
|
-
attr_accessor :alert_policy
|
|
1817
|
-
|
|
1818
|
-
# Optional. The contact details for each alert policy.
|
|
1819
|
-
# Corresponds to the JSON property `contactDetails`
|
|
1820
|
-
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ContactDetails>]
|
|
1821
|
-
attr_accessor :contact_details
|
|
1822
|
-
|
|
1823
|
-
# Optional. The language code used for notifications
|
|
1824
|
-
# Corresponds to the JSON property `languageCode`
|
|
1825
|
-
# @return [String]
|
|
1826
|
-
attr_accessor :language_code
|
|
1827
|
-
|
|
1828
|
-
def initialize(**args)
|
|
1829
|
-
update!(**args)
|
|
1830
|
-
end
|
|
1831
|
-
|
|
1832
|
-
# Update properties of this object
|
|
1833
|
-
def update!(**args)
|
|
1834
|
-
@alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
|
|
1835
|
-
@alert_policy = args[:alert_policy] if args.key?(:alert_policy)
|
|
1836
|
-
@contact_details = args[:contact_details] if args.key?(:contact_details)
|
|
1837
|
-
@language_code = args[:language_code] if args.key?(:language_code)
|
|
1838
|
-
end
|
|
1839
|
-
end
|
|
1840
|
-
|
|
1841
|
-
# The alert enrollment status.
|
|
1842
|
-
class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment
|
|
1843
|
-
include Google::Apis::Core::Hashable
|
|
1844
|
-
|
|
1845
|
-
# Immutable. The id of an alert.
|
|
1846
|
-
# Corresponds to the JSON property `alertId`
|
|
1847
|
-
# @return [String]
|
|
1848
|
-
attr_accessor :alert_id
|
|
1849
|
-
|
|
1850
|
-
# Required. The enrollment status of a customer.
|
|
1851
|
-
# Corresponds to the JSON property `enrollState`
|
|
1852
|
-
# @return [String]
|
|
1853
|
-
attr_accessor :enroll_state
|
|
1854
|
-
|
|
1855
|
-
# Optional. Parameters used to instantiate a notification. Used for
|
|
1856
|
-
# notifications that are triggered when registered. Not stored. * Gemini
|
|
1857
|
-
# Business welcome emails. * Gemini Business user invitation emails.
|
|
1858
|
-
# Corresponds to the JSON property `notificationParams`
|
|
1859
|
-
# @return [Hash<String,String>]
|
|
1860
|
-
attr_accessor :notification_params
|
|
1861
|
-
|
|
1862
|
-
def initialize(**args)
|
|
1863
|
-
update!(**args)
|
|
1864
|
-
end
|
|
1865
|
-
|
|
1866
|
-
# Update properties of this object
|
|
1867
|
-
def update!(**args)
|
|
1868
|
-
@alert_id = args[:alert_id] if args.key?(:alert_id)
|
|
1869
|
-
@enroll_state = args[:enroll_state] if args.key?(:enroll_state)
|
|
1870
|
-
@notification_params = args[:notification_params] if args.key?(:notification_params)
|
|
1871
|
-
end
|
|
1872
|
-
end
|
|
1873
|
-
|
|
1874
1803
|
# The specification for answer generation.
|
|
1875
1804
|
class GoogleCloudDiscoveryengineV1AnswerGenerationSpec
|
|
1876
1805
|
include Google::Apis::Core::Hashable
|
|
@@ -2524,27 +2453,6 @@ module Google
|
|
|
2524
2453
|
end
|
|
2525
2454
|
end
|
|
2526
2455
|
|
|
2527
|
-
# The contact info stored in resource level. If both project level and resource
|
|
2528
|
-
# level is populated, the resource level contact info will override the project
|
|
2529
|
-
# level contact info.
|
|
2530
|
-
class GoogleCloudDiscoveryengineV1ContactDetails
|
|
2531
|
-
include Google::Apis::Core::Hashable
|
|
2532
|
-
|
|
2533
|
-
# Optional. The email address of the contact.
|
|
2534
|
-
# Corresponds to the JSON property `emailAddress`
|
|
2535
|
-
# @return [String]
|
|
2536
|
-
attr_accessor :email_address
|
|
2537
|
-
|
|
2538
|
-
def initialize(**args)
|
|
2539
|
-
update!(**args)
|
|
2540
|
-
end
|
|
2541
|
-
|
|
2542
|
-
# Update properties of this object
|
|
2543
|
-
def update!(**args)
|
|
2544
|
-
@email_address = args[:email_address] if args.key?(:email_address)
|
|
2545
|
-
end
|
|
2546
|
-
end
|
|
2547
|
-
|
|
2548
2456
|
# Defines a conditioned behavior to employ during serving. Must be attached to a
|
|
2549
2457
|
# ServingConfig to be considered at serving time. Permitted actions dependent on
|
|
2550
2458
|
# `SolutionType`.
|
|
@@ -5259,12 +5167,6 @@ module Google
|
|
|
5259
5167
|
class GoogleCloudDiscoveryengineV1LicenseConfig
|
|
5260
5168
|
include Google::Apis::Core::Hashable
|
|
5261
5169
|
|
|
5262
|
-
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
|
5263
|
-
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
|
5264
|
-
# Corresponds to the JSON property `alertPolicyResourceConfig`
|
|
5265
|
-
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig]
|
|
5266
|
-
attr_accessor :alert_policy_resource_config
|
|
5267
|
-
|
|
5268
5170
|
# Optional. Whether the license config should be auto renewed when it reaches
|
|
5269
5171
|
# the end date.
|
|
5270
5172
|
# Corresponds to the JSON property `autoRenew`
|
|
@@ -5290,6 +5192,12 @@ module Google
|
|
|
5290
5192
|
attr_accessor :free_trial
|
|
5291
5193
|
alias_method :free_trial?, :free_trial
|
|
5292
5194
|
|
|
5195
|
+
# Output only. Whether the license config is for Gemini bundle.
|
|
5196
|
+
# Corresponds to the JSON property `geminiBundle`
|
|
5197
|
+
# @return [Boolean]
|
|
5198
|
+
attr_accessor :gemini_bundle
|
|
5199
|
+
alias_method :gemini_bundle?, :gemini_bundle
|
|
5200
|
+
|
|
5293
5201
|
# Required. Number of licenses purchased.
|
|
5294
5202
|
# Corresponds to the JSON property `licenseCount`
|
|
5295
5203
|
# @return [Fixnum]
|
|
@@ -5335,10 +5243,10 @@ module Google
|
|
|
5335
5243
|
|
|
5336
5244
|
# Update properties of this object
|
|
5337
5245
|
def update!(**args)
|
|
5338
|
-
@alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
|
|
5339
5246
|
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
|
5340
5247
|
@end_date = args[:end_date] if args.key?(:end_date)
|
|
5341
5248
|
@free_trial = args[:free_trial] if args.key?(:free_trial)
|
|
5249
|
+
@gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
|
|
5342
5250
|
@license_count = args[:license_count] if args.key?(:license_count)
|
|
5343
5251
|
@name = args[:name] if args.key?(:name)
|
|
5344
5252
|
@start_date = args[:start_date] if args.key?(:start_date)
|
|
@@ -5423,6 +5331,13 @@ module Google
|
|
|
5423
5331
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
|
|
5424
5332
|
attr_accessor :model_armor_config
|
|
5425
5333
|
|
|
5334
|
+
# Optional. Whether to disable the notebook sharing feature for the project.
|
|
5335
|
+
# Default to false if not specified.
|
|
5336
|
+
# Corresponds to the JSON property `optOutNotebookSharing`
|
|
5337
|
+
# @return [Boolean]
|
|
5338
|
+
attr_accessor :opt_out_notebook_sharing
|
|
5339
|
+
alias_method :opt_out_notebook_sharing?, :opt_out_notebook_sharing
|
|
5340
|
+
|
|
5426
5341
|
def initialize(**args)
|
|
5427
5342
|
update!(**args)
|
|
5428
5343
|
end
|
|
@@ -5430,6 +5345,7 @@ module Google
|
|
|
5430
5345
|
# Update properties of this object
|
|
5431
5346
|
def update!(**args)
|
|
5432
5347
|
@model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
|
|
5348
|
+
@opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
|
|
5433
5349
|
end
|
|
5434
5350
|
end
|
|
5435
5351
|
|
|
@@ -6877,6 +6793,62 @@ module Google
|
|
|
6877
6793
|
end
|
|
6878
6794
|
end
|
|
6879
6795
|
|
|
6796
|
+
# Configures metadata that is used for End User entities.
|
|
6797
|
+
class GoogleCloudDiscoveryengineV1UserStore
|
|
6798
|
+
include Google::Apis::Core::Hashable
|
|
6799
|
+
|
|
6800
|
+
# Optional. The default subscription LicenseConfig for the UserStore, if
|
|
6801
|
+
# UserStore.enable_license_auto_register is true, new users will automatically
|
|
6802
|
+
# register under the default subscription. If default LicenseConfig doesn't have
|
|
6803
|
+
# remaining license seats left, new users will not be assigned with license and
|
|
6804
|
+
# will be blocked for Vertex AI Search features. This is used if `
|
|
6805
|
+
# license_assignment_tier_rules` is not configured.
|
|
6806
|
+
# Corresponds to the JSON property `defaultLicenseConfig`
|
|
6807
|
+
# @return [String]
|
|
6808
|
+
attr_accessor :default_license_config
|
|
6809
|
+
|
|
6810
|
+
# The display name of the User Store.
|
|
6811
|
+
# Corresponds to the JSON property `displayName`
|
|
6812
|
+
# @return [String]
|
|
6813
|
+
attr_accessor :display_name
|
|
6814
|
+
|
|
6815
|
+
# Optional. Whether to enable license auto update for users in this User Store.
|
|
6816
|
+
# If true, users with expired licenses will automatically be updated to use the
|
|
6817
|
+
# default license config as long as the default license config has seats left.
|
|
6818
|
+
# Corresponds to the JSON property `enableExpiredLicenseAutoUpdate`
|
|
6819
|
+
# @return [Boolean]
|
|
6820
|
+
attr_accessor :enable_expired_license_auto_update
|
|
6821
|
+
alias_method :enable_expired_license_auto_update?, :enable_expired_license_auto_update
|
|
6822
|
+
|
|
6823
|
+
# Optional. Whether to enable license auto register for users in this User Store.
|
|
6824
|
+
# If true, new users will automatically register under the default license
|
|
6825
|
+
# config as long as the default license config has seats left.
|
|
6826
|
+
# Corresponds to the JSON property `enableLicenseAutoRegister`
|
|
6827
|
+
# @return [Boolean]
|
|
6828
|
+
attr_accessor :enable_license_auto_register
|
|
6829
|
+
alias_method :enable_license_auto_register?, :enable_license_auto_register
|
|
6830
|
+
|
|
6831
|
+
# Immutable. The full resource name of the User Store, in the format of `
|
|
6832
|
+
# projects/`project`/locations/`location`/userStores/`user_store``. This field
|
|
6833
|
+
# must be a UTF-8 encoded string with a length limit of 1024 characters.
|
|
6834
|
+
# Corresponds to the JSON property `name`
|
|
6835
|
+
# @return [String]
|
|
6836
|
+
attr_accessor :name
|
|
6837
|
+
|
|
6838
|
+
def initialize(**args)
|
|
6839
|
+
update!(**args)
|
|
6840
|
+
end
|
|
6841
|
+
|
|
6842
|
+
# Update properties of this object
|
|
6843
|
+
def update!(**args)
|
|
6844
|
+
@default_license_config = args[:default_license_config] if args.key?(:default_license_config)
|
|
6845
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
6846
|
+
@enable_expired_license_auto_update = args[:enable_expired_license_auto_update] if args.key?(:enable_expired_license_auto_update)
|
|
6847
|
+
@enable_license_auto_register = args[:enable_license_auto_register] if args.key?(:enable_license_auto_register)
|
|
6848
|
+
@name = args[:name] if args.key?(:name)
|
|
6849
|
+
end
|
|
6850
|
+
end
|
|
6851
|
+
|
|
6880
6852
|
# Config to store data store type configuration for workspace data
|
|
6881
6853
|
class GoogleCloudDiscoveryengineV1WorkspaceConfig
|
|
6882
6854
|
include Google::Apis::Core::Hashable
|
|
@@ -9980,6 +9952,11 @@ module Google
|
|
|
9980
9952
|
class GoogleCloudDiscoveryengineV1alphaAssistantGroundedContent
|
|
9981
9953
|
include Google::Apis::Core::Hashable
|
|
9982
9954
|
|
|
9955
|
+
# A collection of source attributions for a piece of content.
|
|
9956
|
+
# Corresponds to the JSON property `citationMetadata`
|
|
9957
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCitationMetadata]
|
|
9958
|
+
attr_accessor :citation_metadata
|
|
9959
|
+
|
|
9983
9960
|
# Multi-modal content.
|
|
9984
9961
|
# Corresponds to the JSON property `content`
|
|
9985
9962
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAssistantContent]
|
|
@@ -9996,6 +9973,7 @@ module Google
|
|
|
9996
9973
|
|
|
9997
9974
|
# Update properties of this object
|
|
9998
9975
|
def update!(**args)
|
|
9976
|
+
@citation_metadata = args[:citation_metadata] if args.key?(:citation_metadata)
|
|
9999
9977
|
@content = args[:content] if args.key?(:content)
|
|
10000
9978
|
@text_grounding_metadata = args[:text_grounding_metadata] if args.key?(:text_grounding_metadata)
|
|
10001
9979
|
end
|
|
@@ -10825,6 +10803,140 @@ module Google
|
|
|
10825
10803
|
end
|
|
10826
10804
|
end
|
|
10827
10805
|
|
|
10806
|
+
# Canned query resource of Assistant. It represents a short-cut to a predefined
|
|
10807
|
+
# conversation start.
|
|
10808
|
+
class GoogleCloudDiscoveryengineV1alphaCannedQuery
|
|
10809
|
+
include Google::Apis::Core::Hashable
|
|
10810
|
+
|
|
10811
|
+
# The text pieces for the canned query, which can be localized.
|
|
10812
|
+
# Corresponds to the JSON property `defaultTexts`
|
|
10813
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCannedQueryCannedQueryTexts]
|
|
10814
|
+
attr_accessor :default_texts
|
|
10815
|
+
|
|
10816
|
+
# The display name of the canned query. It must be a UTF-8 encoded string with a
|
|
10817
|
+
# length limit of 128 characters.
|
|
10818
|
+
# Corresponds to the JSON property `displayName`
|
|
10819
|
+
# @return [String]
|
|
10820
|
+
attr_accessor :display_name
|
|
10821
|
+
|
|
10822
|
+
# Whether this canned query is enabled.
|
|
10823
|
+
# Corresponds to the JSON property `enabled`
|
|
10824
|
+
# @return [Boolean]
|
|
10825
|
+
attr_accessor :enabled
|
|
10826
|
+
alias_method :enabled?, :enabled
|
|
10827
|
+
|
|
10828
|
+
# Output only. Whether this is a Google-defined, read-only canned query.
|
|
10829
|
+
# Corresponds to the JSON property `googleDefined`
|
|
10830
|
+
# @return [Boolean]
|
|
10831
|
+
attr_accessor :google_defined
|
|
10832
|
+
alias_method :google_defined?, :google_defined
|
|
10833
|
+
|
|
10834
|
+
# Optional. The translations of the text attributes. The keys should be BCP-47
|
|
10835
|
+
# language codes.
|
|
10836
|
+
# Corresponds to the JSON property `localizedTexts`
|
|
10837
|
+
# @return [Hash<String,Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCannedQueryCannedQueryTexts>]
|
|
10838
|
+
attr_accessor :localized_texts
|
|
10839
|
+
|
|
10840
|
+
# Immutable. Resource name of the canned query. Format: `projects/`project`/
|
|
10841
|
+
# locations/`location`/collections/`collection`/engines/`engine`/assistants/`
|
|
10842
|
+
# assistant`/cannedQueries/`canned_query`` It must be a UTF-8 encoded string
|
|
10843
|
+
# with a length limit of 1024 characters.
|
|
10844
|
+
# Corresponds to the JSON property `name`
|
|
10845
|
+
# @return [String]
|
|
10846
|
+
attr_accessor :name
|
|
10847
|
+
|
|
10848
|
+
# Optional. The capabilities the Assistant needs to have to use this canned
|
|
10849
|
+
# query.
|
|
10850
|
+
# Corresponds to the JSON property `requiredCapabilities`
|
|
10851
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCannedQueryAssistantCapability>]
|
|
10852
|
+
attr_accessor :required_capabilities
|
|
10853
|
+
|
|
10854
|
+
def initialize(**args)
|
|
10855
|
+
update!(**args)
|
|
10856
|
+
end
|
|
10857
|
+
|
|
10858
|
+
# Update properties of this object
|
|
10859
|
+
def update!(**args)
|
|
10860
|
+
@default_texts = args[:default_texts] if args.key?(:default_texts)
|
|
10861
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
10862
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
10863
|
+
@google_defined = args[:google_defined] if args.key?(:google_defined)
|
|
10864
|
+
@localized_texts = args[:localized_texts] if args.key?(:localized_texts)
|
|
10865
|
+
@name = args[:name] if args.key?(:name)
|
|
10866
|
+
@required_capabilities = args[:required_capabilities] if args.key?(:required_capabilities)
|
|
10867
|
+
end
|
|
10868
|
+
end
|
|
10869
|
+
|
|
10870
|
+
# Capability of an assistant needed to use this canned query.
|
|
10871
|
+
class GoogleCloudDiscoveryengineV1alphaCannedQueryAssistantCapability
|
|
10872
|
+
include Google::Apis::Core::Hashable
|
|
10873
|
+
|
|
10874
|
+
# The name of the action that the Assistant needs to have set up to use this
|
|
10875
|
+
# canned query.
|
|
10876
|
+
# Corresponds to the JSON property `actionName`
|
|
10877
|
+
# @return [String]
|
|
10878
|
+
attr_accessor :action_name
|
|
10879
|
+
|
|
10880
|
+
def initialize(**args)
|
|
10881
|
+
update!(**args)
|
|
10882
|
+
end
|
|
10883
|
+
|
|
10884
|
+
# Update properties of this object
|
|
10885
|
+
def update!(**args)
|
|
10886
|
+
@action_name = args[:action_name] if args.key?(:action_name)
|
|
10887
|
+
end
|
|
10888
|
+
end
|
|
10889
|
+
|
|
10890
|
+
# The text pieces for the canned query, which can be localized.
|
|
10891
|
+
class GoogleCloudDiscoveryengineV1alphaCannedQueryCannedQueryTexts
|
|
10892
|
+
include Google::Apis::Core::Hashable
|
|
10893
|
+
|
|
10894
|
+
# Optional. The prefix that `suggested_prompts` should start with.
|
|
10895
|
+
# Corresponds to the JSON property `prefix`
|
|
10896
|
+
# @return [String]
|
|
10897
|
+
attr_accessor :prefix
|
|
10898
|
+
|
|
10899
|
+
# Required. The prompts the canned query will offer to the user.
|
|
10900
|
+
# Corresponds to the JSON property `suggestedPrompts`
|
|
10901
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCannedQuerySuggestedPrompt>]
|
|
10902
|
+
attr_accessor :suggested_prompts
|
|
10903
|
+
|
|
10904
|
+
# Required. The title that is for the end user.
|
|
10905
|
+
# Corresponds to the JSON property `title`
|
|
10906
|
+
# @return [String]
|
|
10907
|
+
attr_accessor :title
|
|
10908
|
+
|
|
10909
|
+
def initialize(**args)
|
|
10910
|
+
update!(**args)
|
|
10911
|
+
end
|
|
10912
|
+
|
|
10913
|
+
# Update properties of this object
|
|
10914
|
+
def update!(**args)
|
|
10915
|
+
@prefix = args[:prefix] if args.key?(:prefix)
|
|
10916
|
+
@suggested_prompts = args[:suggested_prompts] if args.key?(:suggested_prompts)
|
|
10917
|
+
@title = args[:title] if args.key?(:title)
|
|
10918
|
+
end
|
|
10919
|
+
end
|
|
10920
|
+
|
|
10921
|
+
# A suggested prompt for the canned query.
|
|
10922
|
+
class GoogleCloudDiscoveryengineV1alphaCannedQuerySuggestedPrompt
|
|
10923
|
+
include Google::Apis::Core::Hashable
|
|
10924
|
+
|
|
10925
|
+
# Required. The text of the suggested prompt.
|
|
10926
|
+
# Corresponds to the JSON property `promptText`
|
|
10927
|
+
# @return [String]
|
|
10928
|
+
attr_accessor :prompt_text
|
|
10929
|
+
|
|
10930
|
+
def initialize(**args)
|
|
10931
|
+
update!(**args)
|
|
10932
|
+
end
|
|
10933
|
+
|
|
10934
|
+
# Update properties of this object
|
|
10935
|
+
def update!(**args)
|
|
10936
|
+
@prompt_text = args[:prompt_text] if args.key?(:prompt_text)
|
|
10937
|
+
end
|
|
10938
|
+
end
|
|
10939
|
+
|
|
10828
10940
|
# Request message for GroundedGenerationService.CheckGrounding method.
|
|
10829
10941
|
class GoogleCloudDiscoveryengineV1alphaCheckGroundingRequest
|
|
10830
10942
|
include Google::Apis::Core::Hashable
|
|
@@ -11032,6 +11144,25 @@ module Google
|
|
|
11032
11144
|
end
|
|
11033
11145
|
end
|
|
11034
11146
|
|
|
11147
|
+
# Response message for the DataConnectorService.CheckRefreshToken method.
|
|
11148
|
+
class GoogleCloudDiscoveryengineV1alphaCheckRefreshTokenResponse
|
|
11149
|
+
include Google::Apis::Core::Hashable
|
|
11150
|
+
|
|
11151
|
+
# Describes a refresh token.
|
|
11152
|
+
# Corresponds to the JSON property `refreshTokenInfo`
|
|
11153
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaRefreshTokenInfo]
|
|
11154
|
+
attr_accessor :refresh_token_info
|
|
11155
|
+
|
|
11156
|
+
def initialize(**args)
|
|
11157
|
+
update!(**args)
|
|
11158
|
+
end
|
|
11159
|
+
|
|
11160
|
+
# Update properties of this object
|
|
11161
|
+
def update!(**args)
|
|
11162
|
+
@refresh_token_info = args[:refresh_token_info] if args.key?(:refresh_token_info)
|
|
11163
|
+
end
|
|
11164
|
+
end
|
|
11165
|
+
|
|
11035
11166
|
# Request for CheckRequirement method.
|
|
11036
11167
|
class GoogleCloudDiscoveryengineV1alphaCheckRequirementRequest
|
|
11037
11168
|
include Google::Apis::Core::Hashable
|
|
@@ -11411,6 +11542,81 @@ module Google
|
|
|
11411
11542
|
end
|
|
11412
11543
|
end
|
|
11413
11544
|
|
|
11545
|
+
# Source attributions for content.
|
|
11546
|
+
class GoogleCloudDiscoveryengineV1alphaCitation
|
|
11547
|
+
include Google::Apis::Core::Hashable
|
|
11548
|
+
|
|
11549
|
+
# Output only. End index into the content.
|
|
11550
|
+
# Corresponds to the JSON property `endIndex`
|
|
11551
|
+
# @return [Fixnum]
|
|
11552
|
+
attr_accessor :end_index
|
|
11553
|
+
|
|
11554
|
+
# Output only. License of the attribution.
|
|
11555
|
+
# Corresponds to the JSON property `license`
|
|
11556
|
+
# @return [String]
|
|
11557
|
+
attr_accessor :license
|
|
11558
|
+
|
|
11559
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
|
11560
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
|
11561
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
11562
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
|
11563
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
|
11564
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
|
11565
|
+
# example, a credit card expiration date). Related types: * google.type.
|
|
11566
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
|
11567
|
+
# Corresponds to the JSON property `publicationDate`
|
|
11568
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate]
|
|
11569
|
+
attr_accessor :publication_date
|
|
11570
|
+
|
|
11571
|
+
# Output only. Start index into the content.
|
|
11572
|
+
# Corresponds to the JSON property `startIndex`
|
|
11573
|
+
# @return [Fixnum]
|
|
11574
|
+
attr_accessor :start_index
|
|
11575
|
+
|
|
11576
|
+
# Output only. Title of the attribution.
|
|
11577
|
+
# Corresponds to the JSON property `title`
|
|
11578
|
+
# @return [String]
|
|
11579
|
+
attr_accessor :title
|
|
11580
|
+
|
|
11581
|
+
# Output only. Url reference of the attribution.
|
|
11582
|
+
# Corresponds to the JSON property `uri`
|
|
11583
|
+
# @return [String]
|
|
11584
|
+
attr_accessor :uri
|
|
11585
|
+
|
|
11586
|
+
def initialize(**args)
|
|
11587
|
+
update!(**args)
|
|
11588
|
+
end
|
|
11589
|
+
|
|
11590
|
+
# Update properties of this object
|
|
11591
|
+
def update!(**args)
|
|
11592
|
+
@end_index = args[:end_index] if args.key?(:end_index)
|
|
11593
|
+
@license = args[:license] if args.key?(:license)
|
|
11594
|
+
@publication_date = args[:publication_date] if args.key?(:publication_date)
|
|
11595
|
+
@start_index = args[:start_index] if args.key?(:start_index)
|
|
11596
|
+
@title = args[:title] if args.key?(:title)
|
|
11597
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
11598
|
+
end
|
|
11599
|
+
end
|
|
11600
|
+
|
|
11601
|
+
# A collection of source attributions for a piece of content.
|
|
11602
|
+
class GoogleCloudDiscoveryengineV1alphaCitationMetadata
|
|
11603
|
+
include Google::Apis::Core::Hashable
|
|
11604
|
+
|
|
11605
|
+
# Output only. List of citations.
|
|
11606
|
+
# Corresponds to the JSON property `citations`
|
|
11607
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCitation>]
|
|
11608
|
+
attr_accessor :citations
|
|
11609
|
+
|
|
11610
|
+
def initialize(**args)
|
|
11611
|
+
update!(**args)
|
|
11612
|
+
end
|
|
11613
|
+
|
|
11614
|
+
# Update properties of this object
|
|
11615
|
+
def update!(**args)
|
|
11616
|
+
@citations = args[:citations] if args.key?(:citations)
|
|
11617
|
+
end
|
|
11618
|
+
end
|
|
11619
|
+
|
|
11414
11620
|
# Cloud SQL source import data from.
|
|
11415
11621
|
class GoogleCloudDiscoveryengineV1alphaCloudSqlSource
|
|
11416
11622
|
include Google::Apis::Core::Hashable
|
|
@@ -11812,6 +12018,97 @@ module Google
|
|
|
11812
12018
|
end
|
|
11813
12019
|
end
|
|
11814
12020
|
|
|
12021
|
+
# Response for [EstimateBillingService.GetConfigurablePricingUsageStats] method.
|
|
12022
|
+
class GoogleCloudDiscoveryengineV1alphaConfigurablePricingUsageStats
|
|
12023
|
+
include Google::Apis::Core::Hashable
|
|
12024
|
+
|
|
12025
|
+
# A list of metric usages, one for each requested resource type that has data in
|
|
12026
|
+
# the requested time range.
|
|
12027
|
+
# Corresponds to the JSON property `metricUsages`
|
|
12028
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConfigurablePricingUsageStatsMetricUsage>]
|
|
12029
|
+
attr_accessor :metric_usages
|
|
12030
|
+
|
|
12031
|
+
# Identifier. The name of the ConfigurablePricingUsageStats. Format: projects/`
|
|
12032
|
+
# project`/locations/`location`/configurablePricingUsageStats
|
|
12033
|
+
# Corresponds to the JSON property `name`
|
|
12034
|
+
# @return [String]
|
|
12035
|
+
attr_accessor :name
|
|
12036
|
+
|
|
12037
|
+
def initialize(**args)
|
|
12038
|
+
update!(**args)
|
|
12039
|
+
end
|
|
12040
|
+
|
|
12041
|
+
# Update properties of this object
|
|
12042
|
+
def update!(**args)
|
|
12043
|
+
@metric_usages = args[:metric_usages] if args.key?(:metric_usages)
|
|
12044
|
+
@name = args[:name] if args.key?(:name)
|
|
12045
|
+
end
|
|
12046
|
+
end
|
|
12047
|
+
|
|
12048
|
+
# A list of usages for a specific day.
|
|
12049
|
+
class GoogleCloudDiscoveryengineV1alphaConfigurablePricingUsageStatsDatedUsage
|
|
12050
|
+
include Google::Apis::Core::Hashable
|
|
12051
|
+
|
|
12052
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
|
12053
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
|
12054
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
12055
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
|
12056
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
|
12057
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
|
12058
|
+
# example, a credit card expiration date). Related types: * google.type.
|
|
12059
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
|
12060
|
+
# Corresponds to the JSON property `date`
|
|
12061
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate]
|
|
12062
|
+
attr_accessor :date
|
|
12063
|
+
|
|
12064
|
+
# The usage value on the date.
|
|
12065
|
+
# Corresponds to the JSON property `usage`
|
|
12066
|
+
# @return [Float]
|
|
12067
|
+
attr_accessor :usage
|
|
12068
|
+
|
|
12069
|
+
def initialize(**args)
|
|
12070
|
+
update!(**args)
|
|
12071
|
+
end
|
|
12072
|
+
|
|
12073
|
+
# Update properties of this object
|
|
12074
|
+
def update!(**args)
|
|
12075
|
+
@date = args[:date] if args.key?(:date)
|
|
12076
|
+
@usage = args[:usage] if args.key?(:usage)
|
|
12077
|
+
end
|
|
12078
|
+
end
|
|
12079
|
+
|
|
12080
|
+
# The usage of a metric over a list of days.
|
|
12081
|
+
class GoogleCloudDiscoveryengineV1alphaConfigurablePricingUsageStatsMetricUsage
|
|
12082
|
+
include Google::Apis::Core::Hashable
|
|
12083
|
+
|
|
12084
|
+
# The list of usages for this resource type, chronologically sorted by date.
|
|
12085
|
+
# This is populated for metrics with daily aggregation like DAILY_MDN_QPM.
|
|
12086
|
+
# Corresponds to the JSON property `datedUsages`
|
|
12087
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConfigurablePricingUsageStatsDatedUsage>]
|
|
12088
|
+
attr_accessor :dated_usages
|
|
12089
|
+
|
|
12090
|
+
# The metric type.
|
|
12091
|
+
# Corresponds to the JSON property `metricType`
|
|
12092
|
+
# @return [String]
|
|
12093
|
+
attr_accessor :metric_type
|
|
12094
|
+
|
|
12095
|
+
# The list of total usages for this resource type
|
|
12096
|
+
# Corresponds to the JSON property `totalUsages`
|
|
12097
|
+
# @return [Array<Float>]
|
|
12098
|
+
attr_accessor :total_usages
|
|
12099
|
+
|
|
12100
|
+
def initialize(**args)
|
|
12101
|
+
update!(**args)
|
|
12102
|
+
end
|
|
12103
|
+
|
|
12104
|
+
# Update properties of this object
|
|
12105
|
+
def update!(**args)
|
|
12106
|
+
@dated_usages = args[:dated_usages] if args.key?(:dated_usages)
|
|
12107
|
+
@metric_type = args[:metric_type] if args.key?(:metric_type)
|
|
12108
|
+
@total_usages = args[:total_usages] if args.key?(:total_usages)
|
|
12109
|
+
end
|
|
12110
|
+
end
|
|
12111
|
+
|
|
11815
12112
|
# A data sync run of DataConnector. After DataConnector is successfully
|
|
11816
12113
|
# initialized, data syncs are scheduled at DataConnector.refresh_interval. A
|
|
11817
12114
|
# ConnectorRun represents a data sync either in the past or onging that the
|
|
@@ -13952,6 +14249,35 @@ module Google
|
|
|
13952
14249
|
end
|
|
13953
14250
|
end
|
|
13954
14251
|
|
|
14252
|
+
# Metadata related to the progress of the UserStoreService.DeleteUserStore
|
|
14253
|
+
# operation. This will be returned by the google.longrunning.Operation.metadata
|
|
14254
|
+
# field. Delete UserStore will delete all the end users under the user store,
|
|
14255
|
+
# return the number of end users successfully deleted or failed to delete in the
|
|
14256
|
+
# metadata.
|
|
14257
|
+
class GoogleCloudDiscoveryengineV1alphaDeleteUserStoreMetadata
|
|
14258
|
+
include Google::Apis::Core::Hashable
|
|
14259
|
+
|
|
14260
|
+
# The number of end users under the user store that failed to be deleted.
|
|
14261
|
+
# Corresponds to the JSON property `failureCount`
|
|
14262
|
+
# @return [Fixnum]
|
|
14263
|
+
attr_accessor :failure_count
|
|
14264
|
+
|
|
14265
|
+
# The number of end users under the user store that were successfully deleted.
|
|
14266
|
+
# Corresponds to the JSON property `successCount`
|
|
14267
|
+
# @return [Fixnum]
|
|
14268
|
+
attr_accessor :success_count
|
|
14269
|
+
|
|
14270
|
+
def initialize(**args)
|
|
14271
|
+
update!(**args)
|
|
14272
|
+
end
|
|
14273
|
+
|
|
14274
|
+
# Update properties of this object
|
|
14275
|
+
def update!(**args)
|
|
14276
|
+
@failure_count = args[:failure_count] if args.key?(:failure_count)
|
|
14277
|
+
@success_count = args[:success_count] if args.key?(:success_count)
|
|
14278
|
+
end
|
|
14279
|
+
end
|
|
14280
|
+
|
|
13955
14281
|
# Defines target endpoints used to connect to third-party sources.
|
|
13956
14282
|
class GoogleCloudDiscoveryengineV1alphaDestinationConfig
|
|
13957
14283
|
include Google::Apis::Core::Hashable
|
|
@@ -14043,29 +14369,87 @@ module Google
|
|
|
14043
14369
|
end
|
|
14044
14370
|
end
|
|
14045
14371
|
|
|
14046
|
-
# Request message for SiteSearchEngineService.DisableAdvancedSiteSearch method.
|
|
14047
|
-
class GoogleCloudDiscoveryengineV1alphaDisableAdvancedSiteSearchRequest
|
|
14372
|
+
# Request message for SiteSearchEngineService.DisableAdvancedSiteSearch method.
|
|
14373
|
+
class GoogleCloudDiscoveryengineV1alphaDisableAdvancedSiteSearchRequest
|
|
14374
|
+
include Google::Apis::Core::Hashable
|
|
14375
|
+
|
|
14376
|
+
def initialize(**args)
|
|
14377
|
+
update!(**args)
|
|
14378
|
+
end
|
|
14379
|
+
|
|
14380
|
+
# Update properties of this object
|
|
14381
|
+
def update!(**args)
|
|
14382
|
+
end
|
|
14383
|
+
end
|
|
14384
|
+
|
|
14385
|
+
# Response message for SiteSearchEngineService.DisableAdvancedSiteSearch method.
|
|
14386
|
+
class GoogleCloudDiscoveryengineV1alphaDisableAdvancedSiteSearchResponse
|
|
14387
|
+
include Google::Apis::Core::Hashable
|
|
14388
|
+
|
|
14389
|
+
def initialize(**args)
|
|
14390
|
+
update!(**args)
|
|
14391
|
+
end
|
|
14392
|
+
|
|
14393
|
+
# Update properties of this object
|
|
14394
|
+
def update!(**args)
|
|
14395
|
+
end
|
|
14396
|
+
end
|
|
14397
|
+
|
|
14398
|
+
# Request message for LicenseConfigService.DistributeLicenseConfig method.
|
|
14399
|
+
class GoogleCloudDiscoveryengineV1alphaDistributeLicenseConfigRequest
|
|
14048
14400
|
include Google::Apis::Core::Hashable
|
|
14049
14401
|
|
|
14402
|
+
# Optional. Distribute seats to this license config instead of creating a new
|
|
14403
|
+
# one. If not specified, a new license config will be created from the billing
|
|
14404
|
+
# account license config.
|
|
14405
|
+
# Corresponds to the JSON property `licenseConfigId`
|
|
14406
|
+
# @return [String]
|
|
14407
|
+
attr_accessor :license_config_id
|
|
14408
|
+
|
|
14409
|
+
# Required. The number of licenses to distribute.
|
|
14410
|
+
# Corresponds to the JSON property `licenseCount`
|
|
14411
|
+
# @return [Fixnum]
|
|
14412
|
+
attr_accessor :license_count
|
|
14413
|
+
|
|
14414
|
+
# Required. The target GCP project region to distribute the license config to.
|
|
14415
|
+
# Corresponds to the JSON property `location`
|
|
14416
|
+
# @return [String]
|
|
14417
|
+
attr_accessor :location
|
|
14418
|
+
|
|
14419
|
+
# Required. The target GCP project number to distribute the license config to.
|
|
14420
|
+
# Corresponds to the JSON property `projectNumber`
|
|
14421
|
+
# @return [Fixnum]
|
|
14422
|
+
attr_accessor :project_number
|
|
14423
|
+
|
|
14050
14424
|
def initialize(**args)
|
|
14051
14425
|
update!(**args)
|
|
14052
14426
|
end
|
|
14053
14427
|
|
|
14054
14428
|
# Update properties of this object
|
|
14055
14429
|
def update!(**args)
|
|
14430
|
+
@license_config_id = args[:license_config_id] if args.key?(:license_config_id)
|
|
14431
|
+
@license_count = args[:license_count] if args.key?(:license_count)
|
|
14432
|
+
@location = args[:location] if args.key?(:location)
|
|
14433
|
+
@project_number = args[:project_number] if args.key?(:project_number)
|
|
14056
14434
|
end
|
|
14057
14435
|
end
|
|
14058
14436
|
|
|
14059
|
-
# Response message for
|
|
14060
|
-
class
|
|
14437
|
+
# Response message for LicenseConfigService.DistributeLicenseConfig method.
|
|
14438
|
+
class GoogleCloudDiscoveryengineV1alphaDistributeLicenseConfigResponse
|
|
14061
14439
|
include Google::Apis::Core::Hashable
|
|
14062
14440
|
|
|
14441
|
+
# Information about users' licenses.
|
|
14442
|
+
# Corresponds to the JSON property `licenseConfig`
|
|
14443
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig]
|
|
14444
|
+
attr_accessor :license_config
|
|
14445
|
+
|
|
14063
14446
|
def initialize(**args)
|
|
14064
14447
|
update!(**args)
|
|
14065
14448
|
end
|
|
14066
14449
|
|
|
14067
14450
|
# Update properties of this object
|
|
14068
14451
|
def update!(**args)
|
|
14452
|
+
@license_config = args[:license_config] if args.key?(:license_config)
|
|
14069
14453
|
end
|
|
14070
14454
|
end
|
|
14071
14455
|
|
|
@@ -17461,6 +17845,12 @@ module Google
|
|
|
17461
17845
|
attr_accessor :free_trial
|
|
17462
17846
|
alias_method :free_trial?, :free_trial
|
|
17463
17847
|
|
|
17848
|
+
# Output only. Whether the license config is for Gemini bundle.
|
|
17849
|
+
# Corresponds to the JSON property `geminiBundle`
|
|
17850
|
+
# @return [Boolean]
|
|
17851
|
+
attr_accessor :gemini_bundle
|
|
17852
|
+
alias_method :gemini_bundle?, :gemini_bundle
|
|
17853
|
+
|
|
17464
17854
|
# Required. Number of licenses purchased.
|
|
17465
17855
|
# Corresponds to the JSON property `licenseCount`
|
|
17466
17856
|
# @return [Fixnum]
|
|
@@ -17510,6 +17900,7 @@ module Google
|
|
|
17510
17900
|
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
|
17511
17901
|
@end_date = args[:end_date] if args.key?(:end_date)
|
|
17512
17902
|
@free_trial = args[:free_trial] if args.key?(:free_trial)
|
|
17903
|
+
@gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
|
|
17513
17904
|
@license_count = args[:license_count] if args.key?(:license_count)
|
|
17514
17905
|
@name = args[:name] if args.key?(:name)
|
|
17515
17906
|
@start_date = args[:start_date] if args.key?(:start_date)
|
|
@@ -17538,6 +17929,32 @@ module Google
|
|
|
17538
17929
|
end
|
|
17539
17930
|
end
|
|
17540
17931
|
|
|
17932
|
+
# Response message for the CannedQueryService.ListCannedQueries method.
|
|
17933
|
+
class GoogleCloudDiscoveryengineV1alphaListCannedQueriesResponse
|
|
17934
|
+
include Google::Apis::Core::Hashable
|
|
17935
|
+
|
|
17936
|
+
# The list of CannedQuerys matching the request.
|
|
17937
|
+
# Corresponds to the JSON property `cannedQueries`
|
|
17938
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCannedQuery>]
|
|
17939
|
+
attr_accessor :canned_queries
|
|
17940
|
+
|
|
17941
|
+
# A token that can be sent as ListCannedQueriesRequest.page_token to retrieve
|
|
17942
|
+
# the next page. If this field is omitted, there are no subsequent pages.
|
|
17943
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
17944
|
+
# @return [String]
|
|
17945
|
+
attr_accessor :next_page_token
|
|
17946
|
+
|
|
17947
|
+
def initialize(**args)
|
|
17948
|
+
update!(**args)
|
|
17949
|
+
end
|
|
17950
|
+
|
|
17951
|
+
# Update properties of this object
|
|
17952
|
+
def update!(**args)
|
|
17953
|
+
@canned_queries = args[:canned_queries] if args.key?(:canned_queries)
|
|
17954
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
17955
|
+
end
|
|
17956
|
+
end
|
|
17957
|
+
|
|
17541
17958
|
# Response message for ChunkService.ListChunks method.
|
|
17542
17959
|
class GoogleCloudDiscoveryengineV1alphaListChunksResponse
|
|
17543
17960
|
include Google::Apis::Core::Hashable
|
|
@@ -18601,6 +19018,13 @@ module Google
|
|
|
18601
19018
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
|
|
18602
19019
|
attr_accessor :model_armor_config
|
|
18603
19020
|
|
|
19021
|
+
# Optional. Whether to disable the notebook sharing feature for the project.
|
|
19022
|
+
# Default to false if not specified.
|
|
19023
|
+
# Corresponds to the JSON property `optOutNotebookSharing`
|
|
19024
|
+
# @return [Boolean]
|
|
19025
|
+
attr_accessor :opt_out_notebook_sharing
|
|
19026
|
+
alias_method :opt_out_notebook_sharing?, :opt_out_notebook_sharing
|
|
19027
|
+
|
|
18604
19028
|
def initialize(**args)
|
|
18605
19029
|
update!(**args)
|
|
18606
19030
|
end
|
|
@@ -18608,6 +19032,7 @@ module Google
|
|
|
18608
19032
|
# Update properties of this object
|
|
18609
19033
|
def update!(**args)
|
|
18610
19034
|
@model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
|
|
19035
|
+
@opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
|
|
18611
19036
|
end
|
|
18612
19037
|
end
|
|
18613
19038
|
|
|
@@ -20332,6 +20757,60 @@ module Google
|
|
|
20332
20757
|
end
|
|
20333
20758
|
end
|
|
20334
20759
|
|
|
20760
|
+
# Request message for LicenseConfigService.RetractLicenseConfig method.
|
|
20761
|
+
class GoogleCloudDiscoveryengineV1alphaRetractLicenseConfigRequest
|
|
20762
|
+
include Google::Apis::Core::Hashable
|
|
20763
|
+
|
|
20764
|
+
# Optional. If set to true, retract the entire license config. Otherwise,
|
|
20765
|
+
# retract the specified license count.
|
|
20766
|
+
# Corresponds to the JSON property `fullRetract`
|
|
20767
|
+
# @return [Boolean]
|
|
20768
|
+
attr_accessor :full_retract
|
|
20769
|
+
alias_method :full_retract?, :full_retract
|
|
20770
|
+
|
|
20771
|
+
# Required. Full resource name of LicenseConfig. Format: `projects/`project`/
|
|
20772
|
+
# locations/`location`/licenseConfigs/`license_config_id``.
|
|
20773
|
+
# Corresponds to the JSON property `licenseConfig`
|
|
20774
|
+
# @return [String]
|
|
20775
|
+
attr_accessor :license_config
|
|
20776
|
+
|
|
20777
|
+
# Optional. The number of licenses to retract. Only used when full_retract is
|
|
20778
|
+
# false.
|
|
20779
|
+
# Corresponds to the JSON property `licenseCount`
|
|
20780
|
+
# @return [Fixnum]
|
|
20781
|
+
attr_accessor :license_count
|
|
20782
|
+
|
|
20783
|
+
def initialize(**args)
|
|
20784
|
+
update!(**args)
|
|
20785
|
+
end
|
|
20786
|
+
|
|
20787
|
+
# Update properties of this object
|
|
20788
|
+
def update!(**args)
|
|
20789
|
+
@full_retract = args[:full_retract] if args.key?(:full_retract)
|
|
20790
|
+
@license_config = args[:license_config] if args.key?(:license_config)
|
|
20791
|
+
@license_count = args[:license_count] if args.key?(:license_count)
|
|
20792
|
+
end
|
|
20793
|
+
end
|
|
20794
|
+
|
|
20795
|
+
# Response message for LicenseConfigService.RetractLicenseConfig method.
|
|
20796
|
+
class GoogleCloudDiscoveryengineV1alphaRetractLicenseConfigResponse
|
|
20797
|
+
include Google::Apis::Core::Hashable
|
|
20798
|
+
|
|
20799
|
+
# Information about users' licenses.
|
|
20800
|
+
# Corresponds to the JSON property `licenseConfig`
|
|
20801
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig]
|
|
20802
|
+
attr_accessor :license_config
|
|
20803
|
+
|
|
20804
|
+
def initialize(**args)
|
|
20805
|
+
update!(**args)
|
|
20806
|
+
end
|
|
20807
|
+
|
|
20808
|
+
# Update properties of this object
|
|
20809
|
+
def update!(**args)
|
|
20810
|
+
@license_config = args[:license_config] if args.key?(:license_config)
|
|
20811
|
+
end
|
|
20812
|
+
end
|
|
20813
|
+
|
|
20335
20814
|
# Safety rating corresponding to the generated content.
|
|
20336
20815
|
class GoogleCloudDiscoveryengineV1alphaSafetyRating
|
|
20337
20816
|
include Google::Apis::Core::Hashable
|
|
@@ -23452,6 +23931,12 @@ module Google
|
|
|
23452
23931
|
attr_accessor :is_pinned
|
|
23453
23932
|
alias_method :is_pinned?, :is_pinned
|
|
23454
23933
|
|
|
23934
|
+
# Optional. The labels for the session. Can be set as filter in
|
|
23935
|
+
# ListSessionsRequest.
|
|
23936
|
+
# Corresponds to the JSON property `labels`
|
|
23937
|
+
# @return [Array<String>]
|
|
23938
|
+
attr_accessor :labels
|
|
23939
|
+
|
|
23455
23940
|
# Immutable. Fully qualified name `projects/`project`/locations/global/
|
|
23456
23941
|
# collections/`collection`/engines/`engine`/sessions/*`
|
|
23457
23942
|
# Corresponds to the JSON property `name`
|
|
@@ -23487,6 +23972,7 @@ module Google
|
|
|
23487
23972
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
23488
23973
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
23489
23974
|
@is_pinned = args[:is_pinned] if args.key?(:is_pinned)
|
|
23975
|
+
@labels = args[:labels] if args.key?(:labels)
|
|
23490
23976
|
@name = args[:name] if args.key?(:name)
|
|
23491
23977
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
23492
23978
|
@state = args[:state] if args.key?(:state)
|
|
@@ -25230,6 +25716,62 @@ module Google
|
|
|
25230
25716
|
end
|
|
25231
25717
|
end
|
|
25232
25718
|
|
|
25719
|
+
# Configures metadata that is used for End User entities.
|
|
25720
|
+
class GoogleCloudDiscoveryengineV1alphaUserStore
|
|
25721
|
+
include Google::Apis::Core::Hashable
|
|
25722
|
+
|
|
25723
|
+
# Optional. The default subscription LicenseConfig for the UserStore, if
|
|
25724
|
+
# UserStore.enable_license_auto_register is true, new users will automatically
|
|
25725
|
+
# register under the default subscription. If default LicenseConfig doesn't have
|
|
25726
|
+
# remaining license seats left, new users will not be assigned with license and
|
|
25727
|
+
# will be blocked for Vertex AI Search features. This is used if `
|
|
25728
|
+
# license_assignment_tier_rules` is not configured.
|
|
25729
|
+
# Corresponds to the JSON property `defaultLicenseConfig`
|
|
25730
|
+
# @return [String]
|
|
25731
|
+
attr_accessor :default_license_config
|
|
25732
|
+
|
|
25733
|
+
# The display name of the User Store.
|
|
25734
|
+
# Corresponds to the JSON property `displayName`
|
|
25735
|
+
# @return [String]
|
|
25736
|
+
attr_accessor :display_name
|
|
25737
|
+
|
|
25738
|
+
# Optional. Whether to enable license auto update for users in this User Store.
|
|
25739
|
+
# If true, users with expired licenses will automatically be updated to use the
|
|
25740
|
+
# default license config as long as the default license config has seats left.
|
|
25741
|
+
# Corresponds to the JSON property `enableExpiredLicenseAutoUpdate`
|
|
25742
|
+
# @return [Boolean]
|
|
25743
|
+
attr_accessor :enable_expired_license_auto_update
|
|
25744
|
+
alias_method :enable_expired_license_auto_update?, :enable_expired_license_auto_update
|
|
25745
|
+
|
|
25746
|
+
# Optional. Whether to enable license auto register for users in this User Store.
|
|
25747
|
+
# If true, new users will automatically register under the default license
|
|
25748
|
+
# config as long as the default license config has seats left.
|
|
25749
|
+
# Corresponds to the JSON property `enableLicenseAutoRegister`
|
|
25750
|
+
# @return [Boolean]
|
|
25751
|
+
attr_accessor :enable_license_auto_register
|
|
25752
|
+
alias_method :enable_license_auto_register?, :enable_license_auto_register
|
|
25753
|
+
|
|
25754
|
+
# Immutable. The full resource name of the User Store, in the format of `
|
|
25755
|
+
# projects/`project`/locations/`location`/userStores/`user_store``. This field
|
|
25756
|
+
# must be a UTF-8 encoded string with a length limit of 1024 characters.
|
|
25757
|
+
# Corresponds to the JSON property `name`
|
|
25758
|
+
# @return [String]
|
|
25759
|
+
attr_accessor :name
|
|
25760
|
+
|
|
25761
|
+
def initialize(**args)
|
|
25762
|
+
update!(**args)
|
|
25763
|
+
end
|
|
25764
|
+
|
|
25765
|
+
# Update properties of this object
|
|
25766
|
+
def update!(**args)
|
|
25767
|
+
@default_license_config = args[:default_license_config] if args.key?(:default_license_config)
|
|
25768
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
25769
|
+
@enable_expired_license_auto_update = args[:enable_expired_license_auto_update] if args.key?(:enable_expired_license_auto_update)
|
|
25770
|
+
@enable_license_auto_register = args[:enable_license_auto_register] if args.key?(:enable_license_auto_register)
|
|
25771
|
+
@name = args[:name] if args.key?(:name)
|
|
25772
|
+
end
|
|
25773
|
+
end
|
|
25774
|
+
|
|
25233
25775
|
# Standard characteristics of a video media view.
|
|
25234
25776
|
class GoogleCloudDiscoveryengineV1alphaVideoCharacteristics
|
|
25235
25777
|
include Google::Apis::Core::Hashable
|
|
@@ -25451,6 +25993,12 @@ module Google
|
|
|
25451
25993
|
# @return [Hash<String,Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigUiComponentField>]
|
|
25452
25994
|
attr_accessor :fields_ui_components_map
|
|
25453
25995
|
|
|
25996
|
+
# Output only. Whether the subscription is gemini bundle or not.
|
|
25997
|
+
# Corresponds to the JSON property `geminiBundle`
|
|
25998
|
+
# @return [Boolean]
|
|
25999
|
+
attr_accessor :gemini_bundle
|
|
26000
|
+
alias_method :gemini_bundle?, :gemini_bundle
|
|
26001
|
+
|
|
25454
26002
|
# Describes the homepage setting of the widget. It includes all homepage related
|
|
25455
26003
|
# settings and configurations, such as shortcuts.
|
|
25456
26004
|
# Corresponds to the JSON property `homepageSetting`
|
|
@@ -25544,6 +26092,7 @@ module Google
|
|
|
25544
26092
|
@experimental_features = args[:experimental_features] if args.key?(:experimental_features)
|
|
25545
26093
|
@facet_field = args[:facet_field] if args.key?(:facet_field)
|
|
25546
26094
|
@fields_ui_components_map = args[:fields_ui_components_map] if args.key?(:fields_ui_components_map)
|
|
26095
|
+
@gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
|
|
25547
26096
|
@homepage_setting = args[:homepage_setting] if args.key?(:homepage_setting)
|
|
25548
26097
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
|
25549
26098
|
@llm_enabled = args[:llm_enabled] if args.key?(:llm_enabled)
|
|
@@ -25875,9 +26424,9 @@ module Google
|
|
|
25875
26424
|
include Google::Apis::Core::Hashable
|
|
25876
26425
|
|
|
25877
26426
|
# Optional. The shortcuts to display on the homepage. LINT.IfChange(
|
|
25878
|
-
# max_shortcuts_number) LINT.ThenChange(//depot/google3/cloud/console/web/ai/
|
|
26427
|
+
# max_shortcuts_number) LINT.ThenChange( //depot/google3/cloud/console/web/ai/
|
|
25879
26428
|
# unified_cloud_search/components/widget_preview/
|
|
25880
|
-
# widget_homepage_shortcut_config_form.ts:max_shortcuts_number)
|
|
26429
|
+
# widget_homepage_shortcut_config_form.ts:max_shortcuts_number )
|
|
25881
26430
|
# Corresponds to the JSON property `shortcuts`
|
|
25882
26431
|
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetConfigHomepageSettingShortcut>]
|
|
25883
26432
|
attr_accessor :shortcuts
|
|
@@ -26239,6 +26788,26 @@ module Google
|
|
|
26239
26788
|
end
|
|
26240
26789
|
end
|
|
26241
26790
|
|
|
26791
|
+
# Workspace settings for the end user.
|
|
26792
|
+
class GoogleCloudDiscoveryengineV1alphaWorkspaceSettings
|
|
26793
|
+
include Google::Apis::Core::Hashable
|
|
26794
|
+
|
|
26795
|
+
# Whether an end user has workspace access enabled.
|
|
26796
|
+
# Corresponds to the JSON property `workspaceAccessEnabled`
|
|
26797
|
+
# @return [Boolean]
|
|
26798
|
+
attr_accessor :workspace_access_enabled
|
|
26799
|
+
alias_method :workspace_access_enabled?, :workspace_access_enabled
|
|
26800
|
+
|
|
26801
|
+
def initialize(**args)
|
|
26802
|
+
update!(**args)
|
|
26803
|
+
end
|
|
26804
|
+
|
|
26805
|
+
# Update properties of this object
|
|
26806
|
+
def update!(**args)
|
|
26807
|
+
@workspace_access_enabled = args[:workspace_access_enabled] if args.key?(:workspace_access_enabled)
|
|
26808
|
+
end
|
|
26809
|
+
end
|
|
26810
|
+
|
|
26242
26811
|
# Access Control Configuration.
|
|
26243
26812
|
class GoogleCloudDiscoveryengineV1betaAclConfig
|
|
26244
26813
|
include Google::Apis::Core::Hashable
|
|
@@ -26293,77 +26862,6 @@ module Google
|
|
|
26293
26862
|
end
|
|
26294
26863
|
end
|
|
26295
26864
|
|
|
26296
|
-
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
|
26297
|
-
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
|
26298
|
-
class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig
|
|
26299
|
-
include Google::Apis::Core::Hashable
|
|
26300
|
-
|
|
26301
|
-
# Optional. The enrollment state of each alert.
|
|
26302
|
-
# Corresponds to the JSON property `alertEnrollments`
|
|
26303
|
-
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment>]
|
|
26304
|
-
attr_accessor :alert_enrollments
|
|
26305
|
-
|
|
26306
|
-
# Immutable. The fully qualified resource name of the AlertPolicy.
|
|
26307
|
-
# Corresponds to the JSON property `alertPolicy`
|
|
26308
|
-
# @return [String]
|
|
26309
|
-
attr_accessor :alert_policy
|
|
26310
|
-
|
|
26311
|
-
# Optional. The contact details for each alert policy.
|
|
26312
|
-
# Corresponds to the JSON property `contactDetails`
|
|
26313
|
-
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaContactDetails>]
|
|
26314
|
-
attr_accessor :contact_details
|
|
26315
|
-
|
|
26316
|
-
# Optional. The language code used for notifications
|
|
26317
|
-
# Corresponds to the JSON property `languageCode`
|
|
26318
|
-
# @return [String]
|
|
26319
|
-
attr_accessor :language_code
|
|
26320
|
-
|
|
26321
|
-
def initialize(**args)
|
|
26322
|
-
update!(**args)
|
|
26323
|
-
end
|
|
26324
|
-
|
|
26325
|
-
# Update properties of this object
|
|
26326
|
-
def update!(**args)
|
|
26327
|
-
@alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
|
|
26328
|
-
@alert_policy = args[:alert_policy] if args.key?(:alert_policy)
|
|
26329
|
-
@contact_details = args[:contact_details] if args.key?(:contact_details)
|
|
26330
|
-
@language_code = args[:language_code] if args.key?(:language_code)
|
|
26331
|
-
end
|
|
26332
|
-
end
|
|
26333
|
-
|
|
26334
|
-
# The alert enrollment status.
|
|
26335
|
-
class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment
|
|
26336
|
-
include Google::Apis::Core::Hashable
|
|
26337
|
-
|
|
26338
|
-
# Immutable. The id of an alert.
|
|
26339
|
-
# Corresponds to the JSON property `alertId`
|
|
26340
|
-
# @return [String]
|
|
26341
|
-
attr_accessor :alert_id
|
|
26342
|
-
|
|
26343
|
-
# Required. The enrollment status of a customer.
|
|
26344
|
-
# Corresponds to the JSON property `enrollState`
|
|
26345
|
-
# @return [String]
|
|
26346
|
-
attr_accessor :enroll_state
|
|
26347
|
-
|
|
26348
|
-
# Optional. Parameters used to instantiate a notification. Used for
|
|
26349
|
-
# notifications that are triggered when registered. Not stored. * Gemini
|
|
26350
|
-
# Business welcome emails. * Gemini Business user invitation emails.
|
|
26351
|
-
# Corresponds to the JSON property `notificationParams`
|
|
26352
|
-
# @return [Hash<String,String>]
|
|
26353
|
-
attr_accessor :notification_params
|
|
26354
|
-
|
|
26355
|
-
def initialize(**args)
|
|
26356
|
-
update!(**args)
|
|
26357
|
-
end
|
|
26358
|
-
|
|
26359
|
-
# Update properties of this object
|
|
26360
|
-
def update!(**args)
|
|
26361
|
-
@alert_id = args[:alert_id] if args.key?(:alert_id)
|
|
26362
|
-
@enroll_state = args[:enroll_state] if args.key?(:enroll_state)
|
|
26363
|
-
@notification_params = args[:notification_params] if args.key?(:notification_params)
|
|
26364
|
-
end
|
|
26365
|
-
end
|
|
26366
|
-
|
|
26367
26865
|
# Metadata related to the progress of the SiteSearchEngineService.
|
|
26368
26866
|
# BatchCreateTargetSites operation. This will be returned by the google.
|
|
26369
26867
|
# longrunning.Operation.metadata field.
|
|
@@ -26630,27 +27128,6 @@ module Google
|
|
|
26630
27128
|
end
|
|
26631
27129
|
end
|
|
26632
27130
|
|
|
26633
|
-
# The contact info stored in resource level. If both project level and resource
|
|
26634
|
-
# level is populated, the resource level contact info will override the project
|
|
26635
|
-
# level contact info.
|
|
26636
|
-
class GoogleCloudDiscoveryengineV1betaContactDetails
|
|
26637
|
-
include Google::Apis::Core::Hashable
|
|
26638
|
-
|
|
26639
|
-
# Optional. The email address of the contact.
|
|
26640
|
-
# Corresponds to the JSON property `emailAddress`
|
|
26641
|
-
# @return [String]
|
|
26642
|
-
attr_accessor :email_address
|
|
26643
|
-
|
|
26644
|
-
def initialize(**args)
|
|
26645
|
-
update!(**args)
|
|
26646
|
-
end
|
|
26647
|
-
|
|
26648
|
-
# Update properties of this object
|
|
26649
|
-
def update!(**args)
|
|
26650
|
-
@email_address = args[:email_address] if args.key?(:email_address)
|
|
26651
|
-
end
|
|
26652
|
-
end
|
|
26653
|
-
|
|
26654
27131
|
# Defines a conditioned behavior to employ during serving. Must be attached to a
|
|
26655
27132
|
# ServingConfig to be considered at serving time. Permitted actions dependent on
|
|
26656
27133
|
# `SolutionType`.
|
|
@@ -29039,12 +29516,6 @@ module Google
|
|
|
29039
29516
|
class GoogleCloudDiscoveryengineV1betaLicenseConfig
|
|
29040
29517
|
include Google::Apis::Core::Hashable
|
|
29041
29518
|
|
|
29042
|
-
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
|
29043
|
-
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
|
29044
|
-
# Corresponds to the JSON property `alertPolicyResourceConfig`
|
|
29045
|
-
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig]
|
|
29046
|
-
attr_accessor :alert_policy_resource_config
|
|
29047
|
-
|
|
29048
29519
|
# Optional. Whether the license config should be auto renewed when it reaches
|
|
29049
29520
|
# the end date.
|
|
29050
29521
|
# Corresponds to the JSON property `autoRenew`
|
|
@@ -29070,6 +29541,12 @@ module Google
|
|
|
29070
29541
|
attr_accessor :free_trial
|
|
29071
29542
|
alias_method :free_trial?, :free_trial
|
|
29072
29543
|
|
|
29544
|
+
# Output only. Whether the license config is for Gemini bundle.
|
|
29545
|
+
# Corresponds to the JSON property `geminiBundle`
|
|
29546
|
+
# @return [Boolean]
|
|
29547
|
+
attr_accessor :gemini_bundle
|
|
29548
|
+
alias_method :gemini_bundle?, :gemini_bundle
|
|
29549
|
+
|
|
29073
29550
|
# Required. Number of licenses purchased.
|
|
29074
29551
|
# Corresponds to the JSON property `licenseCount`
|
|
29075
29552
|
# @return [Fixnum]
|
|
@@ -29115,10 +29592,10 @@ module Google
|
|
|
29115
29592
|
|
|
29116
29593
|
# Update properties of this object
|
|
29117
29594
|
def update!(**args)
|
|
29118
|
-
@alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
|
|
29119
29595
|
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
|
29120
29596
|
@end_date = args[:end_date] if args.key?(:end_date)
|
|
29121
29597
|
@free_trial = args[:free_trial] if args.key?(:free_trial)
|
|
29598
|
+
@gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
|
|
29122
29599
|
@license_count = args[:license_count] if args.key?(:license_count)
|
|
29123
29600
|
@name = args[:name] if args.key?(:name)
|
|
29124
29601
|
@start_date = args[:start_date] if args.key?(:start_date)
|
|
@@ -29300,6 +29777,13 @@ module Google
|
|
|
29300
29777
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
|
|
29301
29778
|
attr_accessor :model_armor_config
|
|
29302
29779
|
|
|
29780
|
+
# Optional. Whether to disable the notebook sharing feature for the project.
|
|
29781
|
+
# Default to false if not specified.
|
|
29782
|
+
# Corresponds to the JSON property `optOutNotebookSharing`
|
|
29783
|
+
# @return [Boolean]
|
|
29784
|
+
attr_accessor :opt_out_notebook_sharing
|
|
29785
|
+
alias_method :opt_out_notebook_sharing?, :opt_out_notebook_sharing
|
|
29786
|
+
|
|
29303
29787
|
def initialize(**args)
|
|
29304
29788
|
update!(**args)
|
|
29305
29789
|
end
|
|
@@ -29307,6 +29791,7 @@ module Google
|
|
|
29307
29791
|
# Update properties of this object
|
|
29308
29792
|
def update!(**args)
|
|
29309
29793
|
@model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
|
|
29794
|
+
@opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
|
|
29310
29795
|
end
|
|
29311
29796
|
end
|
|
29312
29797
|
|
|
@@ -31705,6 +32190,62 @@ module Google
|
|
|
31705
32190
|
end
|
|
31706
32191
|
end
|
|
31707
32192
|
|
|
32193
|
+
# Configures metadata that is used for End User entities.
|
|
32194
|
+
class GoogleCloudDiscoveryengineV1betaUserStore
|
|
32195
|
+
include Google::Apis::Core::Hashable
|
|
32196
|
+
|
|
32197
|
+
# Optional. The default subscription LicenseConfig for the UserStore, if
|
|
32198
|
+
# UserStore.enable_license_auto_register is true, new users will automatically
|
|
32199
|
+
# register under the default subscription. If default LicenseConfig doesn't have
|
|
32200
|
+
# remaining license seats left, new users will not be assigned with license and
|
|
32201
|
+
# will be blocked for Vertex AI Search features. This is used if `
|
|
32202
|
+
# license_assignment_tier_rules` is not configured.
|
|
32203
|
+
# Corresponds to the JSON property `defaultLicenseConfig`
|
|
32204
|
+
# @return [String]
|
|
32205
|
+
attr_accessor :default_license_config
|
|
32206
|
+
|
|
32207
|
+
# The display name of the User Store.
|
|
32208
|
+
# Corresponds to the JSON property `displayName`
|
|
32209
|
+
# @return [String]
|
|
32210
|
+
attr_accessor :display_name
|
|
32211
|
+
|
|
32212
|
+
# Optional. Whether to enable license auto update for users in this User Store.
|
|
32213
|
+
# If true, users with expired licenses will automatically be updated to use the
|
|
32214
|
+
# default license config as long as the default license config has seats left.
|
|
32215
|
+
# Corresponds to the JSON property `enableExpiredLicenseAutoUpdate`
|
|
32216
|
+
# @return [Boolean]
|
|
32217
|
+
attr_accessor :enable_expired_license_auto_update
|
|
32218
|
+
alias_method :enable_expired_license_auto_update?, :enable_expired_license_auto_update
|
|
32219
|
+
|
|
32220
|
+
# Optional. Whether to enable license auto register for users in this User Store.
|
|
32221
|
+
# If true, new users will automatically register under the default license
|
|
32222
|
+
# config as long as the default license config has seats left.
|
|
32223
|
+
# Corresponds to the JSON property `enableLicenseAutoRegister`
|
|
32224
|
+
# @return [Boolean]
|
|
32225
|
+
attr_accessor :enable_license_auto_register
|
|
32226
|
+
alias_method :enable_license_auto_register?, :enable_license_auto_register
|
|
32227
|
+
|
|
32228
|
+
# Immutable. The full resource name of the User Store, in the format of `
|
|
32229
|
+
# projects/`project`/locations/`location`/userStores/`user_store``. This field
|
|
32230
|
+
# must be a UTF-8 encoded string with a length limit of 1024 characters.
|
|
32231
|
+
# Corresponds to the JSON property `name`
|
|
32232
|
+
# @return [String]
|
|
32233
|
+
attr_accessor :name
|
|
32234
|
+
|
|
32235
|
+
def initialize(**args)
|
|
32236
|
+
update!(**args)
|
|
32237
|
+
end
|
|
32238
|
+
|
|
32239
|
+
# Update properties of this object
|
|
32240
|
+
def update!(**args)
|
|
32241
|
+
@default_license_config = args[:default_license_config] if args.key?(:default_license_config)
|
|
32242
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
32243
|
+
@enable_expired_license_auto_update = args[:enable_expired_license_auto_update] if args.key?(:enable_expired_license_auto_update)
|
|
32244
|
+
@enable_license_auto_register = args[:enable_license_auto_register] if args.key?(:enable_license_auto_register)
|
|
32245
|
+
@name = args[:name] if args.key?(:name)
|
|
32246
|
+
end
|
|
32247
|
+
end
|
|
32248
|
+
|
|
31708
32249
|
# Config to store data store type configuration for workspace data
|
|
31709
32250
|
class GoogleCloudDiscoveryengineV1betaWorkspaceConfig
|
|
31710
32251
|
include Google::Apis::Core::Hashable
|