google-apis-discoveryengine_v1alpha 0.77.0 → 0.79.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 +776 -49
- data/lib/google/apis/discoveryengine_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1alpha/representations.rb +273 -0
- data/lib/google/apis/discoveryengine_v1alpha/service.rb +402 -18
- metadata +2 -2
|
@@ -1677,12 +1677,7 @@ module Google
|
|
|
1677
1677
|
class GoogleCloudDiscoveryengineV1ActionConfig
|
|
1678
1678
|
include Google::Apis::Core::Hashable
|
|
1679
1679
|
|
|
1680
|
-
#
|
|
1681
|
-
# Required parameters for sources that support OAUTH, i.e. `gmail`, `
|
|
1682
|
-
# google_calendar`, `jira`, `workday`, `salesforce`, `confluence`: * Key: `
|
|
1683
|
-
# client_id` * Value: type STRING. The client ID for the service provider to
|
|
1684
|
-
# identify your application. * Key: `client_secret` * Value:type STRING. The
|
|
1685
|
-
# client secret generated by the application's authorization server.
|
|
1680
|
+
# Optional. Action parameters in structured json format.
|
|
1686
1681
|
# Corresponds to the JSON property `actionParams`
|
|
1687
1682
|
# @return [Hash<String,Object>]
|
|
1688
1683
|
attr_accessor :action_params
|
|
@@ -1694,6 +1689,11 @@ module Google
|
|
|
1694
1689
|
attr_accessor :is_action_configured
|
|
1695
1690
|
alias_method :is_action_configured?, :is_action_configured
|
|
1696
1691
|
|
|
1692
|
+
# Optional. Action parameters in json string format.
|
|
1693
|
+
# Corresponds to the JSON property `jsonActionParams`
|
|
1694
|
+
# @return [String]
|
|
1695
|
+
attr_accessor :json_action_params
|
|
1696
|
+
|
|
1697
1697
|
# Optional. The Service Directory resource name (projects/*/locations/*/
|
|
1698
1698
|
# namespaces/*/services/*) representing a VPC network endpoint used to connect
|
|
1699
1699
|
# to the data source's `instance_uri`, defined in DataConnector.params. Required
|
|
@@ -1717,6 +1717,7 @@ module Google
|
|
|
1717
1717
|
def update!(**args)
|
|
1718
1718
|
@action_params = args[:action_params] if args.key?(:action_params)
|
|
1719
1719
|
@is_action_configured = args[:is_action_configured] if args.key?(:is_action_configured)
|
|
1720
|
+
@json_action_params = args[:json_action_params] if args.key?(:json_action_params)
|
|
1720
1721
|
@service_name = args[:service_name] if args.key?(:service_name)
|
|
1721
1722
|
@use_static_secrets = args[:use_static_secrets] if args.key?(:use_static_secrets)
|
|
1722
1723
|
end
|
|
@@ -1799,6 +1800,77 @@ module Google
|
|
|
1799
1800
|
end
|
|
1800
1801
|
end
|
|
1801
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
|
+
|
|
1802
1874
|
# The specification for answer generation.
|
|
1803
1875
|
class GoogleCloudDiscoveryengineV1AnswerGenerationSpec
|
|
1804
1876
|
include Google::Apis::Core::Hashable
|
|
@@ -2129,6 +2201,11 @@ module Google
|
|
|
2129
2201
|
class GoogleCloudDiscoveryengineV1BapConfig
|
|
2130
2202
|
include Google::Apis::Core::Hashable
|
|
2131
2203
|
|
|
2204
|
+
# Optional. The actions enabled on the associated BAP connection.
|
|
2205
|
+
# Corresponds to the JSON property `enabledActions`
|
|
2206
|
+
# @return [Array<String>]
|
|
2207
|
+
attr_accessor :enabled_actions
|
|
2208
|
+
|
|
2132
2209
|
# Required. The supported connector modes for the associated BAP connection.
|
|
2133
2210
|
# Corresponds to the JSON property `supportedConnectorModes`
|
|
2134
2211
|
# @return [Array<String>]
|
|
@@ -2140,6 +2217,7 @@ module Google
|
|
|
2140
2217
|
|
|
2141
2218
|
# Update properties of this object
|
|
2142
2219
|
def update!(**args)
|
|
2220
|
+
@enabled_actions = args[:enabled_actions] if args.key?(:enabled_actions)
|
|
2143
2221
|
@supported_connector_modes = args[:supported_connector_modes] if args.key?(:supported_connector_modes)
|
|
2144
2222
|
end
|
|
2145
2223
|
end
|
|
@@ -2446,6 +2524,27 @@ module Google
|
|
|
2446
2524
|
end
|
|
2447
2525
|
end
|
|
2448
2526
|
|
|
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
|
+
|
|
2449
2548
|
# Defines a conditioned behavior to employ during serving. Must be attached to a
|
|
2450
2549
|
# ServingConfig to be considered at serving time. Permitted actions dependent on
|
|
2451
2550
|
# `SolutionType`.
|
|
@@ -3235,6 +3334,12 @@ module Google
|
|
|
3235
3334
|
# @return [Hash<String,Object>]
|
|
3236
3335
|
attr_accessor :auth_params
|
|
3237
3336
|
|
|
3337
|
+
# Optional. Any authentication parameters specific to EUA connectors in json
|
|
3338
|
+
# string format.
|
|
3339
|
+
# Corresponds to the JSON property `jsonAuthParams`
|
|
3340
|
+
# @return [String]
|
|
3341
|
+
attr_accessor :json_auth_params
|
|
3342
|
+
|
|
3238
3343
|
# Tenant information for a connector source. This includes some of the same
|
|
3239
3344
|
# information stored in the Credential message, but is limited to only what is
|
|
3240
3345
|
# needed to provide a list of accessible tenants to the user.
|
|
@@ -3250,6 +3355,7 @@ module Google
|
|
|
3250
3355
|
def update!(**args)
|
|
3251
3356
|
@additional_params = args[:additional_params] if args.key?(:additional_params)
|
|
3252
3357
|
@auth_params = args[:auth_params] if args.key?(:auth_params)
|
|
3358
|
+
@json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
|
|
3253
3359
|
@tenant = args[:tenant] if args.key?(:tenant)
|
|
3254
3360
|
end
|
|
3255
3361
|
end
|
|
@@ -3264,11 +3370,17 @@ module Google
|
|
|
3264
3370
|
# @return [Hash<String,Object>]
|
|
3265
3371
|
attr_accessor :additional_params
|
|
3266
3372
|
|
|
3267
|
-
# Optional. Any authentication parameters specific to FEDERATED.
|
|
3373
|
+
# Optional. Any authentication parameters specific to FEDERATED connectors.
|
|
3268
3374
|
# Corresponds to the JSON property `authParams`
|
|
3269
3375
|
# @return [Hash<String,Object>]
|
|
3270
3376
|
attr_accessor :auth_params
|
|
3271
3377
|
|
|
3378
|
+
# Optional. Any authentication parameters specific to FEDERATED connectors in
|
|
3379
|
+
# json string format.
|
|
3380
|
+
# Corresponds to the JSON property `jsonAuthParams`
|
|
3381
|
+
# @return [String]
|
|
3382
|
+
attr_accessor :json_auth_params
|
|
3383
|
+
|
|
3272
3384
|
def initialize(**args)
|
|
3273
3385
|
update!(**args)
|
|
3274
3386
|
end
|
|
@@ -3277,6 +3389,7 @@ module Google
|
|
|
3277
3389
|
def update!(**args)
|
|
3278
3390
|
@additional_params = args[:additional_params] if args.key?(:additional_params)
|
|
3279
3391
|
@auth_params = args[:auth_params] if args.key?(:auth_params)
|
|
3392
|
+
@json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
|
|
3280
3393
|
end
|
|
3281
3394
|
end
|
|
3282
3395
|
|
|
@@ -3441,6 +3554,11 @@ module Google
|
|
|
3441
3554
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1CmekConfig]
|
|
3442
3555
|
attr_accessor :cmek_config
|
|
3443
3556
|
|
|
3557
|
+
# Optional. Configuration for configurable billing approach. See
|
|
3558
|
+
# Corresponds to the JSON property `configurableBillingApproach`
|
|
3559
|
+
# @return [String]
|
|
3560
|
+
attr_accessor :configurable_billing_approach
|
|
3561
|
+
|
|
3444
3562
|
# Immutable. The content config of the data store. If this field is unset, the
|
|
3445
3563
|
# server behavior defaults to ContentConfig.NO_CONTENT.
|
|
3446
3564
|
# Corresponds to the JSON property `contentConfig`
|
|
@@ -3544,6 +3662,7 @@ module Google
|
|
|
3544
3662
|
@advanced_site_search_config = args[:advanced_site_search_config] if args.key?(:advanced_site_search_config)
|
|
3545
3663
|
@billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
|
|
3546
3664
|
@cmek_config = args[:cmek_config] if args.key?(:cmek_config)
|
|
3665
|
+
@configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
|
|
3547
3666
|
@content_config = args[:content_config] if args.key?(:content_config)
|
|
3548
3667
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3549
3668
|
@default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
|
|
@@ -4255,8 +4374,7 @@ module Google
|
|
|
4255
4374
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineCommonConfig]
|
|
4256
4375
|
attr_accessor :common_config
|
|
4257
4376
|
|
|
4258
|
-
# Optional. Configuration for configurable billing approach.
|
|
4259
|
-
# repricing-billing-dd for more details.
|
|
4377
|
+
# Optional. Configuration for configurable billing approach.
|
|
4260
4378
|
# Corresponds to the JSON property `configurableBillingApproach`
|
|
4261
4379
|
# @return [String]
|
|
4262
4380
|
attr_accessor :configurable_billing_approach
|
|
@@ -4293,8 +4411,9 @@ module Google
|
|
|
4293
4411
|
# settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
|
|
4294
4412
|
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
|
4295
4413
|
# org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
|
|
4296
|
-
# personalization-memory` * `disable-
|
|
4297
|
-
# generation`
|
|
4414
|
+
# personalization-memory` * `disable-agent-sharing` * `disable-image-generation`
|
|
4415
|
+
# * `disable-video-generation` * `disable-onedrive-upload` * `disable-talk-to-
|
|
4416
|
+
# content` * `disable-google-drive-upload`
|
|
4298
4417
|
# Corresponds to the JSON property `features`
|
|
4299
4418
|
# @return [Hash<String,String>]
|
|
4300
4419
|
attr_accessor :features
|
|
@@ -5136,6 +5255,99 @@ module Google
|
|
|
5136
5255
|
end
|
|
5137
5256
|
end
|
|
5138
5257
|
|
|
5258
|
+
# Information about users' licenses.
|
|
5259
|
+
class GoogleCloudDiscoveryengineV1LicenseConfig
|
|
5260
|
+
include Google::Apis::Core::Hashable
|
|
5261
|
+
|
|
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
|
+
# Optional. Whether the license config should be auto renewed when it reaches
|
|
5269
|
+
# the end date.
|
|
5270
|
+
# Corresponds to the JSON property `autoRenew`
|
|
5271
|
+
# @return [Boolean]
|
|
5272
|
+
attr_accessor :auto_renew
|
|
5273
|
+
alias_method :auto_renew?, :auto_renew
|
|
5274
|
+
|
|
5275
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
|
5276
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
|
5277
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
5278
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
|
5279
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
|
5280
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
|
5281
|
+
# example, a credit card expiration date). Related types: * google.type.
|
|
5282
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
|
5283
|
+
# Corresponds to the JSON property `endDate`
|
|
5284
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate]
|
|
5285
|
+
attr_accessor :end_date
|
|
5286
|
+
|
|
5287
|
+
# Optional. Whether the license config is for free trial.
|
|
5288
|
+
# Corresponds to the JSON property `freeTrial`
|
|
5289
|
+
# @return [Boolean]
|
|
5290
|
+
attr_accessor :free_trial
|
|
5291
|
+
alias_method :free_trial?, :free_trial
|
|
5292
|
+
|
|
5293
|
+
# Required. Number of licenses purchased.
|
|
5294
|
+
# Corresponds to the JSON property `licenseCount`
|
|
5295
|
+
# @return [Fixnum]
|
|
5296
|
+
attr_accessor :license_count
|
|
5297
|
+
|
|
5298
|
+
# Immutable. Identifier. The fully qualified resource name of the license config.
|
|
5299
|
+
# Format: `projects/`project`/locations/`location`/licenseConfigs/`
|
|
5300
|
+
# license_config``
|
|
5301
|
+
# Corresponds to the JSON property `name`
|
|
5302
|
+
# @return [String]
|
|
5303
|
+
attr_accessor :name
|
|
5304
|
+
|
|
5305
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
|
5306
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
|
5307
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
5308
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
|
5309
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
|
5310
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
|
5311
|
+
# example, a credit card expiration date). Related types: * google.type.
|
|
5312
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
|
5313
|
+
# Corresponds to the JSON property `startDate`
|
|
5314
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate]
|
|
5315
|
+
attr_accessor :start_date
|
|
5316
|
+
|
|
5317
|
+
# Output only. The state of the license config.
|
|
5318
|
+
# Corresponds to the JSON property `state`
|
|
5319
|
+
# @return [String]
|
|
5320
|
+
attr_accessor :state
|
|
5321
|
+
|
|
5322
|
+
# Required. Subscription term.
|
|
5323
|
+
# Corresponds to the JSON property `subscriptionTerm`
|
|
5324
|
+
# @return [String]
|
|
5325
|
+
attr_accessor :subscription_term
|
|
5326
|
+
|
|
5327
|
+
# Required. Subscription tier information for the license config.
|
|
5328
|
+
# Corresponds to the JSON property `subscriptionTier`
|
|
5329
|
+
# @return [String]
|
|
5330
|
+
attr_accessor :subscription_tier
|
|
5331
|
+
|
|
5332
|
+
def initialize(**args)
|
|
5333
|
+
update!(**args)
|
|
5334
|
+
end
|
|
5335
|
+
|
|
5336
|
+
# Update properties of this object
|
|
5337
|
+
def update!(**args)
|
|
5338
|
+
@alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
|
|
5339
|
+
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
|
5340
|
+
@end_date = args[:end_date] if args.key?(:end_date)
|
|
5341
|
+
@free_trial = args[:free_trial] if args.key?(:free_trial)
|
|
5342
|
+
@license_count = args[:license_count] if args.key?(:license_count)
|
|
5343
|
+
@name = args[:name] if args.key?(:name)
|
|
5344
|
+
@start_date = args[:start_date] if args.key?(:start_date)
|
|
5345
|
+
@state = args[:state] if args.key?(:state)
|
|
5346
|
+
@subscription_term = args[:subscription_term] if args.key?(:subscription_term)
|
|
5347
|
+
@subscription_tier = args[:subscription_tier] if args.key?(:subscription_tier)
|
|
5348
|
+
end
|
|
5349
|
+
end
|
|
5350
|
+
|
|
5139
5351
|
# Metadata and configurations for a Google Cloud project in the service.
|
|
5140
5352
|
class GoogleCloudDiscoveryengineV1Project
|
|
5141
5353
|
include Google::Apis::Core::Hashable
|
|
@@ -6775,12 +6987,7 @@ module Google
|
|
|
6775
6987
|
class GoogleCloudDiscoveryengineV1alphaActionConfig
|
|
6776
6988
|
include Google::Apis::Core::Hashable
|
|
6777
6989
|
|
|
6778
|
-
#
|
|
6779
|
-
# Required parameters for sources that support OAUTH, i.e. `gmail`, `
|
|
6780
|
-
# google_calendar`, `jira`, `workday`, `salesforce`, `confluence`: * Key: `
|
|
6781
|
-
# client_id` * Value: type STRING. The client ID for the service provider to
|
|
6782
|
-
# identify your application. * Key: `client_secret` * Value:type STRING. The
|
|
6783
|
-
# client secret generated by the application's authorization server.
|
|
6990
|
+
# Optional. Action parameters in structured json format.
|
|
6784
6991
|
# Corresponds to the JSON property `actionParams`
|
|
6785
6992
|
# @return [Hash<String,Object>]
|
|
6786
6993
|
attr_accessor :action_params
|
|
@@ -6792,6 +6999,11 @@ module Google
|
|
|
6792
6999
|
attr_accessor :is_action_configured
|
|
6793
7000
|
alias_method :is_action_configured?, :is_action_configured
|
|
6794
7001
|
|
|
7002
|
+
# Optional. Action parameters in json string format.
|
|
7003
|
+
# Corresponds to the JSON property `jsonActionParams`
|
|
7004
|
+
# @return [String]
|
|
7005
|
+
attr_accessor :json_action_params
|
|
7006
|
+
|
|
6795
7007
|
# Optional. The Service Directory resource name (projects/*/locations/*/
|
|
6796
7008
|
# namespaces/*/services/*) representing a VPC network endpoint used to connect
|
|
6797
7009
|
# to the data source's `instance_uri`, defined in DataConnector.params. Required
|
|
@@ -6815,6 +7027,7 @@ module Google
|
|
|
6815
7027
|
def update!(**args)
|
|
6816
7028
|
@action_params = args[:action_params] if args.key?(:action_params)
|
|
6817
7029
|
@is_action_configured = args[:is_action_configured] if args.key?(:is_action_configured)
|
|
7030
|
+
@json_action_params = args[:json_action_params] if args.key?(:json_action_params)
|
|
6818
7031
|
@service_name = args[:service_name] if args.key?(:service_name)
|
|
6819
7032
|
@use_static_secrets = args[:use_static_secrets] if args.key?(:use_static_secrets)
|
|
6820
7033
|
end
|
|
@@ -7302,6 +7515,77 @@ module Google
|
|
|
7302
7515
|
end
|
|
7303
7516
|
end
|
|
7304
7517
|
|
|
7518
|
+
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
|
7519
|
+
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
|
7520
|
+
class GoogleCloudDiscoveryengineV1alphaAlertPolicyResourceConfig
|
|
7521
|
+
include Google::Apis::Core::Hashable
|
|
7522
|
+
|
|
7523
|
+
# Optional. The enrollment state of each alert.
|
|
7524
|
+
# Corresponds to the JSON property `alertEnrollments`
|
|
7525
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAlertPolicyResourceConfigAlertEnrollment>]
|
|
7526
|
+
attr_accessor :alert_enrollments
|
|
7527
|
+
|
|
7528
|
+
# Immutable. The fully qualified resource name of the AlertPolicy.
|
|
7529
|
+
# Corresponds to the JSON property `alertPolicy`
|
|
7530
|
+
# @return [String]
|
|
7531
|
+
attr_accessor :alert_policy
|
|
7532
|
+
|
|
7533
|
+
# Optional. The contact details for each alert policy.
|
|
7534
|
+
# Corresponds to the JSON property `contactDetails`
|
|
7535
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaContactDetails>]
|
|
7536
|
+
attr_accessor :contact_details
|
|
7537
|
+
|
|
7538
|
+
# Optional. The language code used for notifications
|
|
7539
|
+
# Corresponds to the JSON property `languageCode`
|
|
7540
|
+
# @return [String]
|
|
7541
|
+
attr_accessor :language_code
|
|
7542
|
+
|
|
7543
|
+
def initialize(**args)
|
|
7544
|
+
update!(**args)
|
|
7545
|
+
end
|
|
7546
|
+
|
|
7547
|
+
# Update properties of this object
|
|
7548
|
+
def update!(**args)
|
|
7549
|
+
@alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
|
|
7550
|
+
@alert_policy = args[:alert_policy] if args.key?(:alert_policy)
|
|
7551
|
+
@contact_details = args[:contact_details] if args.key?(:contact_details)
|
|
7552
|
+
@language_code = args[:language_code] if args.key?(:language_code)
|
|
7553
|
+
end
|
|
7554
|
+
end
|
|
7555
|
+
|
|
7556
|
+
# The alert enrollment status.
|
|
7557
|
+
class GoogleCloudDiscoveryengineV1alphaAlertPolicyResourceConfigAlertEnrollment
|
|
7558
|
+
include Google::Apis::Core::Hashable
|
|
7559
|
+
|
|
7560
|
+
# Immutable. The id of an alert.
|
|
7561
|
+
# Corresponds to the JSON property `alertId`
|
|
7562
|
+
# @return [String]
|
|
7563
|
+
attr_accessor :alert_id
|
|
7564
|
+
|
|
7565
|
+
# Required. The enrollment status of a customer.
|
|
7566
|
+
# Corresponds to the JSON property `enrollState`
|
|
7567
|
+
# @return [String]
|
|
7568
|
+
attr_accessor :enroll_state
|
|
7569
|
+
|
|
7570
|
+
# Optional. Parameters used to instantiate a notification. Used for
|
|
7571
|
+
# notifications that are triggered when registered. Not stored. * Gemini
|
|
7572
|
+
# Business welcome emails. * Gemini Business user invitation emails.
|
|
7573
|
+
# Corresponds to the JSON property `notificationParams`
|
|
7574
|
+
# @return [Hash<String,String>]
|
|
7575
|
+
attr_accessor :notification_params
|
|
7576
|
+
|
|
7577
|
+
def initialize(**args)
|
|
7578
|
+
update!(**args)
|
|
7579
|
+
end
|
|
7580
|
+
|
|
7581
|
+
# Update properties of this object
|
|
7582
|
+
def update!(**args)
|
|
7583
|
+
@alert_id = args[:alert_id] if args.key?(:alert_id)
|
|
7584
|
+
@enroll_state = args[:enroll_state] if args.key?(:enroll_state)
|
|
7585
|
+
@notification_params = args[:notification_params] if args.key?(:notification_params)
|
|
7586
|
+
end
|
|
7587
|
+
end
|
|
7588
|
+
|
|
7305
7589
|
# AlloyDB source import data from.
|
|
7306
7590
|
class GoogleCloudDiscoveryengineV1alphaAlloyDbSource
|
|
7307
7591
|
include Google::Apis::Core::Hashable
|
|
@@ -9292,6 +9576,15 @@ module Google
|
|
|
9292
9576
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAssistantGroundedContent]
|
|
9293
9577
|
attr_accessor :grounded_content
|
|
9294
9578
|
|
|
9579
|
+
# Output only. When set, uniquely identifies a reply within the `AssistAnswer`
|
|
9580
|
+
# resource. During an AssistantService.StreamAssist call, multiple `Reply`
|
|
9581
|
+
# messages with the same ID can occur within the response stream (across
|
|
9582
|
+
# multiple AssistantService.StreamAssistResponse messages). These represent
|
|
9583
|
+
# parts of a single `Reply` message in the final `AssistAnswer` resource.
|
|
9584
|
+
# Corresponds to the JSON property `replyId`
|
|
9585
|
+
# @return [String]
|
|
9586
|
+
attr_accessor :reply_id
|
|
9587
|
+
|
|
9295
9588
|
def initialize(**args)
|
|
9296
9589
|
update!(**args)
|
|
9297
9590
|
end
|
|
@@ -9299,6 +9592,7 @@ module Google
|
|
|
9299
9592
|
# Update properties of this object
|
|
9300
9593
|
def update!(**args)
|
|
9301
9594
|
@grounded_content = args[:grounded_content] if args.key?(:grounded_content)
|
|
9595
|
+
@reply_id = args[:reply_id] if args.key?(:reply_id)
|
|
9302
9596
|
end
|
|
9303
9597
|
end
|
|
9304
9598
|
|
|
@@ -9905,6 +10199,11 @@ module Google
|
|
|
9905
10199
|
class GoogleCloudDiscoveryengineV1alphaBapConfig
|
|
9906
10200
|
include Google::Apis::Core::Hashable
|
|
9907
10201
|
|
|
10202
|
+
# Optional. The actions enabled on the associated BAP connection.
|
|
10203
|
+
# Corresponds to the JSON property `enabledActions`
|
|
10204
|
+
# @return [Array<String>]
|
|
10205
|
+
attr_accessor :enabled_actions
|
|
10206
|
+
|
|
9908
10207
|
# Required. The supported connector modes for the associated BAP connection.
|
|
9909
10208
|
# Corresponds to the JSON property `supportedConnectorModes`
|
|
9910
10209
|
# @return [Array<String>]
|
|
@@ -9916,6 +10215,7 @@ module Google
|
|
|
9916
10215
|
|
|
9917
10216
|
# Update properties of this object
|
|
9918
10217
|
def update!(**args)
|
|
10218
|
+
@enabled_actions = args[:enabled_actions] if args.key?(:enabled_actions)
|
|
9919
10219
|
@supported_connector_modes = args[:supported_connector_modes] if args.key?(:supported_connector_modes)
|
|
9920
10220
|
end
|
|
9921
10221
|
end
|
|
@@ -10457,6 +10757,74 @@ module Google
|
|
|
10457
10757
|
end
|
|
10458
10758
|
end
|
|
10459
10759
|
|
|
10760
|
+
# A data branch that stores Documents.
|
|
10761
|
+
class GoogleCloudDiscoveryengineV1alphaBranch
|
|
10762
|
+
include Google::Apis::Core::Hashable
|
|
10763
|
+
|
|
10764
|
+
# Statistics describing a branch.
|
|
10765
|
+
# Corresponds to the JSON property `branchStats`
|
|
10766
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranchBranchStats]
|
|
10767
|
+
attr_accessor :branch_stats
|
|
10768
|
+
|
|
10769
|
+
# Output only. Human readable name of the branch to display in the UI.
|
|
10770
|
+
# Corresponds to the JSON property `displayName`
|
|
10771
|
+
# @return [String]
|
|
10772
|
+
attr_accessor :display_name
|
|
10773
|
+
|
|
10774
|
+
# Output only. Indicates whether this branch is set as the default branch of its
|
|
10775
|
+
# parent data store.
|
|
10776
|
+
# Corresponds to the JSON property `isDefault`
|
|
10777
|
+
# @return [Boolean]
|
|
10778
|
+
attr_accessor :is_default
|
|
10779
|
+
alias_method :is_default?, :is_default
|
|
10780
|
+
|
|
10781
|
+
# Output only. Timestamp of last import through DocumentService.ImportDocuments.
|
|
10782
|
+
# Empty value means no import has been made to this branch.
|
|
10783
|
+
# Corresponds to the JSON property `lastDocumentImportTime`
|
|
10784
|
+
# @return [String]
|
|
10785
|
+
attr_accessor :last_document_import_time
|
|
10786
|
+
|
|
10787
|
+
# Immutable. Full resource name of the branch, such as `projects/*/locations/
|
|
10788
|
+
# global/dataStores/data_store/branches/branch_id`.
|
|
10789
|
+
# Corresponds to the JSON property `name`
|
|
10790
|
+
# @return [String]
|
|
10791
|
+
attr_accessor :name
|
|
10792
|
+
|
|
10793
|
+
def initialize(**args)
|
|
10794
|
+
update!(**args)
|
|
10795
|
+
end
|
|
10796
|
+
|
|
10797
|
+
# Update properties of this object
|
|
10798
|
+
def update!(**args)
|
|
10799
|
+
@branch_stats = args[:branch_stats] if args.key?(:branch_stats)
|
|
10800
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
10801
|
+
@is_default = args[:is_default] if args.key?(:is_default)
|
|
10802
|
+
@last_document_import_time = args[:last_document_import_time] if args.key?(:last_document_import_time)
|
|
10803
|
+
@name = args[:name] if args.key?(:name)
|
|
10804
|
+
end
|
|
10805
|
+
end
|
|
10806
|
+
|
|
10807
|
+
# Statistics describing a branch.
|
|
10808
|
+
class GoogleCloudDiscoveryengineV1alphaBranchBranchStats
|
|
10809
|
+
include Google::Apis::Core::Hashable
|
|
10810
|
+
|
|
10811
|
+
# The number of documents in a given branch. The key is a group representing a
|
|
10812
|
+
# set of documents, and the value is the number of document in that group. Note:
|
|
10813
|
+
# keys in this map may change over time. Supported keys: ['all'].
|
|
10814
|
+
# Corresponds to the JSON property `documentCounts`
|
|
10815
|
+
# @return [Hash<String,Fixnum>]
|
|
10816
|
+
attr_accessor :document_counts
|
|
10817
|
+
|
|
10818
|
+
def initialize(**args)
|
|
10819
|
+
update!(**args)
|
|
10820
|
+
end
|
|
10821
|
+
|
|
10822
|
+
# Update properties of this object
|
|
10823
|
+
def update!(**args)
|
|
10824
|
+
@document_counts = args[:document_counts] if args.key?(:document_counts)
|
|
10825
|
+
end
|
|
10826
|
+
end
|
|
10827
|
+
|
|
10460
10828
|
# Request message for GroundedGenerationService.CheckGrounding method.
|
|
10461
10829
|
class GoogleCloudDiscoveryengineV1alphaCheckGroundingRequest
|
|
10462
10830
|
include Google::Apis::Core::Hashable
|
|
@@ -11646,6 +12014,27 @@ module Google
|
|
|
11646
12014
|
end
|
|
11647
12015
|
end
|
|
11648
12016
|
|
|
12017
|
+
# The contact info stored in resource level. If both project level and resource
|
|
12018
|
+
# level is populated, the resource level contact info will override the project
|
|
12019
|
+
# level contact info.
|
|
12020
|
+
class GoogleCloudDiscoveryengineV1alphaContactDetails
|
|
12021
|
+
include Google::Apis::Core::Hashable
|
|
12022
|
+
|
|
12023
|
+
# Optional. The email address of the contact.
|
|
12024
|
+
# Corresponds to the JSON property `emailAddress`
|
|
12025
|
+
# @return [String]
|
|
12026
|
+
attr_accessor :email_address
|
|
12027
|
+
|
|
12028
|
+
def initialize(**args)
|
|
12029
|
+
update!(**args)
|
|
12030
|
+
end
|
|
12031
|
+
|
|
12032
|
+
# Update properties of this object
|
|
12033
|
+
def update!(**args)
|
|
12034
|
+
@email_address = args[:email_address] if args.key?(:email_address)
|
|
12035
|
+
end
|
|
12036
|
+
end
|
|
12037
|
+
|
|
11649
12038
|
# Defines a conditioned behavior to employ during serving. Must be attached to a
|
|
11650
12039
|
# ServingConfig to be considered at serving time. Permitted actions dependent on
|
|
11651
12040
|
# `SolutionType`.
|
|
@@ -12847,6 +13236,12 @@ module Google
|
|
|
12847
13236
|
# @return [Hash<String,Object>]
|
|
12848
13237
|
attr_accessor :auth_params
|
|
12849
13238
|
|
|
13239
|
+
# Optional. Any authentication parameters specific to EUA connectors in json
|
|
13240
|
+
# string format.
|
|
13241
|
+
# Corresponds to the JSON property `jsonAuthParams`
|
|
13242
|
+
# @return [String]
|
|
13243
|
+
attr_accessor :json_auth_params
|
|
13244
|
+
|
|
12850
13245
|
# Tenant information for a connector source. This includes some of the same
|
|
12851
13246
|
# information stored in the Credential message, but is limited to only what is
|
|
12852
13247
|
# needed to provide a list of accessible tenants to the user.
|
|
@@ -12862,6 +13257,7 @@ module Google
|
|
|
12862
13257
|
def update!(**args)
|
|
12863
13258
|
@additional_params = args[:additional_params] if args.key?(:additional_params)
|
|
12864
13259
|
@auth_params = args[:auth_params] if args.key?(:auth_params)
|
|
13260
|
+
@json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
|
|
12865
13261
|
@tenant = args[:tenant] if args.key?(:tenant)
|
|
12866
13262
|
end
|
|
12867
13263
|
end
|
|
@@ -12876,11 +13272,17 @@ module Google
|
|
|
12876
13272
|
# @return [Hash<String,Object>]
|
|
12877
13273
|
attr_accessor :additional_params
|
|
12878
13274
|
|
|
12879
|
-
# Optional. Any authentication parameters specific to FEDERATED.
|
|
13275
|
+
# Optional. Any authentication parameters specific to FEDERATED connectors.
|
|
12880
13276
|
# Corresponds to the JSON property `authParams`
|
|
12881
13277
|
# @return [Hash<String,Object>]
|
|
12882
13278
|
attr_accessor :auth_params
|
|
12883
13279
|
|
|
13280
|
+
# Optional. Any authentication parameters specific to FEDERATED connectors in
|
|
13281
|
+
# json string format.
|
|
13282
|
+
# Corresponds to the JSON property `jsonAuthParams`
|
|
13283
|
+
# @return [String]
|
|
13284
|
+
attr_accessor :json_auth_params
|
|
13285
|
+
|
|
12884
13286
|
def initialize(**args)
|
|
12885
13287
|
update!(**args)
|
|
12886
13288
|
end
|
|
@@ -12889,6 +13291,7 @@ module Google
|
|
|
12889
13291
|
def update!(**args)
|
|
12890
13292
|
@additional_params = args[:additional_params] if args.key?(:additional_params)
|
|
12891
13293
|
@auth_params = args[:auth_params] if args.key?(:auth_params)
|
|
13294
|
+
@json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
|
|
12892
13295
|
end
|
|
12893
13296
|
end
|
|
12894
13297
|
|
|
@@ -13053,6 +13456,11 @@ module Google
|
|
|
13053
13456
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCmekConfig]
|
|
13054
13457
|
attr_accessor :cmek_config
|
|
13055
13458
|
|
|
13459
|
+
# Optional. Configuration for configurable billing approach. See
|
|
13460
|
+
# Corresponds to the JSON property `configurableBillingApproach`
|
|
13461
|
+
# @return [String]
|
|
13462
|
+
attr_accessor :configurable_billing_approach
|
|
13463
|
+
|
|
13056
13464
|
# Immutable. The content config of the data store. If this field is unset, the
|
|
13057
13465
|
# server behavior defaults to ContentConfig.NO_CONTENT.
|
|
13058
13466
|
# Corresponds to the JSON property `contentConfig`
|
|
@@ -13171,6 +13579,7 @@ module Google
|
|
|
13171
13579
|
@advanced_site_search_config = args[:advanced_site_search_config] if args.key?(:advanced_site_search_config)
|
|
13172
13580
|
@billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
|
|
13173
13581
|
@cmek_config = args[:cmek_config] if args.key?(:cmek_config)
|
|
13582
|
+
@configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
|
|
13174
13583
|
@content_config = args[:content_config] if args.key?(:content_config)
|
|
13175
13584
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
13176
13585
|
@default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
|
|
@@ -14302,8 +14711,7 @@ module Google
|
|
|
14302
14711
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineCommonConfig]
|
|
14303
14712
|
attr_accessor :common_config
|
|
14304
14713
|
|
|
14305
|
-
# Optional. Configuration for configurable billing approach.
|
|
14306
|
-
# repricing-billing-dd for more details.
|
|
14714
|
+
# Optional. Configuration for configurable billing approach.
|
|
14307
14715
|
# Corresponds to the JSON property `configurableBillingApproach`
|
|
14308
14716
|
# @return [String]
|
|
14309
14717
|
attr_accessor :configurable_billing_approach
|
|
@@ -14340,8 +14748,9 @@ module Google
|
|
|
14340
14748
|
# settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
|
|
14341
14749
|
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
|
14342
14750
|
# org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
|
|
14343
|
-
# personalization-memory` * `disable-
|
|
14344
|
-
# generation`
|
|
14751
|
+
# personalization-memory` * `disable-agent-sharing` * `disable-image-generation`
|
|
14752
|
+
# * `disable-video-generation` * `disable-onedrive-upload` * `disable-talk-to-
|
|
14753
|
+
# content` * `disable-google-drive-upload`
|
|
14345
14754
|
# Corresponds to the JSON property `features`
|
|
14346
14755
|
# @return [Hash<String,String>]
|
|
14347
14756
|
attr_accessor :features
|
|
@@ -17017,6 +17426,118 @@ module Google
|
|
|
17017
17426
|
end
|
|
17018
17427
|
end
|
|
17019
17428
|
|
|
17429
|
+
# Information about users' licenses.
|
|
17430
|
+
class GoogleCloudDiscoveryengineV1alphaLicenseConfig
|
|
17431
|
+
include Google::Apis::Core::Hashable
|
|
17432
|
+
|
|
17433
|
+
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
|
17434
|
+
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
|
17435
|
+
# Corresponds to the JSON property `alertPolicyResourceConfig`
|
|
17436
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAlertPolicyResourceConfig]
|
|
17437
|
+
attr_accessor :alert_policy_resource_config
|
|
17438
|
+
|
|
17439
|
+
# Optional. Whether the license config should be auto renewed when it reaches
|
|
17440
|
+
# the end date.
|
|
17441
|
+
# Corresponds to the JSON property `autoRenew`
|
|
17442
|
+
# @return [Boolean]
|
|
17443
|
+
attr_accessor :auto_renew
|
|
17444
|
+
alias_method :auto_renew?, :auto_renew
|
|
17445
|
+
|
|
17446
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
|
17447
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
|
17448
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
17449
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
|
17450
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
|
17451
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
|
17452
|
+
# example, a credit card expiration date). Related types: * google.type.
|
|
17453
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
|
17454
|
+
# Corresponds to the JSON property `endDate`
|
|
17455
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate]
|
|
17456
|
+
attr_accessor :end_date
|
|
17457
|
+
|
|
17458
|
+
# Optional. Whether the license config is for free trial.
|
|
17459
|
+
# Corresponds to the JSON property `freeTrial`
|
|
17460
|
+
# @return [Boolean]
|
|
17461
|
+
attr_accessor :free_trial
|
|
17462
|
+
alias_method :free_trial?, :free_trial
|
|
17463
|
+
|
|
17464
|
+
# Required. Number of licenses purchased.
|
|
17465
|
+
# Corresponds to the JSON property `licenseCount`
|
|
17466
|
+
# @return [Fixnum]
|
|
17467
|
+
attr_accessor :license_count
|
|
17468
|
+
|
|
17469
|
+
# Immutable. Identifier. The fully qualified resource name of the license config.
|
|
17470
|
+
# Format: `projects/`project`/locations/`location`/licenseConfigs/`
|
|
17471
|
+
# license_config``
|
|
17472
|
+
# Corresponds to the JSON property `name`
|
|
17473
|
+
# @return [String]
|
|
17474
|
+
attr_accessor :name
|
|
17475
|
+
|
|
17476
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
|
17477
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
|
17478
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
17479
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
|
17480
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
|
17481
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
|
17482
|
+
# example, a credit card expiration date). Related types: * google.type.
|
|
17483
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
|
17484
|
+
# Corresponds to the JSON property `startDate`
|
|
17485
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate]
|
|
17486
|
+
attr_accessor :start_date
|
|
17487
|
+
|
|
17488
|
+
# Output only. The state of the license config.
|
|
17489
|
+
# Corresponds to the JSON property `state`
|
|
17490
|
+
# @return [String]
|
|
17491
|
+
attr_accessor :state
|
|
17492
|
+
|
|
17493
|
+
# Required. Subscription term.
|
|
17494
|
+
# Corresponds to the JSON property `subscriptionTerm`
|
|
17495
|
+
# @return [String]
|
|
17496
|
+
attr_accessor :subscription_term
|
|
17497
|
+
|
|
17498
|
+
# Required. Subscription tier information for the license config.
|
|
17499
|
+
# Corresponds to the JSON property `subscriptionTier`
|
|
17500
|
+
# @return [String]
|
|
17501
|
+
attr_accessor :subscription_tier
|
|
17502
|
+
|
|
17503
|
+
def initialize(**args)
|
|
17504
|
+
update!(**args)
|
|
17505
|
+
end
|
|
17506
|
+
|
|
17507
|
+
# Update properties of this object
|
|
17508
|
+
def update!(**args)
|
|
17509
|
+
@alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
|
|
17510
|
+
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
|
17511
|
+
@end_date = args[:end_date] if args.key?(:end_date)
|
|
17512
|
+
@free_trial = args[:free_trial] if args.key?(:free_trial)
|
|
17513
|
+
@license_count = args[:license_count] if args.key?(:license_count)
|
|
17514
|
+
@name = args[:name] if args.key?(:name)
|
|
17515
|
+
@start_date = args[:start_date] if args.key?(:start_date)
|
|
17516
|
+
@state = args[:state] if args.key?(:state)
|
|
17517
|
+
@subscription_term = args[:subscription_term] if args.key?(:subscription_term)
|
|
17518
|
+
@subscription_tier = args[:subscription_tier] if args.key?(:subscription_tier)
|
|
17519
|
+
end
|
|
17520
|
+
end
|
|
17521
|
+
|
|
17522
|
+
# Response for BranchService.ListBranches method.
|
|
17523
|
+
class GoogleCloudDiscoveryengineV1alphaListBranchesResponse
|
|
17524
|
+
include Google::Apis::Core::Hashable
|
|
17525
|
+
|
|
17526
|
+
# The Branches.
|
|
17527
|
+
# Corresponds to the JSON property `branches`
|
|
17528
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBranch>]
|
|
17529
|
+
attr_accessor :branches
|
|
17530
|
+
|
|
17531
|
+
def initialize(**args)
|
|
17532
|
+
update!(**args)
|
|
17533
|
+
end
|
|
17534
|
+
|
|
17535
|
+
# Update properties of this object
|
|
17536
|
+
def update!(**args)
|
|
17537
|
+
@branches = args[:branches] if args.key?(:branches)
|
|
17538
|
+
end
|
|
17539
|
+
end
|
|
17540
|
+
|
|
17020
17541
|
# Response message for ChunkService.ListChunks method.
|
|
17021
17542
|
class GoogleCloudDiscoveryengineV1alphaListChunksResponse
|
|
17022
17543
|
include Google::Apis::Core::Hashable
|
|
@@ -20393,9 +20914,8 @@ module Google
|
|
|
20393
20914
|
alias_method :safe_search?, :safe_search
|
|
20394
20915
|
|
|
20395
20916
|
# SearchAddonSpec is used to disable add-ons for search as per new repricing
|
|
20396
|
-
# model.
|
|
20397
|
-
#
|
|
20398
|
-
# applicable.
|
|
20917
|
+
# model. By default if the SearchAddonSpec is not specified, we consider that
|
|
20918
|
+
# the customer wants to enable them wherever applicable.
|
|
20399
20919
|
# Corresponds to the JSON property `searchAddonSpec`
|
|
20400
20920
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchRequestSearchAddonSpec]
|
|
20401
20921
|
attr_accessor :search_addon_spec
|
|
@@ -21452,9 +21972,8 @@ module Google
|
|
|
21452
21972
|
end
|
|
21453
21973
|
|
|
21454
21974
|
# SearchAddonSpec is used to disable add-ons for search as per new repricing
|
|
21455
|
-
# model.
|
|
21456
|
-
#
|
|
21457
|
-
# applicable.
|
|
21975
|
+
# model. By default if the SearchAddonSpec is not specified, we consider that
|
|
21976
|
+
# the customer wants to enable them wherever applicable.
|
|
21458
21977
|
class GoogleCloudDiscoveryengineV1alphaSearchRequestSearchAddonSpec
|
|
21459
21978
|
include Google::Apis::Core::Hashable
|
|
21460
21979
|
|
|
@@ -22991,6 +23510,11 @@ module Google
|
|
|
22991
23510
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswer]
|
|
22992
23511
|
attr_accessor :detailed_answer
|
|
22993
23512
|
|
|
23513
|
+
# AssistAnswer resource, main part of AssistResponse.
|
|
23514
|
+
# Corresponds to the JSON property `detailedAssistAnswer`
|
|
23515
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAssistAnswer]
|
|
23516
|
+
attr_accessor :detailed_assist_answer
|
|
23517
|
+
|
|
22994
23518
|
# Defines a user inputed query.
|
|
22995
23519
|
# Corresponds to the JSON property `query`
|
|
22996
23520
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaQuery]
|
|
@@ -23011,6 +23535,7 @@ module Google
|
|
|
23011
23535
|
def update!(**args)
|
|
23012
23536
|
@answer = args[:answer] if args.key?(:answer)
|
|
23013
23537
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
|
23538
|
+
@detailed_assist_answer = args[:detailed_assist_answer] if args.key?(:detailed_assist_answer)
|
|
23014
23539
|
@query = args[:query] if args.key?(:query)
|
|
23015
23540
|
@query_config = args[:query_config] if args.key?(:query_config)
|
|
23016
23541
|
end
|
|
@@ -24476,12 +25001,11 @@ module Google
|
|
|
24476
25001
|
# Search for Documents. * `view-item`: Detailed page view of a Document. * `view-
|
|
24477
25002
|
# item-list`: View of a panel or ordered list of Documents. * `view-home-page`:
|
|
24478
25003
|
# View of the home page. * `view-category-page`: View of a category page, e.g.
|
|
24479
|
-
# Home > Men > Jeans * `add-
|
|
24480
|
-
#
|
|
24481
|
-
#
|
|
24482
|
-
#
|
|
24483
|
-
#
|
|
24484
|
-
# * `conversion`: Customer defined conversion event.
|
|
25004
|
+
# Home > Men > Jeans Retail-related values: * `add-to-cart`: Add an item(s) to
|
|
25005
|
+
# cart, e.g. in Retail online shopping * `purchase`: Purchase an item(s) Media-
|
|
25006
|
+
# related values: * `media-play`: Start/resume watching a video, playing a song,
|
|
25007
|
+
# etc. * `media-complete`: Finished or stopped midway through a video, song, etc.
|
|
25008
|
+
# Custom conversion value: * `conversion`: Customer defined conversion event.
|
|
24485
25009
|
# Corresponds to the JSON property `eventType`
|
|
24486
25010
|
# @return [String]
|
|
24487
25011
|
attr_accessor :event_type
|
|
@@ -25543,8 +26067,9 @@ module Google
|
|
|
25543
26067
|
# Supported keys: * `agent-gallery` * `no-code-agent-builder` * `prompt-gallery`
|
|
25544
26068
|
# * `model-selector` * `notebook-lm` * `people-search` * `people-search-org-
|
|
25545
26069
|
# chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
|
|
25546
|
-
# personalization-memory` * `disable-
|
|
25547
|
-
# generation`
|
|
26070
|
+
# personalization-memory` * `disable-agent-sharing` * `disable-image-generation`
|
|
26071
|
+
# * `disable-video-generation` * `disable-onedrive-upload` * `disable-talk-to-
|
|
26072
|
+
# content` * `disable-google-drive-upload`
|
|
25548
26073
|
# Corresponds to the JSON property `features`
|
|
25549
26074
|
# @return [Hash<String,String>]
|
|
25550
26075
|
attr_accessor :features
|
|
@@ -25768,6 +26293,77 @@ module Google
|
|
|
25768
26293
|
end
|
|
25769
26294
|
end
|
|
25770
26295
|
|
|
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
|
+
|
|
25771
26367
|
# Metadata related to the progress of the SiteSearchEngineService.
|
|
25772
26368
|
# BatchCreateTargetSites operation. This will be returned by the google.
|
|
25773
26369
|
# longrunning.Operation.metadata field.
|
|
@@ -26034,6 +26630,27 @@ module Google
|
|
|
26034
26630
|
end
|
|
26035
26631
|
end
|
|
26036
26632
|
|
|
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
|
+
|
|
26037
26654
|
# Defines a conditioned behavior to employ during serving. Must be attached to a
|
|
26038
26655
|
# ServingConfig to be considered at serving time. Permitted actions dependent on
|
|
26039
26656
|
# `SolutionType`.
|
|
@@ -26561,6 +27178,11 @@ module Google
|
|
|
26561
27178
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaCmekConfig]
|
|
26562
27179
|
attr_accessor :cmek_config
|
|
26563
27180
|
|
|
27181
|
+
# Optional. Configuration for configurable billing approach. See
|
|
27182
|
+
# Corresponds to the JSON property `configurableBillingApproach`
|
|
27183
|
+
# @return [String]
|
|
27184
|
+
attr_accessor :configurable_billing_approach
|
|
27185
|
+
|
|
26564
27186
|
# Immutable. The content config of the data store. If this field is unset, the
|
|
26565
27187
|
# server behavior defaults to ContentConfig.NO_CONTENT.
|
|
26566
27188
|
# Corresponds to the JSON property `contentConfig`
|
|
@@ -26674,6 +27296,7 @@ module Google
|
|
|
26674
27296
|
@advanced_site_search_config = args[:advanced_site_search_config] if args.key?(:advanced_site_search_config)
|
|
26675
27297
|
@billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
|
|
26676
27298
|
@cmek_config = args[:cmek_config] if args.key?(:cmek_config)
|
|
27299
|
+
@configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
|
|
26677
27300
|
@content_config = args[:content_config] if args.key?(:content_config)
|
|
26678
27301
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
26679
27302
|
@default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
|
|
@@ -27307,8 +27930,7 @@ module Google
|
|
|
27307
27930
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineCommonConfig]
|
|
27308
27931
|
attr_accessor :common_config
|
|
27309
27932
|
|
|
27310
|
-
# Optional. Configuration for configurable billing approach.
|
|
27311
|
-
# repricing-billing-dd for more details.
|
|
27933
|
+
# Optional. Configuration for configurable billing approach.
|
|
27312
27934
|
# Corresponds to the JSON property `configurableBillingApproach`
|
|
27313
27935
|
# @return [String]
|
|
27314
27936
|
attr_accessor :configurable_billing_approach
|
|
@@ -27345,8 +27967,9 @@ module Google
|
|
|
27345
27967
|
# settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
|
|
27346
27968
|
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
|
27347
27969
|
# org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
|
|
27348
|
-
# personalization-memory` * `disable-
|
|
27349
|
-
# generation`
|
|
27970
|
+
# personalization-memory` * `disable-agent-sharing` * `disable-image-generation`
|
|
27971
|
+
# * `disable-video-generation` * `disable-onedrive-upload` * `disable-talk-to-
|
|
27972
|
+
# content` * `disable-google-drive-upload`
|
|
27350
27973
|
# Corresponds to the JSON property `features`
|
|
27351
27974
|
# @return [Hash<String,String>]
|
|
27352
27975
|
attr_accessor :features
|
|
@@ -28412,6 +29035,99 @@ module Google
|
|
|
28412
29035
|
end
|
|
28413
29036
|
end
|
|
28414
29037
|
|
|
29038
|
+
# Information about users' licenses.
|
|
29039
|
+
class GoogleCloudDiscoveryengineV1betaLicenseConfig
|
|
29040
|
+
include Google::Apis::Core::Hashable
|
|
29041
|
+
|
|
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
|
+
# Optional. Whether the license config should be auto renewed when it reaches
|
|
29049
|
+
# the end date.
|
|
29050
|
+
# Corresponds to the JSON property `autoRenew`
|
|
29051
|
+
# @return [Boolean]
|
|
29052
|
+
attr_accessor :auto_renew
|
|
29053
|
+
alias_method :auto_renew?, :auto_renew
|
|
29054
|
+
|
|
29055
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
|
29056
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
|
29057
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
29058
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
|
29059
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
|
29060
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
|
29061
|
+
# example, a credit card expiration date). Related types: * google.type.
|
|
29062
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
|
29063
|
+
# Corresponds to the JSON property `endDate`
|
|
29064
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate]
|
|
29065
|
+
attr_accessor :end_date
|
|
29066
|
+
|
|
29067
|
+
# Optional. Whether the license config is for free trial.
|
|
29068
|
+
# Corresponds to the JSON property `freeTrial`
|
|
29069
|
+
# @return [Boolean]
|
|
29070
|
+
attr_accessor :free_trial
|
|
29071
|
+
alias_method :free_trial?, :free_trial
|
|
29072
|
+
|
|
29073
|
+
# Required. Number of licenses purchased.
|
|
29074
|
+
# Corresponds to the JSON property `licenseCount`
|
|
29075
|
+
# @return [Fixnum]
|
|
29076
|
+
attr_accessor :license_count
|
|
29077
|
+
|
|
29078
|
+
# Immutable. Identifier. The fully qualified resource name of the license config.
|
|
29079
|
+
# Format: `projects/`project`/locations/`location`/licenseConfigs/`
|
|
29080
|
+
# license_config``
|
|
29081
|
+
# Corresponds to the JSON property `name`
|
|
29082
|
+
# @return [String]
|
|
29083
|
+
attr_accessor :name
|
|
29084
|
+
|
|
29085
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
|
29086
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
|
29087
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
29088
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
|
29089
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
|
29090
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
|
29091
|
+
# example, a credit card expiration date). Related types: * google.type.
|
|
29092
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
|
29093
|
+
# Corresponds to the JSON property `startDate`
|
|
29094
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate]
|
|
29095
|
+
attr_accessor :start_date
|
|
29096
|
+
|
|
29097
|
+
# Output only. The state of the license config.
|
|
29098
|
+
# Corresponds to the JSON property `state`
|
|
29099
|
+
# @return [String]
|
|
29100
|
+
attr_accessor :state
|
|
29101
|
+
|
|
29102
|
+
# Required. Subscription term.
|
|
29103
|
+
# Corresponds to the JSON property `subscriptionTerm`
|
|
29104
|
+
# @return [String]
|
|
29105
|
+
attr_accessor :subscription_term
|
|
29106
|
+
|
|
29107
|
+
# Required. Subscription tier information for the license config.
|
|
29108
|
+
# Corresponds to the JSON property `subscriptionTier`
|
|
29109
|
+
# @return [String]
|
|
29110
|
+
attr_accessor :subscription_tier
|
|
29111
|
+
|
|
29112
|
+
def initialize(**args)
|
|
29113
|
+
update!(**args)
|
|
29114
|
+
end
|
|
29115
|
+
|
|
29116
|
+
# Update properties of this object
|
|
29117
|
+
def update!(**args)
|
|
29118
|
+
@alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
|
|
29119
|
+
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
|
29120
|
+
@end_date = args[:end_date] if args.key?(:end_date)
|
|
29121
|
+
@free_trial = args[:free_trial] if args.key?(:free_trial)
|
|
29122
|
+
@license_count = args[:license_count] if args.key?(:license_count)
|
|
29123
|
+
@name = args[:name] if args.key?(:name)
|
|
29124
|
+
@start_date = args[:start_date] if args.key?(:start_date)
|
|
29125
|
+
@state = args[:state] if args.key?(:state)
|
|
29126
|
+
@subscription_term = args[:subscription_term] if args.key?(:subscription_term)
|
|
29127
|
+
@subscription_tier = args[:subscription_tier] if args.key?(:subscription_tier)
|
|
29128
|
+
end
|
|
29129
|
+
end
|
|
29130
|
+
|
|
28415
29131
|
# Configuration for Natural Language Query Understanding.
|
|
28416
29132
|
class GoogleCloudDiscoveryengineV1betaNaturalLanguageQueryUnderstandingConfig
|
|
28417
29133
|
include Google::Apis::Core::Hashable
|
|
@@ -29295,9 +30011,8 @@ module Google
|
|
|
29295
30011
|
alias_method :safe_search?, :safe_search
|
|
29296
30012
|
|
|
29297
30013
|
# SearchAddonSpec is used to disable add-ons for search as per new repricing
|
|
29298
|
-
# model.
|
|
29299
|
-
#
|
|
29300
|
-
# applicable.
|
|
30014
|
+
# model. By default if the SearchAddonSpec is not specified, we consider that
|
|
30015
|
+
# the customer wants to enable them wherever applicable.
|
|
29301
30016
|
# Corresponds to the JSON property `searchAddonSpec`
|
|
29302
30017
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaSearchRequestSearchAddonSpec]
|
|
29303
30018
|
attr_accessor :search_addon_spec
|
|
@@ -30343,9 +31058,8 @@ module Google
|
|
|
30343
31058
|
end
|
|
30344
31059
|
|
|
30345
31060
|
# SearchAddonSpec is used to disable add-ons for search as per new repricing
|
|
30346
|
-
# model.
|
|
30347
|
-
#
|
|
30348
|
-
# applicable.
|
|
31061
|
+
# model. By default if the SearchAddonSpec is not specified, we consider that
|
|
31062
|
+
# the customer wants to enable them wherever applicable.
|
|
30349
31063
|
class GoogleCloudDiscoveryengineV1betaSearchRequestSearchAddonSpec
|
|
30350
31064
|
include Google::Apis::Core::Hashable
|
|
30351
31065
|
|
|
@@ -32080,17 +32794,22 @@ module Google
|
|
|
32080
32794
|
class GoogleCloudNotebooklmV1alphaUserContentAgentspaceContent
|
|
32081
32795
|
include Google::Apis::Core::Hashable
|
|
32082
32796
|
|
|
32083
|
-
# Optional. The full
|
|
32797
|
+
# Optional. The full resource name of the Agentspace document. Format: `projects/
|
|
32798
|
+
# `project`/locations/`location`/collections/`collection`/dataStores/`data_store`
|
|
32799
|
+
# /branches/`branch`/documents/`document_id``.
|
|
32084
32800
|
# Corresponds to the JSON property `documentName`
|
|
32085
32801
|
# @return [String]
|
|
32086
32802
|
attr_accessor :document_name
|
|
32087
32803
|
|
|
32088
|
-
# Optional. Engine to verify the permission of the document.
|
|
32804
|
+
# Optional. Engine to verify the permission of the document. Format: `projects/`
|
|
32805
|
+
# project`/locations/`location`/collections/`collection`/engines/`engine``.
|
|
32089
32806
|
# Corresponds to the JSON property `engineName`
|
|
32090
32807
|
# @return [String]
|
|
32091
32808
|
attr_accessor :engine_name
|
|
32092
32809
|
|
|
32093
|
-
# Optional.
|
|
32810
|
+
# Optional. Resource name of the idea forge instance. Format: `projects/`project`
|
|
32811
|
+
# /locations/`location`/collections/`collection`/engines/`engine`/sessions/`
|
|
32812
|
+
# session`/ideaForgeInstances/`instance``
|
|
32094
32813
|
# Corresponds to the JSON property `ideaforgeIdeaName`
|
|
32095
32814
|
# @return [String]
|
|
32096
32815
|
attr_accessor :ideaforge_idea_name
|
|
@@ -32262,6 +32981,13 @@ module Google
|
|
|
32262
32981
|
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation>]
|
|
32263
32982
|
attr_accessor :operations
|
|
32264
32983
|
|
|
32984
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
32985
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
32986
|
+
# when attempting to list all resources across all supported locations.
|
|
32987
|
+
# Corresponds to the JSON property `unreachable`
|
|
32988
|
+
# @return [Array<String>]
|
|
32989
|
+
attr_accessor :unreachable
|
|
32990
|
+
|
|
32265
32991
|
def initialize(**args)
|
|
32266
32992
|
update!(**args)
|
|
32267
32993
|
end
|
|
@@ -32270,6 +32996,7 @@ module Google
|
|
|
32270
32996
|
def update!(**args)
|
|
32271
32997
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
32272
32998
|
@operations = args[:operations] if args.key?(:operations)
|
|
32999
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
32273
33000
|
end
|
|
32274
33001
|
end
|
|
32275
33002
|
|