google-apis-discoveryengine_v1beta 0.85.0 → 0.87.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_v1beta/classes.rb +362 -198
- data/lib/google/apis/discoveryengine_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1beta/representations.rb +126 -96
- data/lib/google/apis/discoveryengine_v1beta/service.rb +139 -0
- data/lib/google/apis/discoveryengine_v1beta.rb +6 -0
- metadata +2 -2
|
@@ -1586,77 +1586,6 @@ module Google
|
|
|
1586
1586
|
end
|
|
1587
1587
|
end
|
|
1588
1588
|
|
|
1589
|
-
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
|
1590
|
-
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
|
1591
|
-
class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig
|
|
1592
|
-
include Google::Apis::Core::Hashable
|
|
1593
|
-
|
|
1594
|
-
# Optional. The enrollment state of each alert.
|
|
1595
|
-
# Corresponds to the JSON property `alertEnrollments`
|
|
1596
|
-
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment>]
|
|
1597
|
-
attr_accessor :alert_enrollments
|
|
1598
|
-
|
|
1599
|
-
# Immutable. The fully qualified resource name of the AlertPolicy.
|
|
1600
|
-
# Corresponds to the JSON property `alertPolicy`
|
|
1601
|
-
# @return [String]
|
|
1602
|
-
attr_accessor :alert_policy
|
|
1603
|
-
|
|
1604
|
-
# Optional. The contact details for each alert policy.
|
|
1605
|
-
# Corresponds to the JSON property `contactDetails`
|
|
1606
|
-
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ContactDetails>]
|
|
1607
|
-
attr_accessor :contact_details
|
|
1608
|
-
|
|
1609
|
-
# Optional. The language code used for notifications
|
|
1610
|
-
# Corresponds to the JSON property `languageCode`
|
|
1611
|
-
# @return [String]
|
|
1612
|
-
attr_accessor :language_code
|
|
1613
|
-
|
|
1614
|
-
def initialize(**args)
|
|
1615
|
-
update!(**args)
|
|
1616
|
-
end
|
|
1617
|
-
|
|
1618
|
-
# Update properties of this object
|
|
1619
|
-
def update!(**args)
|
|
1620
|
-
@alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
|
|
1621
|
-
@alert_policy = args[:alert_policy] if args.key?(:alert_policy)
|
|
1622
|
-
@contact_details = args[:contact_details] if args.key?(:contact_details)
|
|
1623
|
-
@language_code = args[:language_code] if args.key?(:language_code)
|
|
1624
|
-
end
|
|
1625
|
-
end
|
|
1626
|
-
|
|
1627
|
-
# The alert enrollment status.
|
|
1628
|
-
class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment
|
|
1629
|
-
include Google::Apis::Core::Hashable
|
|
1630
|
-
|
|
1631
|
-
# Immutable. The id of an alert.
|
|
1632
|
-
# Corresponds to the JSON property `alertId`
|
|
1633
|
-
# @return [String]
|
|
1634
|
-
attr_accessor :alert_id
|
|
1635
|
-
|
|
1636
|
-
# Required. The enrollment status of a customer.
|
|
1637
|
-
# Corresponds to the JSON property `enrollState`
|
|
1638
|
-
# @return [String]
|
|
1639
|
-
attr_accessor :enroll_state
|
|
1640
|
-
|
|
1641
|
-
# Optional. Parameters used to instantiate a notification. Used for
|
|
1642
|
-
# notifications that are triggered when registered. Not stored. * Gemini
|
|
1643
|
-
# Business welcome emails. * Gemini Business user invitation emails.
|
|
1644
|
-
# Corresponds to the JSON property `notificationParams`
|
|
1645
|
-
# @return [Hash<String,String>]
|
|
1646
|
-
attr_accessor :notification_params
|
|
1647
|
-
|
|
1648
|
-
def initialize(**args)
|
|
1649
|
-
update!(**args)
|
|
1650
|
-
end
|
|
1651
|
-
|
|
1652
|
-
# Update properties of this object
|
|
1653
|
-
def update!(**args)
|
|
1654
|
-
@alert_id = args[:alert_id] if args.key?(:alert_id)
|
|
1655
|
-
@enroll_state = args[:enroll_state] if args.key?(:enroll_state)
|
|
1656
|
-
@notification_params = args[:notification_params] if args.key?(:notification_params)
|
|
1657
|
-
end
|
|
1658
|
-
end
|
|
1659
|
-
|
|
1660
1589
|
# The specification for answer generation.
|
|
1661
1590
|
class GoogleCloudDiscoveryengineV1AnswerGenerationSpec
|
|
1662
1591
|
include Google::Apis::Core::Hashable
|
|
@@ -2310,27 +2239,6 @@ module Google
|
|
|
2310
2239
|
end
|
|
2311
2240
|
end
|
|
2312
2241
|
|
|
2313
|
-
# The contact info stored in resource level. If both project level and resource
|
|
2314
|
-
# level is populated, the resource level contact info will override the project
|
|
2315
|
-
# level contact info.
|
|
2316
|
-
class GoogleCloudDiscoveryengineV1ContactDetails
|
|
2317
|
-
include Google::Apis::Core::Hashable
|
|
2318
|
-
|
|
2319
|
-
# Optional. The email address of the contact.
|
|
2320
|
-
# Corresponds to the JSON property `emailAddress`
|
|
2321
|
-
# @return [String]
|
|
2322
|
-
attr_accessor :email_address
|
|
2323
|
-
|
|
2324
|
-
def initialize(**args)
|
|
2325
|
-
update!(**args)
|
|
2326
|
-
end
|
|
2327
|
-
|
|
2328
|
-
# Update properties of this object
|
|
2329
|
-
def update!(**args)
|
|
2330
|
-
@email_address = args[:email_address] if args.key?(:email_address)
|
|
2331
|
-
end
|
|
2332
|
-
end
|
|
2333
|
-
|
|
2334
2242
|
# Defines a conditioned behavior to employ during serving. Must be attached to a
|
|
2335
2243
|
# ServingConfig to be considered at serving time. Permitted actions dependent on
|
|
2336
2244
|
# `SolutionType`.
|
|
@@ -5045,12 +4953,6 @@ module Google
|
|
|
5045
4953
|
class GoogleCloudDiscoveryengineV1LicenseConfig
|
|
5046
4954
|
include Google::Apis::Core::Hashable
|
|
5047
4955
|
|
|
5048
|
-
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
|
5049
|
-
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
|
5050
|
-
# Corresponds to the JSON property `alertPolicyResourceConfig`
|
|
5051
|
-
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig]
|
|
5052
|
-
attr_accessor :alert_policy_resource_config
|
|
5053
|
-
|
|
5054
4956
|
# Optional. Whether the license config should be auto renewed when it reaches
|
|
5055
4957
|
# the end date.
|
|
5056
4958
|
# Corresponds to the JSON property `autoRenew`
|
|
@@ -5076,6 +4978,12 @@ module Google
|
|
|
5076
4978
|
attr_accessor :free_trial
|
|
5077
4979
|
alias_method :free_trial?, :free_trial
|
|
5078
4980
|
|
|
4981
|
+
# Output only. Whether the license config is for Gemini bundle.
|
|
4982
|
+
# Corresponds to the JSON property `geminiBundle`
|
|
4983
|
+
# @return [Boolean]
|
|
4984
|
+
attr_accessor :gemini_bundle
|
|
4985
|
+
alias_method :gemini_bundle?, :gemini_bundle
|
|
4986
|
+
|
|
5079
4987
|
# Required. Number of licenses purchased.
|
|
5080
4988
|
# Corresponds to the JSON property `licenseCount`
|
|
5081
4989
|
# @return [Fixnum]
|
|
@@ -5121,10 +5029,10 @@ module Google
|
|
|
5121
5029
|
|
|
5122
5030
|
# Update properties of this object
|
|
5123
5031
|
def update!(**args)
|
|
5124
|
-
@alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
|
|
5125
5032
|
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
|
5126
5033
|
@end_date = args[:end_date] if args.key?(:end_date)
|
|
5127
5034
|
@free_trial = args[:free_trial] if args.key?(:free_trial)
|
|
5035
|
+
@gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
|
|
5128
5036
|
@license_count = args[:license_count] if args.key?(:license_count)
|
|
5129
5037
|
@name = args[:name] if args.key?(:name)
|
|
5130
5038
|
@start_date = args[:start_date] if args.key?(:start_date)
|
|
@@ -5209,6 +5117,13 @@ module Google
|
|
|
5209
5117
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
|
|
5210
5118
|
attr_accessor :model_armor_config
|
|
5211
5119
|
|
|
5120
|
+
# Optional. Whether to disable the notebook sharing feature for the project.
|
|
5121
|
+
# Default to false if not specified.
|
|
5122
|
+
# Corresponds to the JSON property `optOutNotebookSharing`
|
|
5123
|
+
# @return [Boolean]
|
|
5124
|
+
attr_accessor :opt_out_notebook_sharing
|
|
5125
|
+
alias_method :opt_out_notebook_sharing?, :opt_out_notebook_sharing
|
|
5126
|
+
|
|
5212
5127
|
def initialize(**args)
|
|
5213
5128
|
update!(**args)
|
|
5214
5129
|
end
|
|
@@ -5216,6 +5131,7 @@ module Google
|
|
|
5216
5131
|
# Update properties of this object
|
|
5217
5132
|
def update!(**args)
|
|
5218
5133
|
@model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
|
|
5134
|
+
@opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
|
|
5219
5135
|
end
|
|
5220
5136
|
end
|
|
5221
5137
|
|
|
@@ -6663,6 +6579,62 @@ module Google
|
|
|
6663
6579
|
end
|
|
6664
6580
|
end
|
|
6665
6581
|
|
|
6582
|
+
# Configures metadata that is used for End User entities.
|
|
6583
|
+
class GoogleCloudDiscoveryengineV1UserStore
|
|
6584
|
+
include Google::Apis::Core::Hashable
|
|
6585
|
+
|
|
6586
|
+
# Optional. The default subscription LicenseConfig for the UserStore, if
|
|
6587
|
+
# UserStore.enable_license_auto_register is true, new users will automatically
|
|
6588
|
+
# register under the default subscription. If default LicenseConfig doesn't have
|
|
6589
|
+
# remaining license seats left, new users will not be assigned with license and
|
|
6590
|
+
# will be blocked for Vertex AI Search features. This is used if `
|
|
6591
|
+
# license_assignment_tier_rules` is not configured.
|
|
6592
|
+
# Corresponds to the JSON property `defaultLicenseConfig`
|
|
6593
|
+
# @return [String]
|
|
6594
|
+
attr_accessor :default_license_config
|
|
6595
|
+
|
|
6596
|
+
# The display name of the User Store.
|
|
6597
|
+
# Corresponds to the JSON property `displayName`
|
|
6598
|
+
# @return [String]
|
|
6599
|
+
attr_accessor :display_name
|
|
6600
|
+
|
|
6601
|
+
# Optional. Whether to enable license auto update for users in this User Store.
|
|
6602
|
+
# If true, users with expired licenses will automatically be updated to use the
|
|
6603
|
+
# default license config as long as the default license config has seats left.
|
|
6604
|
+
# Corresponds to the JSON property `enableExpiredLicenseAutoUpdate`
|
|
6605
|
+
# @return [Boolean]
|
|
6606
|
+
attr_accessor :enable_expired_license_auto_update
|
|
6607
|
+
alias_method :enable_expired_license_auto_update?, :enable_expired_license_auto_update
|
|
6608
|
+
|
|
6609
|
+
# Optional. Whether to enable license auto register for users in this User Store.
|
|
6610
|
+
# If true, new users will automatically register under the default license
|
|
6611
|
+
# config as long as the default license config has seats left.
|
|
6612
|
+
# Corresponds to the JSON property `enableLicenseAutoRegister`
|
|
6613
|
+
# @return [Boolean]
|
|
6614
|
+
attr_accessor :enable_license_auto_register
|
|
6615
|
+
alias_method :enable_license_auto_register?, :enable_license_auto_register
|
|
6616
|
+
|
|
6617
|
+
# Immutable. The full resource name of the User Store, in the format of `
|
|
6618
|
+
# projects/`project`/locations/`location`/userStores/`user_store``. This field
|
|
6619
|
+
# must be a UTF-8 encoded string with a length limit of 1024 characters.
|
|
6620
|
+
# Corresponds to the JSON property `name`
|
|
6621
|
+
# @return [String]
|
|
6622
|
+
attr_accessor :name
|
|
6623
|
+
|
|
6624
|
+
def initialize(**args)
|
|
6625
|
+
update!(**args)
|
|
6626
|
+
end
|
|
6627
|
+
|
|
6628
|
+
# Update properties of this object
|
|
6629
|
+
def update!(**args)
|
|
6630
|
+
@default_license_config = args[:default_license_config] if args.key?(:default_license_config)
|
|
6631
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
6632
|
+
@enable_expired_license_auto_update = args[:enable_expired_license_auto_update] if args.key?(:enable_expired_license_auto_update)
|
|
6633
|
+
@enable_license_auto_register = args[:enable_license_auto_register] if args.key?(:enable_license_auto_register)
|
|
6634
|
+
@name = args[:name] if args.key?(:name)
|
|
6635
|
+
end
|
|
6636
|
+
end
|
|
6637
|
+
|
|
6666
6638
|
# Config to store data store type configuration for workspace data
|
|
6667
6639
|
class GoogleCloudDiscoveryengineV1WorkspaceConfig
|
|
6668
6640
|
include Google::Apis::Core::Hashable
|
|
@@ -8027,6 +7999,11 @@ module Google
|
|
|
8027
7999
|
class GoogleCloudDiscoveryengineV1alphaAssistantGroundedContent
|
|
8028
8000
|
include Google::Apis::Core::Hashable
|
|
8029
8001
|
|
|
8002
|
+
# A collection of source attributions for a piece of content.
|
|
8003
|
+
# Corresponds to the JSON property `citationMetadata`
|
|
8004
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCitationMetadata]
|
|
8005
|
+
attr_accessor :citation_metadata
|
|
8006
|
+
|
|
8030
8007
|
# Multi-modal content.
|
|
8031
8008
|
# Corresponds to the JSON property `content`
|
|
8032
8009
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaAssistantContent]
|
|
@@ -8043,6 +8020,7 @@ module Google
|
|
|
8043
8020
|
|
|
8044
8021
|
# Update properties of this object
|
|
8045
8022
|
def update!(**args)
|
|
8023
|
+
@citation_metadata = args[:citation_metadata] if args.key?(:citation_metadata)
|
|
8046
8024
|
@content = args[:content] if args.key?(:content)
|
|
8047
8025
|
@text_grounding_metadata = args[:text_grounding_metadata] if args.key?(:text_grounding_metadata)
|
|
8048
8026
|
end
|
|
@@ -8333,6 +8311,81 @@ module Google
|
|
|
8333
8311
|
end
|
|
8334
8312
|
end
|
|
8335
8313
|
|
|
8314
|
+
# Source attributions for content.
|
|
8315
|
+
class GoogleCloudDiscoveryengineV1alphaCitation
|
|
8316
|
+
include Google::Apis::Core::Hashable
|
|
8317
|
+
|
|
8318
|
+
# Output only. End index into the content.
|
|
8319
|
+
# Corresponds to the JSON property `endIndex`
|
|
8320
|
+
# @return [Fixnum]
|
|
8321
|
+
attr_accessor :end_index
|
|
8322
|
+
|
|
8323
|
+
# Output only. License of the attribution.
|
|
8324
|
+
# Corresponds to the JSON property `license`
|
|
8325
|
+
# @return [String]
|
|
8326
|
+
attr_accessor :license
|
|
8327
|
+
|
|
8328
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
|
8329
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
|
8330
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
8331
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
|
8332
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
|
8333
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
|
8334
|
+
# example, a credit card expiration date). Related types: * google.type.
|
|
8335
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
|
8336
|
+
# Corresponds to the JSON property `publicationDate`
|
|
8337
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleTypeDate]
|
|
8338
|
+
attr_accessor :publication_date
|
|
8339
|
+
|
|
8340
|
+
# Output only. Start index into the content.
|
|
8341
|
+
# Corresponds to the JSON property `startIndex`
|
|
8342
|
+
# @return [Fixnum]
|
|
8343
|
+
attr_accessor :start_index
|
|
8344
|
+
|
|
8345
|
+
# Output only. Title of the attribution.
|
|
8346
|
+
# Corresponds to the JSON property `title`
|
|
8347
|
+
# @return [String]
|
|
8348
|
+
attr_accessor :title
|
|
8349
|
+
|
|
8350
|
+
# Output only. Url reference of the attribution.
|
|
8351
|
+
# Corresponds to the JSON property `uri`
|
|
8352
|
+
# @return [String]
|
|
8353
|
+
attr_accessor :uri
|
|
8354
|
+
|
|
8355
|
+
def initialize(**args)
|
|
8356
|
+
update!(**args)
|
|
8357
|
+
end
|
|
8358
|
+
|
|
8359
|
+
# Update properties of this object
|
|
8360
|
+
def update!(**args)
|
|
8361
|
+
@end_index = args[:end_index] if args.key?(:end_index)
|
|
8362
|
+
@license = args[:license] if args.key?(:license)
|
|
8363
|
+
@publication_date = args[:publication_date] if args.key?(:publication_date)
|
|
8364
|
+
@start_index = args[:start_index] if args.key?(:start_index)
|
|
8365
|
+
@title = args[:title] if args.key?(:title)
|
|
8366
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
8367
|
+
end
|
|
8368
|
+
end
|
|
8369
|
+
|
|
8370
|
+
# A collection of source attributions for a piece of content.
|
|
8371
|
+
class GoogleCloudDiscoveryengineV1alphaCitationMetadata
|
|
8372
|
+
include Google::Apis::Core::Hashable
|
|
8373
|
+
|
|
8374
|
+
# Output only. List of citations.
|
|
8375
|
+
# Corresponds to the JSON property `citations`
|
|
8376
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCitation>]
|
|
8377
|
+
attr_accessor :citations
|
|
8378
|
+
|
|
8379
|
+
def initialize(**args)
|
|
8380
|
+
update!(**args)
|
|
8381
|
+
end
|
|
8382
|
+
|
|
8383
|
+
# Update properties of this object
|
|
8384
|
+
def update!(**args)
|
|
8385
|
+
@citations = args[:citations] if args.key?(:citations)
|
|
8386
|
+
end
|
|
8387
|
+
end
|
|
8388
|
+
|
|
8336
8389
|
# Configurations used to enable CMEK data encryption with Cloud KMS keys.
|
|
8337
8390
|
class GoogleCloudDiscoveryengineV1alphaCmekConfig
|
|
8338
8391
|
include Google::Apis::Core::Hashable
|
|
@@ -10316,6 +10369,35 @@ module Google
|
|
|
10316
10369
|
end
|
|
10317
10370
|
end
|
|
10318
10371
|
|
|
10372
|
+
# Metadata related to the progress of the UserStoreService.DeleteUserStore
|
|
10373
|
+
# operation. This will be returned by the google.longrunning.Operation.metadata
|
|
10374
|
+
# field. Delete UserStore will delete all the end users under the user store,
|
|
10375
|
+
# return the number of end users successfully deleted or failed to delete in the
|
|
10376
|
+
# metadata.
|
|
10377
|
+
class GoogleCloudDiscoveryengineV1alphaDeleteUserStoreMetadata
|
|
10378
|
+
include Google::Apis::Core::Hashable
|
|
10379
|
+
|
|
10380
|
+
# The number of end users under the user store that failed to be deleted.
|
|
10381
|
+
# Corresponds to the JSON property `failureCount`
|
|
10382
|
+
# @return [Fixnum]
|
|
10383
|
+
attr_accessor :failure_count
|
|
10384
|
+
|
|
10385
|
+
# The number of end users under the user store that were successfully deleted.
|
|
10386
|
+
# Corresponds to the JSON property `successCount`
|
|
10387
|
+
# @return [Fixnum]
|
|
10388
|
+
attr_accessor :success_count
|
|
10389
|
+
|
|
10390
|
+
def initialize(**args)
|
|
10391
|
+
update!(**args)
|
|
10392
|
+
end
|
|
10393
|
+
|
|
10394
|
+
# Update properties of this object
|
|
10395
|
+
def update!(**args)
|
|
10396
|
+
@failure_count = args[:failure_count] if args.key?(:failure_count)
|
|
10397
|
+
@success_count = args[:success_count] if args.key?(:success_count)
|
|
10398
|
+
end
|
|
10399
|
+
end
|
|
10400
|
+
|
|
10319
10401
|
# Defines target endpoints used to connect to third-party sources.
|
|
10320
10402
|
class GoogleCloudDiscoveryengineV1alphaDestinationConfig
|
|
10321
10403
|
include Google::Apis::Core::Hashable
|
|
@@ -12265,6 +12347,12 @@ module Google
|
|
|
12265
12347
|
attr_accessor :free_trial
|
|
12266
12348
|
alias_method :free_trial?, :free_trial
|
|
12267
12349
|
|
|
12350
|
+
# Output only. Whether the license config is for Gemini bundle.
|
|
12351
|
+
# Corresponds to the JSON property `geminiBundle`
|
|
12352
|
+
# @return [Boolean]
|
|
12353
|
+
attr_accessor :gemini_bundle
|
|
12354
|
+
alias_method :gemini_bundle?, :gemini_bundle
|
|
12355
|
+
|
|
12268
12356
|
# Required. Number of licenses purchased.
|
|
12269
12357
|
# Corresponds to the JSON property `licenseCount`
|
|
12270
12358
|
# @return [Fixnum]
|
|
@@ -12314,6 +12402,7 @@ module Google
|
|
|
12314
12402
|
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
|
12315
12403
|
@end_date = args[:end_date] if args.key?(:end_date)
|
|
12316
12404
|
@free_trial = args[:free_trial] if args.key?(:free_trial)
|
|
12405
|
+
@gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
|
|
12317
12406
|
@license_count = args[:license_count] if args.key?(:license_count)
|
|
12318
12407
|
@name = args[:name] if args.key?(:name)
|
|
12319
12408
|
@start_date = args[:start_date] if args.key?(:start_date)
|
|
@@ -12575,6 +12664,13 @@ module Google
|
|
|
12575
12664
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
|
|
12576
12665
|
attr_accessor :model_armor_config
|
|
12577
12666
|
|
|
12667
|
+
# Optional. Whether to disable the notebook sharing feature for the project.
|
|
12668
|
+
# Default to false if not specified.
|
|
12669
|
+
# Corresponds to the JSON property `optOutNotebookSharing`
|
|
12670
|
+
# @return [Boolean]
|
|
12671
|
+
attr_accessor :opt_out_notebook_sharing
|
|
12672
|
+
alias_method :opt_out_notebook_sharing?, :opt_out_notebook_sharing
|
|
12673
|
+
|
|
12578
12674
|
def initialize(**args)
|
|
12579
12675
|
update!(**args)
|
|
12580
12676
|
end
|
|
@@ -12582,6 +12678,7 @@ module Google
|
|
|
12582
12678
|
# Update properties of this object
|
|
12583
12679
|
def update!(**args)
|
|
12584
12680
|
@model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
|
|
12681
|
+
@opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
|
|
12585
12682
|
end
|
|
12586
12683
|
end
|
|
12587
12684
|
|
|
@@ -14852,6 +14949,12 @@ module Google
|
|
|
14852
14949
|
attr_accessor :is_pinned
|
|
14853
14950
|
alias_method :is_pinned?, :is_pinned
|
|
14854
14951
|
|
|
14952
|
+
# Optional. The labels for the session. Can be set as filter in
|
|
14953
|
+
# ListSessionsRequest.
|
|
14954
|
+
# Corresponds to the JSON property `labels`
|
|
14955
|
+
# @return [Array<String>]
|
|
14956
|
+
attr_accessor :labels
|
|
14957
|
+
|
|
14855
14958
|
# Immutable. Fully qualified name `projects/`project`/locations/global/
|
|
14856
14959
|
# collections/`collection`/engines/`engine`/sessions/*`
|
|
14857
14960
|
# Corresponds to the JSON property `name`
|
|
@@ -14887,6 +14990,7 @@ module Google
|
|
|
14887
14990
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
14888
14991
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
14889
14992
|
@is_pinned = args[:is_pinned] if args.key?(:is_pinned)
|
|
14993
|
+
@labels = args[:labels] if args.key?(:labels)
|
|
14890
14994
|
@name = args[:name] if args.key?(:name)
|
|
14891
14995
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
14892
14996
|
@state = args[:state] if args.key?(:state)
|
|
@@ -16143,77 +16247,6 @@ module Google
|
|
|
16143
16247
|
end
|
|
16144
16248
|
end
|
|
16145
16249
|
|
|
16146
|
-
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
|
16147
|
-
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
|
16148
|
-
class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig
|
|
16149
|
-
include Google::Apis::Core::Hashable
|
|
16150
|
-
|
|
16151
|
-
# Optional. The enrollment state of each alert.
|
|
16152
|
-
# Corresponds to the JSON property `alertEnrollments`
|
|
16153
|
-
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment>]
|
|
16154
|
-
attr_accessor :alert_enrollments
|
|
16155
|
-
|
|
16156
|
-
# Immutable. The fully qualified resource name of the AlertPolicy.
|
|
16157
|
-
# Corresponds to the JSON property `alertPolicy`
|
|
16158
|
-
# @return [String]
|
|
16159
|
-
attr_accessor :alert_policy
|
|
16160
|
-
|
|
16161
|
-
# Optional. The contact details for each alert policy.
|
|
16162
|
-
# Corresponds to the JSON property `contactDetails`
|
|
16163
|
-
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaContactDetails>]
|
|
16164
|
-
attr_accessor :contact_details
|
|
16165
|
-
|
|
16166
|
-
# Optional. The language code used for notifications
|
|
16167
|
-
# Corresponds to the JSON property `languageCode`
|
|
16168
|
-
# @return [String]
|
|
16169
|
-
attr_accessor :language_code
|
|
16170
|
-
|
|
16171
|
-
def initialize(**args)
|
|
16172
|
-
update!(**args)
|
|
16173
|
-
end
|
|
16174
|
-
|
|
16175
|
-
# Update properties of this object
|
|
16176
|
-
def update!(**args)
|
|
16177
|
-
@alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
|
|
16178
|
-
@alert_policy = args[:alert_policy] if args.key?(:alert_policy)
|
|
16179
|
-
@contact_details = args[:contact_details] if args.key?(:contact_details)
|
|
16180
|
-
@language_code = args[:language_code] if args.key?(:language_code)
|
|
16181
|
-
end
|
|
16182
|
-
end
|
|
16183
|
-
|
|
16184
|
-
# The alert enrollment status.
|
|
16185
|
-
class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment
|
|
16186
|
-
include Google::Apis::Core::Hashable
|
|
16187
|
-
|
|
16188
|
-
# Immutable. The id of an alert.
|
|
16189
|
-
# Corresponds to the JSON property `alertId`
|
|
16190
|
-
# @return [String]
|
|
16191
|
-
attr_accessor :alert_id
|
|
16192
|
-
|
|
16193
|
-
# Required. The enrollment status of a customer.
|
|
16194
|
-
# Corresponds to the JSON property `enrollState`
|
|
16195
|
-
# @return [String]
|
|
16196
|
-
attr_accessor :enroll_state
|
|
16197
|
-
|
|
16198
|
-
# Optional. Parameters used to instantiate a notification. Used for
|
|
16199
|
-
# notifications that are triggered when registered. Not stored. * Gemini
|
|
16200
|
-
# Business welcome emails. * Gemini Business user invitation emails.
|
|
16201
|
-
# Corresponds to the JSON property `notificationParams`
|
|
16202
|
-
# @return [Hash<String,String>]
|
|
16203
|
-
attr_accessor :notification_params
|
|
16204
|
-
|
|
16205
|
-
def initialize(**args)
|
|
16206
|
-
update!(**args)
|
|
16207
|
-
end
|
|
16208
|
-
|
|
16209
|
-
# Update properties of this object
|
|
16210
|
-
def update!(**args)
|
|
16211
|
-
@alert_id = args[:alert_id] if args.key?(:alert_id)
|
|
16212
|
-
@enroll_state = args[:enroll_state] if args.key?(:enroll_state)
|
|
16213
|
-
@notification_params = args[:notification_params] if args.key?(:notification_params)
|
|
16214
|
-
end
|
|
16215
|
-
end
|
|
16216
|
-
|
|
16217
16250
|
# AlloyDB source import data from.
|
|
16218
16251
|
class GoogleCloudDiscoveryengineV1betaAlloyDbSource
|
|
16219
16252
|
include Google::Apis::Core::Hashable
|
|
@@ -18592,6 +18625,11 @@ module Google
|
|
|
18592
18625
|
class GoogleCloudDiscoveryengineV1betaAssistantGroundedContent
|
|
18593
18626
|
include Google::Apis::Core::Hashable
|
|
18594
18627
|
|
|
18628
|
+
# A collection of source attributions for a piece of content.
|
|
18629
|
+
# Corresponds to the JSON property `citationMetadata`
|
|
18630
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCitationMetadata]
|
|
18631
|
+
attr_accessor :citation_metadata
|
|
18632
|
+
|
|
18595
18633
|
# Multi-modal content.
|
|
18596
18634
|
# Corresponds to the JSON property `content`
|
|
18597
18635
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistantContent]
|
|
@@ -18608,6 +18646,7 @@ module Google
|
|
|
18608
18646
|
|
|
18609
18647
|
# Update properties of this object
|
|
18610
18648
|
def update!(**args)
|
|
18649
|
+
@citation_metadata = args[:citation_metadata] if args.key?(:citation_metadata)
|
|
18611
18650
|
@content = args[:content] if args.key?(:content)
|
|
18612
18651
|
@text_grounding_metadata = args[:text_grounding_metadata] if args.key?(:text_grounding_metadata)
|
|
18613
18652
|
end
|
|
@@ -19763,6 +19802,81 @@ module Google
|
|
|
19763
19802
|
end
|
|
19764
19803
|
end
|
|
19765
19804
|
|
|
19805
|
+
# Source attributions for content.
|
|
19806
|
+
class GoogleCloudDiscoveryengineV1betaCitation
|
|
19807
|
+
include Google::Apis::Core::Hashable
|
|
19808
|
+
|
|
19809
|
+
# Output only. End index into the content.
|
|
19810
|
+
# Corresponds to the JSON property `endIndex`
|
|
19811
|
+
# @return [Fixnum]
|
|
19812
|
+
attr_accessor :end_index
|
|
19813
|
+
|
|
19814
|
+
# Output only. License of the attribution.
|
|
19815
|
+
# Corresponds to the JSON property `license`
|
|
19816
|
+
# @return [String]
|
|
19817
|
+
attr_accessor :license
|
|
19818
|
+
|
|
19819
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
|
19820
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
|
19821
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
19822
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
|
19823
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
|
19824
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
|
19825
|
+
# example, a credit card expiration date). Related types: * google.type.
|
|
19826
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
|
19827
|
+
# Corresponds to the JSON property `publicationDate`
|
|
19828
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleTypeDate]
|
|
19829
|
+
attr_accessor :publication_date
|
|
19830
|
+
|
|
19831
|
+
# Output only. Start index into the content.
|
|
19832
|
+
# Corresponds to the JSON property `startIndex`
|
|
19833
|
+
# @return [Fixnum]
|
|
19834
|
+
attr_accessor :start_index
|
|
19835
|
+
|
|
19836
|
+
# Output only. Title of the attribution.
|
|
19837
|
+
# Corresponds to the JSON property `title`
|
|
19838
|
+
# @return [String]
|
|
19839
|
+
attr_accessor :title
|
|
19840
|
+
|
|
19841
|
+
# Output only. Url reference of the attribution.
|
|
19842
|
+
# Corresponds to the JSON property `uri`
|
|
19843
|
+
# @return [String]
|
|
19844
|
+
attr_accessor :uri
|
|
19845
|
+
|
|
19846
|
+
def initialize(**args)
|
|
19847
|
+
update!(**args)
|
|
19848
|
+
end
|
|
19849
|
+
|
|
19850
|
+
# Update properties of this object
|
|
19851
|
+
def update!(**args)
|
|
19852
|
+
@end_index = args[:end_index] if args.key?(:end_index)
|
|
19853
|
+
@license = args[:license] if args.key?(:license)
|
|
19854
|
+
@publication_date = args[:publication_date] if args.key?(:publication_date)
|
|
19855
|
+
@start_index = args[:start_index] if args.key?(:start_index)
|
|
19856
|
+
@title = args[:title] if args.key?(:title)
|
|
19857
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
19858
|
+
end
|
|
19859
|
+
end
|
|
19860
|
+
|
|
19861
|
+
# A collection of source attributions for a piece of content.
|
|
19862
|
+
class GoogleCloudDiscoveryengineV1betaCitationMetadata
|
|
19863
|
+
include Google::Apis::Core::Hashable
|
|
19864
|
+
|
|
19865
|
+
# Output only. List of citations.
|
|
19866
|
+
# Corresponds to the JSON property `citations`
|
|
19867
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCitation>]
|
|
19868
|
+
attr_accessor :citations
|
|
19869
|
+
|
|
19870
|
+
def initialize(**args)
|
|
19871
|
+
update!(**args)
|
|
19872
|
+
end
|
|
19873
|
+
|
|
19874
|
+
# Update properties of this object
|
|
19875
|
+
def update!(**args)
|
|
19876
|
+
@citations = args[:citations] if args.key?(:citations)
|
|
19877
|
+
end
|
|
19878
|
+
end
|
|
19879
|
+
|
|
19766
19880
|
# Cloud SQL source import data from.
|
|
19767
19881
|
class GoogleCloudDiscoveryengineV1betaCloudSqlSource
|
|
19768
19882
|
include Google::Apis::Core::Hashable
|
|
@@ -20118,27 +20232,6 @@ module Google
|
|
|
20118
20232
|
end
|
|
20119
20233
|
end
|
|
20120
20234
|
|
|
20121
|
-
# The contact info stored in resource level. If both project level and resource
|
|
20122
|
-
# level is populated, the resource level contact info will override the project
|
|
20123
|
-
# level contact info.
|
|
20124
|
-
class GoogleCloudDiscoveryengineV1betaContactDetails
|
|
20125
|
-
include Google::Apis::Core::Hashable
|
|
20126
|
-
|
|
20127
|
-
# Optional. The email address of the contact.
|
|
20128
|
-
# Corresponds to the JSON property `emailAddress`
|
|
20129
|
-
# @return [String]
|
|
20130
|
-
attr_accessor :email_address
|
|
20131
|
-
|
|
20132
|
-
def initialize(**args)
|
|
20133
|
-
update!(**args)
|
|
20134
|
-
end
|
|
20135
|
-
|
|
20136
|
-
# Update properties of this object
|
|
20137
|
-
def update!(**args)
|
|
20138
|
-
@email_address = args[:email_address] if args.key?(:email_address)
|
|
20139
|
-
end
|
|
20140
|
-
end
|
|
20141
|
-
|
|
20142
20235
|
# Defines a conditioned behavior to employ during serving. Must be attached to a
|
|
20143
20236
|
# ServingConfig to be considered at serving time. Permitted actions dependent on
|
|
20144
20237
|
# `SolutionType`.
|
|
@@ -24007,12 +24100,6 @@ module Google
|
|
|
24007
24100
|
class GoogleCloudDiscoveryengineV1betaLicenseConfig
|
|
24008
24101
|
include Google::Apis::Core::Hashable
|
|
24009
24102
|
|
|
24010
|
-
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
|
24011
|
-
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
|
24012
|
-
# Corresponds to the JSON property `alertPolicyResourceConfig`
|
|
24013
|
-
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig]
|
|
24014
|
-
attr_accessor :alert_policy_resource_config
|
|
24015
|
-
|
|
24016
24103
|
# Optional. Whether the license config should be auto renewed when it reaches
|
|
24017
24104
|
# the end date.
|
|
24018
24105
|
# Corresponds to the JSON property `autoRenew`
|
|
@@ -24038,6 +24125,12 @@ module Google
|
|
|
24038
24125
|
attr_accessor :free_trial
|
|
24039
24126
|
alias_method :free_trial?, :free_trial
|
|
24040
24127
|
|
|
24128
|
+
# Output only. Whether the license config is for Gemini bundle.
|
|
24129
|
+
# Corresponds to the JSON property `geminiBundle`
|
|
24130
|
+
# @return [Boolean]
|
|
24131
|
+
attr_accessor :gemini_bundle
|
|
24132
|
+
alias_method :gemini_bundle?, :gemini_bundle
|
|
24133
|
+
|
|
24041
24134
|
# Required. Number of licenses purchased.
|
|
24042
24135
|
# Corresponds to the JSON property `licenseCount`
|
|
24043
24136
|
# @return [Fixnum]
|
|
@@ -24083,10 +24176,10 @@ module Google
|
|
|
24083
24176
|
|
|
24084
24177
|
# Update properties of this object
|
|
24085
24178
|
def update!(**args)
|
|
24086
|
-
@alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
|
|
24087
24179
|
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
|
24088
24180
|
@end_date = args[:end_date] if args.key?(:end_date)
|
|
24089
24181
|
@free_trial = args[:free_trial] if args.key?(:free_trial)
|
|
24182
|
+
@gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
|
|
24090
24183
|
@license_count = args[:license_count] if args.key?(:license_count)
|
|
24091
24184
|
@name = args[:name] if args.key?(:name)
|
|
24092
24185
|
@start_date = args[:start_date] if args.key?(:start_date)
|
|
@@ -24953,6 +25046,13 @@ module Google
|
|
|
24953
25046
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
|
|
24954
25047
|
attr_accessor :model_armor_config
|
|
24955
25048
|
|
|
25049
|
+
# Optional. Whether to disable the notebook sharing feature for the project.
|
|
25050
|
+
# Default to false if not specified.
|
|
25051
|
+
# Corresponds to the JSON property `optOutNotebookSharing`
|
|
25052
|
+
# @return [Boolean]
|
|
25053
|
+
attr_accessor :opt_out_notebook_sharing
|
|
25054
|
+
alias_method :opt_out_notebook_sharing?, :opt_out_notebook_sharing
|
|
25055
|
+
|
|
24956
25056
|
def initialize(**args)
|
|
24957
25057
|
update!(**args)
|
|
24958
25058
|
end
|
|
@@ -24960,6 +25060,7 @@ module Google
|
|
|
24960
25060
|
# Update properties of this object
|
|
24961
25061
|
def update!(**args)
|
|
24962
25062
|
@model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
|
|
25063
|
+
@opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
|
|
24963
25064
|
end
|
|
24964
25065
|
end
|
|
24965
25066
|
|
|
@@ -29208,6 +29309,12 @@ module Google
|
|
|
29208
29309
|
attr_accessor :is_pinned
|
|
29209
29310
|
alias_method :is_pinned?, :is_pinned
|
|
29210
29311
|
|
|
29312
|
+
# Optional. The labels for the session. Can be set as filter in
|
|
29313
|
+
# ListSessionsRequest.
|
|
29314
|
+
# Corresponds to the JSON property `labels`
|
|
29315
|
+
# @return [Array<String>]
|
|
29316
|
+
attr_accessor :labels
|
|
29317
|
+
|
|
29211
29318
|
# Immutable. Fully qualified name `projects/`project`/locations/global/
|
|
29212
29319
|
# collections/`collection`/engines/`engine`/sessions/*`
|
|
29213
29320
|
# Corresponds to the JSON property `name`
|
|
@@ -29243,6 +29350,7 @@ module Google
|
|
|
29243
29350
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
29244
29351
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
29245
29352
|
@is_pinned = args[:is_pinned] if args.key?(:is_pinned)
|
|
29353
|
+
@labels = args[:labels] if args.key?(:labels)
|
|
29246
29354
|
@name = args[:name] if args.key?(:name)
|
|
29247
29355
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
29248
29356
|
@state = args[:state] if args.key?(:state)
|
|
@@ -30623,6 +30731,62 @@ module Google
|
|
|
30623
30731
|
end
|
|
30624
30732
|
end
|
|
30625
30733
|
|
|
30734
|
+
# Configures metadata that is used for End User entities.
|
|
30735
|
+
class GoogleCloudDiscoveryengineV1betaUserStore
|
|
30736
|
+
include Google::Apis::Core::Hashable
|
|
30737
|
+
|
|
30738
|
+
# Optional. The default subscription LicenseConfig for the UserStore, if
|
|
30739
|
+
# UserStore.enable_license_auto_register is true, new users will automatically
|
|
30740
|
+
# register under the default subscription. If default LicenseConfig doesn't have
|
|
30741
|
+
# remaining license seats left, new users will not be assigned with license and
|
|
30742
|
+
# will be blocked for Vertex AI Search features. This is used if `
|
|
30743
|
+
# license_assignment_tier_rules` is not configured.
|
|
30744
|
+
# Corresponds to the JSON property `defaultLicenseConfig`
|
|
30745
|
+
# @return [String]
|
|
30746
|
+
attr_accessor :default_license_config
|
|
30747
|
+
|
|
30748
|
+
# The display name of the User Store.
|
|
30749
|
+
# Corresponds to the JSON property `displayName`
|
|
30750
|
+
# @return [String]
|
|
30751
|
+
attr_accessor :display_name
|
|
30752
|
+
|
|
30753
|
+
# Optional. Whether to enable license auto update for users in this User Store.
|
|
30754
|
+
# If true, users with expired licenses will automatically be updated to use the
|
|
30755
|
+
# default license config as long as the default license config has seats left.
|
|
30756
|
+
# Corresponds to the JSON property `enableExpiredLicenseAutoUpdate`
|
|
30757
|
+
# @return [Boolean]
|
|
30758
|
+
attr_accessor :enable_expired_license_auto_update
|
|
30759
|
+
alias_method :enable_expired_license_auto_update?, :enable_expired_license_auto_update
|
|
30760
|
+
|
|
30761
|
+
# Optional. Whether to enable license auto register for users in this User Store.
|
|
30762
|
+
# If true, new users will automatically register under the default license
|
|
30763
|
+
# config as long as the default license config has seats left.
|
|
30764
|
+
# Corresponds to the JSON property `enableLicenseAutoRegister`
|
|
30765
|
+
# @return [Boolean]
|
|
30766
|
+
attr_accessor :enable_license_auto_register
|
|
30767
|
+
alias_method :enable_license_auto_register?, :enable_license_auto_register
|
|
30768
|
+
|
|
30769
|
+
# Immutable. The full resource name of the User Store, in the format of `
|
|
30770
|
+
# projects/`project`/locations/`location`/userStores/`user_store``. This field
|
|
30771
|
+
# must be a UTF-8 encoded string with a length limit of 1024 characters.
|
|
30772
|
+
# Corresponds to the JSON property `name`
|
|
30773
|
+
# @return [String]
|
|
30774
|
+
attr_accessor :name
|
|
30775
|
+
|
|
30776
|
+
def initialize(**args)
|
|
30777
|
+
update!(**args)
|
|
30778
|
+
end
|
|
30779
|
+
|
|
30780
|
+
# Update properties of this object
|
|
30781
|
+
def update!(**args)
|
|
30782
|
+
@default_license_config = args[:default_license_config] if args.key?(:default_license_config)
|
|
30783
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
30784
|
+
@enable_expired_license_auto_update = args[:enable_expired_license_auto_update] if args.key?(:enable_expired_license_auto_update)
|
|
30785
|
+
@enable_license_auto_register = args[:enable_license_auto_register] if args.key?(:enable_license_auto_register)
|
|
30786
|
+
@name = args[:name] if args.key?(:name)
|
|
30787
|
+
end
|
|
30788
|
+
end
|
|
30789
|
+
|
|
30626
30790
|
# Config to store data store type configuration for workspace data
|
|
30627
30791
|
class GoogleCloudDiscoveryengineV1betaWorkspaceConfig
|
|
30628
30792
|
include Google::Apis::Core::Hashable
|