google-apis-discoveryengine_v1beta 0.85.0 → 0.86.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: b7c635b9c33cb0289e641974c06cb9e344c716215a5944651427051d364238c8
4
- data.tar.gz: d809b5e1f929c82929a573aed8b3022aae1129b08ab4be90bc03834ee131eece
3
+ metadata.gz: 90770269df73ed352746d6a156d4d73754c23aae98af32fec80588d3925f93f7
4
+ data.tar.gz: 613297e72b4d51b8004e62630bb7ccb9e74cf2f8847772743bf6bb298edb0cf7
5
5
  SHA512:
6
- metadata.gz: 9b2e01a97ecd99399c26d06df0a0a7e8afc67dc3b765ce5d195ebe54d0467ece3221ce581ada17b29d4b738c7ac9b7c3e3c06d0bbc9622db8f5c5cf9e7fc24ba
7
- data.tar.gz: cfef26f25266d5b52c999f1d64d2daf786b7c1df89530ad780685800a7c12e57cc8b8a657e77467c40a325c4e1fa6a8b4e294b940ac77af071c779331552fbc3
6
+ metadata.gz: 4d05ed7a3703d163df7c2dbc29e0ce99f1af587ac4b0fd6ee979dbd931ac308bd57996f965258f61d56379141aad33dbee465688044a0315df5deaae22147ffa
7
+ data.tar.gz: a5a90e7e358a14edebd52d98a10b25d101fb4c66593a58a90a82714f7ff6aca33988362fc17cd149450799a46fb5547a9cc8fcc87fa65805bb3bff86f3ac4401
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1beta
2
2
 
3
+ ### v0.86.0 (2025-10-19)
4
+
5
+ * Regenerated from discovery document revision 20251017
6
+
3
7
  ### v0.85.0 (2025-10-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20250929
@@ -1586,77 +1586,6 @@ module Google
1586
1586
  end
1587
1587
  end
1588
1588
 
1589
- # The resource level alert config. Used in: * UserLicense * EngineUserData The
1590
- # AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
1591
- class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig
1592
- include Google::Apis::Core::Hashable
1593
-
1594
- # Optional. The enrollment state of each alert.
1595
- # Corresponds to the JSON property `alertEnrollments`
1596
- # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment>]
1597
- attr_accessor :alert_enrollments
1598
-
1599
- # Immutable. The fully qualified resource name of the AlertPolicy.
1600
- # Corresponds to the JSON property `alertPolicy`
1601
- # @return [String]
1602
- attr_accessor :alert_policy
1603
-
1604
- # Optional. The contact details for each alert policy.
1605
- # Corresponds to the JSON property `contactDetails`
1606
- # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ContactDetails>]
1607
- attr_accessor :contact_details
1608
-
1609
- # Optional. The language code used for notifications
1610
- # Corresponds to the JSON property `languageCode`
1611
- # @return [String]
1612
- attr_accessor :language_code
1613
-
1614
- def initialize(**args)
1615
- update!(**args)
1616
- end
1617
-
1618
- # Update properties of this object
1619
- def update!(**args)
1620
- @alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
1621
- @alert_policy = args[:alert_policy] if args.key?(:alert_policy)
1622
- @contact_details = args[:contact_details] if args.key?(:contact_details)
1623
- @language_code = args[:language_code] if args.key?(:language_code)
1624
- end
1625
- end
1626
-
1627
- # The alert enrollment status.
1628
- class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment
1629
- include Google::Apis::Core::Hashable
1630
-
1631
- # Immutable. The id of an alert.
1632
- # Corresponds to the JSON property `alertId`
1633
- # @return [String]
1634
- attr_accessor :alert_id
1635
-
1636
- # Required. The enrollment status of a customer.
1637
- # Corresponds to the JSON property `enrollState`
1638
- # @return [String]
1639
- attr_accessor :enroll_state
1640
-
1641
- # Optional. Parameters used to instantiate a notification. Used for
1642
- # notifications that are triggered when registered. Not stored. * Gemini
1643
- # Business welcome emails. * Gemini Business user invitation emails.
1644
- # Corresponds to the JSON property `notificationParams`
1645
- # @return [Hash<String,String>]
1646
- attr_accessor :notification_params
1647
-
1648
- def initialize(**args)
1649
- update!(**args)
1650
- end
1651
-
1652
- # Update properties of this object
1653
- def update!(**args)
1654
- @alert_id = args[:alert_id] if args.key?(:alert_id)
1655
- @enroll_state = args[:enroll_state] if args.key?(:enroll_state)
1656
- @notification_params = args[:notification_params] if args.key?(:notification_params)
1657
- end
1658
- end
1659
-
1660
1589
  # The specification for answer generation.
1661
1590
  class GoogleCloudDiscoveryengineV1AnswerGenerationSpec
1662
1591
  include Google::Apis::Core::Hashable
@@ -2310,27 +2239,6 @@ module Google
2310
2239
  end
2311
2240
  end
2312
2241
 
