google-apis-discoveryengine_v1alpha 0.78.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce001b0c5157ecc53fc9d878f5cc8d21c97a5c316a91a1af3dc35c475f8482c5
4
- data.tar.gz: 24db4da18c408ec1dd0a6f3ea97a591e993aaa7cbbbe46901879bb8f09f2361c
3
+ metadata.gz: 53fcaffc4e1f6e177ec19e85358bd351c67a87d8f6b4c6b50aac8cfad6000872
4
+ data.tar.gz: c14bd424e28ceb55d41456a3aabaa2645c4456a023abde70e2299c9dc25c5851
5
5
  SHA512:
6
- metadata.gz: bafe3716f76ab84db67c068db461c59854748b5794610a6068a873bd889a56e2369041d22f7f435a431ef6fe955801aec67bc564ebf7ead10d0208e49dd69b5c
7
- data.tar.gz: 1280be8b8c1c2d113dc0d58f46b081f1bdf531e6c0f645a46c7da512bd54d8c7b41e6cf0ef17f55088b3854a9f7950ac439ac7f3b171ed225ac2dfd5b2290c60
6
+ metadata.gz: be726d62832ac9d8f79fbd6eefba1dc95c3254b3bd162cb58e03a58dc0faf006aa20c6e0e36fd077b382957be43136df15264e203e1e8ca870a0fd060d4b0e21
7
+ data.tar.gz: 994104459efcae8a1a12d27fbe0e61e5aa1c420b138eaa394a21292c3c707f3c276a4403de4854a8f90941eca0710ce45e4e387321f6ea054ce420647ffafa6f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1alpha
2
2
 
3
+ ### v0.79.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250929
6
+
3
7
  ### v0.78.0 (2025-09-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20250924
@@ -1800,6 +1800,77 @@ module Google
1800
1800
  end
1801
1801
  end
1802
1802
 
1803
+ # The resource level alert config. Used in: * UserLicense * EngineUserData The
1804
+ # AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
1805
+ class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig
1806
+ include Google::Apis::Core::Hashable
1807
+
1808
+ # Optional. The enrollment state of each alert.
1809
+ # Corresponds to the JSON property `alertEnrollments`
1810
+ # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment>]
1811
+ attr_accessor :alert_enrollments
1812
+
1813
+ # Immutable. The fully qualified resource name of the AlertPolicy.
1814
+ # Corresponds to the JSON property `alertPolicy`
1815
+ # @return [String]
1816
+ attr_accessor :alert_policy
1817
+
1818
+ # Optional. The contact details for each alert policy.
1819
+ # Corresponds to the JSON property `contactDetails`
1820
+ # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ContactDetails>]
1821
+ attr_accessor :contact_details
1822
+
1823
+ # Optional. The language code used for notifications
1824
+ # Corresponds to the JSON property `languageCode`
1825
+ # @return [String]
1826
+ attr_accessor :language_code
1827
+
1828
+ def initialize(**args)
1829
+ update!(**args)
1830
+ end
1831
+
1832
+ # Update properties of this object
1833
+ def update!(**args)
1834
+ @alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
1835
+ @alert_policy = args[:alert_policy] if args.key?(:alert_policy)
1836
+ @contact_details = args[:contact_details] if args.key?(:contact_details)
1837
+ @language_code = args[:language_code] if args.key?(:language_code)
1838
+ end
1839
+ end
1840
+
1841
+ # The alert enrollment status.
1842
+ class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment
1843
+ include Google::Apis::Core::Hashable
1844
+
1845
+ # Immutable. The id of an alert.
1846
+ # Corresponds to the JSON property `alertId`
1847
+ # @return [String]
1848
+ attr_accessor :alert_id
1849
+
1850
+ # Required. The enrollment status of a customer.
1851
+ # Corresponds to the JSON property `enrollState`
1852
+ # @return [String]
1853
+ attr_accessor :enroll_state
1854
+
1855
+ # Optional. Parameters used to instantiate a notification. Used for
1856
+ # notifications that are triggered when registered. Not stored. * Gemini
1857
+ # Business welcome emails. * Gemini Business user invitation emails.
1858
+ # Corresponds to the JSON property `notificationParams`
1859
+ # @return [Hash<String,String>]
1860
+ attr_accessor :notification_params
1861
+
1862
+ def initialize(**args)
1863
+ update!(**args)
1864
+ end
1865
+
1866
+ # Update properties of this object
1867
+ def update!(**args)
1868
+ @alert_id = args[:alert_id] if args.key?(:alert_id)
1869
+ @enroll_state = args[:enroll_state] if args.key?(:enroll_state)
1870
+ @notification_params = args[:notification_params] if args.key?(:notification_params)
1871
+ end
1872
+ end
1873
+
1803
1874
  # The specification for answer generation.
