Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -282653,6 +282653,8 @@
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ToolParallelAiSearch/apiKey": api_key
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ToolParallelAiSearch/customConfigs": custom_configs
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ToolParallelAiSearch/customConfigs/custom_config": custom_config
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ToolParallelAiSearch/enableDataRetention": enable_data_retention
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ToolParallelAiSearch/enableZeroDataRetention": enable_zero_data_retention
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1UrlContext": google_cloud_aiplatform_v1beta1_url_context
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1UrlContextMetadata": google_cloud_aiplatform_v1beta1_url_context_metadata
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1UrlContextMetadata/urlMetadata": url_metadata
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-firebaseml_v2beta/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-firebaseml_v2beta

### v0.41.0 (2026-07-05)

* Regenerated from discovery document revision 20260628

### v0.40.0 (2026-06-21)

* Regenerated from discovery document revision 20260612
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3995,6 +3995,25 @@ class GoogleCloudAiplatformV1beta1ToolParallelAiSearch
# @return [Hash<String,Object>]
attr_accessor :custom_configs

# Optional. Deprecated: Use `enable_zero_data_retention` instead. Instructs
# Vertex Grounding to use Parallel's Zero Data Retention Marketplace product. If
# this value is "false" or omitted, the Parallel Web Search for Grounding
# standard subscription will be used. If this value is "true", the Parallel Web
# Search for Grounding - ZDR subscription will be used.
# Corresponds to the JSON property `enableDataRetention`
# @return [Boolean]
attr_accessor :enable_data_retention
alias_method :enable_data_retention?, :enable_data_retention

# Optional. Instructs Vertex Grounding to use Parallel's Zero Data Retention
# Marketplace product. If this value is "false" or omitted, the Parallel Web
# Search for Grounding standard subscription will be used. If this value is "
# true", the Parallel Web Search for Grounding - ZDR subscription will be used.
# Corresponds to the JSON property `enableZeroDataRetention`
# @return [Boolean]
attr_accessor :enable_zero_data_retention
alias_method :enable_zero_data_retention?, :enable_zero_data_retention

def initialize(**args)
update!(**args)
end
Expand All @@ -4003,6 +4022,8 @@ def initialize(**args)
def update!(**args)
@api_key = args[:api_key] if args.key?(:api_key)
@custom_configs = args[:custom_configs] if args.key?(:custom_configs)
@enable_data_retention = args[:enable_data_retention] if args.key?(:enable_data_retention)
@enable_zero_data_retention = args[:enable_zero_data_retention] if args.key?(:enable_zero_data_retention)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module FirebasemlV2beta
# Version of the google-apis-firebaseml_v2beta gem
GEM_VERSION = "0.40.0"
GEM_VERSION = "0.41.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.19.0"

# Revision of the discovery document this client was generated from
REVISION = "20260612"
REVISION = "20260628"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1755,6 +1755,8 @@ class GoogleCloudAiplatformV1beta1ToolParallelAiSearch
class Representation < Google::Apis::Core::JsonRepresentation
property :api_key, as: 'apiKey'
hash :custom_configs, as: 'customConfigs'
property :enable_data_retention, as: 'enableDataRetention'
property :enable_zero_data_retention, as: 'enableZeroDataRetention'
end
end

Expand Down
Loading