2313
- # The contact info stored in resource level. If both project level and resource
2314
- # level is populated, the resource level contact info will override the project
2315
- # level contact info.
2316
- class GoogleCloudDiscoveryengineV1ContactDetails
2317
- include Google::Apis::Core::Hashable
2318
-
2319
- # Optional. The email address of the contact.
2320
- # Corresponds to the JSON property `emailAddress`
2321
- # @return [String]
2322
- attr_accessor :email_address
2323
-
2324
- def initialize(**args)
2325
- update!(**args)
2326
- end
2327
-
2328
- # Update properties of this object
2329
- def update!(**args)
2330
- @email_address = args[:email_address] if args.key?(:email_address)
2331
- end
2332
- end
2333
-
2334
2242
  # Defines a conditioned behavior to employ during serving. Must be attached to a
2335
2243
  # ServingConfig to be considered at serving time. Permitted actions dependent on
2336
2244
  # `SolutionType`.
@@ -5045,12 +4953,6 @@ module Google
5045
4953
  class GoogleCloudDiscoveryengineV1LicenseConfig
5046
4954
  include Google::Apis::Core::Hashable
5047
4955
 
5048
- # The resource level alert config. Used in: * UserLicense * EngineUserData The
5049
- # AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
5050
- # Corresponds to the JSON property `alertPolicyResourceConfig`
5051
- # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig]
5052
- attr_accessor :alert_policy_resource_config
5053
-
5054
4956
  # Optional. Whether the license config should be auto renewed when it reaches
5055
4957
  # the end date.
5056
4958
  # Corresponds to the JSON property `autoRenew`
@@ -5076,6 +4978,12 @@ module Google
5076
4978
  attr_accessor :free_trial
5077
4979
  alias_method :free_trial?, :free_trial
5078
4980
 
4981
+ # Output only. Whether the license config is for Gemini bundle.
4982
+ # Corresponds to the JSON property `geminiBundle`
4983
+ # @return [Boolean]
4984
+ attr_accessor :gemini_bundle
4985
+ alias_method :gemini_bundle?, :gemini_bundle
4986
+
5079
4987
  # Required. Number of licenses purchased.
5080
4988
  # Corresponds to the JSON property `licenseCount`
5081
4989
  # @return [Fixnum]
@@ -5121,10 +5029,10 @@ module Google
5121
5029
 
5122
5030
  # Update properties of this object
5123
5031
  def update!(**args)
5124
- @alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
5125
5032
  @auto_renew = args[:auto_renew] if args.key?(:auto_renew)
5126
5033
  @end_date = args[:end_date] if args.key?(:end_date)
5127
5034
  @free_trial = args[:free_trial] if args.key?(:free_trial)
5035
+ @gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
5128
5036
  @license_count = args[:license_count] if args.key?(:license_count)
5129
5037
  @name = args[:name] if args.key?(:name)
5130
5038
  @start_date = args[:start_date] if args.key?(:start_date)
@@ -8027,6 +7935,11 @@ module Google
8027
7935
  class GoogleCloudDiscoveryengineV1alphaAssistantGroundedContent
8028
7936
  include Google::Apis::Core::Hashable
8029
7937
 
7938
+ # A collection of source attributions for a piece of content.
7939
+ # Corresponds to the JSON property `citationMetadata`
7940
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCitationMetadata]
7941
+ attr_accessor :citation_metadata
7942
+
8030
7943
  # Multi-modal content.
8031
7944
  # Corresponds to the JSON property `content`
8032
7945
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaAssistantContent]
@@ -8043,6 +7956,7 @@ module Google
8043
7956
 
8044
7957
  # Update properties of this object
8045
7958
  def update!(**args)
7959
+ @citation_metadata = args[:citation_metadata] if args.key?(:citation_metadata)
8046
7960
  @content = args[:content] if args.key?(:content)
8047
7961
  @text_grounding_metadata = args[:text_grounding_metadata] if args.key?(:text_grounding_metadata)
8048
7962
  end
@@ -8333,6 +8247,81 @@ module Google
8333
8247
  end
8334
8248
  end
8335
8249
 