1804
1875
  class GoogleCloudDiscoveryengineV1AnswerGenerationSpec
1805
1876
  include Google::Apis::Core::Hashable
@@ -2453,6 +2524,27 @@ module Google
2453
2524
  end
2454
2525
  end
2455
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
+
2456
2548
  # Defines a conditioned behavior to employ during serving. Must be attached to a
2457
2549
  # ServingConfig to be considered at serving time. Permitted actions dependent on
2458
2550
  # `SolutionType`.
@@ -3462,8 +3554,7 @@ module Google
3462
3554
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1CmekConfig]
3463
3555
  attr_accessor :cmek_config
3464
3556
 
3465
- # Optional. Configuration for configurable billing approach. See go/vais-
3466
- # repricing-billing-dd for more details, only apply to non-Spark UCS Search.
3557
+ # Optional. Configuration for configurable billing approach. See
3467
3558
  # Corresponds to the JSON property `configurableBillingApproach`
3468
3559
  # @return [String]
3469
3560
  attr_accessor :configurable_billing_approach
@@ -4283,8 +4374,7 @@ module Google
4283
4374
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineCommonConfig]
4284
4375
  attr_accessor :common_config
4285
4376
 
4286
- # Optional. Configuration for configurable billing approach. See go/vais-
4287
- # repricing-billing-dd for more details.
4377
+ # Optional. Configuration for configurable billing approach.
4288
4378
  # Corresponds to the JSON property `configurableBillingApproach`
4289
4379
  # @return [String]
4290
4380
  attr_accessor :configurable_billing_approach
@@ -4321,8 +4411,9 @@ module Google
4321
4411
  # settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
