google-apis-discoveryengine_v1alpha 0.95.0 → 0.96.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 +78 -4
- data/lib/google/apis/discoveryengine_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1alpha/representations.rb +10 -0
- data/lib/google/apis/discoveryengine_v1alpha/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: 9f95609f25e630b07e19b4cc329cf72649df8e74031c8f72ba9e38693240b737
|
|
4
|
+
data.tar.gz: 3aec8bfa6c2550d92067b87db32d7ce8cb0eea6d8a5bba51c03c008116385efd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60c18c03f18352a6b66981f7bdb272a4a469a7ecb69dfa22b209e379815f2e01ee61bd63eb69c4bb53fc82ff724f0d7042b61144895ab78b41a9b4947b2dac4b
|
|
7
|
+
data.tar.gz: 531f661c315ccf697a329578d4863095781db6bd1d7f880174009c003ff743799369ba48c2554759e72ac29af4bec5b842ed708b43e50b19b8e272aadf817c92
|
data/CHANGELOG.md
CHANGED
|
@@ -2154,6 +2154,15 @@ module Google
|
|
|
2154
2154
|
# @return [Array<Google::Apis::DiscoveryengineV1alpha::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::DiscoveryengineV1alpha::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::DiscoveryengineV1alpha::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::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig]
|
|
@@ -3553,6 +3576,11 @@ module Google
|
|
|
3553
3576
|
# @return [Google::Apis::DiscoveryengineV1alpha::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::DiscoveryengineV1alpha::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)
|
|
@@ -13460,6 +13490,15 @@ module Google
|
|
|
13460
13490
|
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDestinationConfig>]
|
|
13461
13491
|
attr_accessor :destination_configs
|
|
13462
13492
|
|
|
13493
|
+
# Output only. The list of FQDNs of the data connector can egress to. This
|
|
13494
|
+
# includes both FQDN derived from the customer provided instance URL and default
|
|
13495
|
+
# per connector type FQDNs. Note: This field is derived from both the
|
|
13496
|
+
# DataConnector.params, and connector source spec. It should only be used for
|
|
13497
|
+
# CAIS and Org Policy evaluation purposes.
|
|
13498
|
+
# Corresponds to the JSON property `egressFqdns`
|
|
13499
|
+
# @return [Array<String>]
|
|
13500
|
+
attr_accessor :egress_fqdns
|
|
13501
|
+
|
|
13463
13502
|
# Any params and credentials used specifically for EUA connectors.
|
|
13464
13503
|
# Corresponds to the JSON property `endUserConfig`
|
|
13465
13504
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDataConnectorEndUserConfig]
|
|
@@ -13639,6 +13678,13 @@ module Google
|
|
|
13639
13678
|
# @return [String]
|
|
13640
13679
|
attr_accessor :update_time
|
|
13641
13680
|
|
|
13681
|
+
# Output only. Whether the connector is created with VPC-SC enabled. This is
|
|
13682
|
+
# only used for CuOP evaluation purpose.
|
|
13683
|
+
# Corresponds to the JSON property `vpcscEnabled`
|
|
13684
|
+
# @return [Boolean]
|
|
13685
|
+
attr_accessor :vpcsc_enabled
|
|
13686
|
+
alias_method :vpcsc_enabled?, :vpcsc_enabled
|
|
13687
|
+
|
|
13642
13688
|
def initialize(**args)
|
|
13643
13689
|
update!(**args)
|
|
13644
13690
|
end
|
|
@@ -13659,6 +13705,7 @@ module Google
|
|
|
13659
13705
|
@data_protection_policy = args[:data_protection_policy] if args.key?(:data_protection_policy)
|
|
13660
13706
|
@data_source = args[:data_source] if args.key?(:data_source)
|
|
13661
13707
|
@destination_configs = args[:destination_configs] if args.key?(:destination_configs)
|
|
13708
|
+
@egress_fqdns = args[:egress_fqdns] if args.key?(:egress_fqdns)
|
|
13662
13709
|
@end_user_config = args[:end_user_config] if args.key?(:end_user_config)
|
|
13663
13710
|
@entities = args[:entities] if args.key?(:entities)
|
|
13664
13711
|
@errors = args[:errors] if args.key?(:errors)
|
|
@@ -13685,6 +13732,7 @@ module Google
|
|
|
13685
13732
|
@static_ip_enabled = args[:static_ip_enabled] if args.key?(:static_ip_enabled)
|
|
13686
13733
|
@sync_mode = args[:sync_mode] if args.key?(:sync_mode)
|
|
13687
13734
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
13735
|
+
@vpcsc_enabled = args[:vpcsc_enabled] if args.key?(:vpcsc_enabled)
|
|
13688
13736
|
end
|
|
13689
13737
|
end
|
|
13690
13738
|
|
|
@@ -15458,6 +15506,11 @@ module Google
|
|
|
15458
15506
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig]
|
|
15459
15507
|
attr_accessor :knowledge_graph_config
|
|
15460
15508
|
|
|
15509
|
+
# Optional. The visibility of marketplace agents in the agent gallery.
|
|
15510
|
+
# Corresponds to the JSON property `marketplaceAgentVisibility`
|
|
15511
|
+
# @return [String]
|
|
15512
|
+
attr_accessor :marketplace_agent_visibility
|
|
15513
|
+
|
|
15461
15514
|
# Additional config specs for a Media Recommendation engine.
|
|
15462
15515
|
# Corresponds to the JSON property `mediaRecommendationEngineConfig`
|
|
15463
15516
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig]
|
|
@@ -15488,6 +15541,11 @@ module Google
|
|
|
15488
15541
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig]
|
|
15489
15542
|
attr_accessor :observability_config
|
|
15490
15543
|
|
|
15544
|
+
# Optional. The email of the procurement contact.
|
|
15545
|
+
# Corresponds to the JSON property `procurementContactEmail`
|
|
15546
|
+
# @return [String]
|
|
15547
|
+
attr_accessor :procurement_contact_email
|
|
15548
|
+
|
|
15491
15549
|
# Additional information of a recommendation engine.
|
|
15492
15550
|
# Corresponds to the JSON property `recommendationMetadata`
|
|
15493
15551
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata]
|
|
@@ -15533,10 +15591,12 @@ module Google
|
|
|
15533
15591
|
@features = args[:features] if args.key?(:features)
|
|
15534
15592
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
|
15535
15593
|
@knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
|
|
15594
|
+
@marketplace_agent_visibility = args[:marketplace_agent_visibility] if args.key?(:marketplace_agent_visibility)
|
|
15536
15595
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
15537
15596
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
15538
15597
|
@name = args[:name] if args.key?(:name)
|
|
15539
15598
|
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
15599
|
+
@procurement_contact_email = args[:procurement_contact_email] if args.key?(:procurement_contact_email)
|
|
15540
15600
|
@recommendation_metadata = args[:recommendation_metadata] if args.key?(:recommendation_metadata)
|
|
15541
15601
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
15542
15602
|
@similar_documents_config = args[:similar_documents_config] if args.key?(:similar_documents_config)
|
|
@@ -19215,10 +19275,12 @@ module Google
|
|
|
19215
19275
|
|
|
19216
19276
|
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
|
19217
19277
|
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
|
19218
|
-
# is_pinned` * `labels` * `create_time` * `update_time`
|
|
19219
|
-
# user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
19220
|
-
# is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
19221
|
-
# `
|
|
19278
|
+
# is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project`
|
|
19279
|
+
# Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
19280
|
+
# starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
19281
|
+
# 1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/
|
|
19282
|
+
# global/collections/default_collection/engines/" "default_engine/
|
|
19283
|
+
# collaborative_projects/cp1"`
|
|
19222
19284
|
# Corresponds to the JSON property `filter`
|
|
19223
19285
|
# @return [String]
|
|
19224
19286
|
attr_accessor :filter
|
|
@@ -30070,6 +30132,11 @@ module Google
|
|
|
30070
30132
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig]
|
|
30071
30133
|
attr_accessor :knowledge_graph_config
|
|
30072
30134
|
|
|
30135
|
+
# Optional. The visibility of marketplace agents in the agent gallery.
|
|
30136
|
+
# Corresponds to the JSON property `marketplaceAgentVisibility`
|
|
30137
|
+
# @return [String]
|
|
30138
|
+
attr_accessor :marketplace_agent_visibility
|
|
30139
|
+
|
|
30073
30140
|
# Additional config specs for a Media Recommendation engine.
|
|
30074
30141
|
# Corresponds to the JSON property `mediaRecommendationEngineConfig`
|
|
30075
30142
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig]
|
|
@@ -30100,6 +30167,11 @@ module Google
|
|
|
30100
30167
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaObservabilityConfig]
|
|
30101
30168
|
attr_accessor :observability_config
|
|
30102
30169
|
|
|
30170
|
+
# Optional. The email of the procurement contact.
|
|
30171
|
+
# Corresponds to the JSON property `procurementContactEmail`
|
|
30172
|
+
# @return [String]
|
|
30173
|
+
attr_accessor :procurement_contact_email
|
|
30174
|
+
|
|
30103
30175
|
# Configurations for a Search Engine.
|
|
30104
30176
|
# Corresponds to the JSON property `searchEngineConfig`
|
|
30105
30177
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig]
|
|
@@ -30135,10 +30207,12 @@ module Google
|
|
|
30135
30207
|
@features = args[:features] if args.key?(:features)
|
|
30136
30208
|
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
|
30137
30209
|
@knowledge_graph_config = args[:knowledge_graph_config] if args.key?(:knowledge_graph_config)
|
|
30210
|
+
@marketplace_agent_visibility = args[:marketplace_agent_visibility] if args.key?(:marketplace_agent_visibility)
|
|
30138
30211
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
30139
30212
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
30140
30213
|
@name = args[:name] if args.key?(:name)
|
|
30141
30214
|
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
30215
|
+
@procurement_contact_email = args[:procurement_contact_email] if args.key?(:procurement_contact_email)
|
|
30142
30216
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
30143
30217
|
@solution_type = args[:solution_type] if args.key?(:solution_type)
|
|
30144
30218
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
@@ -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.96.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
|
|
@@ -6303,6 +6303,7 @@ module Google
|
|
|
6303
6303
|
property :data_source, as: 'dataSource'
|
|
6304
6304
|
collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DestinationConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DestinationConfig::Representation
|
|
6305
6305
|
|
|
6306
|
+
collection :egress_fqdns, as: 'egressFqdns'
|
|
6306
6307
|
property :end_user_config, as: 'endUserConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DataConnectorEndUserConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DataConnectorEndUserConfig::Representation
|
|
6307
6308
|
|
|
6308
6309
|
collection :entities, as: 'entities', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DataConnectorSourceEntity, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DataConnectorSourceEntity::Representation
|
|
@@ -6336,6 +6337,7 @@ module Google
|
|
|
6336
6337
|
property :static_ip_enabled, as: 'staticIpEnabled'
|
|
6337
6338
|
property :sync_mode, as: 'syncMode'
|
|
6338
6339
|
property :update_time, as: 'updateTime'
|
|
6340
|
+
property :vpcsc_enabled, as: 'vpcscEnabled'
|
|
6339
6341
|
end
|
|
6340
6342
|
end
|
|
6341
6343
|
|
|
@@ -6651,12 +6653,14 @@ module Google
|
|
|
6651
6653
|
property :industry_vertical, as: 'industryVertical'
|
|
6652
6654
|
property :knowledge_graph_config, as: 'knowledgeGraphConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig::Representation
|
|
6653
6655
|
|
|
6656
|
+
property :marketplace_agent_visibility, as: 'marketplaceAgentVisibility'
|
|
6654
6657
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig::Representation
|
|
6655
6658
|
|
|
6656
6659
|
hash :model_configs, as: 'modelConfigs'
|
|
6657
6660
|
property :name, as: 'name'
|
|
6658
6661
|
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ObservabilityConfig::Representation
|
|
6659
6662
|
|
|
6663
|
+
property :procurement_contact_email, as: 'procurementContactEmail'
|
|
6660
6664
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig::Representation
|
|
6661
6665
|
|
|
6662
6666
|
property :solution_type, as: 'solutionType'
|
|
@@ -9353,6 +9357,7 @@ module Google
|
|
|
9353
9357
|
property :data_source, as: 'dataSource'
|
|
9354
9358
|
collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDestinationConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDestinationConfig::Representation
|
|
9355
9359
|
|
|
9360
|
+
collection :egress_fqdns, as: 'egressFqdns'
|
|
9356
9361
|
property :end_user_config, as: 'endUserConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDataConnectorEndUserConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDataConnectorEndUserConfig::Representation
|
|
9357
9362
|
|
|
9358
9363
|
collection :entities, as: 'entities', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDataConnectorSourceEntity, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDataConnectorSourceEntity::Representation
|
|
@@ -9386,6 +9391,7 @@ module Google
|
|
|
9386
9391
|
property :static_ip_enabled, as: 'staticIpEnabled'
|
|
9387
9392
|
property :sync_mode, as: 'syncMode'
|
|
9388
9393
|
property :update_time, as: 'updateTime'
|
|
9394
|
+
property :vpcsc_enabled, as: 'vpcscEnabled'
|
|
9389
9395
|
end
|
|
9390
9396
|
end
|
|
9391
9397
|
|
|
@@ -9884,12 +9890,14 @@ module Google
|
|
|
9884
9890
|
property :industry_vertical, as: 'industryVertical'
|
|
9885
9891
|
property :knowledge_graph_config, as: 'knowledgeGraphConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig::Representation
|
|
9886
9892
|
|
|
9893
|
+
property :marketplace_agent_visibility, as: 'marketplaceAgentVisibility'
|
|
9887
9894
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig::Representation
|
|
9888
9895
|
|
|
9889
9896
|
hash :model_configs, as: 'modelConfigs'
|
|
9890
9897
|
property :name, as: 'name'
|
|
9891
9898
|
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig::Representation
|
|
9892
9899
|
|
|
9900
|
+
property :procurement_contact_email, as: 'procurementContactEmail'
|
|
9893
9901
|
property :recommendation_metadata, as: 'recommendationMetadata', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata::Representation
|
|
9894
9902
|
|
|
9895
9903
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig::Representation
|
|
@@ -13809,12 +13817,14 @@ module Google
|
|
|
13809
13817
|
property :industry_vertical, as: 'industryVertical'
|
|
13810
13818
|
property :knowledge_graph_config, as: 'knowledgeGraphConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig::Representation
|
|
13811
13819
|
|
|
13820
|
+
property :marketplace_agent_visibility, as: 'marketplaceAgentVisibility'
|
|
13812
13821
|
property :media_recommendation_engine_config, as: 'mediaRecommendationEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig::Representation
|
|
13813
13822
|
|
|
13814
13823
|
hash :model_configs, as: 'modelConfigs'
|
|
13815
13824
|
property :name, as: 'name'
|
|
13816
13825
|
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaObservabilityConfig::Representation
|
|
13817
13826
|
|
|
13827
|
+
property :procurement_contact_email, as: 'procurementContactEmail'
|
|
13818
13828
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig::Representation
|
|
13819
13829
|
|
|
13820
13830
|
property :solution_type, as: 'solutionType'
|
|
@@ -4356,10 +4356,12 @@ module Google
|
|
|
4356
4356
|
# @param [String] filter
|
|
4357
4357
|
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
|
4358
4358
|
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
|
4359
|
-
# is_pinned` * `labels` * `create_time` * `update_time`
|
|
4360
|
-
# user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
4361
|
-
# is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
4362
|
-
# `
|
|
4359
|
+
# is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project`
|
|
4360
|
+
# Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
4361
|
+
# starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
4362
|
+
# 1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/
|
|
4363
|
+
# global/collections/default_collection/engines/" "default_engine/
|
|
4364
|
+
# collaborative_projects/cp1"`
|
|
4363
4365
|
# @param [String] order_by
|
|
4364
4366
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
|
4365
4367
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
|
@@ -7788,10 +7790,12 @@ module Google
|
|
|
7788
7790
|
# @param [String] filter
|
|
7789
7791
|
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
|
7790
7792
|
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
|
7791
|
-
# is_pinned` * `labels` * `create_time` * `update_time`
|
|
7792
|
-
# user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
7793
|
-
# is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
7794
|
-
# `
|
|
7793
|
+
# is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project`
|
|
7794
|
+
# Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
7795
|
+
# starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
7796
|
+
# 1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/
|
|
7797
|
+
# global/collections/default_collection/engines/" "default_engine/
|
|
7798
|
+
# collaborative_projects/cp1"`
|
|
7795
7799
|
# @param [String] order_by
|
|
7796
7800
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
|
7797
7801
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
|
@@ -10776,10 +10780,12 @@ module Google
|
|
|
10776
10780
|
# @param [String] filter
|
|
10777
10781
|
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
|
10778
10782
|
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
|
10779
|
-
# is_pinned` * `labels` * `create_time` * `update_time`
|
|
10780
|
-
# user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
10781
|
-
# is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
10782
|
-
# `
|
|
10783
|
+
# is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project`
|
|
10784
|
+
# Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `
|
|
10785
|
+
# starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "
|
|
10786
|
+
# 1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/
|
|
10787
|
+
# global/collections/default_collection/engines/" "default_engine/
|
|
10788
|
+
# collaborative_projects/cp1"`
|
|
10783
10789
|
# @param [String] order_by
|
|
10784
10790
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
|
10785
10791
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
|
@@ -12216,7 +12222,8 @@ module Google
|
|
|
12216
12222
|
execute_or_queue_command(command, &block)
|
|
12217
12223
|
end
|
|
12218
12224
|
|
|
12219
|
-
# Creates a LicenseConfig
|
|
12225
|
+
# Creates a LicenseConfig This method should only be used for creating
|
|
12226
|
+
# NotebookLm licenses or Gemini Enterprise free trial licenses.
|
|
12220
12227
|
# @param [String] parent
|
|
12221
12228
|
# Required. The parent resource name, such as `projects/`project`/locations/`
|
|
12222
12229
|
# location``.
|
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.96.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.96.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:
|