8250
+ # Source attributions for content.
8251
+ class GoogleCloudDiscoveryengineV1alphaCitation
8252
+ include Google::Apis::Core::Hashable
8253
+
8254
+ # Output only. End index into the content.
8255
+ # Corresponds to the JSON property `endIndex`
8256
+ # @return [Fixnum]
8257
+ attr_accessor :end_index
8258
+
8259
+ # Output only. License of the attribution.
8260
+ # Corresponds to the JSON property `license`
8261
+ # @return [String]
8262
+ attr_accessor :license
8263
+
8264
+ # Represents a whole or partial calendar date, such as a birthday. The time of
8265
+ # day and time zone are either specified elsewhere or are insignificant. The
8266
+ # date is relative to the Gregorian Calendar. This can represent one of the
8267
+ # following: * A full date, with non-zero year, month, and day values. * A month
8268
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
8269
+ # with a zero month and a zero day. * A year and month, with a zero day (for
8270
+ # example, a credit card expiration date). Related types: * google.type.
8271
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
8272
+ # Corresponds to the JSON property `publicationDate`
8273
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleTypeDate]
8274
+ attr_accessor :publication_date
8275
+
8276
+ # Output only. Start index into the content.
8277
+ # Corresponds to the JSON property `startIndex`
8278
+ # @return [Fixnum]
8279
+ attr_accessor :start_index
8280
+
8281
+ # Output only. Title of the attribution.
8282
+ # Corresponds to the JSON property `title`
8283
+ # @return [String]
8284
+ attr_accessor :title
8285
+
8286
+ # Output only. Url reference of the attribution.
8287
+ # Corresponds to the JSON property `uri`
8288
+ # @return [String]
8289
+ attr_accessor :uri
8290
+
8291
+ def initialize(**args)
8292
+ update!(**args)
8293
+ end
8294
+
8295
+ # Update properties of this object
8296
+ def update!(**args)
8297
+ @end_index = args[:end_index] if args.key?(:end_index)
8298
+ @license = args[:license] if args.key?(:license)
8299
+ @publication_date = args[:publication_date] if args.key?(:publication_date)
8300
+ @start_index = args[:start_index] if args.key?(:start_index)
8301
+ @title = args[:title] if args.key?(:title)
8302
+ @uri = args[:uri] if args.key?(:uri)
8303
+ end
8304
+ end
8305
+
8306
+ # A collection of source attributions for a piece of content.
8307
+ class GoogleCloudDiscoveryengineV1alphaCitationMetadata
8308
+ include Google::Apis::Core::Hashable
8309
+
8310
+ # Output only. List of citations.
8311
+ # Corresponds to the JSON property `citations`
8312
+ # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCitation>]
8313
+ attr_accessor :citations
8314
+
8315
+ def initialize(**args)
8316
+ update!(**args)
8317
+ end
8318
+
8319
+ # Update properties of this object
8320
+ def update!(**args)
8321
+ @citations = args[:citations] if args.key?(:citations)
8322
+ end
8323
+ end
8324
+
8336
8325
  # Configurations used to enable CMEK data encryption with Cloud KMS keys.
8337
8326
  class GoogleCloudDiscoveryengineV1alphaCmekConfig
8338
8327
  include Google::Apis::Core::Hashable
@@ -12265,6 +12254,12 @@ module Google
12265
12254
  attr_accessor :free_trial
12266
12255
  alias_method :free_trial?, :free_trial
12267
12256
 
12257
+ # Output only. Whether the license config is for Gemini bundle.
12258
+ # Corresponds to the JSON property `geminiBundle`
12259
+ # @return [Boolean]
12260
+ attr_accessor :gemini_bundle
12261
+ alias_method :gemini_bundle?, :gemini_bundle
12262
+
12268
12263
  # Required. Number of licenses purchased.
12269
12264
  # Corresponds to the JSON property `licenseCount`
12270
12265
  # @return [Fixnum]
@@ -12314,6 +12309,7 @@ module Google
12314
12309
  @auto_renew = args[:auto_renew] if args.key?(:auto_renew)
12315
12310
  @end_date = args[:end_date] if args.key?(:end_date)
12316
12311
  @free_trial = args[:free_trial] if args.key?(:free_trial)
12312
+ @gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
12317
12313
  @license_count = args[:license_count] if args.key?(:license_count)
12318
12314
  @name = args[:name] if args.key?(:name)
12319
12315
  @start_date = args[:start_date] if args.key?(:start_date)
@@ -14852,6 +14848,12 @@ module Google
14852
14848
  attr_accessor :is_pinned
14853
14849
  alias_method :is_pinned?, :is_pinned
14854
14850
 
14851
+ # Optional. The labels for the session. Can be set as filter in
14852
+ # ListSessionsRequest.
14853
+ # Corresponds to the JSON property `labels`
14854
+ # @return [Array<String>]
14855
+ attr_accessor :labels
14856
+
14855
14857
  # Immutable. Fully qualified name `projects/`project`/locations/global/
14856
14858
  # collections/`collection`/engines/`engine`/sessions/*`
14857
14859
  # Corresponds to the JSON property `name`
@@ -14887,6 +14889,7 @@ module Google
14887
14889
  @display_name = args[:display_name] if args.key?(:display_name)
14888
14890
  @end_time = args[:end_time] if args.key?(:end_time)
14889
14891
  @is_pinned = args[:is_pinned] if args.key?(:is_pinned)
14892
+ @labels = args[:labels] if args.key?(:labels)
14890
14893
  @name = args[:name] if args.key?(:name)
14891
14894
  @start_time = args[:start_time] if args.key?(:start_time)
14892
14895
  @state = args[:state] if args.key?(:state)
@@ -16143,77 +16146,6 @@ module Google
16143
16146
  end
16144
16147
  end
16145
16148
 
