google-apis-discoveryengine_v1 0.63.0 → 0.64.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: 9b7e05e2b1a781a814422bb14390f52a6468579f58f2e39c7fc2c0849e3ddf83
|
|
4
|
+
data.tar.gz: d9ccecaba3ea1558e92ddf54fc89862b97555b7328bba0aa3857a899c897ecf7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d940faa18e8724f80c2da61c1e114289bf0b9cfd2e45d6f41d82e20eadc601eaed79f3f2baabba28ce24df9c3c879045f4684f7db642039cfb1a11e00c8e88dd
|
|
7
|
+
data.tar.gz: 3d122919782f8ca931c1205c3b3073b611c66e8ac355d174e52c7cf67762c8bc916614890efe2ee4576ff72bddb07e665304ff2c350e3939c6eab69db2e1d1d6
|
data/CHANGELOG.md
CHANGED
|
@@ -3245,6 +3245,19 @@ module Google
|
|
|
3245
3245
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantCustomerPolicy]
|
|
3246
3246
|
attr_accessor :customer_policy
|
|
3247
3247
|
|
|
3248
|
+
# Optional. This field controls the default web grounding toggle for end users
|
|
3249
|
+
# if `web_grounding_type` is set to `WEB_GROUNDING_TYPE_GOOGLE_SEARCH` or `
|
|
3250
|
+
# WEB_GROUNDING_TYPE_ENTERPRISE_WEB_SEARCH`. By default, this field is set to
|
|
3251
|
+
# false. If `web_grounding_type` is `WEB_GROUNDING_TYPE_GOOGLE_SEARCH` or `
|
|
3252
|
+
# WEB_GROUNDING_TYPE_ENTERPRISE_WEB_SEARCH`, end users will have web grounding
|
|
3253
|
+
# enabled by default on UI. If true, grounding toggle will be disabled by
|
|
3254
|
+
# default on UI. End users can still enable web grounding in the UI if web
|
|
3255
|
+
# grounding is enabled.
|
|
3256
|
+
# Corresponds to the JSON property `defaultWebGroundingToggleOff`
|
|
3257
|
+
# @return [Boolean]
|
|
3258
|
+
attr_accessor :default_web_grounding_toggle_off
|
|
3259
|
+
alias_method :default_web_grounding_toggle_off?, :default_web_grounding_toggle_off
|
|
3260
|
+
|
|
3248
3261
|
# Optional. Description for additional information. Expected to be shown on the
|
|
3249
3262
|
# configuration UI, not to the users of the assistant.
|
|
3250
3263
|
# Corresponds to the JSON property `description`
|
|
@@ -3294,6 +3307,7 @@ module Google
|
|
|
3294
3307
|
# Update properties of this object
|
|
3295
3308
|
def update!(**args)
|
|
3296
3309
|
@customer_policy = args[:customer_policy] if args.key?(:customer_policy)
|
|
3310
|
+
@default_web_grounding_toggle_off = args[:default_web_grounding_toggle_off] if args.key?(:default_web_grounding_toggle_off)
|
|
3297
3311
|
@description = args[:description] if args.key?(:description)
|
|
3298
3312
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
3299
3313
|
@enabled_tools = args[:enabled_tools] if args.key?(:enabled_tools)
|
|
@@ -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.64.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 = "20260107"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -5773,6 +5773,7 @@ module Google
|
|
|
5773
5773
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5774
5774
|
property :customer_policy, as: 'customerPolicy', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantCustomerPolicy, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantCustomerPolicy::Representation
|
|
5775
5775
|
|
|
5776
|
+
property :default_web_grounding_toggle_off, as: 'defaultWebGroundingToggleOff'
|
|
5776
5777
|
property :description, as: 'description'
|
|
5777
5778
|
property :display_name, as: 'displayName'
|
|
5778
5779
|
hash :enabled_tools, as: 'enabledTools', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantToolList, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AssistantToolList::Representation
|
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.64.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.64.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:
|