google-apis-discoveryengine_v1alpha 0.27.0 → 0.29.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/discoveryengine_v1alpha/classes.rb +443 -8
- data/lib/google/apis/discoveryengine_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1alpha/representations.rb +249 -0
- data/lib/google/apis/discoveryengine_v1alpha/service.rb +1134 -104
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2adfc46570652a4e45febdabbc3bb6944df0eb93e6a2a73863e484a5899353c6
|
4
|
+
data.tar.gz: e4a5dd49b4921af29ef33c6d7d7fb15cef7089799c4e9bc2e29be563d86985c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b825af8c6cef4c28d96f06b7fc0f6d445036cd33f2bf48b7e570d472f85ab69733c0a1c420aad4804caa94f38eaf0598062ee36232d419018e528b1d9d4b715
|
7
|
+
data.tar.gz: 5b2f498ff5b9028c7ab3a0ea4f3e22155c4cc3c7ff32f03a25d29fed970dc369b36f46ed238885cb97d5c8d75c71cae5debc4a25340a0d7ca549883423f49aa3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-discoveryengine_v1alpha
|
2
2
|
|
3
|
+
### v0.29.0 (2023-12-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231130
|
6
|
+
|
7
|
+
### v0.28.0 (2023-11-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231110
|
10
|
+
|
3
11
|
### v0.27.0 (2023-11-12)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231102
|
@@ -642,6 +642,86 @@ module Google
|
|
642
642
|
end
|
643
643
|
end
|
644
644
|
|
645
|
+
# Metadata related to the progress of the SiteSearchEngineService.
|
646
|
+
# BatchCreateTargetSite operation. This will be returned by the google.
|
647
|
+
# longrunning.Operation.metadata field.
|
648
|
+
class GoogleCloudDiscoveryengineV1alphaBatchCreateTargetSiteMetadata
|
649
|
+
include Google::Apis::Core::Hashable
|
650
|
+
|
651
|
+
# Operation create time.
|
652
|
+
# Corresponds to the JSON property `createTime`
|
653
|
+
# @return [String]
|
654
|
+
attr_accessor :create_time
|
655
|
+
|
656
|
+
# Operation last update time. If the operation is done, this is also the finish
|
657
|
+
# time.
|
658
|
+
# Corresponds to the JSON property `updateTime`
|
659
|
+
# @return [String]
|
660
|
+
attr_accessor :update_time
|
661
|
+
|
662
|
+
def initialize(**args)
|
663
|
+
update!(**args)
|
664
|
+
end
|
665
|
+
|
666
|
+
# Update properties of this object
|
667
|
+
def update!(**args)
|
668
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
669
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
670
|
+
end
|
671
|
+
end
|
672
|
+
|
673
|
+
# Request message for SiteSearchEngineService.s method.
|
674
|
+
class GoogleCloudDiscoveryengineV1alphaBatchCreateTargetSitesRequest
|
675
|
+
include Google::Apis::Core::Hashable
|
676
|
+
|
677
|
+
# Required. The request message specifying the resources to create. A maximum of
|
678
|
+
# 20 TargetSites can be created in a batch.
|
679
|
+
# Corresponds to the JSON property `requests`
|
680
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCreateTargetSiteRequest>]
|
681
|
+
attr_accessor :requests
|
682
|
+
|
683
|
+
def initialize(**args)
|
684
|
+
update!(**args)
|
685
|
+
end
|
686
|
+
|
687
|
+
# Update properties of this object
|
688
|
+
def update!(**args)
|
689
|
+
@requests = args[:requests] if args.key?(:requests)
|
690
|
+
end
|
691
|
+
end
|
692
|
+
|
693
|
+
# Response message for SiteSearchEngineService.BatchCreateTargetSites method.
|
694
|
+
class GoogleCloudDiscoveryengineV1alphaBatchCreateTargetSitesResponse
|
695
|
+
include Google::Apis::Core::Hashable
|
696
|
+
|
697
|
+
# TargetSites created.
|
698
|
+
# Corresponds to the JSON property `targetSites`
|
699
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaTargetSite>]
|
700
|
+
attr_accessor :target_sites
|
701
|
+
|
702
|
+
def initialize(**args)
|
703
|
+
update!(**args)
|
704
|
+
end
|
705
|
+
|
706
|
+
# Update properties of this object
|
707
|
+
def update!(**args)
|
708
|
+
@target_sites = args[:target_sites] if args.key?(:target_sites)
|
709
|
+
end
|
710
|
+
end
|
711
|
+
|
712
|
+
# Request message for SiteSearchEngineService.BatchVerifyTargetSites method.
|
713
|
+
class GoogleCloudDiscoveryengineV1alphaBatchVerifyTargetSitesRequest
|
714
|
+
include Google::Apis::Core::Hashable
|
715
|
+
|
716
|
+
def initialize(**args)
|
717
|
+
update!(**args)
|
718
|
+
end
|
719
|
+
|
720
|
+
# Update properties of this object
|
721
|
+
def update!(**args)
|
722
|
+
end
|
723
|
+
end
|
724
|
+
|
645
725
|
# BigQuery source import data from.
|
646
726
|
class GoogleCloudDiscoveryengineV1alphaBigQuerySource
|
647
727
|
include Google::Apis::Core::Hashable
|
@@ -872,7 +952,8 @@ module Google
|
|
872
952
|
attr_accessor :messages
|
873
953
|
|
874
954
|
# Immutable. Fully qualified name `project/*/locations/global/collections/`
|
875
|
-
# collection`/dataStore/*/conversations/*`
|
955
|
+
# collection`/dataStore/*/conversations/*` or `project/*/locations/global/
|
956
|
+
# collections/`collection`/engines/*/conversations/*`.
|
876
957
|
# Corresponds to the JSON property `name`
|
877
958
|
# @return [String]
|
878
959
|
attr_accessor :name
|
@@ -1157,6 +1238,61 @@ module Google
|
|
1157
1238
|
end
|
1158
1239
|
end
|
1159
1240
|
|
1241
|
+
# Metadata related to the progress of the SiteSearchEngineService.
|
1242
|
+
# CreateTargetSite operation. This will be returned by the google.longrunning.
|
1243
|
+
# Operation.metadata field.
|
1244
|
+
class GoogleCloudDiscoveryengineV1alphaCreateTargetSiteMetadata
|
1245
|
+
include Google::Apis::Core::Hashable
|
1246
|
+
|
1247
|
+
# Operation create time.
|
1248
|
+
# Corresponds to the JSON property `createTime`
|
1249
|
+
# @return [String]
|
1250
|
+
attr_accessor :create_time
|
1251
|
+
|
1252
|
+
# Operation last update time. If the operation is done, this is also the finish
|
1253
|
+
# time.
|
1254
|
+
# Corresponds to the JSON property `updateTime`
|
1255
|
+
# @return [String]
|
1256
|
+
attr_accessor :update_time
|
1257
|
+
|
1258
|
+
def initialize(**args)
|
1259
|
+
update!(**args)
|
1260
|
+
end
|
1261
|
+
|
1262
|
+
# Update properties of this object
|
1263
|
+
def update!(**args)
|
1264
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1265
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
1266
|
+
end
|
1267
|
+
end
|
1268
|
+
|
1269
|
+
# Request message for SiteSearchEngineService.CreateTargetSite method.
|
1270
|
+
class GoogleCloudDiscoveryengineV1alphaCreateTargetSiteRequest
|
1271
|
+
include Google::Apis::Core::Hashable
|
1272
|
+
|
1273
|
+
# Required. Parent resource name of TargetSite, such as `projects/`project`/
|
1274
|
+
# locations/`location`/collections/`collection`/dataStores/`data_store`/
|
1275
|
+
# siteSearchEngine`.
|
1276
|
+
# Corresponds to the JSON property `parent`
|
1277
|
+
# @return [String]
|
1278
|
+
attr_accessor :parent
|
1279
|
+
|
1280
|
+
# A target site for the SiteSearchEngine.
|
1281
|
+
# Corresponds to the JSON property `targetSite`
|
1282
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaTargetSite]
|
1283
|
+
attr_accessor :target_site
|
1284
|
+
|
1285
|
+
def initialize(**args)
|
1286
|
+
update!(**args)
|
1287
|
+
end
|
1288
|
+
|
1289
|
+
# Update properties of this object
|
1290
|
+
def update!(**args)
|
1291
|
+
@parent = args[:parent] if args.key?(:parent)
|
1292
|
+
@target_site = args[:target_site] if args.key?(:target_site)
|
1293
|
+
end
|
1294
|
+
end
|
1295
|
+
|
1160
1296
|
# A custom attribute that is not explicitly modeled in a resource, e.g.
|
1161
1297
|
# UserEvent.
|
1162
1298
|
class GoogleCloudDiscoveryengineV1alphaCustomAttribute
|
@@ -1335,6 +1471,88 @@ module Google
|
|
1335
1471
|
end
|
1336
1472
|
end
|
1337
1473
|
|
1474
|
+
# Metadata related to the progress of the SiteSearchEngineService.
|
1475
|
+
# DeleteTargetSite operation. This will be returned by the google.longrunning.
|
1476
|
+
# Operation.metadata field.
|
1477
|
+
class GoogleCloudDiscoveryengineV1alphaDeleteTargetSiteMetadata
|
1478
|
+
include Google::Apis::Core::Hashable
|
1479
|
+
|
1480
|
+
# Operation create time.
|
1481
|
+
# Corresponds to the JSON property `createTime`
|
1482
|
+
# @return [String]
|
1483
|
+
attr_accessor :create_time
|
1484
|
+
|
1485
|
+
# Operation last update time. If the operation is done, this is also the finish
|
1486
|
+
# time.
|
1487
|
+
# Corresponds to the JSON property `updateTime`
|
1488
|
+
# @return [String]
|
1489
|
+
attr_accessor :update_time
|
1490
|
+
|
1491
|
+
def initialize(**args)
|
1492
|
+
update!(**args)
|
1493
|
+
end
|
1494
|
+
|
1495
|
+
# Update properties of this object
|
1496
|
+
def update!(**args)
|
1497
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1498
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
1499
|
+
end
|
1500
|
+
end
|
1501
|
+
|
1502
|
+
# Metadata related to the progress of the SiteSearchEngineService.
|
1503
|
+
# DisableAdvancedSiteSearch operation. This will be returned by the google.
|
1504
|
+
# longrunning.Operation.metadata field.
|
1505
|
+
class GoogleCloudDiscoveryengineV1alphaDisableAdvancedSiteSearchMetadata
|
1506
|
+
include Google::Apis::Core::Hashable
|
1507
|
+
|
1508
|
+
# Operation create time.
|
1509
|
+
# Corresponds to the JSON property `createTime`
|
1510
|
+
# @return [String]
|
1511
|
+
attr_accessor :create_time
|
1512
|
+
|
1513
|
+
# Operation last update time. If the operation is done, this is also the finish
|
1514
|
+
# time.
|
1515
|
+
# Corresponds to the JSON property `updateTime`
|
1516
|
+
# @return [String]
|
1517
|
+
attr_accessor :update_time
|
1518
|
+
|
1519
|
+
def initialize(**args)
|
1520
|
+
update!(**args)
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
# Update properties of this object
|
1524
|
+
def update!(**args)
|
1525
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1526
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
1527
|
+
end
|
1528
|
+
end
|
1529
|
+
|
1530
|
+
# Request message for SiteSearchEngineService.DisableAdvancedSiteSearch method.
|
1531
|
+
class GoogleCloudDiscoveryengineV1alphaDisableAdvancedSiteSearchRequest
|
1532
|
+
include Google::Apis::Core::Hashable
|
1533
|
+
|
1534
|
+
def initialize(**args)
|
1535
|
+
update!(**args)
|
1536
|
+
end
|
1537
|
+
|
1538
|
+
# Update properties of this object
|
1539
|
+
def update!(**args)
|
1540
|
+
end
|
1541
|
+
end
|
1542
|
+
|
1543
|
+
# Response message for SiteSearchEngineService.DisableAdvancedSiteSearch method.
|
1544
|
+
class GoogleCloudDiscoveryengineV1alphaDisableAdvancedSiteSearchResponse
|
1545
|
+
include Google::Apis::Core::Hashable
|
1546
|
+
|
1547
|
+
def initialize(**args)
|
1548
|
+
update!(**args)
|
1549
|
+
end
|
1550
|
+
|
1551
|
+
# Update properties of this object
|
1552
|
+
def update!(**args)
|
1553
|
+
end
|
1554
|
+
end
|
1555
|
+
|
1338
1556
|
# Document captures all raw metadata information of items to be recommended or
|
1339
1557
|
# searched.
|
1340
1558
|
class GoogleCloudDiscoveryengineV1alphaDocument
|
@@ -1518,6 +1736,60 @@ module Google
|
|
1518
1736
|
end
|
1519
1737
|
end
|
1520
1738
|
|
1739
|
+
# Metadata related to the progress of the SiteSearchEngineService.
|
1740
|
+
# EnableAdvancedSiteSearch operation. This will be returned by the google.
|
1741
|
+
# longrunning.Operation.metadata field.
|
1742
|
+
class GoogleCloudDiscoveryengineV1alphaEnableAdvancedSiteSearchMetadata
|
1743
|
+
include Google::Apis::Core::Hashable
|
1744
|
+
|
1745
|
+
# Operation create time.
|
1746
|
+
# Corresponds to the JSON property `createTime`
|
1747
|
+
# @return [String]
|
1748
|
+
attr_accessor :create_time
|
1749
|
+
|
1750
|
+
# Operation last update time. If the operation is done, this is also the finish
|
1751
|
+
# time.
|
1752
|
+
# Corresponds to the JSON property `updateTime`
|
1753
|
+
# @return [String]
|
1754
|
+
attr_accessor :update_time
|
1755
|
+
|
1756
|
+
def initialize(**args)
|
1757
|
+
update!(**args)
|
1758
|
+
end
|
1759
|
+
|
1760
|
+
# Update properties of this object
|
1761
|
+
def update!(**args)
|
1762
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1763
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
1764
|
+
end
|
1765
|
+
end
|
1766
|
+
|
1767
|
+
# Request message for SiteSearchEngineService.EnableAdvancedSiteSearch method.
|
1768
|
+
class GoogleCloudDiscoveryengineV1alphaEnableAdvancedSiteSearchRequest
|
1769
|
+
include Google::Apis::Core::Hashable
|
1770
|
+
|
1771
|
+
def initialize(**args)
|
1772
|
+
update!(**args)
|
1773
|
+
end
|
1774
|
+
|
1775
|
+
# Update properties of this object
|
1776
|
+
def update!(**args)
|
1777
|
+
end
|
1778
|
+
end
|
1779
|
+
|
1780
|
+
# Response message for SiteSearchEngineService.EnableAdvancedSiteSearch method.
|
1781
|
+
class GoogleCloudDiscoveryengineV1alphaEnableAdvancedSiteSearchResponse
|
1782
|
+
include Google::Apis::Core::Hashable
|
1783
|
+
|
1784
|
+
def initialize(**args)
|
1785
|
+
update!(**args)
|
1786
|
+
end
|
1787
|
+
|
1788
|
+
# Update properties of this object
|
1789
|
+
def update!(**args)
|
1790
|
+
end
|
1791
|
+
end
|
1792
|
+
|
1521
1793
|
# Metadata that describes the training and serving parameters of an Engine.
|
1522
1794
|
class GoogleCloudDiscoveryengineV1alphaEngine
|
1523
1795
|
include Google::Apis::Core::Hashable
|
@@ -1559,6 +1831,14 @@ module Google
|
|
1559
1831
|
# @return [String]
|
1560
1832
|
attr_accessor :display_name
|
1561
1833
|
|
1834
|
+
# The industry vertical that the engine registers. The restriction of the Engine
|
1835
|
+
# industry vertical is based on DataStore: If unspecified, default to `GENERIC`.
|
1836
|
+
# Vertical on Engine has to match vertical of the DataStore liniked to the
|
1837
|
+
# engine.
|
1838
|
+
# Corresponds to the JSON property `industryVertical`
|
1839
|
+
# @return [String]
|
1840
|
+
attr_accessor :industry_vertical
|
1841
|
+
|
1562
1842
|
# Additional config specs for a Media Recommendation engine.
|
1563
1843
|
# Corresponds to the JSON property `mediaRecommendationEngineConfig`
|
1564
1844
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig]
|
@@ -1610,6 +1890,7 @@ module Google
|
|
1610
1890
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1611
1891
|
@data_store_ids = args[:data_store_ids] if args.key?(:data_store_ids)
|
1612
1892
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1893
|
+
@industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
|
1613
1894
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
1614
1895
|
@name = args[:name] if args.key?(:name)
|
1615
1896
|
@recommendation_metadata = args[:recommendation_metadata] if args.key?(:recommendation_metadata)
|
@@ -1626,8 +1907,8 @@ module Google
|
|
1626
1907
|
|
1627
1908
|
# Configurations for generating a Dialogflow agent. Note that these
|
1628
1909
|
# configurations are one-time consumed by and passed to Dialogflow service. It
|
1629
|
-
# means they cannot be retrieved using GetEngine or
|
1630
|
-
# creation.
|
1910
|
+
# means they cannot be retrieved using EngineService.GetEngine or EngineService.
|
1911
|
+
# ListEngines API after engine creation.
|
1631
1912
|
# Corresponds to the JSON property `agentCreationConfig`
|
1632
1913
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfigAgentCreationConfig]
|
1633
1914
|
attr_accessor :agent_creation_config
|
@@ -1637,9 +1918,9 @@ module Google
|
|
1637
1918
|
# provide an agent name that links the agent with the Chat engine. Format: `
|
1638
1919
|
# projects//locations//agents/`. Note that the `dialogflow_agent_to_link` are
|
1639
1920
|
# one-time consumed by and passed to Dialogflow service. It means they cannot be
|
1640
|
-
# retrieved using GetEngine or
|
1641
|
-
#
|
1642
|
-
# after Engine is created.
|
1921
|
+
# retrieved using EngineService.GetEngine or EngineService.ListEngines API after
|
1922
|
+
# engine creation. Please use chat_engine_metadata.dialogflow_agent for actual
|
1923
|
+
# agent association after Engine is created.
|
1643
1924
|
# Corresponds to the JSON property `dialogflowAgentToLink`
|
1644
1925
|
# @return [String]
|
1645
1926
|
attr_accessor :dialogflow_agent_to_link
|
@@ -1657,8 +1938,8 @@ module Google
|
|
1657
1938
|
|
1658
1939
|
# Configurations for generating a Dialogflow agent. Note that these
|
1659
1940
|
# configurations are one-time consumed by and passed to Dialogflow service. It
|
1660
|
-
# means they cannot be retrieved using GetEngine or
|
1661
|
-
# creation.
|
1941
|
+
# means they cannot be retrieved using EngineService.GetEngine or EngineService.
|
1942
|
+
# ListEngines API after engine creation.
|
1662
1943
|
class GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfigAgentCreationConfig
|
1663
1944
|
include Google::Apis::Core::Hashable
|
1664
1945
|
|
@@ -1896,6 +2177,40 @@ module Google
|
|
1896
2177
|
end
|
1897
2178
|
end
|
1898
2179
|
|
2180
|
+
# Response message for SiteSearchEngineService.FetchDomainVerificationStatus
|
2181
|
+
# method.
|
2182
|
+
class GoogleCloudDiscoveryengineV1alphaFetchDomainVerificationStatusResponse
|
2183
|
+
include Google::Apis::Core::Hashable
|
2184
|
+
|
2185
|
+
# A token that can be sent as `page_token` to retrieve the next page. If this
|
2186
|
+
# field is omitted, there are no subsequent pages.
|
2187
|
+
# Corresponds to the JSON property `nextPageToken`
|
2188
|
+
# @return [String]
|
2189
|
+
attr_accessor :next_page_token
|
2190
|
+
|
2191
|
+
# List of TargetSites containing the site verification status.
|
2192
|
+
# Corresponds to the JSON property `targetSites`
|
2193
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaTargetSite>]
|
2194
|
+
attr_accessor :target_sites
|
2195
|
+
|
2196
|
+
# The total number of items matching the request. This will always be populated
|
2197
|
+
# in the response.
|
2198
|
+
# Corresponds to the JSON property `totalSize`
|
2199
|
+
# @return [Fixnum]
|
2200
|
+
attr_accessor :total_size
|
2201
|
+
|
2202
|
+
def initialize(**args)
|
2203
|
+
update!(**args)
|
2204
|
+
end
|
2205
|
+
|
2206
|
+
# Update properties of this object
|
2207
|
+
def update!(**args)
|
2208
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2209
|
+
@target_sites = args[:target_sites] if args.key?(:target_sites)
|
2210
|
+
@total_size = args[:total_size] if args.key?(:total_size)
|
2211
|
+
end
|
2212
|
+
end
|
2213
|
+
|
1899
2214
|
# Configurations for fields of a schema. For example, configuring a field is
|
1900
2215
|
# indexable, or searchable.
|
1901
2216
|
class GoogleCloudDiscoveryengineV1alphaFieldConfig
|
@@ -2537,6 +2852,39 @@ module Google
|
|
2537
2852
|
end
|
2538
2853
|
end
|
2539
2854
|
|
2855
|
+
# Response message for SiteSearchEngineService.ListTargetSites method.
|
2856
|
+
class GoogleCloudDiscoveryengineV1alphaListTargetSitesResponse
|
2857
|
+
include Google::Apis::Core::Hashable
|
2858
|
+
|
2859
|
+
# A token that can be sent as `page_token` to retrieve the next page. If this
|
2860
|
+
# field is omitted, there are no subsequent pages.
|
2861
|
+
# Corresponds to the JSON property `nextPageToken`
|
2862
|
+
# @return [String]
|
2863
|
+
attr_accessor :next_page_token
|
2864
|
+
|
2865
|
+
# List of TargetSites.
|
2866
|
+
# Corresponds to the JSON property `targetSites`
|
2867
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaTargetSite>]
|
2868
|
+
attr_accessor :target_sites
|
2869
|
+
|
2870
|
+
# The total number of items matching the request. This will always be populated
|
2871
|
+
# in the response.
|
2872
|
+
# Corresponds to the JSON property `totalSize`
|
2873
|
+
# @return [Fixnum]
|
2874
|
+
attr_accessor :total_size
|
2875
|
+
|
2876
|
+
def initialize(**args)
|
2877
|
+
update!(**args)
|
2878
|
+
end
|
2879
|
+
|
2880
|
+
# Update properties of this object
|
2881
|
+
def update!(**args)
|
2882
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2883
|
+
@target_sites = args[:target_sites] if args.key?(:target_sites)
|
2884
|
+
@total_size = args[:total_size] if args.key?(:total_size)
|
2885
|
+
end
|
2886
|
+
end
|
2887
|
+
|
2540
2888
|
# Request message for WidgetService.LookupWidgetConfig method.
|
2541
2889
|
class GoogleCloudDiscoveryengineV1alphaLookupWidgetConfigRequest
|
2542
2890
|
include Google::Apis::Core::Hashable
|
@@ -3420,6 +3768,18 @@ module Google
|
|
3420
3768
|
# @return [String]
|
3421
3769
|
attr_accessor :branch
|
3422
3770
|
|
3771
|
+
# The default filter that is applied when a user performs a search without
|
3772
|
+
# checking any filters on the search page. The filter applied to every search
|
3773
|
+
# request when quality improvement such as query expansion is needed. In the
|
3774
|
+
# case a query does not have a sufficient amount of results this filter will be
|
3775
|
+
# used to determine whether or not to enable the query expansion flow. The
|
3776
|
+
# original filter will still be used for the query expanded search. This field
|
3777
|
+
# is strongly recommended to achieve high search quality. For more information
|
3778
|
+
# about filter syntax, see SearchRequest.filter.
|
3779
|
+
# Corresponds to the JSON property `canonicalFilter`
|
3780
|
+
# @return [String]
|
3781
|
+
attr_accessor :canonical_filter
|
3782
|
+
|
3423
3783
|
# A specification for configuring the behavior of content search.
|
3424
3784
|
# Corresponds to the JSON property `contentSearchSpec`
|
3425
3785
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchRequestContentSearchSpec]
|
@@ -3588,6 +3948,7 @@ module Google
|
|
3588
3948
|
def update!(**args)
|
3589
3949
|
@boost_spec = args[:boost_spec] if args.key?(:boost_spec)
|
3590
3950
|
@branch = args[:branch] if args.key?(:branch)
|
3951
|
+
@canonical_filter = args[:canonical_filter] if args.key?(:canonical_filter)
|
3591
3952
|
@content_search_spec = args[:content_search_spec] if args.key?(:content_search_spec)
|
3592
3953
|
@embedding_spec = args[:embedding_spec] if args.key?(:embedding_spec)
|
3593
3954
|
@facet_specs = args[:facet_specs] if args.key?(:facet_specs)
|
@@ -3840,6 +4201,11 @@ module Google
|
|
3840
4201
|
# @return [String]
|
3841
4202
|
attr_accessor :language_code
|
3842
4203
|
|
4204
|
+
# Specification of the model.
|
4205
|
+
# Corresponds to the JSON property `modelSpec`
|
4206
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchRequestContentSearchSpecSummarySpecModelSpec]
|
4207
|
+
attr_accessor :model_spec
|
4208
|
+
|
3843
4209
|
# The number of top results to generate the summary from. If the number of
|
3844
4210
|
# results returned is less than `summaryResultCount`, the summary is generated
|
3845
4211
|
# from all of the results. At most five results can be used to generate a
|
@@ -3858,10 +4224,30 @@ module Google
|
|
3858
4224
|
@ignore_non_summary_seeking_query = args[:ignore_non_summary_seeking_query] if args.key?(:ignore_non_summary_seeking_query)
|
3859
4225
|
@include_citations = args[:include_citations] if args.key?(:include_citations)
|
3860
4226
|
@language_code = args[:language_code] if args.key?(:language_code)
|
4227
|
+
@model_spec = args[:model_spec] if args.key?(:model_spec)
|
3861
4228
|
@summary_result_count = args[:summary_result_count] if args.key?(:summary_result_count)
|
3862
4229
|
end
|
3863
4230
|
end
|
3864
4231
|
|
4232
|
+
# Specification of the model.
|
4233
|
+
class GoogleCloudDiscoveryengineV1alphaSearchRequestContentSearchSpecSummarySpecModelSpec
|
4234
|
+
include Google::Apis::Core::Hashable
|
4235
|
+
|
4236
|
+
# The string format of the model version. e.g. stable, latest, etc.
|
4237
|
+
# Corresponds to the JSON property `version`
|
4238
|
+
# @return [String]
|
4239
|
+
attr_accessor :version
|
4240
|
+
|
4241
|
+
def initialize(**args)
|
4242
|
+
update!(**args)
|
4243
|
+
end
|
4244
|
+
|
4245
|
+
# Update properties of this object
|
4246
|
+
def update!(**args)
|
4247
|
+
@version = args[:version] if args.key?(:version)
|
4248
|
+
end
|
4249
|
+
end
|
4250
|
+
|
3865
4251
|
# The specification that uses customized query embedding vector to do semantic
|
3866
4252
|
# document retrieval.
|
3867
4253
|
class GoogleCloudDiscoveryengineV1alphaSearchRequestEmbeddingSpec
|
@@ -4478,6 +4864,27 @@ module Google
|
|
4478
4864
|
end
|
4479
4865
|
end
|
4480
4866
|
|
4867
|
+
# SiteSearchEngine captures DataStore level site search persisting
|
4868
|
+
# configurations. It is a singleton value per data store.
|
4869
|
+
class GoogleCloudDiscoveryengineV1alphaSiteSearchEngine
|
4870
|
+
include Google::Apis::Core::Hashable
|
4871
|
+
|
4872
|
+
# The fully qualified resource name of the site search engine. Format: `projects/
|
4873
|
+
# */locations/*/dataStores/*/siteSearchEngine`
|
4874
|
+
# Corresponds to the JSON property `name`
|
4875
|
+
# @return [String]
|
4876
|
+
attr_accessor :name
|
4877
|
+
|
4878
|
+
def initialize(**args)
|
4879
|
+
update!(**args)
|
4880
|
+
end
|
4881
|
+
|
4882
|
+
# Update properties of this object
|
4883
|
+
def update!(**args)
|
4884
|
+
@name = args[:name] if args.key?(:name)
|
4885
|
+
end
|
4886
|
+
end
|
4887
|
+
|
4481
4888
|
# Verification information for target sites in advanced site search.
|
4482
4889
|
class GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo
|
4483
4890
|
include Google::Apis::Core::Hashable
|
@@ -4771,6 +5178,34 @@ module Google
|
|
4771
5178
|
end
|
4772
5179
|
end
|
4773
5180
|
|
5181
|
+
# Metadata related to the progress of the SiteSearchEngineService.
|
5182
|
+
# UpdateTargetSite operation. This will be returned by the google.longrunning.
|
5183
|
+
# Operation.metadata field.
|
5184
|
+
class GoogleCloudDiscoveryengineV1alphaUpdateTargetSiteMetadata
|
5185
|
+
include Google::Apis::Core::Hashable
|
5186
|
+
|
5187
|
+
# Operation create time.
|
5188
|
+
# Corresponds to the JSON property `createTime`
|
5189
|
+
# @return [String]
|
5190
|
+
attr_accessor :create_time
|
5191
|
+
|
5192
|
+
# Operation last update time. If the operation is done, this is also the finish
|
5193
|
+
# time.
|
5194
|
+
# Corresponds to the JSON property `updateTime`
|
5195
|
+
# @return [String]
|
5196
|
+
attr_accessor :update_time
|
5197
|
+
|
5198
|
+
def initialize(**args)
|
5199
|
+
update!(**args)
|
5200
|
+
end
|
5201
|
+
|
5202
|
+
# Update properties of this object
|
5203
|
+
def update!(**args)
|
5204
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
5205
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
5206
|
+
end
|
5207
|
+
end
|
5208
|
+
|
4774
5209
|
# UserEvent captures all metadata information Discovery Engine API needs to know
|
4775
5210
|
# about how end users interact with customers' website.
|
4776
5211
|
class GoogleCloudDiscoveryengineV1alphaUserEvent
|
@@ -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.29.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231130"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|