16146
- # The resource level alert config. Used in: * UserLicense * EngineUserData The
16147
- # AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
16148
- class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig
16149
- include Google::Apis::Core::Hashable
16150
-
16151
- # Optional. The enrollment state of each alert.
16152
- # Corresponds to the JSON property `alertEnrollments`
16153
- # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment>]
16154
- attr_accessor :alert_enrollments
16155
-
16156
- # Immutable. The fully qualified resource name of the AlertPolicy.
16157
- # Corresponds to the JSON property `alertPolicy`
16158
- # @return [String]
16159
- attr_accessor :alert_policy
16160
-
16161
- # Optional. The contact details for each alert policy.
16162
- # Corresponds to the JSON property `contactDetails`
16163
- # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaContactDetails>]
16164
- attr_accessor :contact_details
16165
-
16166
- # Optional. The language code used for notifications
16167
- # Corresponds to the JSON property `languageCode`
16168
- # @return [String]
16169
- attr_accessor :language_code
16170
-
16171
- def initialize(**args)
16172
- update!(**args)
16173
- end
16174
-
16175
- # Update properties of this object
16176
- def update!(**args)
16177
- @alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
16178
- @alert_policy = args[:alert_policy] if args.key?(:alert_policy)
16179
- @contact_details = args[:contact_details] if args.key?(:contact_details)
16180
- @language_code = args[:language_code] if args.key?(:language_code)
16181
- end
16182
- end
16183
-
16184
- # The alert enrollment status.
16185
- class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment
16186
- include Google::Apis::Core::Hashable
16187
-
16188
- # Immutable. The id of an alert.
16189
- # Corresponds to the JSON property `alertId`
16190
- # @return [String]
16191
- attr_accessor :alert_id
16192
-
16193
- # Required. The enrollment status of a customer.
16194
- # Corresponds to the JSON property `enrollState`
16195
- # @return [String]
16196
- attr_accessor :enroll_state
16197
-
16198
- # Optional. Parameters used to instantiate a notification. Used for
16199
- # notifications that are triggered when registered. Not stored. * Gemini
16200
- # Business welcome emails. * Gemini Business user invitation emails.
16201
- # Corresponds to the JSON property `notificationParams`
16202
- # @return [Hash<String,String>]
16203
- attr_accessor :notification_params
16204
-
16205
- def initialize(**args)
16206
- update!(**args)
16207
- end
16208
-
16209
- # Update properties of this object
16210
- def update!(**args)
16211
- @alert_id = args[:alert_id] if args.key?(:alert_id)
16212
- @enroll_state = args[:enroll_state] if args.key?(:enroll_state)
16213
- @notification_params = args[:notification_params] if args.key?(:notification_params)
16214
- end
16215
- end
16216
-
16217
16149
  # AlloyDB source import data from.
16218
16150
  class GoogleCloudDiscoveryengineV1betaAlloyDbSource
16219
16151
  include Google::Apis::Core::Hashable
@@ -18592,6 +18524,11 @@ module Google
18592
18524
  class GoogleCloudDiscoveryengineV1betaAssistantGroundedContent
18593
18525
  include Google::Apis::Core::Hashable
18594
18526
 
18527
+ # A collection of source attributions for a piece of content.
18528
+ # Corresponds to the JSON property `citationMetadata`
18529
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCitationMetadata]
18530
+ attr_accessor :citation_metadata
18531
+
18595
18532
  # Multi-modal content.
18596
18533
  # Corresponds to the JSON property `content`
18597
18534
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistantContent]
@@ -18608,6 +18545,7 @@ module Google
18608
18545
 
18609
18546
  # Update properties of this object
18610
18547
  def update!(**args)
18548
+ @citation_metadata = args[:citation_metadata] if args.key?(:citation_metadata)
18611
18549
  @content = args[:content] if args.key?(:content)
18612
18550
  @text_grounding_metadata = args[:text_grounding_metadata] if args.key?(:text_grounding_metadata)
18613
18551
  end
@@ -19763,6 +19701,81 @@ module Google
19763
19701
  end
19764
19702
  end
19765
19703
 
19704
+ # Source attributions for content.
19705
+ class GoogleCloudDiscoveryengineV1betaCitation
19706
+ include Google::Apis::Core::Hashable
19707
+
19708
+ # Output only. End index into the content.
19709
+ # Corresponds to the JSON property `endIndex`
19710
+ # @return [Fixnum]
19711
+ attr_accessor :end_index
19712
+
19713
+ # Output only. License of the attribution.
19714
+ # Corresponds to the JSON property `license`
19715
+ # @return [String]
19716
+ attr_accessor :license
19717
+
19718
+ # Represents a whole or partial calendar date, such as a birthday. The time of
19719
+ # day and time zone are either specified elsewhere or are insignificant. The
19720
+ # date is relative to the Gregorian Calendar. This can represent one of the
19721
+ # following: * A full date, with non-zero year, month, and day values. * A month
19722
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
19723
+ # with a zero month and a zero day. * A year and month, with a zero day (for
19724
+ # example, a credit card expiration date). Related types: * google.type.
19725
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
19726
+ # Corresponds to the JSON property `publicationDate`
19727
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleTypeDate]
19728
+ attr_accessor :publication_date
19729
+
19730
+ # Output only. Start index into the content.
19731
+ # Corresponds to the JSON property `startIndex`
19732
+ # @return [Fixnum]
19733
+ attr_accessor :start_index
19734
+
19735
+ # Output only. Title of the attribution.
19736
+ # Corresponds to the JSON property `title`
19737
+ # @return [String]
19738
+ attr_accessor :title
19739
+
19740
+ # Output only. Url reference of the attribution.
19741
+ # Corresponds to the JSON property `uri`
19742
+ # @return [String]
19743
+ attr_accessor :uri
19744
+
19745
+ def initialize(**args)
19746
+ update!(**args)
19747
+ end
19748
+
19749
+ # Update properties of this object
19750
+ def update!(**args)
19751
+ @end_index = args[:end_index] if args.key?(:end_index)
19752
+ @license = args[:license] if args.key?(:license)
19753
+ @publication_date = args[:publication_date] if args.key?(:publication_date)
19754
+ @start_index = args[:start_index] if args.key?(:start_index)
19755
+ @title = args[:title] if args.key?(:title)
19756
+ @uri = args[:uri] if args.key?(:uri)
19757
+ end
19758
+ end
19759
+
19760
+ # A collection of source attributions for a piece of content.
19761
+ class GoogleCloudDiscoveryengineV1betaCitationMetadata
19762
+ include Google::Apis::Core::Hashable
19763
+
19764
+ # Output only. List of citations.
19765
+ # Corresponds to the JSON property `citations`
19766
+ # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCitation>]
19767
+ attr_accessor :citations
19768
+
19769
+ def initialize(**args)
19770
+ update!(**args)
19771
+ end
19772
+
19773
+ # Update properties of this object
19774
+ def update!(**args)
19775
+ @citations = args[:citations] if args.key?(:citations)
19776
+ end
19777
+ end
19778
+
19766
19779
  # Cloud SQL source import data from.
19767
19780
  class GoogleCloudDiscoveryengineV1betaCloudSqlSource
19768
19781
  include Google::Apis::Core::Hashable
@@ -20118,27 +20131,6 @@ module Google
20118
20131
  end
20119
20132
  end
20120
20133
 
20121
- # The contact info stored in resource level. If both project level and resource
20122
- # level is populated, the resource level contact info will override the project
20123
- # level contact info.
20124
- class GoogleCloudDiscoveryengineV1betaContactDetails
20125
- include Google::Apis::Core::Hashable
20126
-
20127
- # Optional. The email address of the contact.
20128
- # Corresponds to the JSON property `emailAddress`
20129
- # @return [String]
20130
- attr_accessor :email_address
20131
-
20132
- def initialize(**args)
20133
- update!(**args)
20134
- end
20135
-
20136
- # Update properties of this object
20137
- def update!(**args)
20138
- @email_address = args[:email_address] if args.key?(:email_address)
20139
- end
20140
- end
20141
-
20142
20134
  # Defines a conditioned behavior to employ during serving. Must be attached to a
20143
20135
  # ServingConfig to be considered at serving time. Permitted actions dependent on
20144
20136
  # `SolutionType`.
@@ -24007,12 +23999,6 @@ module Google
24007
23999
  class GoogleCloudDiscoveryengineV1betaLicenseConfig
24008
24000
  include Google::Apis::Core::Hashable
24009
24001
 
24010
- # The resource level alert config. Used in: * UserLicense * EngineUserData The
24011
- # AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
24012
- # Corresponds to the JSON property `alertPolicyResourceConfig`
24013
- # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig]
24014
- attr_accessor :alert_policy_resource_config
24015
-
24016
24002
  # Optional. Whether the license config should be auto renewed when it reaches
24017
24003
  # the end date.
24018
24004
  # Corresponds to the JSON property `autoRenew`
@@ -24038,6 +24024,12 @@ module Google
24038
24024
  attr_accessor :free_trial
24039
24025
  alias_method :free_trial?, :free_trial
24040
24026
 
24027
+ # Output only. Whether the license config is for Gemini bundle.
24028
+ # Corresponds to the JSON property `geminiBundle`
24029
+ # @return [Boolean]
24030
+ attr_accessor :gemini_bundle
24031
+ alias_method :gemini_bundle?, :gemini_bundle
24032
+
24041
24033
  # Required. Number of licenses purchased.
24042
24034
  # Corresponds to the JSON property `licenseCount`
24043
24035
  # @return [Fixnum]
@@ -24083,10 +24075,10 @@ module Google
24083
24075
 
24084
24076
  # Update properties of this object
24085
24077
  def update!(**args)
24086
- @alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
24087
24078
  @auto_renew = args[:auto_renew] if args.key?(:auto_renew)
24088
24079
  @end_date = args[:end_date] if args.key?(:end_date)
24089
24080
  @free_trial = args[:free_trial] if args.key?(:free_trial)
24081
+ @gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
24090
24082
  @license_count = args[:license_count] if args.key?(:license_count)
24091
24083
  @name = args[:name] if args.key?(:name)
24092
24084
  @start_date = args[:start_date] if args.key?(:start_date)
@@ -29208,6 +29200,12 @@ module Google
29208
29200
  attr_accessor :is_pinned
29209
29201
  alias_method :is_pinned?, :is_pinned
29210
29202
 
29203
+ # Optional. The labels for the session. Can be set as filter in
29204
+ # ListSessionsRequest.
29205
+ # Corresponds to the JSON property `labels`
29206
+ # @return [Array<String>]
29207
+ attr_accessor :labels
29208
+
29211
29209
  # Immutable. Fully qualified name `projects/`project`/locations/global/
29212
29210
  # collections/`collection`/engines/`engine`/sessions/*`
29213
29211
  # Corresponds to the JSON property `name`
@@ -29243,6 +29241,7 @@ module Google
29243
29241
  @display_name = args[:display_name] if args.key?(:display_name)
29244
29242
  @end_time = args[:end_time] if args.key?(:end_time)
29245
29243
  @is_pinned = args[:is_pinned] if args.key?(:is_pinned)
29244
+ @labels = args[:labels] if args.key?(:labels)
29246
29245
  @name = args[:name] if args.key?(:name)
29247
29246
  @start_time = args[:start_time] if args.key?(:start_time)
29248
29247
  @state = args[:state] if args.key?(:state)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1beta
18
18
  # Version of the google-apis-discoveryengine_v1beta gem
19
- GEM_VERSION = "0.85.0"
19
+ GEM_VERSION = "0.86.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 = "20250929"
25
+ REVISION = "20251017"
26
26
  end
27
27
  end
28
28
  end
@@ -226,18 +226,6 @@ module Google
226
226
  include Google::Apis::Core::JsonObjectSupport
227
227
  end
228
228
 
229
- class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig
230
- class Representation < Google::Apis::Core::JsonRepresentation; end
231
-
232
- include Google::Apis::Core::JsonObjectSupport
233
- end
234
-
235
- class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment
236
- class Representation < Google::Apis::Core::JsonRepresentation; end
237
-
238
- include Google::Apis::Core::JsonObjectSupport
239
- end
240
-
241
229
  class GoogleCloudDiscoveryengineV1AnswerGenerationSpec
242
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
231
 
@@ -358,12 +346,6 @@ module Google
358
346
  include Google::Apis::Core::JsonObjectSupport
359
347
  end
360
348
 
361
- class GoogleCloudDiscoveryengineV1ContactDetails
362
- class Representation < Google::Apis::Core::JsonRepresentation; end
363
-
364
- include Google::Apis::Core::JsonObjectSupport
365
- end
366
-
367
349
  class GoogleCloudDiscoveryengineV1Control
368
350
  class Representation < Google::Apis::Core::JsonRepresentation; end
369
351
 
@@ -1312,6 +1294,18 @@ module Google
1312
1294
  include Google::Apis::Core::JsonObjectSupport
1313
1295
  end
1314
1296
 
1297
+ class GoogleCloudDiscoveryengineV1alphaCitation
1298
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1299
+
1300
+ include Google::Apis::Core::JsonObjectSupport
1301
+ end
1302
+
1303
+ class GoogleCloudDiscoveryengineV1alphaCitationMetadata
1304
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1305
+
1306
+ include Google::Apis::Core::JsonObjectSupport
1307
+ end
1308
+
1315
1309
  class GoogleCloudDiscoveryengineV1alphaCmekConfig
1316
1310
  class Representation < Google::Apis::Core::JsonRepresentation; end
1317
1311
 
@@ -2488,18 +2482,6 @@ module Google
2488
2482
  include Google::Apis::Core::JsonObjectSupport
2489
2483
  end
2490
2484
 
2491
- class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig
2492
- class Representation < Google::Apis::Core::JsonRepresentation; end
2493
-
2494
- include Google::Apis::Core::JsonObjectSupport
2495
- end
2496
-
2497
- class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment
2498
- class Representation < Google::Apis::Core::JsonRepresentation; end
2499
-
2500
- include Google::Apis::Core::JsonObjectSupport
2501
- end
2502
-
2503
2485
  class GoogleCloudDiscoveryengineV1betaAlloyDbSource
2504
2486
  class Representation < Google::Apis::Core::JsonRepresentation; end
2505
2487
 
@@ -3124,6 +3106,18 @@ module Google
3124
3106
  include Google::Apis::Core::JsonObjectSupport
3125
3107
  end
3126
3108
 
3109
+ class GoogleCloudDiscoveryengineV1betaCitation
3110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3111
+
3112
+ include Google::Apis::Core::JsonObjectSupport
3113
+ end
3114
+
3115
+ class GoogleCloudDiscoveryengineV1betaCitationMetadata
3116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3117
+
3118
+ include Google::Apis::Core::JsonObjectSupport
3119
+ end
3120
+
3127
3121
  class GoogleCloudDiscoveryengineV1betaCloudSqlSource
3128
3122
  class Representation < Google::Apis::Core::JsonRepresentation; end
3129
3123
 
@@ -3178,12 +3172,6 @@ module Google
3178
3172
  include Google::Apis::Core::JsonObjectSupport
3179
3173
  end
3180
3174
 
3181
- class GoogleCloudDiscoveryengineV1betaContactDetails
3182
- class Representation < Google::Apis::Core::JsonRepresentation; end
3183
-
3184
- include Google::Apis::Core::JsonObjectSupport
3185
- end
3186
-
3187
3175
  class GoogleCloudDiscoveryengineV1betaControl
3188
3176
  class Representation < Google::Apis::Core::JsonRepresentation; end
3189
3177
 
@@ -5323,27 +5311,6 @@ module Google
5323
5311
  end
5324
5312
  end
5325
5313
 