4322
4412
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
4323
4413
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
4324
- # personalization-memory` * `disable-image-generation` * `disable-video-
4325
- # generation` * `disable-onedrive-upload`
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`
4326
4417
  # Corresponds to the JSON property `features`
4327
4418
  # @return [Hash<String,String>]
4328
4419
  attr_accessor :features
@@ -5164,6 +5255,99 @@ module Google
5164
5255
  end
5165
5256
  end
5166
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
+
5167
5351
  # Metadata and configurations for a Google Cloud project in the service.
5168
5352
  class GoogleCloudDiscoveryengineV1Project
5169
5353
  include Google::Apis::Core::Hashable
@@ -7331,6 +7515,77 @@ module Google
7331
7515
  end
7332
7516
  end
7333
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
+
7334
7589
  # AlloyDB source import data from.
7335
7590
  class GoogleCloudDiscoveryengineV1alphaAlloyDbSource
7336
7591
  include Google::Apis::Core::Hashable
@@ -11759,6 +12014,27 @@ module Google
11759
12014
  end
11760
12015
  end
11761
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
+
11762
12038
  # Defines a conditioned behavior to employ during serving. Must be attached to a
11763
12039
  # ServingConfig to be considered at serving time. Permitted actions dependent on
11764
12040
  # `SolutionType`.
@@ -13180,8 +13456,7 @@ module Google
13180
13456
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCmekConfig]
13181
13457
  attr_accessor :cmek_config
13182
13458
 
13183
- # Optional. Configuration for configurable billing approach. See go/vais-
13184
- # repricing-billing-dd for more details, only apply to non-Spark UCS Search.
13459
+ # Optional. Configuration for configurable billing approach. See
13185
13460
  # Corresponds to the JSON property `configurableBillingApproach`
13186
13461
  # @return [String]
13187
13462
  attr_accessor :configurable_billing_approach
@@ -14436,8 +14711,7 @@ module Google
14436
14711
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineCommonConfig]
14437
14712
  attr_accessor :common_config
14438
14713
 
14439
- # Optional. Configuration for configurable billing approach. See go/vais-
14440
- # repricing-billing-dd for more details.
14714
+ # Optional. Configuration for configurable billing approach.
14441
14715
  # Corresponds to the JSON property `configurableBillingApproach`
14442
14716
  # @return [String]
14443
14717
  attr_accessor :configurable_billing_approach
@@ -14474,8 +14748,9 @@ module Google
14474
14748
  # settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
14475
14749
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
14476
14750
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
14477
- # personalization-memory` * `disable-image-generation` * `disable-video-
14478
- # generation` * `disable-onedrive-upload`
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`
14479
14754
  # Corresponds to the JSON property `features`
14480
14755
  # @return [Hash<String,String>]
14481
14756
  attr_accessor :features
@@ -17151,6 +17426,99 @@ module Google
17151
17426
  end
17152
17427
  end
17153
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
+
17154
17522
  # Response for BranchService.ListBranches method.
17155
17523
  class GoogleCloudDiscoveryengineV1alphaListBranchesResponse
17156
17524
  include Google::Apis::Core::Hashable
@@ -23142,6 +23510,11 @@ module Google
23142
23510
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswer]
23143
23511
  attr_accessor :detailed_answer
23144
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
+
23145
23518
  # Defines a user inputed query.
23146
23519
  # Corresponds to the JSON property `query`
23147
23520
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaQuery]
@@ -23162,6 +23535,7 @@ module Google
23162
23535
  def update!(**args)
23163
23536
  @answer = args[:answer] if args.key?(:answer)
23164
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)
23165
23539
  @query = args[:query] if args.key?(:query)
23166
23540
  @query_config = args[:query_config] if args.key?(:query_config)
23167
23541
  end
@@ -25693,8 +26067,9 @@ module Google
25693
26067
  # Supported keys: * `agent-gallery` * `no-code-agent-builder` * `prompt-gallery`
25694
26068
  # * `model-selector` * `notebook-lm` * `people-search` * `people-search-org-
25695
26069
  # chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
25696
- # personalization-memory` * `disable-image-generation` * `disable-video-
25697
- # generation` * `disable-onedrive-upload`
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`
25698
26073
  # Corresponds to the JSON property `features`
25699
26074
  # @return [Hash<String,String>]
25700
26075
  attr_accessor :features
@@ -25918,6 +26293,77 @@ module Google
25918
26293
  end
25919
26294
  end
25920
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
+
25921
26367
  # Metadata related to the progress of the SiteSearchEngineService.
25922
26368
  # BatchCreateTargetSites operation. This will be returned by the google.
25923
26369
  # longrunning.Operation.metadata field.
@@ -26184,6 +26630,27 @@ module Google
26184
26630
  end
26185
26631
  end
26186
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
+
26187
26654
  # Defines a conditioned behavior to employ during serving. Must be attached to a
26188
26655
  # ServingConfig to be considered at serving time. Permitted actions dependent on
26189
26656
  # `SolutionType`.
@@ -26711,8 +27178,7 @@ module Google
26711
27178
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaCmekConfig]
26712
27179
  attr_accessor :cmek_config
26713
27180
 
26714
- # Optional. Configuration for configurable billing approach. See go/vais-
26715
- # repricing-billing-dd for more details, only apply to non-Spark UCS Search.
27181
+ # Optional. Configuration for configurable billing approach. See
26716
27182
  # Corresponds to the JSON property `configurableBillingApproach`
26717
27183
  # @return [String]
26718
27184
  attr_accessor :configurable_billing_approach
@@ -27464,8 +27930,7 @@ module Google
27464
27930
  # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineCommonConfig]
27465
27931
  attr_accessor :common_config
27466
27932
 
27467
- # Optional. Configuration for configurable billing approach. See go/vais-
27468
- # repricing-billing-dd for more details.
27933
+ # Optional. Configuration for configurable billing approach.
27469
27934
  # Corresponds to the JSON property `configurableBillingApproach`
27470
27935
  # @return [String]
27471
27936
  attr_accessor :configurable_billing_approach
@@ -27502,8 +27967,9 @@ module Google
27502
27967
  # settings are ignored. * `agent-gallery` * `no-code-agent-builder` * `prompt-
