google-apis-discoveryengine_v1 0.54.0 → 0.55.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5919b26d5fb5299bd66003342263cdfecfa31e72a600deb26791e75c8a1055a7
|
4
|
+
data.tar.gz: 4f0398e8353411fc18ca5949c8a4ce5f47b7f2ca86d2f0c1285eccdf61e9a7a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cc5a79fdf691dce78a740ede4f69409e741f1a886b8e6eac71f2528c9af87d6a1e1316eabaa889e8aa342d52b7e9daf4ef076ebad88c71ac70ce8ead136a386
|
7
|
+
data.tar.gz: 641ccde092825df8eca367ad1f70086063f8e5fdfd3c64614b525ca33a0c2c7c82c254c99d80762eedc92615f59bb823ca68faaa4a77bca5de1bd333ca148f37
|
data/CHANGELOG.md
CHANGED
@@ -1991,77 +1991,6 @@ module Google
|
|
1991
1991
|
end
|
1992
1992
|
end
|
1993
1993
|
|
1994
|
-
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
1995
|
-
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
1996
|
-
class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig
|
1997
|
-
include Google::Apis::Core::Hashable
|
1998
|
-
|
1999
|
-
# Optional. The enrollment state of each alert.
|
2000
|
-
# Corresponds to the JSON property `alertEnrollments`
|
2001
|
-
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment>]
|
2002
|
-
attr_accessor :alert_enrollments
|
2003
|
-
|
2004
|
-
# Immutable. The fully qualified resource name of the AlertPolicy.
|
2005
|
-
# Corresponds to the JSON property `alertPolicy`
|
2006
|
-
# @return [String]
|
2007
|
-
attr_accessor :alert_policy
|
2008
|
-
|
2009
|
-
# Optional. The contact details for each alert policy.
|
2010
|
-
# Corresponds to the JSON property `contactDetails`
|
2011
|
-
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ContactDetails>]
|
2012
|
-
attr_accessor :contact_details
|
2013
|
-
|
2014
|
-
# Optional. The language code used for notifications
|
2015
|
-
# Corresponds to the JSON property `languageCode`
|
2016
|
-
# @return [String]
|
2017
|
-
attr_accessor :language_code
|
2018
|
-
|
2019
|
-
def initialize(**args)
|
2020
|
-
update!(**args)
|
2021
|
-
end
|
2022
|
-
|
2023
|
-
# Update properties of this object
|
2024
|
-
def update!(**args)
|
2025
|
-
@alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
|
2026
|
-
@alert_policy = args[:alert_policy] if args.key?(:alert_policy)
|
2027
|
-
@contact_details = args[:contact_details] if args.key?(:contact_details)
|
2028
|
-
@language_code = args[:language_code] if args.key?(:language_code)
|
2029
|
-
end
|
2030
|
-
end
|
2031
|
-
|
2032
|
-
# The alert enrollment status.
|
2033
|
-
class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment
|
2034
|
-
include Google::Apis::Core::Hashable
|
2035
|
-
|
2036
|
-
# Immutable. The id of an alert.
|
2037
|
-
# Corresponds to the JSON property `alertId`
|
2038
|
-
# @return [String]
|
2039
|
-
attr_accessor :alert_id
|
2040
|
-
|
2041
|
-
# Required. The enrollment status of a customer.
|
2042
|
-
# Corresponds to the JSON property `enrollState`
|
2043
|
-
# @return [String]
|
2044
|
-
attr_accessor :enroll_state
|
2045
|
-
|
2046
|
-
# Optional. Parameters used to instantiate a notification. Used for
|
2047
|
-
# notifications that are triggered when registered. Not stored. * Gemini
|
2048
|
-
# Business welcome emails. * Gemini Business user invitation emails.
|
2049
|
-
# Corresponds to the JSON property `notificationParams`
|
2050
|
-
# @return [Hash<String,String>]
|
2051
|
-
attr_accessor :notification_params
|
2052
|
-
|
2053
|
-
def initialize(**args)
|
2054
|
-
update!(**args)
|
2055
|
-
end
|
2056
|
-
|
2057
|
-
# Update properties of this object
|
2058
|
-
def update!(**args)
|
2059
|
-
@alert_id = args[:alert_id] if args.key?(:alert_id)
|
2060
|
-
@enroll_state = args[:enroll_state] if args.key?(:enroll_state)
|
2061
|
-
@notification_params = args[:notification_params] if args.key?(:notification_params)
|
2062
|
-
end
|
2063
|
-
end
|
2064
|
-
|
2065
1994
|
# AlloyDB source import data from.
|
2066
1995
|
class GoogleCloudDiscoveryengineV1AlloyDbSource
|
2067
1996
|
include Google::Apis::Core::Hashable
|
@@ -4337,6 +4266,11 @@ module Google
|
|
4337
4266
|
class GoogleCloudDiscoveryengineV1AssistantGroundedContent
|
4338
4267
|
include Google::Apis::Core::Hashable
|
4339
4268
|
|
4269
|
+
# A collection of source attributions for a piece of content.
|
4270
|
+
# Corresponds to the JSON property `citationMetadata`
|
4271
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CitationMetadata]
|
4272
|
+
attr_accessor :citation_metadata
|
4273
|
+
|
4340
4274
|
# Multi-modal content.
|
4341
4275
|
# Corresponds to the JSON property `content`
|
4342
4276
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantContent]
|
@@ -4353,6 +4287,7 @@ module Google
|
|
4353
4287
|
|
4354
4288
|
# Update properties of this object
|
4355
4289
|
def update!(**args)
|
4290
|
+
@citation_metadata = args[:citation_metadata] if args.key?(:citation_metadata)
|
4356
4291
|
@content = args[:content] if args.key?(:content)
|
4357
4292
|
@text_grounding_metadata = args[:text_grounding_metadata] if args.key?(:text_grounding_metadata)
|
4358
4293
|
end
|
@@ -5533,6 +5468,81 @@ module Google
|
|
5533
5468
|
end
|
5534
5469
|
end
|
5535
5470
|
|
5471
|
+
# Source attributions for content.
|
5472
|
+
class GoogleCloudDiscoveryengineV1Citation
|
5473
|
+
include Google::Apis::Core::Hashable
|
5474
|
+
|
5475
|
+
# Output only. End index into the content.
|
5476
|
+
# Corresponds to the JSON property `endIndex`
|
5477
|
+
# @return [Fixnum]
|
5478
|
+
attr_accessor :end_index
|
5479
|
+
|
5480
|
+
# Output only. License of the attribution.
|
5481
|
+
# Corresponds to the JSON property `license`
|
5482
|
+
# @return [String]
|
5483
|
+
attr_accessor :license
|
5484
|
+
|
5485
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
5486
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
5487
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
5488
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
5489
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
5490
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
5491
|
+
# example, a credit card expiration date). Related types: * google.type.
|
5492
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
5493
|
+
# Corresponds to the JSON property `publicationDate`
|
5494
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleTypeDate]
|
5495
|
+
attr_accessor :publication_date
|
5496
|
+
|
5497
|
+
# Output only. Start index into the content.
|
5498
|
+
# Corresponds to the JSON property `startIndex`
|
5499
|
+
# @return [Fixnum]
|
5500
|
+
attr_accessor :start_index
|
5501
|
+
|
5502
|
+
# Output only. Title of the attribution.
|
5503
|
+
# Corresponds to the JSON property `title`
|
5504
|
+
# @return [String]
|
5505
|
+
attr_accessor :title
|
5506
|
+
|
5507
|
+
# Output only. Url reference of the attribution.
|
5508
|
+
# Corresponds to the JSON property `uri`
|
5509
|
+
# @return [String]
|
5510
|
+
attr_accessor :uri
|
5511
|
+
|
5512
|
+
def initialize(**args)
|
5513
|
+
update!(**args)
|
5514
|
+
end
|
5515
|
+
|
5516
|
+
# Update properties of this object
|
5517
|
+
def update!(**args)
|
5518
|
+
@end_index = args[:end_index] if args.key?(:end_index)
|
5519
|
+
@license = args[:license] if args.key?(:license)
|
5520
|
+
@publication_date = args[:publication_date] if args.key?(:publication_date)
|
5521
|
+
@start_index = args[:start_index] if args.key?(:start_index)
|
5522
|
+
@title = args[:title] if args.key?(:title)
|
5523
|
+
@uri = args[:uri] if args.key?(:uri)
|
5524
|
+
end
|
5525
|
+
end
|
5526
|
+
|
5527
|
+
# A collection of source attributions for a piece of content.
|
5528
|
+
class GoogleCloudDiscoveryengineV1CitationMetadata
|
5529
|
+
include Google::Apis::Core::Hashable
|
5530
|
+
|
5531
|
+
# Output only. List of citations.
|
5532
|
+
# Corresponds to the JSON property `citations`
|
5533
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Citation>]
|
5534
|
+
attr_accessor :citations
|
5535
|
+
|
5536
|
+
def initialize(**args)
|
5537
|
+
update!(**args)
|
5538
|
+
end
|
5539
|
+
|
5540
|
+
# Update properties of this object
|
5541
|
+
def update!(**args)
|
5542
|
+
@citations = args[:citations] if args.key?(:citations)
|
5543
|
+
end
|
5544
|
+
end
|
5545
|
+
|
5536
5546
|
# Cloud SQL source import data from.
|
5537
5547
|
class GoogleCloudDiscoveryengineV1CloudSqlSource
|
5538
5548
|
include Google::Apis::Core::Hashable
|
@@ -5924,27 +5934,6 @@ module Google
|
|
5924
5934
|
end
|
5925
5935
|
end
|
5926
5936
|
|
5927
|
-
# The contact info stored in resource level. If both project level and resource
|
5928
|
-
# level is populated, the resource level contact info will override the project
|
5929
|
-
# level contact info.
|
5930
|
-
class GoogleCloudDiscoveryengineV1ContactDetails
|
5931
|
-
include Google::Apis::Core::Hashable
|
5932
|
-
|
5933
|
-
# Optional. The email address of the contact.
|
5934
|
-
# Corresponds to the JSON property `emailAddress`
|
5935
|
-
# @return [String]
|
5936
|
-
attr_accessor :email_address
|
5937
|
-
|
5938
|
-
def initialize(**args)
|
5939
|
-
update!(**args)
|
5940
|
-
end
|
5941
|
-
|
5942
|
-
# Update properties of this object
|
5943
|
-
def update!(**args)
|
5944
|
-
@email_address = args[:email_address] if args.key?(:email_address)
|
5945
|
-
end
|
5946
|
-
end
|
5947
|
-
|
5948
5937
|
# Defines a conditioned behavior to employ during serving. Must be attached to a
|
5949
5938
|
# ServingConfig to be considered at serving time. Permitted actions dependent on
|
5950
5939
|
# `SolutionType`.
|
@@ -10095,12 +10084,6 @@ module Google
|
|
10095
10084
|
class GoogleCloudDiscoveryengineV1LicenseConfig
|
10096
10085
|
include Google::Apis::Core::Hashable
|
10097
10086
|
|
10098
|
-
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
10099
|
-
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
10100
|
-
# Corresponds to the JSON property `alertPolicyResourceConfig`
|
10101
|
-
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig]
|
10102
|
-
attr_accessor :alert_policy_resource_config
|
10103
|
-
|
10104
10087
|
# Optional. Whether the license config should be auto renewed when it reaches
|
10105
10088
|
# the end date.
|
10106
10089
|
# Corresponds to the JSON property `autoRenew`
|
@@ -10126,6 +10109,12 @@ module Google
|
|
10126
10109
|
attr_accessor :free_trial
|
10127
10110
|
alias_method :free_trial?, :free_trial
|
10128
10111
|
|
10112
|
+
# Output only. Whether the license config is for Gemini bundle.
|
10113
|
+
# Corresponds to the JSON property `geminiBundle`
|
10114
|
+
# @return [Boolean]
|
10115
|
+
attr_accessor :gemini_bundle
|
10116
|
+
alias_method :gemini_bundle?, :gemini_bundle
|
10117
|
+
|
10129
10118
|
# Required. Number of licenses purchased.
|
10130
10119
|
# Corresponds to the JSON property `licenseCount`
|
10131
10120
|
# @return [Fixnum]
|
@@ -10171,10 +10160,10 @@ module Google
|
|
10171
10160
|
|
10172
10161
|
# Update properties of this object
|
10173
10162
|
def update!(**args)
|
10174
|
-
@alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
|
10175
10163
|
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
10176
10164
|
@end_date = args[:end_date] if args.key?(:end_date)
|
10177
10165
|
@free_trial = args[:free_trial] if args.key?(:free_trial)
|
10166
|
+
@gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
|
10178
10167
|
@license_count = args[:license_count] if args.key?(:license_count)
|
10179
10168
|
@name = args[:name] if args.key?(:name)
|
10180
10169
|
@start_date = args[:start_date] if args.key?(:start_date)
|
@@ -13988,6 +13977,12 @@ module Google
|
|
13988
13977
|
attr_accessor :is_pinned
|
13989
13978
|
alias_method :is_pinned?, :is_pinned
|
13990
13979
|
|
13980
|
+
# Optional. The labels for the session. Can be set as filter in
|
13981
|
+
# ListSessionsRequest.
|
13982
|
+
# Corresponds to the JSON property `labels`
|
13983
|
+
# @return [Array<String>]
|
13984
|
+
attr_accessor :labels
|
13985
|
+
|
13991
13986
|
# Immutable. Fully qualified name `projects/`project`/locations/global/
|
13992
13987
|
# collections/`collection`/engines/`engine`/sessions/*`
|
13993
13988
|
# Corresponds to the JSON property `name`
|
@@ -14023,6 +14018,7 @@ module Google
|
|
14023
14018
|
@display_name = args[:display_name] if args.key?(:display_name)
|
14024
14019
|
@end_time = args[:end_time] if args.key?(:end_time)
|
14025
14020
|
@is_pinned = args[:is_pinned] if args.key?(:is_pinned)
|
14021
|
+
@labels = args[:labels] if args.key?(:labels)
|
14026
14022
|
@name = args[:name] if args.key?(:name)
|
14027
14023
|
@start_time = args[:start_time] if args.key?(:start_time)
|
14028
14024
|
@state = args[:state] if args.key?(:state)
|
@@ -16731,6 +16727,11 @@ module Google
|
|
16731
16727
|
class GoogleCloudDiscoveryengineV1alphaAssistantGroundedContent
|
16732
16728
|
include Google::Apis::Core::Hashable
|
16733
16729
|
|
16730
|
+
# A collection of source attributions for a piece of content.
|
16731
|
+
# Corresponds to the JSON property `citationMetadata`
|
16732
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCitationMetadata]
|
16733
|
+
attr_accessor :citation_metadata
|
16734
|
+
|
16734
16735
|
# Multi-modal content.
|
16735
16736
|
# Corresponds to the JSON property `content`
|
16736
16737
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAssistantContent]
|
@@ -16747,6 +16748,7 @@ module Google
|
|
16747
16748
|
|
16748
16749
|
# Update properties of this object
|
16749
16750
|
def update!(**args)
|
16751
|
+
@citation_metadata = args[:citation_metadata] if args.key?(:citation_metadata)
|
16750
16752
|
@content = args[:content] if args.key?(:content)
|
16751
16753
|
@text_grounding_metadata = args[:text_grounding_metadata] if args.key?(:text_grounding_metadata)
|
16752
16754
|
end
|
@@ -17037,6 +17039,81 @@ module Google
|
|
17037
17039
|
end
|
17038
17040
|
end
|
17039
17041
|
|
17042
|
+
# Source attributions for content.
|
17043
|
+
class GoogleCloudDiscoveryengineV1alphaCitation
|
17044
|
+
include Google::Apis::Core::Hashable
|
17045
|
+
|
17046
|
+
# Output only. End index into the content.
|
17047
|
+
# Corresponds to the JSON property `endIndex`
|
17048
|
+
# @return [Fixnum]
|
17049
|
+
attr_accessor :end_index
|
17050
|
+
|
17051
|
+
# Output only. License of the attribution.
|
17052
|
+
# Corresponds to the JSON property `license`
|
17053
|
+
# @return [String]
|
17054
|
+
attr_accessor :license
|
17055
|
+
|
17056
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
17057
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
17058
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
17059
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
17060
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
17061
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
17062
|
+
# example, a credit card expiration date). Related types: * google.type.
|
17063
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
17064
|
+
# Corresponds to the JSON property `publicationDate`
|
17065
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleTypeDate]
|
17066
|
+
attr_accessor :publication_date
|
17067
|
+
|
17068
|
+
# Output only. Start index into the content.
|
17069
|
+
# Corresponds to the JSON property `startIndex`
|
17070
|
+
# @return [Fixnum]
|
17071
|
+
attr_accessor :start_index
|
17072
|
+
|
17073
|
+
# Output only. Title of the attribution.
|
17074
|
+
# Corresponds to the JSON property `title`
|
17075
|
+
# @return [String]
|
17076
|
+
attr_accessor :title
|
17077
|
+
|
17078
|
+
# Output only. Url reference of the attribution.
|
17079
|
+
# Corresponds to the JSON property `uri`
|
17080
|
+
# @return [String]
|
17081
|
+
attr_accessor :uri
|
17082
|
+
|
17083
|
+
def initialize(**args)
|
17084
|
+
update!(**args)
|
17085
|
+
end
|
17086
|
+
|
17087
|
+
# Update properties of this object
|
17088
|
+
def update!(**args)
|
17089
|
+
@end_index = args[:end_index] if args.key?(:end_index)
|
17090
|
+
@license = args[:license] if args.key?(:license)
|
17091
|
+
@publication_date = args[:publication_date] if args.key?(:publication_date)
|
17092
|
+
@start_index = args[:start_index] if args.key?(:start_index)
|
17093
|
+
@title = args[:title] if args.key?(:title)
|
17094
|
+
@uri = args[:uri] if args.key?(:uri)
|
17095
|
+
end
|
17096
|
+
end
|
17097
|
+
|
17098
|
+
# A collection of source attributions for a piece of content.
|
17099
|
+
class GoogleCloudDiscoveryengineV1alphaCitationMetadata
|
17100
|
+
include Google::Apis::Core::Hashable
|
17101
|
+
|
17102
|
+
# Output only. List of citations.
|
17103
|
+
# Corresponds to the JSON property `citations`
|
17104
|
+
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCitation>]
|
17105
|
+
attr_accessor :citations
|
17106
|
+
|
17107
|
+
def initialize(**args)
|
17108
|
+
update!(**args)
|
17109
|
+
end
|
17110
|
+
|
17111
|
+
# Update properties of this object
|
17112
|
+
def update!(**args)
|
17113
|
+
@citations = args[:citations] if args.key?(:citations)
|
17114
|
+
end
|
17115
|
+
end
|
17116
|
+
|
17040
17117
|
# Configurations used to enable CMEK data encryption with Cloud KMS keys.
|
17041
17118
|
class GoogleCloudDiscoveryengineV1alphaCmekConfig
|
17042
17119
|
include Google::Apis::Core::Hashable
|
@@ -20969,6 +21046,12 @@ module Google
|
|
20969
21046
|
attr_accessor :free_trial
|
20970
21047
|
alias_method :free_trial?, :free_trial
|
20971
21048
|
|
21049
|
+
# Output only. Whether the license config is for Gemini bundle.
|
21050
|
+
# Corresponds to the JSON property `geminiBundle`
|
21051
|
+
# @return [Boolean]
|
21052
|
+
attr_accessor :gemini_bundle
|
21053
|
+
alias_method :gemini_bundle?, :gemini_bundle
|
21054
|
+
|
20972
21055
|
# Required. Number of licenses purchased.
|
20973
21056
|
# Corresponds to the JSON property `licenseCount`
|
20974
21057
|
# @return [Fixnum]
|
@@ -21018,6 +21101,7 @@ module Google
|
|
21018
21101
|
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
21019
21102
|
@end_date = args[:end_date] if args.key?(:end_date)
|
21020
21103
|
@free_trial = args[:free_trial] if args.key?(:free_trial)
|
21104
|
+
@gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
|
21021
21105
|
@license_count = args[:license_count] if args.key?(:license_count)
|
21022
21106
|
@name = args[:name] if args.key?(:name)
|
21023
21107
|
@start_date = args[:start_date] if args.key?(:start_date)
|
@@ -23556,6 +23640,12 @@ module Google
|
|
23556
23640
|
attr_accessor :is_pinned
|
23557
23641
|
alias_method :is_pinned?, :is_pinned
|
23558
23642
|
|
23643
|
+
# Optional. The labels for the session. Can be set as filter in
|
23644
|
+
# ListSessionsRequest.
|
23645
|
+
# Corresponds to the JSON property `labels`
|
23646
|
+
# @return [Array<String>]
|
23647
|
+
attr_accessor :labels
|
23648
|
+
|
23559
23649
|
# Immutable. Fully qualified name `projects/`project`/locations/global/
|
23560
23650
|
# collections/`collection`/engines/`engine`/sessions/*`
|
23561
23651
|
# Corresponds to the JSON property `name`
|
@@ -23591,6 +23681,7 @@ module Google
|
|
23591
23681
|
@display_name = args[:display_name] if args.key?(:display_name)
|
23592
23682
|
@end_time = args[:end_time] if args.key?(:end_time)
|
23593
23683
|
@is_pinned = args[:is_pinned] if args.key?(:is_pinned)
|
23684
|
+
@labels = args[:labels] if args.key?(:labels)
|
23594
23685
|
@name = args[:name] if args.key?(:name)
|
23595
23686
|
@start_time = args[:start_time] if args.key?(:start_time)
|
23596
23687
|
@state = args[:state] if args.key?(:state)
|
@@ -24442,77 +24533,6 @@ module Google
|
|
24442
24533
|
end
|
24443
24534
|
end
|
24444
24535
|
|
24445
|
-
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
24446
|
-
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
24447
|
-
class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig
|
24448
|
-
include Google::Apis::Core::Hashable
|
24449
|
-
|
24450
|
-
# Optional. The enrollment state of each alert.
|
24451
|
-
# Corresponds to the JSON property `alertEnrollments`
|
24452
|
-
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment>]
|
24453
|
-
attr_accessor :alert_enrollments
|
24454
|
-
|
24455
|
-
# Immutable. The fully qualified resource name of the AlertPolicy.
|
24456
|
-
# Corresponds to the JSON property `alertPolicy`
|
24457
|
-
# @return [String]
|
24458
|
-
attr_accessor :alert_policy
|
24459
|
-
|
24460
|
-
# Optional. The contact details for each alert policy.
|
24461
|
-
# Corresponds to the JSON property `contactDetails`
|
24462
|
-
# @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaContactDetails>]
|
24463
|
-
attr_accessor :contact_details
|
24464
|
-
|
24465
|
-
# Optional. The language code used for notifications
|
24466
|
-
# Corresponds to the JSON property `languageCode`
|
24467
|
-
# @return [String]
|
24468
|
-
attr_accessor :language_code
|
24469
|
-
|
24470
|
-
def initialize(**args)
|
24471
|
-
update!(**args)
|
24472
|
-
end
|
24473
|
-
|
24474
|
-
# Update properties of this object
|
24475
|
-
def update!(**args)
|
24476
|
-
@alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
|
24477
|
-
@alert_policy = args[:alert_policy] if args.key?(:alert_policy)
|
24478
|
-
@contact_details = args[:contact_details] if args.key?(:contact_details)
|
24479
|
-
@language_code = args[:language_code] if args.key?(:language_code)
|
24480
|
-
end
|
24481
|
-
end
|
24482
|
-
|
24483
|
-
# The alert enrollment status.
|
24484
|
-
class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment
|
24485
|
-
include Google::Apis::Core::Hashable
|
24486
|
-
|
24487
|
-
# Immutable. The id of an alert.
|
24488
|
-
# Corresponds to the JSON property `alertId`
|
24489
|
-
# @return [String]
|
24490
|
-
attr_accessor :alert_id
|
24491
|
-
|
24492
|
-
# Required. The enrollment status of a customer.
|
24493
|
-
# Corresponds to the JSON property `enrollState`
|
24494
|
-
# @return [String]
|
24495
|
-
attr_accessor :enroll_state
|
24496
|
-
|
24497
|
-
# Optional. Parameters used to instantiate a notification. Used for
|
24498
|
-
# notifications that are triggered when registered. Not stored. * Gemini
|
24499
|
-
# Business welcome emails. * Gemini Business user invitation emails.
|
24500
|
-
# Corresponds to the JSON property `notificationParams`
|
24501
|
-
# @return [Hash<String,String>]
|
24502
|
-
attr_accessor :notification_params
|
24503
|
-
|
24504
|
-
def initialize(**args)
|
24505
|
-
update!(**args)
|
24506
|
-
end
|
24507
|
-
|
24508
|
-
# Update properties of this object
|
24509
|
-
def update!(**args)
|
24510
|
-
@alert_id = args[:alert_id] if args.key?(:alert_id)
|
24511
|
-
@enroll_state = args[:enroll_state] if args.key?(:enroll_state)
|
24512
|
-
@notification_params = args[:notification_params] if args.key?(:notification_params)
|
24513
|
-
end
|
24514
|
-
end
|
24515
|
-
|
24516
24536
|
# Metadata related to the progress of the SiteSearchEngineService.
|
24517
24537
|
# BatchCreateTargetSites operation. This will be returned by the google.
|
24518
24538
|
# longrunning.Operation.metadata field.
|
@@ -24779,27 +24799,6 @@ module Google
|
|
24779
24799
|
end
|
24780
24800
|
end
|
24781
24801
|
|
24782
|
-
# The contact info stored in resource level. If both project level and resource
|
24783
|
-
# level is populated, the resource level contact info will override the project
|
24784
|
-
# level contact info.
|
24785
|
-
class GoogleCloudDiscoveryengineV1betaContactDetails
|
24786
|
-
include Google::Apis::Core::Hashable
|
24787
|
-
|
24788
|
-
# Optional. The email address of the contact.
|
24789
|
-
# Corresponds to the JSON property `emailAddress`
|
24790
|
-
# @return [String]
|
24791
|
-
attr_accessor :email_address
|
24792
|
-
|
24793
|
-
def initialize(**args)
|
24794
|
-
update!(**args)
|
24795
|
-
end
|
24796
|
-
|
24797
|
-
# Update properties of this object
|
24798
|
-
def update!(**args)
|
24799
|
-
@email_address = args[:email_address] if args.key?(:email_address)
|
24800
|
-
end
|
24801
|
-
end
|
24802
|
-
|
24803
24802
|
# Defines a conditioned behavior to employ during serving. Must be attached to a
|
24804
24803
|
# ServingConfig to be considered at serving time. Permitted actions dependent on
|
24805
24804
|
# `SolutionType`.
|
@@ -27188,12 +27187,6 @@ module Google
|
|
27188
27187
|
class GoogleCloudDiscoveryengineV1betaLicenseConfig
|
27189
27188
|
include Google::Apis::Core::Hashable
|
27190
27189
|
|
27191
|
-
# The resource level alert config. Used in: * UserLicense * EngineUserData The
|
27192
|
-
# AlertPolicyConfig in data connector is of same usage. No easy way to migrate.
|
27193
|
-
# Corresponds to the JSON property `alertPolicyResourceConfig`
|
27194
|
-
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig]
|
27195
|
-
attr_accessor :alert_policy_resource_config
|
27196
|
-
|
27197
27190
|
# Optional. Whether the license config should be auto renewed when it reaches
|
27198
27191
|
# the end date.
|
27199
27192
|
# Corresponds to the JSON property `autoRenew`
|
@@ -27219,6 +27212,12 @@ module Google
|
|
27219
27212
|
attr_accessor :free_trial
|
27220
27213
|
alias_method :free_trial?, :free_trial
|
27221
27214
|
|
27215
|
+
# Output only. Whether the license config is for Gemini bundle.
|
27216
|
+
# Corresponds to the JSON property `geminiBundle`
|
27217
|
+
# @return [Boolean]
|
27218
|
+
attr_accessor :gemini_bundle
|
27219
|
+
alias_method :gemini_bundle?, :gemini_bundle
|
27220
|
+
|
27222
27221
|
# Required. Number of licenses purchased.
|
27223
27222
|
# Corresponds to the JSON property `licenseCount`
|
27224
27223
|
# @return [Fixnum]
|
@@ -27264,10 +27263,10 @@ module Google
|
|
27264
27263
|
|
27265
27264
|
# Update properties of this object
|
27266
27265
|
def update!(**args)
|
27267
|
-
@alert_policy_resource_config = args[:alert_policy_resource_config] if args.key?(:alert_policy_resource_config)
|
27268
27266
|
@auto_renew = args[:auto_renew] if args.key?(:auto_renew)
|
27269
27267
|
@end_date = args[:end_date] if args.key?(:end_date)
|
27270
27268
|
@free_trial = args[:free_trial] if args.key?(:free_trial)
|
27269
|
+
@gemini_bundle = args[:gemini_bundle] if args.key?(:gemini_bundle)
|
27271
27270
|
@license_count = args[:license_count] if args.key?(:license_count)
|
27272
27271
|
@name = args[:name] if args.key?(:name)
|
27273
27272
|
@start_date = args[:start_date] if args.key?(:start_date)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1
|
18
18
|
# Version of the google-apis-discoveryengine_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.55.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 = "
|
25
|
+
REVISION = "20251017"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -280,18 +280,6 @@ module Google
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
281
281
|
end
|
282
282
|
|
283
|
-
class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig
|
284
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
-
|
286
|
-
include Google::Apis::Core::JsonObjectSupport
|
287
|
-
end
|
288
|
-
|
289
|
-
class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment
|
290
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
-
|
292
|
-
include Google::Apis::Core::JsonObjectSupport
|
293
|
-
end
|
294
|
-
|
295
283
|
class GoogleCloudDiscoveryengineV1AlloyDbSource
|
296
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
285
|
|
@@ -904,6 +892,18 @@ module Google
|
|
904
892
|
include Google::Apis::Core::JsonObjectSupport
|
905
893
|
end
|
906
894
|
|
895
|
+
class GoogleCloudDiscoveryengineV1Citation
|
896
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
897
|
+
|
898
|
+
include Google::Apis::Core::JsonObjectSupport
|
899
|
+
end
|
900
|
+
|
901
|
+
class GoogleCloudDiscoveryengineV1CitationMetadata
|
902
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
903
|
+
|
904
|
+
include Google::Apis::Core::JsonObjectSupport
|
905
|
+
end
|
906
|
+
|
907
907
|
class GoogleCloudDiscoveryengineV1CloudSqlSource
|
908
908
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
909
909
|
|
@@ -964,12 +964,6 @@ module Google
|
|
964
964
|
include Google::Apis::Core::JsonObjectSupport
|
965
965
|
end
|
966
966
|
|
967
|
-
class GoogleCloudDiscoveryengineV1ContactDetails
|
968
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
969
|
-
|
970
|
-
include Google::Apis::Core::JsonObjectSupport
|
971
|
-
end
|
972
|
-
|
973
967
|
class GoogleCloudDiscoveryengineV1Control
|
974
968
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
975
969
|
|
@@ -2692,6 +2686,18 @@ module Google
|
|
2692
2686
|
include Google::Apis::Core::JsonObjectSupport
|
2693
2687
|
end
|
2694
2688
|
|
2689
|
+
class GoogleCloudDiscoveryengineV1alphaCitation
|
2690
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2691
|
+
|
2692
|
+
include Google::Apis::Core::JsonObjectSupport
|
2693
|
+
end
|
2694
|
+
|
2695
|
+
class GoogleCloudDiscoveryengineV1alphaCitationMetadata
|
2696
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2697
|
+
|
2698
|
+
include Google::Apis::Core::JsonObjectSupport
|
2699
|
+
end
|
2700
|
+
|
2695
2701
|
class GoogleCloudDiscoveryengineV1alphaCmekConfig
|
2696
2702
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2697
2703
|
|
@@ -3814,18 +3820,6 @@ module Google
|
|
3814
3820
|
include Google::Apis::Core::JsonObjectSupport
|
3815
3821
|
end
|
3816
3822
|
|
3817
|
-
class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig
|
3818
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3819
|
-
|
3820
|
-
include Google::Apis::Core::JsonObjectSupport
|
3821
|
-
end
|
3822
|
-
|
3823
|
-
class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment
|
3824
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3825
|
-
|
3826
|
-
include Google::Apis::Core::JsonObjectSupport
|
3827
|
-
end
|
3828
|
-
|
3829
3823
|
class GoogleCloudDiscoveryengineV1betaBatchCreateTargetSiteMetadata
|
3830
3824
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3831
3825
|
|
@@ -3874,12 +3868,6 @@ module Google
|
|
3874
3868
|
include Google::Apis::Core::JsonObjectSupport
|
3875
3869
|
end
|
3876
3870
|
|
3877
|
-
class GoogleCloudDiscoveryengineV1betaContactDetails
|
3878
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3879
|
-
|
3880
|
-
include Google::Apis::Core::JsonObjectSupport
|
3881
|
-
end
|
3882
|
-
|
3883
3871
|
class GoogleCloudDiscoveryengineV1betaControl
|
3884
3872
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3885
3873
|
|
@@ -5229,27 +5217,6 @@ module Google
|
|
5229
5217
|
end
|
5230
5218
|
end
|
5231
5219
|
|
5232
|
-
class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig
|
5233
|
-
# @private
|
5234
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
5235
|
-
collection :alert_enrollments, as: 'alertEnrollments', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment::Representation
|
5236
|
-
|
5237
|
-
property :alert_policy, as: 'alertPolicy'
|
5238
|
-
collection :contact_details, as: 'contactDetails', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ContactDetails, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ContactDetails::Representation
|
5239
|
-
|
5240
|
-
property :language_code, as: 'languageCode'
|
5241
|
-
end
|
5242
|
-
end
|
5243
|
-
|
5244
|
-
class GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment
|
5245
|
-
# @private
|
5246
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
5247
|
-
property :alert_id, as: 'alertId'
|
5248
|
-
property :enroll_state, as: 'enrollState'
|
5249
|
-
hash :notification_params, as: 'notificationParams'
|
5250
|
-
end
|
5251
|
-
end
|
5252
|
-
|
5253
5220
|
class GoogleCloudDiscoveryengineV1AlloyDbSource
|
5254
5221
|
# @private
|
5255
5222
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5925,6 +5892,8 @@ module Google
|
|
5925
5892
|
class GoogleCloudDiscoveryengineV1AssistantGroundedContent
|
5926
5893
|
# @private
|
5927
5894
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5895
|
+
property :citation_metadata, as: 'citationMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CitationMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CitationMetadata::Representation
|
5896
|
+
|
5928
5897
|
property :content, as: 'content', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantContent, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantContent::Representation
|
5929
5898
|
|
5930
5899
|
property :text_grounding_metadata, as: 'textGroundingMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantGroundedContentTextGroundingMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantGroundedContentTextGroundingMetadata::Representation
|
@@ -6265,6 +6234,27 @@ module Google
|
|
6265
6234
|
end
|
6266
6235
|
end
|
6267
6236
|
|
6237
|
+
class GoogleCloudDiscoveryengineV1Citation
|
6238
|
+
# @private
|
6239
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6240
|
+
property :end_index, as: 'endIndex'
|
6241
|
+
property :license, as: 'license'
|
6242
|
+
property :publication_date, as: 'publicationDate', class: Google::Apis::DiscoveryengineV1::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1::GoogleTypeDate::Representation
|
6243
|
+
|
6244
|
+
property :start_index, as: 'startIndex'
|
6245
|
+
property :title, as: 'title'
|
6246
|
+
property :uri, as: 'uri'
|
6247
|
+
end
|
6248
|
+
end
|
6249
|
+
|
6250
|
+
class GoogleCloudDiscoveryengineV1CitationMetadata
|
6251
|
+
# @private
|
6252
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6253
|
+
collection :citations, as: 'citations', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Citation, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Citation::Representation
|
6254
|
+
|
6255
|
+
end
|
6256
|
+
end
|
6257
|
+
|
6268
6258
|
class GoogleCloudDiscoveryengineV1CloudSqlSource
|
6269
6259
|
# @private
|
6270
6260
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6366,13 +6356,6 @@ module Google
|
|
6366
6356
|
end
|
6367
6357
|
end
|
6368
6358
|
|
6369
|
-
class GoogleCloudDiscoveryengineV1ContactDetails
|
6370
|
-
# @private
|
6371
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
6372
|
-
property :email_address, as: 'emailAddress'
|
6373
|
-
end
|
6374
|
-
end
|
6375
|
-
|
6376
6359
|
class GoogleCloudDiscoveryengineV1Control
|
6377
6360
|
# @private
|
6378
6361
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7497,12 +7480,11 @@ module Google
|
|
7497
7480
|
class GoogleCloudDiscoveryengineV1LicenseConfig
|
7498
7481
|
# @private
|
7499
7482
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7500
|
-
property :alert_policy_resource_config, as: 'alertPolicyResourceConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig::Representation
|
7501
|
-
|
7502
7483
|
property :auto_renew, as: 'autoRenew'
|
7503
7484
|
property :end_date, as: 'endDate', class: Google::Apis::DiscoveryengineV1::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1::GoogleTypeDate::Representation
|
7504
7485
|
|
7505
7486
|
property :free_trial, as: 'freeTrial'
|
7487
|
+
property :gemini_bundle, as: 'geminiBundle'
|
7506
7488
|
property :license_count, :numeric_string => true, as: 'licenseCount'
|
7507
7489
|
property :name, as: 'name'
|
7508
7490
|
property :start_date, as: 'startDate', class: Google::Apis::DiscoveryengineV1::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1::GoogleTypeDate::Representation
|
@@ -8476,6 +8458,7 @@ module Google
|
|
8476
8458
|
property :display_name, as: 'displayName'
|
8477
8459
|
property :end_time, as: 'endTime'
|
8478
8460
|
property :is_pinned, as: 'isPinned'
|
8461
|
+
collection :labels, as: 'labels'
|
8479
8462
|
property :name, as: 'name'
|
8480
8463
|
property :start_time, as: 'startTime'
|
8481
8464
|
property :state, as: 'state'
|
@@ -9244,6 +9227,8 @@ module Google
|
|
9244
9227
|
class GoogleCloudDiscoveryengineV1alphaAssistantGroundedContent
|
9245
9228
|
# @private
|
9246
9229
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9230
|
+
property :citation_metadata, as: 'citationMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCitationMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCitationMetadata::Representation
|
9231
|
+
|
9247
9232
|
property :content, as: 'content', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAssistantContent, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAssistantContent::Representation
|
9248
9233
|
|
9249
9234
|
property :text_grounding_metadata, as: 'textGroundingMetadata', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAssistantGroundedContentTextGroundingMetadata, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAssistantGroundedContentTextGroundingMetadata::Representation
|
@@ -9337,6 +9322,27 @@ module Google
|
|
9337
9322
|
end
|
9338
9323
|
end
|
9339
9324
|
|
9325
|
+
class GoogleCloudDiscoveryengineV1alphaCitation
|
9326
|
+
# @private
|
9327
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9328
|
+
property :end_index, as: 'endIndex'
|
9329
|
+
property :license, as: 'license'
|
9330
|
+
property :publication_date, as: 'publicationDate', class: Google::Apis::DiscoveryengineV1::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1::GoogleTypeDate::Representation
|
9331
|
+
|
9332
|
+
property :start_index, as: 'startIndex'
|
9333
|
+
property :title, as: 'title'
|
9334
|
+
property :uri, as: 'uri'
|
9335
|
+
end
|
9336
|
+
end
|
9337
|
+
|
9338
|
+
class GoogleCloudDiscoveryengineV1alphaCitationMetadata
|
9339
|
+
# @private
|
9340
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9341
|
+
collection :citations, as: 'citations', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCitation, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCitation::Representation
|
9342
|
+
|
9343
|
+
end
|
9344
|
+
end
|
9345
|
+
|
9340
9346
|
class GoogleCloudDiscoveryengineV1alphaCmekConfig
|
9341
9347
|
# @private
|
9342
9348
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10379,6 +10385,7 @@ module Google
|
|
10379
10385
|
property :end_date, as: 'endDate', class: Google::Apis::DiscoveryengineV1::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1::GoogleTypeDate::Representation
|
10380
10386
|
|
10381
10387
|
property :free_trial, as: 'freeTrial'
|
10388
|
+
property :gemini_bundle, as: 'geminiBundle'
|
10382
10389
|
property :license_count, :numeric_string => true, as: 'licenseCount'
|
10383
10390
|
property :name, as: 'name'
|
10384
10391
|
property :start_date, as: 'startDate', class: Google::Apis::DiscoveryengineV1::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1::GoogleTypeDate::Representation
|
@@ -11010,6 +11017,7 @@ module Google
|
|
11010
11017
|
property :display_name, as: 'displayName'
|
11011
11018
|
property :end_time, as: 'endTime'
|
11012
11019
|
property :is_pinned, as: 'isPinned'
|
11020
|
+
collection :labels, as: 'labels'
|
11013
11021
|
property :name, as: 'name'
|
11014
11022
|
property :start_time, as: 'startTime'
|
11015
11023
|
property :state, as: 'state'
|
@@ -11260,27 +11268,6 @@ module Google
|
|
11260
11268
|
end
|
11261
11269
|
end
|
11262
11270
|
|
11263
|
-
class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig
|
11264
|
-
# @private
|
11265
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
11266
|
-
collection :alert_enrollments, as: 'alertEnrollments', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment::Representation
|
11267
|
-
|
11268
|
-
property :alert_policy, as: 'alertPolicy'
|
11269
|
-
collection :contact_details, as: 'contactDetails', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaContactDetails, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaContactDetails::Representation
|
11270
|
-
|
11271
|
-
property :language_code, as: 'languageCode'
|
11272
|
-
end
|
11273
|
-
end
|
11274
|
-
|
11275
|
-
class GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment
|
11276
|
-
# @private
|
11277
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
11278
|
-
property :alert_id, as: 'alertId'
|
11279
|
-
property :enroll_state, as: 'enrollState'
|
11280
|
-
hash :notification_params, as: 'notificationParams'
|
11281
|
-
end
|
11282
|
-
end
|
11283
|
-
|
11284
11271
|
class GoogleCloudDiscoveryengineV1betaBatchCreateTargetSiteMetadata
|
11285
11272
|
# @private
|
11286
11273
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -11359,13 +11346,6 @@ module Google
|
|
11359
11346
|
end
|
11360
11347
|
end
|
11361
11348
|
|
11362
|
-
class GoogleCloudDiscoveryengineV1betaContactDetails
|
11363
|
-
# @private
|
11364
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
11365
|
-
property :email_address, as: 'emailAddress'
|
11366
|
-
end
|
11367
|
-
end
|
11368
|
-
|
11369
11349
|
class GoogleCloudDiscoveryengineV1betaControl
|
11370
11350
|
# @private
|
11371
11351
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -12042,12 +12022,11 @@ module Google
|
|
12042
12022
|
class GoogleCloudDiscoveryengineV1betaLicenseConfig
|
12043
12023
|
# @private
|
12044
12024
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12045
|
-
property :alert_policy_resource_config, as: 'alertPolicyResourceConfig', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig::Representation
|
12046
|
-
|
12047
12025
|
property :auto_renew, as: 'autoRenew'
|
12048
12026
|
property :end_date, as: 'endDate', class: Google::Apis::DiscoveryengineV1::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1::GoogleTypeDate::Representation
|
12049
12027
|
|
12050
12028
|
property :free_trial, as: 'freeTrial'
|
12029
|
+
property :gemini_bundle, as: 'geminiBundle'
|
12051
12030
|
property :license_count, :numeric_string => true, as: 'licenseCount'
|
12052
12031
|
property :name, as: 'name'
|
12053
12032
|
property :start_date, as: 'startDate', class: Google::Apis::DiscoveryengineV1::GoogleTypeDate, decorator: Google::Apis::DiscoveryengineV1::GoogleTypeDate::Representation
|
@@ -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_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.55.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.55.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|