5326
- class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig
5327
- # @private
5328
- class Representation < Google::Apis::Core::JsonRepresentation
5329
- collection :alert_enrollments, as: 'alertEnrollments', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment::Representation
5330
-
5331
- property :alert_policy, as: 'alertPolicy'
5332
- collection :contact_details, as: 'contactDetails', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ContactDetails, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ContactDetails::Representation
5333
-
5334
- property :language_code, as: 'languageCode'
5335
- end
5336
- end
5337
-
5338
- class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment
5339
- # @private
5340
- class Representation < Google::Apis::Core::JsonRepresentation
5341
- property :alert_id, as: 'alertId'
5342
- property :enroll_state, as: 'enrollState'
5343
- hash :notification_params, as: 'notificationParams'
5344
- end
5345
- end
5346
-
5347
5314
  class GoogleCloudDiscoveryengineV1AnswerGenerationSpec
5348
5315
  # @private
5349
5316
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5535,13 +5502,6 @@ module Google
5535
5502
  end
5536
5503
  end
5537
5504
 
5538
- class GoogleCloudDiscoveryengineV1ContactDetails
5539
- # @private
5540
- class Representation < Google::Apis::Core::JsonRepresentation
5541
- property :email_address, as: 'emailAddress'
5542
- end
5543
- end
5544
-
5545
5505
  class GoogleCloudDiscoveryengineV1Control
5546
5506
  # @private
5547
5507
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6264,12 +6224,11 @@ module Google
6264
6224
  class GoogleCloudDiscoveryengineV1LicenseConfig
6265
6225
  # @private
6266
6226
  class Representation < Google::Apis::Core::JsonRepresentation
6267
- property :alert_policy_resource_config, as: 'alertPolicyResourceConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig::Representation
6268
-
6269
6227
  property :auto_renew, as: 'autoRenew'
6270
6228
  property :end_date, as: 'endDate', class: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate::Representation
6271
6229
 
6272
6230
  property :free_trial, as: 'freeTrial'
6231
+ property :gemini_bundle, as: 'geminiBundle'
6273
6232
  property :license_count, :numeric_string => true, as: 'licenseCount'
6274
6233
  property :name, as: 'name'
6275
6234
  property :start_date, as: 'startDate', class: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate::Representation
@@ -7069,6 +7028,8 @@ module Google
7069
7028
  class GoogleCloudDiscoveryengineV1alphaAssistantGroundedContent
7070
7029
  # @private
7071
7030
  class Representation < Google::Apis::Core::JsonRepresentation
7031
+ property :citation_metadata, as: 'citationMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCitationMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCitationMetadata::Representation
7032
+
7072
7033
  property :content, as: 'content', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaAssistantContent, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaAssistantContent::Representation
7073
7034
 
7074
7035
  property :text_grounding_metadata, as: 'textGroundingMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaAssistantGroundedContentTextGroundingMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaAssistantGroundedContentTextGroundingMetadata::Representation
@@ -7162,6 +7123,27 @@ module Google
7162
7123
  end
7163
7124
  end
7164
7125
 
7126
+ class GoogleCloudDiscoveryengineV1alphaCitation
7127
+ # @private
7128
+ class Representation < Google::Apis::Core::JsonRepresentation
7129
+ property :end_index, as: 'endIndex'
7130
+ property :license, as: 'license'
7131
+ property :publication_date, as: 'publicationDate', class: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate::Representation
7132
+
7133
+ property :start_index, as: 'startIndex'
7134
+ property :title, as: 'title'
7135
+ property :uri, as: 'uri'
7136
+ end
7137
+ end
7138
+
7139
+ class GoogleCloudDiscoveryengineV1alphaCitationMetadata
7140
+ # @private
7141
+ class Representation < Google::Apis::Core::JsonRepresentation
7142
+ collection :citations, as: 'citations', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCitation, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCitation::Representation
7143
+
7144
+ end
7145
+ end
7146
+
7165
7147
  class GoogleCloudDiscoveryengineV1alphaCmekConfig
7166
7148
  # @private
7167
7149
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8204,6 +8186,7 @@ module Google
8204
8186
  property :end_date, as: 'endDate', class: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate::Representation
8205
8187
 
8206
8188
  property :free_trial, as: 'freeTrial'
8189
+ property :gemini_bundle, as: 'geminiBundle'
8207
8190
  property :license_count, :numeric_string => true, as: 'licenseCount'
8208
8191
  property :name, as: 'name'
8209
8192
  property :start_date, as: 'startDate', class: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate::Representation
@@ -8835,6 +8818,7 @@ module Google
8835
8818
  property :display_name, as: 'displayName'
8836
8819
  property :end_time, as: 'endTime'
8837
8820
  property :is_pinned, as: 'isPinned'
8821
+ collection :labels, as: 'labels'
8838
8822
  property :name, as: 'name'
8839
8823
  property :start_time, as: 'startTime'
8840
8824
  property :state, as: 'state'
@@ -9189,27 +9173,6 @@ module Google
9189
9173
  end
9190
9174
  end
9191
9175
 