27503
27968
  # gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
27504
27969
  # org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
27505
- # personalization-memory` * `disable-image-generation` * `disable-video-
27506
- # generation` * `disable-onedrive-upload`
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`
27507
27973
  # Corresponds to the JSON property `features`
27508
27974
  # @return [Hash<String,String>]
27509
27975
  attr_accessor :features
@@ -28569,6 +29035,99 @@ module Google
28569
29035
  end
28570
29036
  end
28571
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
+
28572
29131
  # Configuration for Natural Language Query Understanding.
28573
29132
  class GoogleCloudDiscoveryengineV1betaNaturalLanguageQueryUnderstandingConfig
28574
29133
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1alpha
18
18
  # Version of the google-apis-discoveryengine_v1alpha gem
19
- GEM_VERSION = "0.78.0"
19
+ GEM_VERSION = "0.79.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250924"
25
+ REVISION = "20250929"
26
26
  end
27
27
  end
28
28
  end
@@ -238,6 +238,18 @@ module Google
238
238
  include Google::Apis::Core::JsonObjectSupport
239
239
  end
240
240
 
241
+ class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
247
+ class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment
248
+ class Representation < Google::Apis::Core::JsonRepresentation; end
249
+
250
+ include Google::Apis::Core::JsonObjectSupport
251
+ end
252
+
241
253
  class GoogleCloudDiscoveryengineV1AnswerGenerationSpec
242
254
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
255
 
@@ -358,6 +370,12 @@ module Google
358
370
  include Google::Apis::Core::JsonObjectSupport
359
371
  end
360
372
 
373
+ class GoogleCloudDiscoveryengineV1ContactDetails
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
361
379
  class GoogleCloudDiscoveryengineV1Control
362
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
381
 
@@ -772,6 +790,12 @@ module Google
772
790
  include Google::Apis::Core::JsonObjectSupport
773
791
  end
774
792
 
793
+ class GoogleCloudDiscoveryengineV1LicenseConfig
794
+ class Representation < Google::Apis::Core::JsonRepresentation; end
795
+
796
+ include Google::Apis::Core::JsonObjectSupport
797
+ end
798
+
775
799
  class GoogleCloudDiscoveryengineV1Project
776
800
  class Representation < Google::Apis::Core::JsonRepresentation; end
777
801
 
@@ -1102,6 +1126,18 @@ module Google
1102
1126
  include Google::Apis::Core::JsonObjectSupport
1103
1127
  end
1104
1128
 
1129
+ class GoogleCloudDiscoveryengineV1alphaAlertPolicyResourceConfig
1130
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1131
+
1132
+ include Google::Apis::Core::JsonObjectSupport
1133
+ end
1134
+
1135
+ class GoogleCloudDiscoveryengineV1alphaAlertPolicyResourceConfigAlertEnrollment
1136
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1137
+
1138
+ include Google::Apis::Core::JsonObjectSupport
1139
+ end
1140
+
1105
1141
  class GoogleCloudDiscoveryengineV1alphaAlloyDbSource
1106
1142
  class Representation < Google::Apis::Core::JsonRepresentation; end
1107
1143
 
@@ -1846,6 +1882,12 @@ module Google
1846
1882
  include Google::Apis::Core::JsonObjectSupport
1847
1883
  end
1848
1884
 
1885
+ class GoogleCloudDiscoveryengineV1alphaContactDetails
1886
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1887
+
1888
+ include Google::Apis::Core::JsonObjectSupport
1889
+ end
1890
+
1849
1891
  class GoogleCloudDiscoveryengineV1alphaControl
1850
1892
  class Representation < Google::Apis::Core::JsonRepresentation; end
1851
1893
 
@@ -2692,6 +2734,12 @@ module Google
2692
2734
  include Google::Apis::Core::JsonObjectSupport
2693
2735
  end
2694
2736
 
2737
+ class GoogleCloudDiscoveryengineV1alphaLicenseConfig
2738
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2739
+
2740
+ include Google::Apis::Core::JsonObjectSupport
2741
+ end
2742
+
2695
2743
  class GoogleCloudDiscoveryengineV1alphaListBranchesResponse
2696
2744
  class Representation < Google::Apis::Core::JsonRepresentation; end
2697
2745
 
@@ -4048,6 +4096,18 @@ module Google
4048
4096
  include Google::Apis::Core::JsonObjectSupport
4049
4097
  end
4050
4098
 
4099
+ class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig
4100
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4101
+
4102
+ include Google::Apis::Core::JsonObjectSupport
4103
+ end
4104
+
4105
+ class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment
4106
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4107
+
4108
+ include Google::Apis::Core::JsonObjectSupport
4109
+ end
4110
+
4051
4111
  class GoogleCloudDiscoveryengineV1betaBatchCreateTargetSiteMetadata
4052
4112
  class Representation < Google::Apis::Core::JsonRepresentation; end
4053
4113
 
@@ -4096,6 +4156,12 @@ module Google
4096
4156
  include Google::Apis::Core::JsonObjectSupport
4097
4157
  end
4098
4158
 
4159
+ class GoogleCloudDiscoveryengineV1betaContactDetails
4160
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4161
+
4162
+ include Google::Apis::Core::JsonObjectSupport
4163
+ end
4164
+
4099
4165
  class GoogleCloudDiscoveryengineV1betaControl
4100
4166
  class Representation < Google::Apis::Core::JsonRepresentation; end
4101
4167
 
@@ -4504,6 +4570,12 @@ module Google
4504
4570
  include Google::Apis::Core::JsonObjectSupport
4505
4571
  end
4506
4572
 
4573
+ class GoogleCloudDiscoveryengineV1betaLicenseConfig
4574
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4575
+
4576
+ include Google::Apis::Core::JsonObjectSupport
4577
+ end
4578
+
4507
4579
  class GoogleCloudDiscoveryengineV1betaNaturalLanguageQueryUnderstandingConfig
4508
4580
  class Representation < Google::Apis::Core::JsonRepresentation; end
4509
4581
 
@@ -5658,6 +5730,27 @@ module Google
5658
5730
  end
5659
5731
  end
5660
5732
 
5733
+ class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig
5734
+ # @private
5735
+ class Representation < Google::Apis::Core::JsonRepresentation
5736
+ collection :alert_enrollments, as: 'alertEnrollments', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment::Representation
5737
+
5738
+ property :alert_policy, as: 'alertPolicy'
5739
+ collection :contact_details, as: 'contactDetails', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ContactDetails, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ContactDetails::Representation
5740
+
5741
+ property :language_code, as: 'languageCode'
5742
+ end
5743
+ end
5744
+
5745
+ class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment
5746
+ # @private
5747
+ class Representation < Google::Apis::Core::JsonRepresentation
5748
+ property :alert_id, as: 'alertId'
5749
+ property :enroll_state, as: 'enrollState'
5750
+ hash :notification_params, as: 'notificationParams'
5751
+ end
5752
+ end
5753
+
5661
5754
  class GoogleCloudDiscoveryengineV1AnswerGenerationSpec
5662
5755
  # @private
5663
5756
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5849,6 +5942,13 @@ module Google
5849
5942
  end
5850
5943
  end
5851
5944
 
5945
+ class GoogleCloudDiscoveryengineV1ContactDetails
5946
+ # @private
5947
+ class Representation < Google::Apis::Core::JsonRepresentation
5948
+ property :email_address, as: 'emailAddress'
5949
+ end
5950
+ end
5951
+
5852
5952
  class GoogleCloudDiscoveryengineV1Control
5853
5953
  # @private
5854
5954
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6568,6 +6668,25 @@ module Google
6568
6668
  end
6569
6669
  end
6570
6670
 
6671
+ class GoogleCloudDiscoveryengineV1LicenseConfig
6672
+ # @private
6673
+ class Representation < Google::Apis::Core::JsonRepresentation
6674
+ property :alert_policy_resource_config, as: 'alertPolicyResourceConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig::Representation
6675
+
6676
+ property :auto_renew, as: 'autoRenew'
6677
+ property :end_date, as: 'endDate', class: Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate::Representation
6678
+
6679
+ property :free_trial, as: 'freeTrial'
6680
+ property :license_count, :numeric_string => true, as: 'licenseCount'
6681
+ property :name, as: 'name'
6682
+ property :start_date, as: 'startDate', class: Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate::Representation
6683
+
6684
+ property :state, as: 'state'
6685
+ property :subscription_term, as: 'subscriptionTerm'
6686
+ property :subscription_tier, as: 'subscriptionTier'
6687
+ end
6688
+ end
6689
+
6571
6690
  class GoogleCloudDiscoveryengineV1Project
6572
6691
  # @private
6573
6692
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7123,6 +7242,27 @@ module Google
7123
7242
  end
7124
7243
  end
7125
7244
 
7245
+ class GoogleCloudDiscoveryengineV1alphaAlertPolicyResourceConfig
7246
+ # @private
7247
+ class Representation < Google::Apis::Core::JsonRepresentation
7248
+ collection :alert_enrollments, as: 'alertEnrollments', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAlertPolicyResourceConfigAlertEnrollment, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAlertPolicyResourceConfigAlertEnrollment::Representation
7249
+
7250
+ property :alert_policy, as: 'alertPolicy'
7251
+ collection :contact_details, as: 'contactDetails', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaContactDetails, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaContactDetails::Representation
7252
+
7253
+ property :language_code, as: 'languageCode'
7254
+ end
7255
+ end
7256
+
7257
+ class GoogleCloudDiscoveryengineV1alphaAlertPolicyResourceConfigAlertEnrollment
7258
+ # @private
7259
+ class Representation < Google::Apis::Core::JsonRepresentation
7260
+ property :alert_id, as: 'alertId'
7261
+ property :enroll_state, as: 'enrollState'
7262
+ hash :notification_params, as: 'notificationParams'
7263
+ end
7264
+ end
7265
+
7126
7266
  class GoogleCloudDiscoveryengineV1alphaAlloyDbSource
7127
7267
  # @private
7128
7268
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8385,6 +8525,13 @@ module Google
8385
8525
  end
8386
8526
  end
8387
8527
 
8528
+ class GoogleCloudDiscoveryengineV1alphaContactDetails
8529
+ # @private
8530
+ class Representation < Google::Apis::Core::JsonRepresentation
8531
+ property :email_address, as: 'emailAddress'
8532
+ end
8533
+ end
8534
+
8388
8535
  class GoogleCloudDiscoveryengineV1alphaControl
8389
8536
  # @private
8390
8537
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -9854,6 +10001,25 @@ module Google
9854
10001
  end
9855
10002
  end
9856
10003
 
10004
+ class GoogleCloudDiscoveryengineV1alphaLicenseConfig
10005
+ # @private
10006
+ class Representation < Google::Apis::Core::JsonRepresentation
10007
+ property :alert_policy_resource_config, as: 'alertPolicyResourceConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAlertPolicyResourceConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAlertPolicyResourceConfig::Representation
10008
+
10009
+ property :auto_renew, as: 'autoRenew'
10010
+ property :end_date, as: 'endDate', class: Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate::Representation
10011
+
10012
+ property :free_trial, as: 'freeTrial'
10013
+ property :license_count, :numeric_string => true, as: 'licenseCount'
10014
+ property :name, as: 'name'
10015
+ property :start_date, as: 'startDate', class: Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate::Representation
10016
+
10017
+ property :state, as: 'state'
10018
+ property :subscription_term, as: 'subscriptionTerm'
10019
+ property :subscription_tier, as: 'subscriptionTier'
10020
+ end
10021
+ end
10022
+
9857
10023
  class GoogleCloudDiscoveryengineV1alphaListBranchesResponse
9858
10024
  # @private
9859
10025
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -11467,6 +11633,8 @@ module Google
11467
11633
  property :answer, as: 'answer'
11468
11634
  property :detailed_answer, as: 'detailedAnswer', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswer, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswer::Representation
11469
11635
 
11636
+ property :detailed_assist_answer, as: 'detailedAssistAnswer', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAssistAnswer, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAssistAnswer::Representation
11637
+
11470
11638
  property :query, as: 'query', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaQuery, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaQuery::Representation
11471
11639
 
11472
11640
  hash :query_config, as: 'queryConfig'
@@ -12175,6 +12343,27 @@ module Google
12175
12343
  end
12176
12344
  end
12177
12345
 
12346
+ class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig
12347
+ # @private
12348
+ class Representation < Google::Apis::Core::JsonRepresentation
12349
+ collection :alert_enrollments, as: 'alertEnrollments', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment::Representation
12350
+
12351
+ property :alert_policy, as: 'alertPolicy'
12352
+ collection :contact_details, as: 'contactDetails', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaContactDetails, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaContactDetails::Representation
12353
+
12354
+ property :language_code, as: 'languageCode'
12355
+ end
12356
+ end
12357
+
12358
+ class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment
12359
+ # @private
12360
+ class Representation < Google::Apis::Core::JsonRepresentation
12361
+ property :alert_id, as: 'alertId'
12362
+ property :enroll_state, as: 'enrollState'
12363
+ hash :notification_params, as: 'notificationParams'
12364
+ end
12365
+ end
12366
+
12178
12367
  class GoogleCloudDiscoveryengineV1betaBatchCreateTargetSiteMetadata
12179
12368
  # @private
12180
12369
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12253,6 +12442,13 @@ module Google
12253
12442
  end
12254
12443
  end
12255
12444
 
12445
+ class GoogleCloudDiscoveryengineV1betaContactDetails
12446
+ # @private
12447
+ class Representation < Google::Apis::Core::JsonRepresentation
12448
+ property :email_address, as: 'emailAddress'
12449
+ end
12450
+ end
12451
+
12256
12452
  class GoogleCloudDiscoveryengineV1betaControl
12257
12453
  # @private
12258
12454
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12926,6 +13122,25 @@ module Google
12926
13122
  end
12927
13123
  end
12928
13124
 
13125
+ class GoogleCloudDiscoveryengineV1betaLicenseConfig
13126
+ # @private
13127
+ class Representation < Google::Apis::Core::JsonRepresentation
13128
+ property :alert_policy_resource_config, as: 'alertPolicyResourceConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig::Representation
13129
+
13130
+ property :auto_renew, as: 'autoRenew'
13131
+ property :end_date, as: 'endDate', class: Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate::Representation
13132
+
13133
+ property :free_trial, as: 'freeTrial'
13134
+ property :license_count, :numeric_string => true, as: 'licenseCount'
13135
+ property :name, as: 'name'
13136
+ property :start_date, as: 'startDate', class: Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleTypeDate::Representation
13137
+
13138
+ property :state, as: 'state'
13139
+ property :subscription_term, as: 'subscriptionTerm'
13140
+ property :subscription_tier, as: 'subscriptionTier'
13141
+ end
13142
+ end
13143
+
12929
13144
  class GoogleCloudDiscoveryengineV1betaNaturalLanguageQueryUnderstandingConfig
12930
13145
  # @private
12931
13146
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10263,6 +10263,120 @@ module Google
10263
10263
  execute_or_queue_command(command, &block)
10264
10264
  end
10265
10265
 
10266
+ # Creates a LicenseConfig
10267
+ # @param [String] parent
10268
+ # Required. The parent resource name, such as `projects/`project`/locations/`
10269
+ # location``.
10270
+ # @param [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig] google_cloud_discoveryengine_v1alpha_license_config_object
10271
+ # @param [String] license_config_id
10272
+ # Optional. The ID to use for the LicenseConfig, which will become the final
10273
+ # component of the LicenseConfig's resource name. We are using the tier (product
10274
+ # edition) name as the license config id such as `search` or `
10275
+ # search_and_assistant`.
10276
+ # @param [String] fields
10277
+ # Selector specifying which fields to include in a partial response.
10278
+ # @param [String] quota_user
10279
+ # Available to use for quota purposes for server-side applications. Can be any
10280
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
10281
+ # @param [Google::Apis::RequestOptions] options
10282
+ # Request-specific options
10283
+ #
10284
+ # @yield [result, err] Result & error if block supplied
10285
+ # @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig] parsed result object
10286
+ # @yieldparam err [StandardError] error object if request failed
10287
+ #
10288
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig]
10289
+ #
10290
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
10291
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
10292
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
10293
+ def create_project_location_license_config(parent, google_cloud_discoveryengine_v1alpha_license_config_object = nil, license_config_id: nil, fields: nil, quota_user: nil, options: nil, &block)
10294
+ command = make_simple_command(:post, 'v1alpha/{+parent}/licenseConfigs', options)
10295
+ command.request_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig::Representation
10296
+ command.request_object = google_cloud_discoveryengine_v1alpha_license_config_object
10297
+ command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig::Representation
10298
+ command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig
10299
+ command.params['parent'] = parent unless parent.nil?
10300
+ command.query['licenseConfigId'] = license_config_id unless license_config_id.nil?
10301
+ command.query['fields'] = fields unless fields.nil?
10302
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
10303
+ execute_or_queue_command(command, &block)
10304
+ end
10305
+
10306
+ # Gets a LicenseConfig.
10307
+ # @param [String] name
10308
+ # Required. Full resource name of LicenseConfig, such as `projects/`project`/
10309
+ # locations/`location`/licenseConfigs/*`. If the caller does not have permission
10310
+ # to access the LicenseConfig, regardless of whether or not it exists, a
10311
+ # PERMISSION_DENIED error is returned. If the requested LicenseConfig does not
10312
+ # exist, a NOT_FOUND error is returned.
10313
+ # @param [String] fields
10314
+ # Selector specifying which fields to include in a partial response.
10315
+ # @param [String] quota_user
10316
+ # Available to use for quota purposes for server-side applications. Can be any
10317
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
10318
+ # @param [Google::Apis::RequestOptions] options
10319
+ # Request-specific options
10320
+ #
10321
+ # @yield [result, err] Result & error if block supplied
10322
+ # @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig] parsed result object
10323
+ # @yieldparam err [StandardError] error object if request failed
10324
+ #
10325
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig]
10326
+ #
10327
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
10328
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
10329
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
10330
+ def get_project_location_license_config(name, fields: nil, quota_user: nil, options: nil, &block)
10331
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
10332
+ command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig::Representation
10333
+ command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig
10334
+ command.params['name'] = name unless name.nil?
10335
+ command.query['fields'] = fields unless fields.nil?
10336
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
10337
+ execute_or_queue_command(command, &block)
10338
+ end
10339
+
10340
+ # Updates the LicenseConfig
10341
+ # @param [String] name
10342
+ # Immutable. Identifier. The fully qualified resource name of the license config.
10343
+ # Format: `projects/`project`/locations/`location`/licenseConfigs/`
10344
+ # license_config``
10345
+ # @param [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig] google_cloud_discoveryengine_v1alpha_license_config_object
10346
+ # @param [String] update_mask
10347
+ # Optional. Indicates which fields in the provided LicenseConfig to update. If
10348
+ # an unsupported or unknown field is provided, an INVALID_ARGUMENT error is
10349
+ # returned.
10350
+ # @param [String] fields
10351
+ # Selector specifying which fields to include in a partial response.
10352
+ # @param [String] quota_user
10353
+ # Available to use for quota purposes for server-side applications. Can be any
10354
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
10355
+ # @param [Google::Apis::RequestOptions] options
10356
+ # Request-specific options
10357
+ #
10358
+ # @yield [result, err] Result & error if block supplied
10359
+ # @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig] parsed result object
10360
+ # @yieldparam err [StandardError] error object if request failed
10361
+ #
10362
+ # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig]
10363
+ #
10364
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
10365
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
10366
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
10367
+ def patch_project_location_license_config(name, google_cloud_discoveryengine_v1alpha_license_config_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
10368
+ command = make_simple_command(:patch, 'v1alpha/{+name}', options)
10369
+ command.request_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig::Representation
10370
+ command.request_object = google_cloud_discoveryengine_v1alpha_license_config_object
10371
+ command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig::Representation
10372
+ command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaLicenseConfig
10373
+ command.params['name'] = name unless name.nil?
10374
+ command.query['updateMask'] = update_mask unless update_mask.nil?
10375
+ command.query['fields'] = fields unless fields.nil?
10376
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
10377
+ execute_or_queue_command(command, &block)
10378
+ end
10379
+
10266
10380
  # Batch deletes Notebooks.
10267
10381
  # @param [String] parent
10268
10382
  # Required. The parent branch resource name, such as `projects/`project`/
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.78.0
4
+ version: 0.79.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.78.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.79.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: