File tree Expand file tree Collapse file tree 5 files changed +26
-2
lines changed
generated/google-apis-firebaseml_v2beta
lib/google/apis/firebaseml_v2beta Expand file tree Collapse file tree 5 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -243821,6 +243821,8 @@
243821
243821
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1DynamicRetrievalConfig/dynamicThreshold": dynamic_threshold
243822
243822
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1DynamicRetrievalConfig/mode": mode
243823
243823
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1EnterpriseWebSearch": google_cloud_aiplatform_v1beta1_enterprise_web_search
243824
+ "/firebaseml:v2beta/GoogleCloudAiplatformV1beta1EnterpriseWebSearch/excludeDomains": exclude_domains
243825
+ "/firebaseml:v2beta/GoogleCloudAiplatformV1beta1EnterpriseWebSearch/excludeDomains/exclude_domain": exclude_domain
243824
243826
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ExecutableCode": google_cloud_aiplatform_v1beta1_executable_code
243825
243827
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ExecutableCode/code": code
243826
243828
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ExecutableCode/language": language
@@ -244147,6 +244149,8 @@
244147
244149
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ToolConfig/functionCallingConfig": function_calling_config
244148
244150
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ToolConfig/retrievalConfig": retrieval_config
244149
244151
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ToolGoogleSearch": google_cloud_aiplatform_v1beta1_tool_google_search
244152
+ "/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ToolGoogleSearch/excludeDomains": exclude_domains
244153
+ "/firebaseml:v2beta/GoogleCloudAiplatformV1beta1ToolGoogleSearch/excludeDomains/exclude_domain": exclude_domain
244150
244154
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1UrlContext": google_cloud_aiplatform_v1beta1_url_context
244151
244155
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1UrlContextMetadata": google_cloud_aiplatform_v1beta1_url_context_metadata
244152
244156
"/firebaseml:v2beta/GoogleCloudAiplatformV1beta1UrlContextMetadata/urlMetadata": url_metadata
Original file line number Diff line number Diff line change 1
1
# Release history for google-apis-firebaseml_v2beta
2
2
3
+ ### v0.27.0 (2025-08-03)
4
+
5
+ * Regenerated from discovery document revision 20250727
6
+
3
7
### v0.26.0 (2025-07-27)
4
8
5
9
* Regenerated from discovery document revision 20250723
Original file line number Diff line number Diff line change @@ -682,12 +682,19 @@ def update!(**args)
682
682
class GoogleCloudAiplatformV1beta1EnterpriseWebSearch
683
683
include Google ::Apis ::Core ::Hashable
684
684
685
+ # Optional. List of domains to be excluded from the search results. The default
686
+ # limit is 2000 domains.
687
+ # Corresponds to the JSON property `excludeDomains`
688
+ # @return [Array<String>]
689
+ attr_accessor :exclude_domains
690
+
685
691
def initialize ( **args )
686
692
update! ( **args )
687
693
end
688
694
689
695
# Update properties of this object
690
696
def update! ( **args )
697
+ @exclude_domains = args [ :exclude_domains ] if args . key? ( :exclude_domains )
691
698
end
692
699
end
693
700
@@ -2927,12 +2934,19 @@ def update!(**args)
2927
2934
class GoogleCloudAiplatformV1beta1ToolGoogleSearch
2928
2935
include Google ::Apis ::Core ::Hashable
2929
2936
2937
+ # Optional. List of domains to be excluded from the search results. The default
2938
+ # limit is 2000 domains. Example: ["amazon.com", "facebook.com"].
2939
+ # Corresponds to the JSON property `excludeDomains`
2940
+ # @return [Array<String>]
2941
+ attr_accessor :exclude_domains
2942
+
2930
2943
def initialize ( **args )
2931
2944
update! ( **args )
2932
2945
end
2933
2946
2934
2947
# Update properties of this object
2935
2948
def update! ( **args )
2949
+ @exclude_domains = args [ :exclude_domains ] if args . key? ( :exclude_domains )
2936
2950
end
2937
2951
end
2938
2952
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ module Google
16
16
module Apis
17
17
module FirebasemlV2beta
18
18
# Version of the google-apis-firebaseml_v2beta gem
19
- GEM_VERSION = "0.26 .0"
19
+ GEM_VERSION = "0.27 .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 = "20250723 "
25
+ REVISION = "20250727 "
26
26
end
27
27
end
28
28
end
Original file line number Diff line number Diff line change @@ -732,6 +732,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
732
732
class GoogleCloudAiplatformV1beta1EnterpriseWebSearch
733
733
# @private
734
734
class Representation < Google ::Apis ::Core ::JsonRepresentation
735
+ collection :exclude_domains , as : 'excludeDomains'
735
736
end
736
737
end
737
738
@@ -1369,6 +1370,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
1369
1370
class GoogleCloudAiplatformV1beta1ToolGoogleSearch
1370
1371
# @private
1371
1372
class Representation < Google ::Apis ::Core ::JsonRepresentation
1373
+ collection :exclude_domains , as : 'excludeDomains'
1372
1374
end
1373
1375
end
1374
1376
You can’t perform that action at this time.
0 commit comments