9192
- class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig
9193
- # @private
9194
- class Representation < Google::Apis::Core::JsonRepresentation
9195
- collection :alert_enrollments, as: 'alertEnrollments', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment::Representation
9196
-
9197
- property :alert_policy, as: 'alertPolicy'
9198
- collection :contact_details, as: 'contactDetails', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaContactDetails, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaContactDetails::Representation
9199
-
9200
- property :language_code, as: 'languageCode'
9201
- end
9202
- end
9203
-
9204
- class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment
9205
- # @private
9206
- class Representation < Google::Apis::Core::JsonRepresentation
9207
- property :alert_id, as: 'alertId'
9208
- property :enroll_state, as: 'enrollState'
9209
- hash :notification_params, as: 'notificationParams'
9210
- end
9211
- end
9212
-
9213
9176
  class GoogleCloudDiscoveryengineV1betaAlloyDbSource
9214
9177
  # @private
9215
9178
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -9917,6 +9880,8 @@ module Google
9917
9880
  class GoogleCloudDiscoveryengineV1betaAssistantGroundedContent
9918
9881
  # @private
9919
9882
  class Representation < Google::Apis::Core::JsonRepresentation
9883
+ property :citation_metadata, as: 'citationMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCitationMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCitationMetadata::Representation
9884
+
9920
9885
  property :content, as: 'content', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistantContent, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistantContent::Representation
9921
9886
 
9922
9887
  property :text_grounding_metadata, as: 'textGroundingMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistantGroundedContentTextGroundingMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistantGroundedContentTextGroundingMetadata::Representation
@@ -10249,6 +10214,27 @@ module Google
10249
10214
  end
10250
10215
  end
10251
10216
 
10217
+ class GoogleCloudDiscoveryengineV1betaCitation
10218
+ # @private
10219
+ class Representation < Google::Apis::Core::JsonRepresentation
10220
+ property :end_index, as: 'endIndex'
10221
+ property :license, as: 'license'
10222
+ property :publication_date, as: 'publicationDate', class: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate::Representation
10223
+
10224
+ property :start_index, as: 'startIndex'
10225
+ property :title, as: 'title'
10226
+ property :uri, as: 'uri'
10227
+ end
10228
+ end
10229
+
10230
+ class GoogleCloudDiscoveryengineV1betaCitationMetadata
10231
+ # @private
10232
+ class Representation < Google::Apis::Core::JsonRepresentation
10233
+ collection :citations, as: 'citations', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCitation, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCitation::Representation
10234
+
10235
+ end
10236
+ end
10237
+
10252
10238
  class GoogleCloudDiscoveryengineV1betaCloudSqlSource
10253
10239
  # @private
10254
10240
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10341,13 +10327,6 @@ module Google
10341
10327
  end
10342
10328
  end
10343
10329
 
10344
- class GoogleCloudDiscoveryengineV1betaContactDetails
10345
- # @private
10346
- class Representation < Google::Apis::Core::JsonRepresentation
10347
- property :email_address, as: 'emailAddress'
10348
- end
10349
- end
10350
-
10351
10330
  class GoogleCloudDiscoveryengineV1betaControl
10352
10331
  # @private
10353
10332
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -11446,12 +11425,11 @@ module Google
11446
11425
  class GoogleCloudDiscoveryengineV1betaLicenseConfig
11447
11426
  # @private
11448
11427
  class Representation < Google::Apis::Core::JsonRepresentation
11449
- property :alert_policy_resource_config, as: 'alertPolicyResourceConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig::Representation
11450
-
11451
11428
  property :auto_renew, as: 'autoRenew'
11452
11429
  property :end_date, as: 'endDate', class: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate::Representation
11453
11430
 
11454
11431
  property :free_trial, as: 'freeTrial'
11432
+ property :gemini_bundle, as: 'geminiBundle'
11455
11433
  property :license_count, :numeric_string => true, as: 'licenseCount'
11456
11434
  property :name, as: 'name'
11457
11435
  property :start_date, as: 'startDate', class: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1beta::GoogleTypeDate::Representation
@@ -12829,6 +12807,7 @@ module Google
12829
12807
  property :display_name, as: 'displayName'
12830
12808
  property :end_time, as: 'endTime'
12831
12809
  property :is_pinned, as: 'isPinned'
12810
+ collection :labels, as: 'labels'
12832
12811
  property :name, as: 'name'
12833
12812
  property :start_time, as: 'startTime'
12834
12813
  property :state, as: 'state'
@@ -34,6 +34,12 @@ module Google
34
34
 
35
35
  # Search your organization's data in the Cloud Search index
36
36
  AUTH_CLOUD_SEARCH_QUERY = 'https://www.googleapis.com/auth/cloud_search.query'
37
+
38
+ # View your Agentspace chat history, including uploaded files and generated reports and visualizations, and interact with the Agentspace assistant on your behalf.
39
+ AUTH_DISCOVERYENGINE_ASSIST_READWRITE = 'https://www.googleapis.com/auth/discoveryengine.assist.readwrite'
40
+
41
+ # View, edit, create, and delete all your data associated with any Discovery Engine API product, such as Agentspace, Vertex AI Search, or NotebookLM Enterprise, including both end user data and administration or configuration data.
42
+ AUTH_DISCOVERYENGINE_READWRITE = 'https://www.googleapis.com/auth/discoveryengine.readwrite'
37
43
  end
38
44
  end
39
45
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.85.0
4
+ version: 0.86.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_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.85.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.86.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: