google-apis-discoveryengine_v1alpha 0.97.0 → 0.98.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/discoveryengine_v1alpha/classes.rb +181 -24
- data/lib/google/apis/discoveryengine_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1alpha/representations.rb +91 -3
- data/lib/google/apis/discoveryengine_v1alpha/service.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 53b51345c60ecf56dc0950b454d5dcfd385241d15019800ecdfa2fbb3feef151
|
|
4
|
+
data.tar.gz: f1c7e0abb300da76e834016cd0810e65db173a5639e2eded43e21a6db6966e82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5db15be3f8dcb9f9ae5327a47a73c1fad21c9547e7648a7e767049219e0f607a343a4fd00443b9676d8d4a71aced3a39ff8c6092f1515bf58349ea4b00a6eec0
|
|
7
|
+
data.tar.gz: e9b1125a28265f7ac6bc19ea58202c4ffebd740c1307c6e0a3b5886d9bfe6f34dc05ce868c178da7720452a6a7f714509120bbdd54562dc7e6778d53da967216
|
data/CHANGELOG.md
CHANGED
|
@@ -889,6 +889,47 @@ module Google
|
|
|
889
889
|
end
|
|
890
890
|
end
|
|
891
891
|
|
|
892
|
+
# Agent Gateway setting, which may be attached to Gemini Enterprise resources
|
|
893
|
+
# for egress control of Gemini Enterprise agents to agents and tools outside of
|
|
894
|
+
# Gemini Enterprise.
|
|
895
|
+
class GoogleCloudDiscoveryengineV1AgentGatewaySetting
|
|
896
|
+
include Google::Apis::Core::Hashable
|
|
897
|
+
|
|
898
|
+
# Reference to an Agent Gateway resource.
|
|
899
|
+
# Corresponds to the JSON property `defaultEgressAgentGateway`
|
|
900
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AgentGatewaySettingAgentGatewayReference]
|
|
901
|
+
attr_accessor :default_egress_agent_gateway
|
|
902
|
+
|
|
903
|
+
def initialize(**args)
|
|
904
|
+
update!(**args)
|
|
905
|
+
end
|
|
906
|
+
|
|
907
|
+
# Update properties of this object
|
|
908
|
+
def update!(**args)
|
|
909
|
+
@default_egress_agent_gateway = args[:default_egress_agent_gateway] if args.key?(:default_egress_agent_gateway)
|
|
910
|
+
end
|
|
911
|
+
end
|
|
912
|
+
|
|
913
|
+
# Reference to an Agent Gateway resource.
|
|
914
|
+
class GoogleCloudDiscoveryengineV1AgentGatewaySettingAgentGatewayReference
|
|
915
|
+
include Google::Apis::Core::Hashable
|
|
916
|
+
|
|
917
|
+
# Required. Immutable. The resource name of the agent gateway. Expected format: `
|
|
918
|
+
# projects/`project_number`/locations/`location`/agentGateways/`agent_gateway``.
|
|
919
|
+
# Corresponds to the JSON property `name`
|
|
920
|
+
# @return [String]
|
|
921
|
+
attr_accessor :name
|
|
922
|
+
|
|
923
|
+
def initialize(**args)
|
|
924
|
+
update!(**args)
|
|
925
|
+
end
|
|
926
|
+
|
|
927
|
+
# Update properties of this object
|
|
928
|
+
def update!(**args)
|
|
929
|
+
@name = args[:name] if args.key?(:name)
|
|
930
|
+
end
|
|
931
|
+
end
|
|
932
|
+
|
|
892
933
|
# The connector level alert config.
|
|
893
934
|
class GoogleCloudDiscoveryengineV1AlertPolicyConfig
|
|
894
935
|
include Google::Apis::Core::Hashable
|
|
@@ -3676,6 +3717,13 @@ module Google
|
|
|
3676
3717
|
class GoogleCloudDiscoveryengineV1Engine
|
|
3677
3718
|
include Google::Apis::Core::Hashable
|
|
3678
3719
|
|
|
3720
|
+
# Agent Gateway setting, which may be attached to Gemini Enterprise resources
|
|
3721
|
+
# for egress control of Gemini Enterprise agents to agents and tools outside of
|
|
3722
|
+
# Gemini Enterprise.
|
|
3723
|
+
# Corresponds to the JSON property `agentGatewaySetting`
|
|
3724
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AgentGatewaySetting]
|
|
3725
|
+
attr_accessor :agent_gateway_setting
|
|
3726
|
+
|
|
3679
3727
|
# Optional. Immutable. This the application type which this engine resource
|
|
3680
3728
|
# represents. NOTE: this is a new concept independ of existing industry vertical
|
|
3681
3729
|
# or solution type.
|
|
@@ -3803,10 +3851,10 @@ module Google
|
|
|
3803
3851
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ObservabilityConfig]
|
|
3804
3852
|
attr_accessor :observability_config
|
|
3805
3853
|
|
|
3806
|
-
# Optional. The
|
|
3807
|
-
# Corresponds to the JSON property `
|
|
3808
|
-
# @return [String]
|
|
3809
|
-
attr_accessor :
|
|
3854
|
+
# Optional. The emails of the procurement contacts.
|
|
3855
|
+
# Corresponds to the JSON property `procurementContactEmails`
|
|
3856
|
+
# @return [Array<String>]
|
|
3857
|
+
attr_accessor :procurement_contact_emails
|
|
3810
3858
|
|
|
3811
3859
|
# Configurations for a Search Engine.
|
|
3812
3860
|
# Corresponds to the JSON property `searchEngineConfig`
|
|
@@ -3829,6 +3877,7 @@ module Google
|
|
|
3829
3877
|
|
|
3830
3878
|
# Update properties of this object
|
|
3831
3879
|
def update!(**args)
|
|
3880
|
+
@agent_gateway_setting = args[:agent_gateway_setting] if args.key?(:agent_gateway_setting)
|
|
3832
3881
|
@app_type = args[:app_type] if args.key?(:app_type)
|
|
3833
3882
|
@chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
|
|
3834
3883
|
@chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
|
|
@@ -3848,7 +3897,7 @@ module Google
|
|
|
3848
3897
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
3849
3898
|
@name = args[:name] if args.key?(:name)
|
|
3850
3899
|
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
3851
|
-
@
|
|
3900
|
+
@procurement_contact_emails = args[:procurement_contact_emails] if args.key?(:procurement_contact_emails)
|
|
3852
3901
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
3853
3902
|
@solution_type = args[:solution_type] if args.key?(:solution_type)
|
|
3854
3903
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
@@ -4882,14 +4931,14 @@ module Google
|
|
|
4882
4931
|
class GoogleCloudDiscoveryengineV1ObservabilityConfig
|
|
4883
4932
|
include Google::Apis::Core::Hashable
|
|
4884
4933
|
|
|
4885
|
-
# Optional. Enables observability. If false
|
|
4934
|
+
# Optional. Enables observability. If `false`, all other flags are ignored.
|
|
4886
4935
|
# Corresponds to the JSON property `observabilityEnabled`
|
|
4887
4936
|
# @return [Boolean]
|
|
4888
4937
|
attr_accessor :observability_enabled
|
|
4889
4938
|
alias_method :observability_enabled?, :observability_enabled
|
|
4890
4939
|
|
|
4891
4940
|
# Optional. Enables sensitive logging. Sensitive logging includes customer core
|
|
4892
|
-
# content (e.g. prompts, responses). If false
|
|
4941
|
+
# content (e.g. prompts, responses). If `false`, will sanitize all sensitive
|
|
4893
4942
|
# fields.
|
|
4894
4943
|
# Corresponds to the JSON property `sensitiveLoggingEnabled`
|
|
4895
4944
|
# @return [Boolean]
|
|
@@ -7552,6 +7601,47 @@ module Google
|
|
|
7552
7601
|
end
|
|
7553
7602
|
end
|
|
7554
7603
|
|
|
7604
|
+
# Agent Gateway setting, which may be attached to Gemini Enterprise resources
|
|
7605
|
+
# for egress control of Gemini Enterprise agents to agents and tools outside of
|
|
7606
|
+
# Gemini Enterprise.
|
|
7607
|
+
class GoogleCloudDiscoveryengineV1alphaAgentGatewaySetting
|
|
7608
|
+
include Google::Apis::Core::Hashable
|
|
7609
|
+
|
|
7610
|
+
# Reference to an Agent Gateway resource.
|
|
7611
|
+
# Corresponds to the JSON property `defaultEgressAgentGateway`
|
|
7612
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentGatewaySettingAgentGatewayReference]
|
|
7613
|
+
attr_accessor :default_egress_agent_gateway
|
|
7614
|
+
|
|
7615
|
+
def initialize(**args)
|
|
7616
|
+
update!(**args)
|
|
7617
|
+
end
|
|
7618
|
+
|
|
7619
|
+
# Update properties of this object
|
|
7620
|
+
def update!(**args)
|
|
7621
|
+
@default_egress_agent_gateway = args[:default_egress_agent_gateway] if args.key?(:default_egress_agent_gateway)
|
|
7622
|
+
end
|
|
7623
|
+
end
|
|
7624
|
+
|
|
7625
|
+
# Reference to an Agent Gateway resource.
|
|
7626
|
+
class GoogleCloudDiscoveryengineV1alphaAgentGatewaySettingAgentGatewayReference
|
|
7627
|
+
include Google::Apis::Core::Hashable
|
|
7628
|
+
|
|
7629
|
+
# Required. Immutable. The resource name of the agent gateway. Expected format: `
|
|
7630
|
+
# projects/`project_number`/locations/`location`/agentGateways/`agent_gateway``.
|
|
7631
|
+
# Corresponds to the JSON property `name`
|
|
7632
|
+
# @return [String]
|
|
7633
|
+
attr_accessor :name
|
|
7634
|
+
|
|
7635
|
+
def initialize(**args)
|
|
7636
|
+
update!(**args)
|
|
7637
|
+
end
|
|
7638
|
+
|
|
7639
|
+
# Update properties of this object
|
|
7640
|
+
def update!(**args)
|
|
7641
|
+
@name = args[:name] if args.key?(:name)
|
|
7642
|
+
end
|
|
7643
|
+
end
|
|
7644
|
+
|
|
7555
7645
|
# Represents an image.
|
|
7556
7646
|
class GoogleCloudDiscoveryengineV1alphaAgentImage
|
|
7557
7647
|
include Google::Apis::Core::Hashable
|
|
@@ -13733,7 +13823,7 @@ module Google
|
|
|
13733
13823
|
# @return [String]
|
|
13734
13824
|
attr_accessor :create_time
|
|
13735
13825
|
|
|
13736
|
-
#
|
|
13826
|
+
# Contains the data protection policy config for a DataStore or a connector.
|
|
13737
13827
|
# Corresponds to the JSON property `dataProtectionPolicy`
|
|
13738
13828
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDataProtectionPolicy]
|
|
13739
13829
|
attr_accessor :data_protection_policy
|
|
@@ -14210,7 +14300,7 @@ module Google
|
|
|
14210
14300
|
end
|
|
14211
14301
|
end
|
|
14212
14302
|
|
|
14213
|
-
#
|
|
14303
|
+
# Contains the data protection policy config for a DataStore or a connector.
|
|
14214
14304
|
class GoogleCloudDiscoveryengineV1alphaDataProtectionPolicy
|
|
14215
14305
|
include Google::Apis::Core::Hashable
|
|
14216
14306
|
|
|
@@ -14235,7 +14325,8 @@ module Google
|
|
|
14235
14325
|
class GoogleCloudDiscoveryengineV1alphaDataProtectionPolicySensitiveDataProtectionPolicy
|
|
14236
14326
|
include Google::Apis::Core::Hashable
|
|
14237
14327
|
|
|
14238
|
-
# Optional.
|
|
14328
|
+
# Optional. Specifies the resource name of the Sensitive Data Protection content
|
|
14329
|
+
# policy.
|
|
14239
14330
|
# Corresponds to the JSON property `policy`
|
|
14240
14331
|
# @return [String]
|
|
14241
14332
|
attr_accessor :policy
|
|
@@ -15874,6 +15965,13 @@ module Google
|
|
|
15874
15965
|
class GoogleCloudDiscoveryengineV1alphaEngine
|
|
15875
15966
|
include Google::Apis::Core::Hashable
|
|
15876
15967
|
|
|
15968
|
+
# Agent Gateway setting, which may be attached to Gemini Enterprise resources
|
|
15969
|
+
# for egress control of Gemini Enterprise agents to agents and tools outside of
|
|
15970
|
+
# Gemini Enterprise.
|
|
15971
|
+
# Corresponds to the JSON property `agentGatewaySetting`
|
|
15972
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentGatewaySetting]
|
|
15973
|
+
attr_accessor :agent_gateway_setting
|
|
15974
|
+
|
|
15877
15975
|
# Optional. Immutable. This the application type which this engine resource
|
|
15878
15976
|
# represents. NOTE: this is a new concept independ of existing industry vertical
|
|
15879
15977
|
# or solution type.
|
|
@@ -16001,10 +16099,10 @@ module Google
|
|
|
16001
16099
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig]
|
|
16002
16100
|
attr_accessor :observability_config
|
|
16003
16101
|
|
|
16004
|
-
# Optional. The
|
|
16005
|
-
# Corresponds to the JSON property `
|
|
16006
|
-
# @return [String]
|
|
16007
|
-
attr_accessor :
|
|
16102
|
+
# Optional. The emails of the procurement contacts.
|
|
16103
|
+
# Corresponds to the JSON property `procurementContactEmails`
|
|
16104
|
+
# @return [Array<String>]
|
|
16105
|
+
attr_accessor :procurement_contact_emails
|
|
16008
16106
|
|
|
16009
16107
|
# Additional information of a recommendation engine.
|
|
16010
16108
|
# Corresponds to the JSON property `recommendationMetadata`
|
|
@@ -16037,6 +16135,7 @@ module Google
|
|
|
16037
16135
|
|
|
16038
16136
|
# Update properties of this object
|
|
16039
16137
|
def update!(**args)
|
|
16138
|
+
@agent_gateway_setting = args[:agent_gateway_setting] if args.key?(:agent_gateway_setting)
|
|
16040
16139
|
@app_type = args[:app_type] if args.key?(:app_type)
|
|
16041
16140
|
@chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
|
|
16042
16141
|
@chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
|
|
@@ -16056,7 +16155,7 @@ module Google
|
|
|
16056
16155
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
16057
16156
|
@name = args[:name] if args.key?(:name)
|
|
16058
16157
|
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
16059
|
-
@
|
|
16158
|
+
@procurement_contact_emails = args[:procurement_contact_emails] if args.key?(:procurement_contact_emails)
|
|
16060
16159
|
@recommendation_metadata = args[:recommendation_metadata] if args.key?(:recommendation_metadata)
|
|
16061
16160
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
16062
16161
|
@similar_documents_config = args[:similar_documents_config] if args.key?(:similar_documents_config)
|
|
@@ -17249,6 +17348,14 @@ module Google
|
|
|
17249
17348
|
# @return [Array<String>]
|
|
17250
17349
|
attr_accessor :schema_org_paths
|
|
17251
17350
|
|
|
17351
|
+
# Optional. Specifies the importance of the field when `searchable_option` is `
|
|
17352
|
+
# SEARCHABLE_ENABLED`. If `searchable_option` is `SEARCHABLE_DISABLED`, this
|
|
17353
|
+
# field is ignored. If `searchable_option` is `SEARCHABLE_ENABLED` and this is `
|
|
17354
|
+
# SEARCHABLE_FIELD_IMPORTANCE_UNSPECIFIED`, it behaves as `DEFAULT_IMPORTANCE`.
|
|
17355
|
+
# Corresponds to the JSON property `searchableFieldImportance`
|
|
17356
|
+
# @return [String]
|
|
17357
|
+
attr_accessor :searchable_field_importance
|
|
17358
|
+
|
|
17252
17359
|
# If searchable_option is SEARCHABLE_ENABLED, field values are searchable by
|
|
17253
17360
|
# text queries in SearchService.Search. If SEARCHABLE_ENABLED but field type is
|
|
17254
17361
|
# numerical, field values will not be searchable by text queries in
|
|
@@ -17280,6 +17387,7 @@ module Google
|
|
|
17280
17387
|
@recs_filterable_option = args[:recs_filterable_option] if args.key?(:recs_filterable_option)
|
|
17281
17388
|
@retrievable_option = args[:retrievable_option] if args.key?(:retrievable_option)
|
|
17282
17389
|
@schema_org_paths = args[:schema_org_paths] if args.key?(:schema_org_paths)
|
|
17390
|
+
@searchable_field_importance = args[:searchable_field_importance] if args.key?(:searchable_field_importance)
|
|
17283
17391
|
@searchable_option = args[:searchable_option] if args.key?(:searchable_option)
|
|
17284
17392
|
end
|
|
17285
17393
|
end
|
|
@@ -19937,14 +20045,14 @@ module Google
|
|
|
19937
20045
|
class GoogleCloudDiscoveryengineV1alphaObservabilityConfig
|
|
19938
20046
|
include Google::Apis::Core::Hashable
|
|
19939
20047
|
|
|
19940
|
-
# Optional. Enables observability. If false
|
|
20048
|
+
# Optional. Enables observability. If `false`, all other flags are ignored.
|
|
19941
20049
|
# Corresponds to the JSON property `observabilityEnabled`
|
|
19942
20050
|
# @return [Boolean]
|
|
19943
20051
|
attr_accessor :observability_enabled
|
|
19944
20052
|
alias_method :observability_enabled?, :observability_enabled
|
|
19945
20053
|
|
|
19946
20054
|
# Optional. Enables sensitive logging. Sensitive logging includes customer core
|
|
19947
|
-
# content (e.g. prompts, responses). If false
|
|
20055
|
+
# content (e.g. prompts, responses). If `false`, will sanitize all sensitive
|
|
19948
20056
|
# fields.
|
|
19949
20057
|
# Corresponds to the JSON property `sensitiveLoggingEnabled`
|
|
19950
20058
|
# @return [Boolean]
|
|
@@ -28970,6 +29078,47 @@ module Google
|
|
|
28970
29078
|
end
|
|
28971
29079
|
end
|
|
28972
29080
|
|
|
29081
|
+
# Agent Gateway setting, which may be attached to Gemini Enterprise resources
|
|
29082
|
+
# for egress control of Gemini Enterprise agents to agents and tools outside of
|
|
29083
|
+
# Gemini Enterprise.
|
|
29084
|
+
class GoogleCloudDiscoveryengineV1betaAgentGatewaySetting
|
|
29085
|
+
include Google::Apis::Core::Hashable
|
|
29086
|
+
|
|
29087
|
+
# Reference to an Agent Gateway resource.
|
|
29088
|
+
# Corresponds to the JSON property `defaultEgressAgentGateway`
|
|
29089
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaAgentGatewaySettingAgentGatewayReference]
|
|
29090
|
+
attr_accessor :default_egress_agent_gateway
|
|
29091
|
+
|
|
29092
|
+
def initialize(**args)
|
|
29093
|
+
update!(**args)
|
|
29094
|
+
end
|
|
29095
|
+
|
|
29096
|
+
# Update properties of this object
|
|
29097
|
+
def update!(**args)
|
|
29098
|
+
@default_egress_agent_gateway = args[:default_egress_agent_gateway] if args.key?(:default_egress_agent_gateway)
|
|
29099
|
+
end
|
|
29100
|
+
end
|
|
29101
|
+
|
|
29102
|
+
# Reference to an Agent Gateway resource.
|
|
29103
|
+
class GoogleCloudDiscoveryengineV1betaAgentGatewaySettingAgentGatewayReference
|
|
29104
|
+
include Google::Apis::Core::Hashable
|
|
29105
|
+
|
|
29106
|
+
# Required. Immutable. The resource name of the agent gateway. Expected format: `
|
|
29107
|
+
# projects/`project_number`/locations/`location`/agentGateways/`agent_gateway``.
|
|
29108
|
+
# Corresponds to the JSON property `name`
|
|
29109
|
+
# @return [String]
|
|
29110
|
+
attr_accessor :name
|
|
29111
|
+
|
|
29112
|
+
def initialize(**args)
|
|
29113
|
+
update!(**args)
|
|
29114
|
+
end
|
|
29115
|
+
|
|
29116
|
+
# Update properties of this object
|
|
29117
|
+
def update!(**args)
|
|
29118
|
+
@name = args[:name] if args.key?(:name)
|
|
29119
|
+
end
|
|
29120
|
+
end
|
|
29121
|
+
|
|
28973
29122
|
# Metadata related to the progress of the SiteSearchEngineService.
|
|
28974
29123
|
# BatchCreateTargetSites operation. This will be returned by the google.
|
|
28975
29124
|
# longrunning.Operation.metadata field.
|
|
@@ -30695,6 +30844,13 @@ module Google
|
|
|
30695
30844
|
class GoogleCloudDiscoveryengineV1betaEngine
|
|
30696
30845
|
include Google::Apis::Core::Hashable
|
|
30697
30846
|
|
|
30847
|
+
# Agent Gateway setting, which may be attached to Gemini Enterprise resources
|
|
30848
|
+
# for egress control of Gemini Enterprise agents to agents and tools outside of
|
|
30849
|
+
# Gemini Enterprise.
|
|
30850
|
+
# Corresponds to the JSON property `agentGatewaySetting`
|
|
30851
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaAgentGatewaySetting]
|
|
30852
|
+
attr_accessor :agent_gateway_setting
|
|
30853
|
+
|
|
30698
30854
|
# Optional. Immutable. This the application type which this engine resource
|
|
30699
30855
|
# represents. NOTE: this is a new concept independ of existing industry vertical
|
|
30700
30856
|
# or solution type.
|
|
@@ -30822,10 +30978,10 @@ module Google
|
|
|
30822
30978
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaObservabilityConfig]
|
|
30823
30979
|
attr_accessor :observability_config
|
|
30824
30980
|
|
|
30825
|
-
# Optional. The
|
|
30826
|
-
# Corresponds to the JSON property `
|
|
30827
|
-
# @return [String]
|
|
30828
|
-
attr_accessor :
|
|
30981
|
+
# Optional. The emails of the procurement contacts.
|
|
30982
|
+
# Corresponds to the JSON property `procurementContactEmails`
|
|
30983
|
+
# @return [Array<String>]
|
|
30984
|
+
attr_accessor :procurement_contact_emails
|
|
30829
30985
|
|
|
30830
30986
|
# Configurations for a Search Engine.
|
|
30831
30987
|
# Corresponds to the JSON property `searchEngineConfig`
|
|
@@ -30848,6 +31004,7 @@ module Google
|
|
|
30848
31004
|
|
|
30849
31005
|
# Update properties of this object
|
|
30850
31006
|
def update!(**args)
|
|
31007
|
+
@agent_gateway_setting = args[:agent_gateway_setting] if args.key?(:agent_gateway_setting)
|
|
30851
31008
|
@app_type = args[:app_type] if args.key?(:app_type)
|
|
30852
31009
|
@chat_engine_config = args[:chat_engine_config] if args.key?(:chat_engine_config)
|
|
30853
31010
|
@chat_engine_metadata = args[:chat_engine_metadata] if args.key?(:chat_engine_metadata)
|
|
@@ -30867,7 +31024,7 @@ module Google
|
|
|
30867
31024
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
30868
31025
|
@name = args[:name] if args.key?(:name)
|
|
30869
31026
|
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
30870
|
-
@
|
|
31027
|
+
@procurement_contact_emails = args[:procurement_contact_emails] if args.key?(:procurement_contact_emails)
|
|
30871
31028
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
30872
31029
|
@solution_type = args[:solution_type] if args.key?(:solution_type)
|
|
30873
31030
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
@@ -32125,14 +32282,14 @@ module Google
|
|
|
32125
32282
|
class GoogleCloudDiscoveryengineV1betaObservabilityConfig
|
|
32126
32283
|
include Google::Apis::Core::Hashable
|
|
32127
32284
|
|
|
32128
|
-
# Optional. Enables observability. If false
|
|
32285
|
+
# Optional. Enables observability. If `false`, all other flags are ignored.
|
|
32129
32286
|
# Corresponds to the JSON property `observabilityEnabled`
|
|
32130
32287
|
# @return [Boolean]
|
|
32131
32288
|
attr_accessor :observability_enabled
|
|
32132
32289
|
alias_method :observability_enabled?, :observability_enabled
|
|
32133
32290
|
|
|
32134
32291
|
# Optional. Enables sensitive logging. Sensitive logging includes customer core
|
|
32135
|
-
# content (e.g. prompts, responses). If false
|
|
32292
|
+
# content (e.g. prompts, responses). If `false`, will sanitize all sensitive
|
|
32136
32293
|
# fields.
|
|
32137
32294
|
# Corresponds to the JSON property `sensitiveLoggingEnabled`
|
|
32138
32295
|
# @return [Boolean]
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DiscoveryengineV1alpha
|
|
18
18
|
# Version of the google-apis-discoveryengine_v1alpha gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.98.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 = "20260310"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -154,6 +154,18 @@ module Google
|
|
|
154
154
|
include Google::Apis::Core::JsonObjectSupport
|
|
155
155
|
end
|
|
156
156
|
|
|
157
|
+
class GoogleCloudDiscoveryengineV1AgentGatewaySetting
|
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
159
|
+
|
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
class GoogleCloudDiscoveryengineV1AgentGatewaySettingAgentGatewayReference
|
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
165
|
+
|
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
167
|
+
end
|
|
168
|
+
|
|
157
169
|
class GoogleCloudDiscoveryengineV1AlertPolicyConfig
|
|
158
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
159
171
|
|
|
@@ -1156,6 +1168,18 @@ module Google
|
|
|
1156
1168
|
include Google::Apis::Core::JsonObjectSupport
|
|
1157
1169
|
end
|
|
1158
1170
|
|
|
1171
|
+
class GoogleCloudDiscoveryengineV1alphaAgentGatewaySetting
|
|
1172
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1173
|
+
|
|
1174
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1175
|
+
end
|
|
1176
|
+
|
|
1177
|
+
class GoogleCloudDiscoveryengineV1alphaAgentGatewaySettingAgentGatewayReference
|
|
1178
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1179
|
+
|
|
1180
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1181
|
+
end
|
|
1182
|
+
|
|
1159
1183
|
class GoogleCloudDiscoveryengineV1alphaAgentImage
|
|
1160
1184
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1161
1185
|
|
|
@@ -4540,6 +4564,18 @@ module Google
|
|
|
4540
4564
|
include Google::Apis::Core::JsonObjectSupport
|
|
4541
4565
|
end
|
|
4542
4566
|
|
|
4567
|
+
class GoogleCloudDiscoveryengineV1betaAgentGatewaySetting
|
|
4568
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4569
|
+
|
|
4570
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4571
|
+
end
|
|
4572
|
+
|
|
4573
|
+
class GoogleCloudDiscoveryengineV1betaAgentGatewaySettingAgentGatewayReference
|
|
4574
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4575
|
+
|
|
4576
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4577
|
+
end
|
|
4578
|
+
|
|
4543
4579
|
class GoogleCloudDiscoveryengineV1betaBatchCreateTargetSiteMetadata
|
|
4544
4580
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4545
4581
|
|
|
@@ -6074,6 +6110,21 @@ module Google
|
|
|
6074
6110
|
end
|
|
6075
6111
|
end
|
|
6076
6112
|
|
|
6113
|
+
class GoogleCloudDiscoveryengineV1AgentGatewaySetting
|
|
6114
|
+
# @private
|
|
6115
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6116
|
+
property :default_egress_agent_gateway, as: 'defaultEgressAgentGateway', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AgentGatewaySettingAgentGatewayReference, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AgentGatewaySettingAgentGatewayReference::Representation
|
|
6117
|
+
|
|
6118
|
+
end
|
|
6119
|
+
end
|
|
6120
|
+
|
|
6121
|
+
class GoogleCloudDiscoveryengineV1AgentGatewaySettingAgentGatewayReference
|
|
6122
|
+
# @private
|
|
6123
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6124
|
+
property :name, as: 'name'
|
|
6125
|
+
end
|
|
6126
|
+
end
|
|
6127
|
+
|
|
6077
6128
|
class GoogleCloudDiscoveryengineV1AlertPolicyConfig
|
|
6078
6129
|
# @private
|
|
6079
6130
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -6822,6 +6873,8 @@ module Google
|
|
|
6822
6873
|
class GoogleCloudDiscoveryengineV1Engine
|
|
6823
6874
|
# @private
|
|
6824
6875
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6876
|
+
property :agent_gateway_setting, as: 'agentGatewaySetting', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AgentGatewaySetting, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1AgentGatewaySetting::Representation
|
|
6877
|
+
|
|
6825
6878
|
property :app_type, as: 'appType'
|
|
6826
6879
|
property :chat_engine_config, as: 'chatEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineChatEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineChatEngineConfig::Representation
|
|
6827
6880
|
|
|
@@ -6848,7 +6901,7 @@ module Google
|
|
|
6848
6901
|
property :name, as: 'name'
|
|
6849
6902
|
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ObservabilityConfig::Representation
|
|
6850
6903
|
|
|
6851
|
-
|
|
6904
|
+
collection :procurement_contact_emails, as: 'procurementContactEmails'
|
|
6852
6905
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig::Representation
|
|
6853
6906
|
|
|
6854
6907
|
property :solution_type, as: 'solutionType'
|
|
@@ -7815,6 +7868,21 @@ module Google
|
|
|
7815
7868
|
end
|
|
7816
7869
|
end
|
|
7817
7870
|
|
|
7871
|
+
class GoogleCloudDiscoveryengineV1alphaAgentGatewaySetting
|
|
7872
|
+
# @private
|
|
7873
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7874
|
+
property :default_egress_agent_gateway, as: 'defaultEgressAgentGateway', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentGatewaySettingAgentGatewayReference, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentGatewaySettingAgentGatewayReference::Representation
|
|
7875
|
+
|
|
7876
|
+
end
|
|
7877
|
+
end
|
|
7878
|
+
|
|
7879
|
+
class GoogleCloudDiscoveryengineV1alphaAgentGatewaySettingAgentGatewayReference
|
|
7880
|
+
# @private
|
|
7881
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7882
|
+
property :name, as: 'name'
|
|
7883
|
+
end
|
|
7884
|
+
end
|
|
7885
|
+
|
|
7818
7886
|
class GoogleCloudDiscoveryengineV1alphaAgentImage
|
|
7819
7887
|
# @private
|
|
7820
7888
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10128,6 +10196,8 @@ module Google
|
|
|
10128
10196
|
class GoogleCloudDiscoveryengineV1alphaEngine
|
|
10129
10197
|
# @private
|
|
10130
10198
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10199
|
+
property :agent_gateway_setting, as: 'agentGatewaySetting', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentGatewaySetting, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentGatewaySetting::Representation
|
|
10200
|
+
|
|
10131
10201
|
property :app_type, as: 'appType'
|
|
10132
10202
|
property :chat_engine_config, as: 'chatEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfig::Representation
|
|
10133
10203
|
|
|
@@ -10154,7 +10224,7 @@ module Google
|
|
|
10154
10224
|
property :name, as: 'name'
|
|
10155
10225
|
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig::Representation
|
|
10156
10226
|
|
|
10157
|
-
|
|
10227
|
+
collection :procurement_contact_emails, as: 'procurementContactEmails'
|
|
10158
10228
|
property :recommendation_metadata, as: 'recommendationMetadata', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata::Representation
|
|
10159
10229
|
|
|
10160
10230
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig::Representation
|
|
@@ -10492,6 +10562,7 @@ module Google
|
|
|
10492
10562
|
property :recs_filterable_option, as: 'recsFilterableOption'
|
|
10493
10563
|
property :retrievable_option, as: 'retrievableOption'
|
|
10494
10564
|
collection :schema_org_paths, as: 'schemaOrgPaths'
|
|
10565
|
+
property :searchable_field_importance, as: 'searchableFieldImportance'
|
|
10495
10566
|
property :searchable_option, as: 'searchableOption'
|
|
10496
10567
|
end
|
|
10497
10568
|
end
|
|
@@ -13619,6 +13690,21 @@ module Google
|
|
|
13619
13690
|
end
|
|
13620
13691
|
end
|
|
13621
13692
|
|
|
13693
|
+
class GoogleCloudDiscoveryengineV1betaAgentGatewaySetting
|
|
13694
|
+
# @private
|
|
13695
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
13696
|
+
property :default_egress_agent_gateway, as: 'defaultEgressAgentGateway', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaAgentGatewaySettingAgentGatewayReference, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaAgentGatewaySettingAgentGatewayReference::Representation
|
|
13697
|
+
|
|
13698
|
+
end
|
|
13699
|
+
end
|
|
13700
|
+
|
|
13701
|
+
class GoogleCloudDiscoveryengineV1betaAgentGatewaySettingAgentGatewayReference
|
|
13702
|
+
# @private
|
|
13703
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
13704
|
+
property :name, as: 'name'
|
|
13705
|
+
end
|
|
13706
|
+
end
|
|
13707
|
+
|
|
13622
13708
|
class GoogleCloudDiscoveryengineV1betaBatchCreateTargetSiteMetadata
|
|
13623
13709
|
# @private
|
|
13624
13710
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -14115,6 +14201,8 @@ module Google
|
|
|
14115
14201
|
class GoogleCloudDiscoveryengineV1betaEngine
|
|
14116
14202
|
# @private
|
|
14117
14203
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
14204
|
+
property :agent_gateway_setting, as: 'agentGatewaySetting', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaAgentGatewaySetting, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaAgentGatewaySetting::Representation
|
|
14205
|
+
|
|
14118
14206
|
property :app_type, as: 'appType'
|
|
14119
14207
|
property :chat_engine_config, as: 'chatEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig::Representation
|
|
14120
14208
|
|
|
@@ -14141,7 +14229,7 @@ module Google
|
|
|
14141
14229
|
property :name, as: 'name'
|
|
14142
14230
|
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaObservabilityConfig::Representation
|
|
14143
14231
|
|
|
14144
|
-
|
|
14232
|
+
collection :procurement_contact_emails, as: 'procurementContactEmails'
|
|
14145
14233
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig::Representation
|
|
14146
14234
|
|
|
14147
14235
|
property :solution_type, as: 'solutionType'
|
|
@@ -13757,9 +13757,9 @@ module Google
|
|
|
13757
13757
|
# in ascending order.
|
|
13758
13758
|
# @param [Fixnum] page_size
|
|
13759
13759
|
# Optional. Requested page size. Server may return fewer items than requested.
|
|
13760
|
-
# If unspecified, defaults to
|
|
13761
|
-
# be coerced to
|
|
13762
|
-
# returned.
|
|
13760
|
+
# If unspecified, defaults to 1000. The maximum value is 1000; values above 1000
|
|
13761
|
+
# will be coerced to 1000. If this field is negative, an INVALID_ARGUMENT error
|
|
13762
|
+
# is returned.
|
|
13763
13763
|
# @param [String] page_token
|
|
13764
13764
|
# Optional. A page token, received from a previous `ListUserLicenses` call.
|
|
13765
13765
|
# Provide this to retrieve the subsequent page. When paginating, all other
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-discoveryengine_v1alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.98.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_v1alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.98.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|