google-apis-discoveryengine_v1beta 0.100.0 → 0.101.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_v1beta/classes.rb +78 -4
- data/lib/google/apis/discoveryengine_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1beta/representations.rb +10 -0
- data/lib/google/apis/discoveryengine_v1beta/service.rb +20 -13
- 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: df6afb73b3bba3ea39d3aa762dfbed78fe259f4d2484c36fe2d9cb4bc7be157a
|
|
4
|
+
data.tar.gz: d53d6eef6e5602804aeebf8b00c6318a04b73f8d32f99a45dd7a4448539a61af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4664f34aa2293533312e855b4893a28cabf4999f41768491f1435e798706e64745167399d37681beb917f94e6a7c4649d1f1f82df3d7272c31004fdcb97b143f
|
|
7
|
+
data.tar.gz: d5ee277499af820fb8e4505ae4284cadaec21b638b0d311721383e53c0c47e22cefd3bd16e8d2f40f19913369f03f95e3bbe583c56d8ccc9d819462827a9b437
|
data/CHANGELOG.md
CHANGED
|
@@ -2154,6 +2154,15 @@ module Google
|
|
|
2154
2154
|
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DestinationConfig>]
|
|
2155
2155
|
attr_accessor :destination_configs
|
|
2156
2156
|
|
|
2157
|
+
# Output only. The list of FQDNs of the data connector can egress to. This
|
|
2158
|
+
# includes both FQDN derived from the customer provided instance URL and default
|
|
2159
|
+
# per connector type FQDNs. Note: This field is derived from both the
|
|
2160
|
+
# DataConnector.params, and connector source spec. It should only be used for
|
|
2161
|
+
# CAIS and Org Policy evaluation purposes.
|
|
2162
|
+
# Corresponds to the JSON property `egressFqdns`
|
|
2163
|
+
# @return [Array<String>]
|
|
2164
|
+
attr_accessor :egress_fqdns
|
|
2165
|
+
|
|
2157
2166
|
# Any params and credentials used specifically for EUA connectors.
|
|
2158
2167
|
# Corresponds to the JSON property `endUserConfig`
|
|
2159
2168
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DataConnectorEndUserConfig]
|
|
@@ -2333,6 +2342,13 @@ module Google
|
|
|
2333
2342
|
# @return [String]
|
|
2334
2343
|
attr_accessor :update_time
|
|
2335
2344
|
|
|
2345
|
+
# Output only. Whether the connector is created with VPC-SC enabled. This is
|
|
2346
|
+
# only used for CuOP evaluation purpose.
|
|
2347
|
+
# Corresponds to the JSON property `vpcscEnabled`
|
|
2348
|
+
# @return [Boolean]
|
|
2349
|
+
attr_accessor :vpcsc_enabled
|
|
2350
|
+
alias_method :vpcsc_enabled?, :vpcsc_enabled
|
|
2351
|
+
|
|
2336
2352
|
def initialize(**args)
|
|
2337
2353
|
update!(**args)
|
|
2338
2354
|
end
|
|
@@ -2352,6 +2368,7 @@ module Google
|
|
|
2352
2368
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2353
2369
|
@data_source = args[:data_source] if args.key?(:data_source)
|
|
2354
2370
|
@destination_configs = args[:destination_configs] if args.key?(:destination_configs)
|
|
2371
|
+
@egress_fqdns = args[:egress_fqdns] if args.key?(:egress_fqdns)
|
|
2355
2372
|
@end_user_config = args[:end_user_config] if args.key?(:end_user_config)
|
|
2356
2373
|
@entities = args[:entities] if args.key?(:entities)
|
|
2357
2374
|
@errors = args[:errors] if args.key?(:errors)
|
|
@@ -2378,6 +2395,7 @@ module Google
|
|
|
2378
2395
|
@static_ip_enabled = args[:static_ip_enabled] if args.key?(:static_ip_enabled)
|
|
2379
2396
|
@sync_mode = args[:sync_mode] if args.key?(:sync_mode)
|
|
2380
2397
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
2398
|
+
@vpcsc_enabled = args[:vpcsc_enabled] if args.key?(:vpcsc_enabled)
|
|
2381
2399
|
end
|
|
2382
2400
|
end
|
|
2383
2401
|
|
|
@@ -3523,6 +3541,11 @@ module Google
|
|
|
3523
3541
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig]
|
|
3524
3542
|
attr_accessor :knowledge_graph_config
|
|
3525
3543
|
|
|
3544
|
+
# Optional. The visibility of marketplace agents in the agent gallery.
|
|
3545
|
+
# Corresponds to the JSON property `marketplaceAgentVisibility`
|
|
3546
|
+
# @return [String]
|
|
3547
|
+
attr_accessor :marketplace_agent_visibility
|
|
3548
|
+
|
|
3526
3549
|
# Additional config specs for a Media Recommendation engine.
|
|
3527
3550
|
# Corresponds to the JSON property `mediaRecommendationEngineConfig`
|
|
3528
3551
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig]
|
|
@@ -3553,6 +3576,11 @@ module Google
|
|
|
3553
3576
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ObservabilityConfig]
|
|
3554
3577
|
attr_accessor :observability_config
|
|
3555
3578
|
|
|
3579
|
+
# Optional. The email of the procurement contact.
|
|
3580
|
+
# Corresponds to the JSON property `procurementContactEmail`
|
|
3581
|
+
# @return [String]
|
|
3582
|
+
attr_accessor :procurement_contact_email
|
|
3583
|
+
|
|
3556
3584
|
# Configurations for a Search Engine.
|
|
3557
3585
|
# Corresponds to the JSON property `searchEngineConfig`
|
|
3558
3586
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig]
|
|
@@ -3588,10 +3616,12 @@ module Google
|
|
|
3588
3616
|
@features = args[:features] if args.key?(:features)
|
|
3589
3617
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
|
3590
3618
|
@knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
|
|
3619
|
+
@marketplace_agent_visibility = args[:marketplace_agent_visibility] if args.key?(:marketplace_agent_visibility)
|
|
3591
3620
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
3592
3621
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
3593
3622
|
@name = args[:name] if args.key?(:name)
|
|
3594
3623
|
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
3624
|
+
@procurement_contact_email = args[:procurement_contact_email] if args.key?(:procurement_contact_email)
|
|
3595
3625
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
3596
3626
|
@solution_type = args[:solution_type] if args.key?(:solution_type)
|
|
3597
3627
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
@@ -9200,6 +9230,15 @@ module Google
|
|
|
9200
9230
|
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDestinationConfig>]
|
|
9201
9231
|
attr_accessor :destination_configs
|
|
9202
9232
|
|
|
9233
|
+
# Output only. The list of FQDNs of the data connector can egress to. This
|
|
9234
|
+
# includes both FQDN derived from the customer provided instance URL and default
|
|
9235
|
+
# per connector type FQDNs. Note: This field is derived from both the
|
|
9236
|
+
# DataConnector.params, and connector source spec. It should only be used for
|
|
9237
|
+
# CAIS and Org Policy evaluation purposes.
|
|
9238
|
+
# Corresponds to the JSON property `egressFqdns`
|
|
9239
|
+
# @return [Array<String>]
|
|
9240
|
+
attr_accessor :egress_fqdns
|
|
9241
|
+
|
|
9203
9242
|
# Any params and credentials used specifically for EUA connectors.
|
|
9204
9243
|
# Corresponds to the JSON property `endUserConfig`
|
|
9205
9244
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorEndUserConfig]
|
|
@@ -9379,6 +9418,13 @@ module Google
|
|
|
9379
9418
|
# @return [String]
|
|
9380
9419
|
attr_accessor :update_time
|
|
9381
9420
|
|
|
9421
|
+
# Output only. Whether the connector is created with VPC-SC enabled. This is
|
|
9422
|
+
# only used for CuOP evaluation purpose.
|
|
9423
|
+
# Corresponds to the JSON property `vpcscEnabled`
|
|
9424
|
+
# @return [Boolean]
|
|
9425
|
+
attr_accessor :vpcsc_enabled
|
|
9426
|
+
alias_method :vpcsc_enabled?, :vpcsc_enabled
|
|
9427
|
+
|
|
9382
9428
|
def initialize(**args)
|
|
9383
9429
|
update!(**args)
|
|
9384
9430
|
end
|
|
@@ -9399,6 +9445,7 @@ module Google
|
|
|
9399
9445
|
@data_protection_policy = args[:data_protection_policy] if args.key?(:data_protection_policy)
|
|
9400
9446
|
@data_source = args[:data_source] if args.key?(:data_source)
|
|
9401
9447
|
@destination_configs = args[:destination_configs] if args.key?(:destination_configs)
|
|
9448
|
+
@egress_fqdns = args[:egress_fqdns] if args.key?(:egress_fqdns)
|
|
9402
9449
|
@end_user_config = args[:end_user_config] if args.key?(:end_user_config)
|
|
9403
9450
|
@entities = args[:entities] if args.key?(:entities)
|
|
9404
9451
|
@errors = args[:errors] if args.key?(:errors)
|
|
@@ -9425,6 +9472,7 @@ module Google
|
|
|
9425
9472
|
@static_ip_enabled = args[:static_ip_enabled] if args.key?(:static_ip_enabled)
|
|
9426
9473
|
@sync_mode = args[:sync_mode] if args.key?(:sync_mode)
|
|
9427
9474
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
9475
|
+
@vpcsc_enabled = args[:vpcsc_enabled] if args.key?(:vpcsc_enabled)
|
|
9428
9476
|
end
|
|
9429
9477
|
end
|
|
9430
9478
|
|
|
@@ -10763,6 +10811,11 @@ module Google
|
|
|
10763
10811
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig]
|
|
10764
10812
|
attr_accessor :knowledge_graph_config
|
|
10765
10813
|
|
|
10814
|
+
# Optional. The visibility of marketplace agents in the agent gallery.
|
|
10815
|
+
# Corresponds to the JSON property `marketplaceAgentVisibility`
|
|
10816
|
+
# @return [String]
|
|
10817
|
+
attr_accessor :marketplace_agent_visibility
|
|
10818
|
+
|
|
10766
10819
|
# Additional config specs for a Media Recommendation engine.
|
|
10767
10820
|
# Corresponds to the JSON property `mediaRecommendationEngineConfig`
|
|
10768
10821
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig]
|
|
@@ -10793,6 +10846,11 @@ module Google
|
|
|
10793
10846
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaObservabilityConfig]
|
|
10794
10847
|
attr_accessor :observability_config
|
|
10795
10848
|
|
|
10849
|
+
# Optional. The email of the procurement contact.
|
|
10850
|
+
# Corresponds to the JSON property `procurementContactEmail`
|
|
10851
|
+
# @return [String]
|
|
10852
|
+
attr_accessor :procurement_contact_email
|
|
10853
|
+
|
|
10796
10854
|
# Additional information of a recommendation engine.
|
|
10797
10855
|
# Corresponds to the JSON property `recommendationMetadata`
|
|
10798
10856
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata]
|
|
@@ -10838,10 +10896,12 @@ module Google
|
|
|
10838
10896
|
@features = args[:features] if args.key?(:features)
|
|
10839
10897
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
|
10840
10898
|
@knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
|
|
10899
|
+
@marketplace_agent_visibility = args[:marketplace_agent_visibility] if args.key?(:marketplace_agent_visibility)
|
|
10841
10900
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
10842
10901
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
10843
10902
|
@name = args[:name] if args.key?(:name)
|
|
10844
10903
|
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
10904
|
+
@procurement_contact_email = args[:procurement_contact_email] if args.key?(:procurement_contact_email)
|
|
10845
10905
|
@recommendation_metadata = args[:recommendation_metadata] if args.key?(:recommendation_metadata)
|
|
10846
10906
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
10847
10907
|
@similar_documents_config = args[:similar_documents_config] if args.key?(:similar_documents_config)
|
|
@@ -12485,10 +12545,12 @@ module Google
|
|
|
12485
12545
|
|
|
12486
12546
|
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
|
12487
12547
|
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
|
12488
|
-
# is_pinned` * `labels` * `create_time` * `update_time`
|
|
12489
|
-
# user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
12490
|
-
# is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
12491
|
-
# `
|
|
12548
|
+
# is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project`
|
|
12549
|
+
# Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
12550
|
+
# starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
12551
|
+
# 1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/
|
|
12552
|
+
# global/collections/default_collection/engines/" "default_engine/
|
|
12553
|
+
# collaborative_projects/cp1"`
|
|
12492
12554
|
# Corresponds to the JSON property `filter`
|
|
12493
12555
|
# @return [String]
|
|
12494
12556
|
attr_accessor :filter
|
|
@@ -23054,6 +23116,11 @@ module Google
|
|
|
23054
23116
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig]
|
|
23055
23117
|
attr_accessor :knowledge_graph_config
|
|
23056
23118
|
|
|
23119
|
+
# Optional. The visibility of marketplace agents in the agent gallery.
|
|
23120
|
+
# Corresponds to the JSON property `marketplaceAgentVisibility`
|
|
23121
|
+
# @return [String]
|
|
23122
|
+
attr_accessor :marketplace_agent_visibility
|
|
23123
|
+
|
|
23057
23124
|
# Additional config specs for a Media Recommendation engine.
|
|
23058
23125
|
# Corresponds to the JSON property `mediaRecommendationEngineConfig`
|
|
23059
23126
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig]
|
|
@@ -23084,6 +23151,11 @@ module Google
|
|
|
23084
23151
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaObservabilityConfig]
|
|
23085
23152
|
attr_accessor :observability_config
|
|
23086
23153
|
|
|
23154
|
+
# Optional. The email of the procurement contact.
|
|
23155
|
+
# Corresponds to the JSON property `procurementContactEmail`
|
|
23156
|
+
# @return [String]
|
|
23157
|
+
attr_accessor :procurement_contact_email
|
|
23158
|
+
|
|
23087
23159
|
# Configurations for a Search Engine.
|
|
23088
23160
|
# Corresponds to the JSON property `searchEngineConfig`
|
|
23089
23161
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig]
|
|
@@ -23119,10 +23191,12 @@ module Google
|
|
|
23119
23191
|
@features = args[:features] if args.key?(:features)
|
|
23120
23192
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
|
23121
23193
|
@knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
|
|
23194
|
+
@marketplace_agent_visibility = args[:marketplace_agent_visibility] if args.key?(:marketplace_agent_visibility)
|
|
23122
23195
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
23123
23196
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
23124
23197
|
@name = args[:name] if args.key?(:name)
|
|
23125
23198
|
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
23199
|
+
@procurement_contact_email = args[:procurement_contact_email] if args.key?(:procurement_contact_email)
|
|
23126
23200
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
23127
23201
|
@solution_type = args[:solution_type] if args.key?(:solution_type)
|
|
23128
23202
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DiscoveryengineV1beta
|
|
18
18
|
# Version of the google-apis-discoveryengine_v1beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.101.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 = "20260226"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -5715,6 +5715,7 @@ module Google
|
|
|
5715
5715
|
property :data_source, as: 'dataSource'
|
|
5716
5716
|
collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DestinationConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DestinationConfig::Representation
|
|
5717
5717
|
|
|
5718
|
+
collection :egress_fqdns, as: 'egressFqdns'
|
|
5718
5719
|
property :end_user_config, as: 'endUserConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DataConnectorEndUserConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DataConnectorEndUserConfig::Representation
|
|
5719
5720
|
|
|
5720
5721
|
collection :entities, as: 'entities', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DataConnectorSourceEntity, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1DataConnectorSourceEntity::Representation
|
|
@@ -5748,6 +5749,7 @@ module Google
|
|
|
5748
5749
|
property :static_ip_enabled, as: 'staticIpEnabled'
|
|
5749
5750
|
property :sync_mode, as: 'syncMode'
|
|
5750
5751
|
property :update_time, as: 'updateTime'
|
|
5752
|
+
property :vpcsc_enabled, as: 'vpcscEnabled'
|
|
5751
5753
|
end
|
|
5752
5754
|
end
|
|
5753
5755
|
|
|
@@ -6063,12 +6065,14 @@ module Google
|
|
|
6063
6065
|
property :industry_vertical, as: 'industryVertical'
|
|
6064
6066
|
property :knowledge_graph_config, as: 'knowledgeGraphConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig::Representation
|
|
6065
6067
|
|
|
6068
|
+
property :marketplace_agent_visibility, as: 'marketplaceAgentVisibility'
|
|
6066
6069
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig::Representation
|
|
6067
6070
|
|
|
6068
6071
|
hash :model_configs, as: 'modelConfigs'
|
|
6069
6072
|
property :name, as: 'name'
|
|
6070
6073
|
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ObservabilityConfig::Representation
|
|
6071
6074
|
|
|
6075
|
+
property :procurement_contact_email, as: 'procurementContactEmail'
|
|
6072
6076
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig::Representation
|
|
6073
6077
|
|
|
6074
6078
|
property :solution_type, as: 'solutionType'
|
|
@@ -7595,6 +7599,7 @@ module Google
|
|
|
7595
7599
|
property :data_source, as: 'dataSource'
|
|
7596
7600
|
collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDestinationConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDestinationConfig::Representation
|
|
7597
7601
|
|
|
7602
|
+
collection :egress_fqdns, as: 'egressFqdns'
|
|
7598
7603
|
property :end_user_config, as: 'endUserConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorEndUserConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorEndUserConfig::Representation
|
|
7599
7604
|
|
|
7600
7605
|
collection :entities, as: 'entities', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorSourceEntity, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnectorSourceEntity::Representation
|
|
@@ -7628,6 +7633,7 @@ module Google
|
|
|
7628
7633
|
property :static_ip_enabled, as: 'staticIpEnabled'
|
|
7629
7634
|
property :sync_mode, as: 'syncMode'
|
|
7630
7635
|
property :update_time, as: 'updateTime'
|
|
7636
|
+
property :vpcsc_enabled, as: 'vpcscEnabled'
|
|
7631
7637
|
end
|
|
7632
7638
|
end
|
|
7633
7639
|
|
|
@@ -8006,12 +8012,14 @@ module Google
|
|
|
8006
8012
|
property :industry_vertical, as: 'industryVertical'
|
|
8007
8013
|
property :knowledge_graph_config, as: 'knowledgeGraphConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig::Representation
|
|
8008
8014
|
|
|
8015
|
+
property :marketplace_agent_visibility, as: 'marketplaceAgentVisibility'
|
|
8009
8016
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig::Representation
|
|
8010
8017
|
|
|
8011
8018
|
hash :model_configs, as: 'modelConfigs'
|
|
8012
8019
|
property :name, as: 'name'
|
|
8013
8020
|
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaObservabilityConfig::Representation
|
|
8014
8021
|
|
|
8022
|
+
property :procurement_contact_email, as: 'procurementContactEmail'
|
|
8015
8023
|
property :recommendation_metadata, as: 'recommendationMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata::Representation
|
|
8016
8024
|
|
|
8017
8025
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig::Representation
|
|
@@ -11308,12 +11316,14 @@ module Google
|
|
|
11308
11316
|
property :industry_vertical, as: 'industryVertical'
|
|
11309
11317
|
property :knowledge_graph_config, as: 'knowledgeGraphConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig::Representation
|
|
11310
11318
|
|
|
11319
|
+
property :marketplace_agent_visibility, as: 'marketplaceAgentVisibility'
|
|
11311
11320
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig::Representation
|
|
11312
11321
|
|
|
11313
11322
|
hash :model_configs, as: 'modelConfigs'
|
|
11314
11323
|
property :name, as: 'name'
|
|
11315
11324
|
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaObservabilityConfig::Representation
|
|
11316
11325
|
|
|
11326
|
+
property :procurement_contact_email, as: 'procurementContactEmail'
|
|
11317
11327
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig::Representation
|
|
11318
11328
|
|
|
11319
11329
|
property :solution_type, as: 'solutionType'
|
|
@@ -2838,10 +2838,12 @@ module Google
|
|
|
2838
2838
|
# @param [String] filter
|
|
2839
2839
|
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
|
2840
2840
|
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
|
2841
|
-
# is_pinned` * `labels` * `create_time` * `update_time`
|
|
2842
|
-
# user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
2843
|
-
# is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
2844
|
-
# `
|
|
2841
|
+
# is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project`
|
|
2842
|
+
# Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
2843
|
+
# starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
2844
|
+
# 1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/
|
|
2845
|
+
# global/collections/default_collection/engines/" "default_engine/
|
|
2846
|
+
# collaborative_projects/cp1"`
|
|
2845
2847
|
# @param [String] order_by
|
|
2846
2848
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
|
2847
2849
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
|
@@ -5567,10 +5569,12 @@ module Google
|
|
|
5567
5569
|
# @param [String] filter
|
|
5568
5570
|
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
|
5569
5571
|
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
|
5570
|
-
# is_pinned` * `labels` * `create_time` * `update_time`
|
|
5571
|
-
# user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
5572
|
-
# is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
5573
|
-
# `
|
|
5572
|
+
# is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project`
|
|
5573
|
+
# Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
5574
|
+
# starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
5575
|
+
# 1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/
|
|
5576
|
+
# global/collections/default_collection/engines/" "default_engine/
|
|
5577
|
+
# collaborative_projects/cp1"`
|
|
5574
5578
|
# @param [String] order_by
|
|
5575
5579
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
|
5576
5580
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
|
@@ -7894,10 +7898,12 @@ module Google
|
|
|
7894
7898
|
# @param [String] filter
|
|
7895
7899
|
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
|
7896
7900
|
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
|
7897
|
-
# is_pinned` * `labels` * `create_time` * `update_time`
|
|
7898
|
-
# user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
7899
|
-
# is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
7900
|
-
# `
|
|
7901
|
+
# is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project`
|
|
7902
|
+
# Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
7903
|
+
# starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
7904
|
+
# 1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/
|
|
7905
|
+
# global/collections/default_collection/engines/" "default_engine/
|
|
7906
|
+
# collaborative_projects/cp1"`
|
|
7901
7907
|
# @param [String] order_by
|
|
7902
7908
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
|
7903
7909
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
|
@@ -9250,7 +9256,8 @@ module Google
|
|
|
9250
9256
|
execute_or_queue_command(command, &block)
|
|
9251
9257
|
end
|
|
9252
9258
|
|
|
9253
|
-
# Creates a LicenseConfig
|
|
9259
|
+
# Creates a LicenseConfig This method should only be used for creating
|
|
9260
|
+
# NotebookLm licenses or Gemini Enterprise free trial licenses.
|
|
9254
9261
|
# @param [String] parent
|
|
9255
9262
|
# Required. The parent resource name, such as `projects/`project`/locations/`
|
|
9256
9263
|
# location``.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-discoveryengine_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.101.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_v1beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.101.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|