@google-cloud/discoveryengine 2.4.0 → 2.5.1
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.
- package/README.md +334 -416
- package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +152 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +128 -4
- package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +128 -4
- package/build/protos/protos.d.ts +829 -518
- package/build/protos/protos.js +2459 -1694
- package/build/protos/protos.json +539 -194
- package/build/src/v1/identity_mapping_store_service_client.js +5 -5
- package/build/src/v1/search_service_client.d.ts +558 -0
- package/build/src/v1/search_service_client.js +372 -0
- package/build/src/v1alpha/search_service_client.d.ts +210 -12
- package/build/src/v1alpha/search_service_client.js +140 -8
- package/build/src/v1beta/search_service_client.d.ts +420 -24
- package/build/src/v1beta/search_service_client.js +280 -16
- package/package.json +1 -1
package/build/protos/protos.json
CHANGED
@@ -1385,6 +1385,17 @@
|
|
1385
1385
|
"options": {
|
1386
1386
|
"(google.api.field_behavior)": "OPTIONAL"
|
1387
1387
|
}
|
1388
|
+
},
|
1389
|
+
"rankingExpression": {
|
1390
|
+
"type": "string",
|
1391
|
+
"id": 26
|
1392
|
+
},
|
1393
|
+
"rankingExpressionBackend": {
|
1394
|
+
"type": "RankingExpressionBackend",
|
1395
|
+
"id": 53,
|
1396
|
+
"options": {
|
1397
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
1398
|
+
}
|
1388
1399
|
}
|
1389
1400
|
},
|
1390
1401
|
"nested": {
|
@@ -1848,6 +1859,23 @@
|
|
1848
1859
|
"MEDIUM": 3,
|
1849
1860
|
"HIGH": 4
|
1850
1861
|
}
|
1862
|
+
},
|
1863
|
+
"RankingExpressionBackend": {
|
1864
|
+
"values": {
|
1865
|
+
"RANKING_EXPRESSION_BACKEND_UNSPECIFIED": 0,
|
1866
|
+
"RANK_BY_EMBEDDING": 3,
|
1867
|
+
"RANK_BY_FORMULA": 4
|
1868
|
+
},
|
1869
|
+
"reserved": [
|
1870
|
+
[
|
1871
|
+
1,
|
1872
|
+
1
|
1873
|
+
],
|
1874
|
+
[
|
1875
|
+
2,
|
1876
|
+
2
|
1877
|
+
]
|
1878
|
+
]
|
1851
1879
|
}
|
1852
1880
|
}
|
1853
1881
|
},
|
@@ -1923,6 +1951,153 @@
|
|
1923
1951
|
"options": {
|
1924
1952
|
"(google.api.field_behavior)": "OUTPUT_ONLY"
|
1925
1953
|
}
|
1954
|
+
},
|
1955
|
+
"rankSignals": {
|
1956
|
+
"type": "RankSignals",
|
1957
|
+
"id": 7,
|
1958
|
+
"options": {
|
1959
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
1960
|
+
}
|
1961
|
+
}
|
1962
|
+
},
|
1963
|
+
"nested": {
|
1964
|
+
"RankSignals": {
|
1965
|
+
"oneofs": {
|
1966
|
+
"_keywordSimilarityScore": {
|
1967
|
+
"oneof": [
|
1968
|
+
"keywordSimilarityScore"
|
1969
|
+
]
|
1970
|
+
},
|
1971
|
+
"_relevanceScore": {
|
1972
|
+
"oneof": [
|
1973
|
+
"relevanceScore"
|
1974
|
+
]
|
1975
|
+
},
|
1976
|
+
"_semanticSimilarityScore": {
|
1977
|
+
"oneof": [
|
1978
|
+
"semanticSimilarityScore"
|
1979
|
+
]
|
1980
|
+
},
|
1981
|
+
"_pctrRank": {
|
1982
|
+
"oneof": [
|
1983
|
+
"pctrRank"
|
1984
|
+
]
|
1985
|
+
},
|
1986
|
+
"_topicalityRank": {
|
1987
|
+
"oneof": [
|
1988
|
+
"topicalityRank"
|
1989
|
+
]
|
1990
|
+
},
|
1991
|
+
"_documentAge": {
|
1992
|
+
"oneof": [
|
1993
|
+
"documentAge"
|
1994
|
+
]
|
1995
|
+
},
|
1996
|
+
"_boostingFactor": {
|
1997
|
+
"oneof": [
|
1998
|
+
"boostingFactor"
|
1999
|
+
]
|
2000
|
+
}
|
2001
|
+
},
|
2002
|
+
"fields": {
|
2003
|
+
"keywordSimilarityScore": {
|
2004
|
+
"type": "float",
|
2005
|
+
"id": 1,
|
2006
|
+
"options": {
|
2007
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
2008
|
+
"proto3_optional": true
|
2009
|
+
}
|
2010
|
+
},
|
2011
|
+
"relevanceScore": {
|
2012
|
+
"type": "float",
|
2013
|
+
"id": 2,
|
2014
|
+
"options": {
|
2015
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
2016
|
+
"proto3_optional": true
|
2017
|
+
}
|
2018
|
+
},
|
2019
|
+
"semanticSimilarityScore": {
|
2020
|
+
"type": "float",
|
2021
|
+
"id": 3,
|
2022
|
+
"options": {
|
2023
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
2024
|
+
"proto3_optional": true
|
2025
|
+
}
|
2026
|
+
},
|
2027
|
+
"pctrRank": {
|
2028
|
+
"type": "float",
|
2029
|
+
"id": 4,
|
2030
|
+
"options": {
|
2031
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
2032
|
+
"proto3_optional": true
|
2033
|
+
}
|
2034
|
+
},
|
2035
|
+
"topicalityRank": {
|
2036
|
+
"type": "float",
|
2037
|
+
"id": 6,
|
2038
|
+
"options": {
|
2039
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
2040
|
+
"proto3_optional": true
|
2041
|
+
}
|
2042
|
+
},
|
2043
|
+
"documentAge": {
|
2044
|
+
"type": "float",
|
2045
|
+
"id": 7,
|
2046
|
+
"options": {
|
2047
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
2048
|
+
"proto3_optional": true
|
2049
|
+
}
|
2050
|
+
},
|
2051
|
+
"boostingFactor": {
|
2052
|
+
"type": "float",
|
2053
|
+
"id": 8,
|
2054
|
+
"options": {
|
2055
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
2056
|
+
"proto3_optional": true
|
2057
|
+
}
|
2058
|
+
},
|
2059
|
+
"defaultRank": {
|
2060
|
+
"type": "float",
|
2061
|
+
"id": 32,
|
2062
|
+
"options": {
|
2063
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
2064
|
+
}
|
2065
|
+
},
|
2066
|
+
"customSignals": {
|
2067
|
+
"rule": "repeated",
|
2068
|
+
"type": "CustomSignal",
|
2069
|
+
"id": 33,
|
2070
|
+
"options": {
|
2071
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
2072
|
+
}
|
2073
|
+
}
|
2074
|
+
},
|
2075
|
+
"reserved": [
|
2076
|
+
[
|
2077
|
+
5,
|
2078
|
+
5
|
2079
|
+
]
|
2080
|
+
],
|
2081
|
+
"nested": {
|
2082
|
+
"CustomSignal": {
|
2083
|
+
"fields": {
|
2084
|
+
"name": {
|
2085
|
+
"type": "string",
|
2086
|
+
"id": 1,
|
2087
|
+
"options": {
|
2088
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
2089
|
+
}
|
2090
|
+
},
|
2091
|
+
"value": {
|
2092
|
+
"type": "float",
|
2093
|
+
"id": 2,
|
2094
|
+
"options": {
|
2095
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
2096
|
+
}
|
2097
|
+
}
|
2098
|
+
}
|
2099
|
+
}
|
2100
|
+
}
|
1926
2101
|
}
|
1927
2102
|
}
|
1928
2103
|
},
|
@@ -15968,6 +16143,13 @@
|
|
15968
16143
|
"type": "string",
|
15969
16144
|
"id": 26
|
15970
16145
|
},
|
16146
|
+
"rankingExpressionBackend": {
|
16147
|
+
"type": "RankingExpressionBackend",
|
16148
|
+
"id": 53,
|
16149
|
+
"options": {
|
16150
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
16151
|
+
}
|
16152
|
+
},
|
15971
16153
|
"safeSearch": {
|
15972
16154
|
"type": "bool",
|
15973
16155
|
"id": 20
|
@@ -16455,6 +16637,23 @@
|
|
16455
16637
|
"MEDIUM": 3,
|
16456
16638
|
"HIGH": 4
|
16457
16639
|
}
|
16640
|
+
},
|
16641
|
+
"RankingExpressionBackend": {
|
16642
|
+
"values": {
|
16643
|
+
"RANKING_EXPRESSION_BACKEND_UNSPECIFIED": 0,
|
16644
|
+
"RANK_BY_EMBEDDING": 3,
|
16645
|
+
"RANK_BY_FORMULA": 4
|
16646
|
+
},
|
16647
|
+
"reserved": [
|
16648
|
+
[
|
16649
|
+
1,
|
16650
|
+
1
|
16651
|
+
],
|
16652
|
+
[
|
16653
|
+
2,
|
16654
|
+
2
|
16655
|
+
]
|
16656
|
+
]
|
16458
16657
|
}
|
16459
16658
|
}
|
16460
16659
|
},
|
@@ -16545,6 +16744,153 @@
|
|
16545
16744
|
"keyType": "string",
|
16546
16745
|
"type": "DoubleList",
|
16547
16746
|
"id": 4
|
16747
|
+
},
|
16748
|
+
"rankSignals": {
|
16749
|
+
"type": "RankSignals",
|
16750
|
+
"id": 7,
|
16751
|
+
"options": {
|
16752
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
16753
|
+
}
|
16754
|
+
}
|
16755
|
+
},
|
16756
|
+
"nested": {
|
16757
|
+
"RankSignals": {
|
16758
|
+
"oneofs": {
|
16759
|
+
"_keywordSimilarityScore": {
|
16760
|
+
"oneof": [
|
16761
|
+
"keywordSimilarityScore"
|
16762
|
+
]
|
16763
|
+
},
|
16764
|
+
"_relevanceScore": {
|
16765
|
+
"oneof": [
|
16766
|
+
"relevanceScore"
|
16767
|
+
]
|
16768
|
+
},
|
16769
|
+
"_semanticSimilarityScore": {
|
16770
|
+
"oneof": [
|
16771
|
+
"semanticSimilarityScore"
|
16772
|
+
]
|
16773
|
+
},
|
16774
|
+
"_pctrRank": {
|
16775
|
+
"oneof": [
|
16776
|
+
"pctrRank"
|
16777
|
+
]
|
16778
|
+
},
|
16779
|
+
"_topicalityRank": {
|
16780
|
+
"oneof": [
|
16781
|
+
"topicalityRank"
|
16782
|
+
]
|
16783
|
+
},
|
16784
|
+
"_documentAge": {
|
16785
|
+
"oneof": [
|
16786
|
+
"documentAge"
|
16787
|
+
]
|
16788
|
+
},
|
16789
|
+
"_boostingFactor": {
|
16790
|
+
"oneof": [
|
16791
|
+
"boostingFactor"
|
16792
|
+
]
|
16793
|
+
}
|
16794
|
+
},
|
16795
|
+
"fields": {
|
16796
|
+
"keywordSimilarityScore": {
|
16797
|
+
"type": "float",
|
16798
|
+
"id": 1,
|
16799
|
+
"options": {
|
16800
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
16801
|
+
"proto3_optional": true
|
16802
|
+
}
|
16803
|
+
},
|
16804
|
+
"relevanceScore": {
|
16805
|
+
"type": "float",
|
16806
|
+
"id": 2,
|
16807
|
+
"options": {
|
16808
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
16809
|
+
"proto3_optional": true
|
16810
|
+
}
|
16811
|
+
},
|
16812
|
+
"semanticSimilarityScore": {
|
16813
|
+
"type": "float",
|
16814
|
+
"id": 3,
|
16815
|
+
"options": {
|
16816
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
16817
|
+
"proto3_optional": true
|
16818
|
+
}
|
16819
|
+
},
|
16820
|
+
"pctrRank": {
|
16821
|
+
"type": "float",
|
16822
|
+
"id": 4,
|
16823
|
+
"options": {
|
16824
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
16825
|
+
"proto3_optional": true
|
16826
|
+
}
|
16827
|
+
},
|
16828
|
+
"topicalityRank": {
|
16829
|
+
"type": "float",
|
16830
|
+
"id": 6,
|
16831
|
+
"options": {
|
16832
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
16833
|
+
"proto3_optional": true
|
16834
|
+
}
|
16835
|
+
},
|
16836
|
+
"documentAge": {
|
16837
|
+
"type": "float",
|
16838
|
+
"id": 7,
|
16839
|
+
"options": {
|
16840
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
16841
|
+
"proto3_optional": true
|
16842
|
+
}
|
16843
|
+
},
|
16844
|
+
"boostingFactor": {
|
16845
|
+
"type": "float",
|
16846
|
+
"id": 8,
|
16847
|
+
"options": {
|
16848
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
16849
|
+
"proto3_optional": true
|
16850
|
+
}
|
16851
|
+
},
|
16852
|
+
"defaultRank": {
|
16853
|
+
"type": "float",
|
16854
|
+
"id": 32,
|
16855
|
+
"options": {
|
16856
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
16857
|
+
}
|
16858
|
+
},
|
16859
|
+
"customSignals": {
|
16860
|
+
"rule": "repeated",
|
16861
|
+
"type": "CustomSignal",
|
16862
|
+
"id": 33,
|
16863
|
+
"options": {
|
16864
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
16865
|
+
}
|
16866
|
+
}
|
16867
|
+
},
|
16868
|
+
"reserved": [
|
16869
|
+
[
|
16870
|
+
5,
|
16871
|
+
5
|
16872
|
+
]
|
16873
|
+
],
|
16874
|
+
"nested": {
|
16875
|
+
"CustomSignal": {
|
16876
|
+
"fields": {
|
16877
|
+
"name": {
|
16878
|
+
"type": "string",
|
16879
|
+
"id": 1,
|
16880
|
+
"options": {
|
16881
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
16882
|
+
}
|
16883
|
+
},
|
16884
|
+
"value": {
|
16885
|
+
"type": "float",
|
16886
|
+
"id": 2,
|
16887
|
+
"options": {
|
16888
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
16889
|
+
}
|
16890
|
+
}
|
16891
|
+
}
|
16892
|
+
}
|
16893
|
+
}
|
16548
16894
|
}
|
16549
16895
|
}
|
16550
16896
|
},
|
@@ -27685,6 +28031,13 @@
|
|
27685
28031
|
"type": "string",
|
27686
28032
|
"id": 26
|
27687
28033
|
},
|
28034
|
+
"rankingExpressionBackend": {
|
28035
|
+
"type": "RankingExpressionBackend",
|
28036
|
+
"id": 53,
|
28037
|
+
"options": {
|
28038
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
28039
|
+
}
|
28040
|
+
},
|
27688
28041
|
"safeSearch": {
|
27689
28042
|
"type": "bool",
|
27690
28043
|
"id": 20
|
@@ -28203,6 +28556,23 @@
|
|
28203
28556
|
"MEDIUM": 3,
|
28204
28557
|
"HIGH": 4
|
28205
28558
|
}
|
28559
|
+
},
|
28560
|
+
"RankingExpressionBackend": {
|
28561
|
+
"values": {
|
28562
|
+
"RANKING_EXPRESSION_BACKEND_UNSPECIFIED": 0,
|
28563
|
+
"RANK_BY_EMBEDDING": 3,
|
28564
|
+
"RANK_BY_FORMULA": 4
|
28565
|
+
},
|
28566
|
+
"reserved": [
|
28567
|
+
[
|
28568
|
+
1,
|
28569
|
+
1
|
28570
|
+
],
|
28571
|
+
[
|
28572
|
+
2,
|
28573
|
+
2
|
28574
|
+
]
|
28575
|
+
]
|
28206
28576
|
}
|
28207
28577
|
}
|
28208
28578
|
},
|
@@ -28293,6 +28663,153 @@
|
|
28293
28663
|
"keyType": "string",
|
28294
28664
|
"type": "DoubleList",
|
28295
28665
|
"id": 4
|
28666
|
+
},
|
28667
|
+
"rankSignals": {
|
28668
|
+
"type": "RankSignals",
|
28669
|
+
"id": 7,
|
28670
|
+
"options": {
|
28671
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
28672
|
+
}
|
28673
|
+
}
|
28674
|
+
},
|
28675
|
+
"nested": {
|
28676
|
+
"RankSignals": {
|
28677
|
+
"oneofs": {
|
28678
|
+
"_keywordSimilarityScore": {
|
28679
|
+
"oneof": [
|
28680
|
+
"keywordSimilarityScore"
|
28681
|
+
]
|
28682
|
+
},
|
28683
|
+
"_relevanceScore": {
|
28684
|
+
"oneof": [
|
28685
|
+
"relevanceScore"
|
28686
|
+
]
|
28687
|
+
},
|
28688
|
+
"_semanticSimilarityScore": {
|
28689
|
+
"oneof": [
|
28690
|
+
"semanticSimilarityScore"
|
28691
|
+
]
|
28692
|
+
},
|
28693
|
+
"_pctrRank": {
|
28694
|
+
"oneof": [
|
28695
|
+
"pctrRank"
|
28696
|
+
]
|
28697
|
+
},
|
28698
|
+
"_topicalityRank": {
|
28699
|
+
"oneof": [
|
28700
|
+
"topicalityRank"
|
28701
|
+
]
|
28702
|
+
},
|
28703
|
+
"_documentAge": {
|
28704
|
+
"oneof": [
|
28705
|
+
"documentAge"
|
28706
|
+
]
|
28707
|
+
},
|
28708
|
+
"_boostingFactor": {
|
28709
|
+
"oneof": [
|
28710
|
+
"boostingFactor"
|
28711
|
+
]
|
28712
|
+
}
|
28713
|
+
},
|
28714
|
+
"fields": {
|
28715
|
+
"keywordSimilarityScore": {
|
28716
|
+
"type": "float",
|
28717
|
+
"id": 1,
|
28718
|
+
"options": {
|
28719
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
28720
|
+
"proto3_optional": true
|
28721
|
+
}
|
28722
|
+
},
|
28723
|
+
"relevanceScore": {
|
28724
|
+
"type": "float",
|
28725
|
+
"id": 2,
|
28726
|
+
"options": {
|
28727
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
28728
|
+
"proto3_optional": true
|
28729
|
+
}
|
28730
|
+
},
|
28731
|
+
"semanticSimilarityScore": {
|
28732
|
+
"type": "float",
|
28733
|
+
"id": 3,
|
28734
|
+
"options": {
|
28735
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
28736
|
+
"proto3_optional": true
|
28737
|
+
}
|
28738
|
+
},
|
28739
|
+
"pctrRank": {
|
28740
|
+
"type": "float",
|
28741
|
+
"id": 4,
|
28742
|
+
"options": {
|
28743
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
28744
|
+
"proto3_optional": true
|
28745
|
+
}
|
28746
|
+
},
|
28747
|
+
"topicalityRank": {
|
28748
|
+
"type": "float",
|
28749
|
+
"id": 6,
|
28750
|
+
"options": {
|
28751
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
28752
|
+
"proto3_optional": true
|
28753
|
+
}
|
28754
|
+
},
|
28755
|
+
"documentAge": {
|
28756
|
+
"type": "float",
|
28757
|
+
"id": 7,
|
28758
|
+
"options": {
|
28759
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
28760
|
+
"proto3_optional": true
|
28761
|
+
}
|
28762
|
+
},
|
28763
|
+
"boostingFactor": {
|
28764
|
+
"type": "float",
|
28765
|
+
"id": 8,
|
28766
|
+
"options": {
|
28767
|
+
"(google.api.field_behavior)": "OPTIONAL",
|
28768
|
+
"proto3_optional": true
|
28769
|
+
}
|
28770
|
+
},
|
28771
|
+
"defaultRank": {
|
28772
|
+
"type": "float",
|
28773
|
+
"id": 32,
|
28774
|
+
"options": {
|
28775
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
28776
|
+
}
|
28777
|
+
},
|
28778
|
+
"customSignals": {
|
28779
|
+
"rule": "repeated",
|
28780
|
+
"type": "CustomSignal",
|
28781
|
+
"id": 33,
|
28782
|
+
"options": {
|
28783
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
28784
|
+
}
|
28785
|
+
}
|
28786
|
+
},
|
28787
|
+
"reserved": [
|
28788
|
+
[
|
28789
|
+
5,
|
28790
|
+
5
|
28791
|
+
]
|
28792
|
+
],
|
28793
|
+
"nested": {
|
28794
|
+
"CustomSignal": {
|
28795
|
+
"fields": {
|
28796
|
+
"name": {
|
28797
|
+
"type": "string",
|
28798
|
+
"id": 1,
|
28799
|
+
"options": {
|
28800
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
28801
|
+
}
|
28802
|
+
},
|
28803
|
+
"value": {
|
28804
|
+
"type": "float",
|
28805
|
+
"id": 2,
|
28806
|
+
"options": {
|
28807
|
+
"(google.api.field_behavior)": "OPTIONAL"
|
28808
|
+
}
|
28809
|
+
}
|
28810
|
+
}
|
28811
|
+
}
|
28812
|
+
}
|
28296
28813
|
}
|
28297
28814
|
}
|
28298
28815
|
},
|
@@ -35771,7 +36288,8 @@
|
|
35771
36288
|
"java_multiple_files": true,
|
35772
36289
|
"java_outer_classname": "HttpBodyProto",
|
35773
36290
|
"java_package": "com.google.api",
|
35774
|
-
"objc_class_prefix": "GAPI"
|
36291
|
+
"objc_class_prefix": "GAPI",
|
36292
|
+
"cc_enable_arenas": true
|
35775
36293
|
},
|
35776
36294
|
"nested": {
|
35777
36295
|
"fieldBehavior": {
|
@@ -35994,10 +36512,6 @@
|
|
35994
36512
|
"rule": "repeated",
|
35995
36513
|
"type": "ClientLibraryDestination",
|
35996
36514
|
"id": 2
|
35997
|
-
},
|
35998
|
-
"selectiveGapicGeneration": {
|
35999
|
-
"type": "SelectiveGapicGeneration",
|
36000
|
-
"id": 3
|
36001
36515
|
}
|
36002
36516
|
}
|
36003
36517
|
},
|
@@ -36138,28 +36652,6 @@
|
|
36138
36652
|
"common": {
|
36139
36653
|
"type": "CommonLanguageSettings",
|
36140
36654
|
"id": 1
|
36141
|
-
},
|
36142
|
-
"experimentalFeatures": {
|
36143
|
-
"type": "ExperimentalFeatures",
|
36144
|
-
"id": 2
|
36145
|
-
}
|
36146
|
-
},
|
36147
|
-
"nested": {
|
36148
|
-
"ExperimentalFeatures": {
|
36149
|
-
"fields": {
|
36150
|
-
"restAsyncIoEnabled": {
|
36151
|
-
"type": "bool",
|
36152
|
-
"id": 1
|
36153
|
-
},
|
36154
|
-
"protobufPythonicTypesEnabled": {
|
36155
|
-
"type": "bool",
|
36156
|
-
"id": 2
|
36157
|
-
},
|
36158
|
-
"unversionedPackageDisabled": {
|
36159
|
-
"type": "bool",
|
36160
|
-
"id": 3
|
36161
|
-
}
|
36162
|
-
}
|
36163
36655
|
}
|
36164
36656
|
}
|
36165
36657
|
},
|
@@ -36217,11 +36709,6 @@
|
|
36217
36709
|
"common": {
|
36218
36710
|
"type": "CommonLanguageSettings",
|
36219
36711
|
"id": 1
|
36220
|
-
},
|
36221
|
-
"renamedServices": {
|
36222
|
-
"keyType": "string",
|
36223
|
-
"type": "string",
|
36224
|
-
"id": 2
|
36225
36712
|
}
|
36226
36713
|
}
|
36227
36714
|
},
|
@@ -36283,19 +36770,6 @@
|
|
36283
36770
|
"PACKAGE_MANAGER": 20
|
36284
36771
|
}
|
36285
36772
|
},
|
36286
|
-
"SelectiveGapicGeneration": {
|
36287
|
-
"fields": {
|
36288
|
-
"methods": {
|
36289
|
-
"rule": "repeated",
|
36290
|
-
"type": "string",
|
36291
|
-
"id": 1
|
36292
|
-
},
|
36293
|
-
"generateOmittedAsInternal": {
|
36294
|
-
"type": "bool",
|
36295
|
-
"id": 2
|
36296
|
-
}
|
36297
|
-
}
|
36298
|
-
},
|
36299
36773
|
"LaunchStage": {
|
36300
36774
|
"values": {
|
36301
36775
|
"LAUNCH_STAGE_UNSPECIFIED": 0,
|
@@ -36346,19 +36820,12 @@
|
|
36346
36820
|
"type": "FileDescriptorProto",
|
36347
36821
|
"id": 1
|
36348
36822
|
}
|
36349
|
-
}
|
36350
|
-
"extensions": [
|
36351
|
-
[
|
36352
|
-
536000000,
|
36353
|
-
536000000
|
36354
|
-
]
|
36355
|
-
]
|
36823
|
+
}
|
36356
36824
|
},
|
36357
36825
|
"Edition": {
|
36358
36826
|
"edition": "proto2",
|
36359
36827
|
"values": {
|
36360
36828
|
"EDITION_UNKNOWN": 0,
|
36361
|
-
"EDITION_LEGACY": 900,
|
36362
36829
|
"EDITION_PROTO2": 998,
|
36363
36830
|
"EDITION_PROTO3": 999,
|
36364
36831
|
"EDITION_2023": 1000,
|
@@ -36397,11 +36864,6 @@
|
|
36397
36864
|
"type": "int32",
|
36398
36865
|
"id": 11
|
36399
36866
|
},
|
36400
|
-
"optionDependency": {
|
36401
|
-
"rule": "repeated",
|
36402
|
-
"type": "string",
|
36403
|
-
"id": 15
|
36404
|
-
},
|
36405
36867
|
"messageType": {
|
36406
36868
|
"rule": "repeated",
|
36407
36869
|
"type": "DescriptorProto",
|
@@ -36490,10 +36952,6 @@
|
|
36490
36952
|
"rule": "repeated",
|
36491
36953
|
"type": "string",
|
36492
36954
|
"id": 10
|
36493
|
-
},
|
36494
|
-
"visibility": {
|
36495
|
-
"type": "SymbolVisibility",
|
36496
|
-
"id": 11
|
36497
36955
|
}
|
36498
36956
|
},
|
36499
36957
|
"nested": {
|
@@ -36719,10 +37177,6 @@
|
|
36719
37177
|
"rule": "repeated",
|
36720
37178
|
"type": "string",
|
36721
37179
|
"id": 5
|
36722
|
-
},
|
36723
|
-
"visibility": {
|
36724
|
-
"type": "SymbolVisibility",
|
36725
|
-
"id": 6
|
36726
37180
|
}
|
36727
37181
|
},
|
36728
37182
|
"nested": {
|
@@ -36937,7 +37391,6 @@
|
|
36937
37391
|
42,
|
36938
37392
|
42
|
36939
37393
|
],
|
36940
|
-
"php_generic_services",
|
36941
37394
|
[
|
36942
37395
|
38,
|
36943
37396
|
38
|
@@ -37073,8 +37526,7 @@
|
|
37073
37526
|
"type": "bool",
|
37074
37527
|
"id": 10,
|
37075
37528
|
"options": {
|
37076
|
-
"default": false
|
37077
|
-
"deprecated": true
|
37529
|
+
"default": false
|
37078
37530
|
}
|
37079
37531
|
},
|
37080
37532
|
"debugRedact": {
|
@@ -37102,10 +37554,6 @@
|
|
37102
37554
|
"type": "FeatureSet",
|
37103
37555
|
"id": 21
|
37104
37556
|
},
|
37105
|
-
"featureSupport": {
|
37106
|
-
"type": "FeatureSupport",
|
37107
|
-
"id": 22
|
37108
|
-
},
|
37109
37557
|
"uninterpretedOption": {
|
37110
37558
|
"rule": "repeated",
|
37111
37559
|
"type": "UninterpretedOption",
|
@@ -37175,26 +37623,6 @@
|
|
37175
37623
|
"id": 2
|
37176
37624
|
}
|
37177
37625
|
}
|
37178
|
-
},
|
37179
|
-
"FeatureSupport": {
|
37180
|
-
"fields": {
|
37181
|
-
"editionIntroduced": {
|
37182
|
-
"type": "Edition",
|
37183
|
-
"id": 1
|
37184
|
-
},
|
37185
|
-
"editionDeprecated": {
|
37186
|
-
"type": "Edition",
|
37187
|
-
"id": 2
|
37188
|
-
},
|
37189
|
-
"deprecationWarning": {
|
37190
|
-
"type": "string",
|
37191
|
-
"id": 3
|
37192
|
-
},
|
37193
|
-
"editionRemoved": {
|
37194
|
-
"type": "Edition",
|
37195
|
-
"id": 4
|
37196
|
-
}
|
37197
|
-
}
|
37198
37626
|
}
|
37199
37627
|
}
|
37200
37628
|
},
|
@@ -37283,10 +37711,6 @@
|
|
37283
37711
|
"default": false
|
37284
37712
|
}
|
37285
37713
|
},
|
37286
|
-
"featureSupport": {
|
37287
|
-
"type": "FieldOptions.FeatureSupport",
|
37288
|
-
"id": 4
|
37289
|
-
},
|
37290
37714
|
"uninterpretedOption": {
|
37291
37715
|
"rule": "repeated",
|
37292
37716
|
"type": "UninterpretedOption",
|
@@ -37429,7 +37853,6 @@
|
|
37429
37853
|
"options": {
|
37430
37854
|
"retention": "RETENTION_RUNTIME",
|
37431
37855
|
"targets": "TARGET_TYPE_FILE",
|
37432
|
-
"feature_support.edition_introduced": "EDITION_2023",
|
37433
37856
|
"edition_defaults.edition": "EDITION_2023",
|
37434
37857
|
"edition_defaults.value": "EXPLICIT"
|
37435
37858
|
}
|
@@ -37440,7 +37863,6 @@
|
|
37440
37863
|
"options": {
|
37441
37864
|
"retention": "RETENTION_RUNTIME",
|
37442
37865
|
"targets": "TARGET_TYPE_FILE",
|
37443
|
-
"feature_support.edition_introduced": "EDITION_2023",
|
37444
37866
|
"edition_defaults.edition": "EDITION_PROTO3",
|
37445
37867
|
"edition_defaults.value": "OPEN"
|
37446
37868
|
}
|
@@ -37451,7 +37873,6 @@
|
|
37451
37873
|
"options": {
|
37452
37874
|
"retention": "RETENTION_RUNTIME",
|
37453
37875
|
"targets": "TARGET_TYPE_FILE",
|
37454
|
-
"feature_support.edition_introduced": "EDITION_2023",
|
37455
37876
|
"edition_defaults.edition": "EDITION_PROTO3",
|
37456
37877
|
"edition_defaults.value": "PACKED"
|
37457
37878
|
}
|
@@ -37462,7 +37883,6 @@
|
|
37462
37883
|
"options": {
|
37463
37884
|
"retention": "RETENTION_RUNTIME",
|
37464
37885
|
"targets": "TARGET_TYPE_FILE",
|
37465
|
-
"feature_support.edition_introduced": "EDITION_2023",
|
37466
37886
|
"edition_defaults.edition": "EDITION_PROTO3",
|
37467
37887
|
"edition_defaults.value": "VERIFY"
|
37468
37888
|
}
|
@@ -37473,8 +37893,7 @@
|
|
37473
37893
|
"options": {
|
37474
37894
|
"retention": "RETENTION_RUNTIME",
|
37475
37895
|
"targets": "TARGET_TYPE_FILE",
|
37476
|
-
"
|
37477
|
-
"edition_defaults.edition": "EDITION_LEGACY",
|
37896
|
+
"edition_defaults.edition": "EDITION_PROTO2",
|
37478
37897
|
"edition_defaults.value": "LENGTH_PREFIXED"
|
37479
37898
|
}
|
37480
37899
|
},
|
@@ -37484,38 +37903,27 @@
|
|
37484
37903
|
"options": {
|
37485
37904
|
"retention": "RETENTION_RUNTIME",
|
37486
37905
|
"targets": "TARGET_TYPE_FILE",
|
37487
|
-
"feature_support.edition_introduced": "EDITION_2023",
|
37488
37906
|
"edition_defaults.edition": "EDITION_PROTO3",
|
37489
37907
|
"edition_defaults.value": "ALLOW"
|
37490
37908
|
}
|
37491
|
-
},
|
37492
|
-
"enforceNamingStyle": {
|
37493
|
-
"type": "EnforceNamingStyle",
|
37494
|
-
"id": 7,
|
37495
|
-
"options": {
|
37496
|
-
"retention": "RETENTION_SOURCE",
|
37497
|
-
"targets": "TARGET_TYPE_METHOD",
|
37498
|
-
"feature_support.edition_introduced": "EDITION_2024",
|
37499
|
-
"edition_defaults.edition": "EDITION_2024",
|
37500
|
-
"edition_defaults.value": "STYLE2024"
|
37501
|
-
}
|
37502
|
-
},
|
37503
|
-
"defaultSymbolVisibility": {
|
37504
|
-
"type": "VisibilityFeature.DefaultSymbolVisibility",
|
37505
|
-
"id": 8,
|
37506
|
-
"options": {
|
37507
|
-
"retention": "RETENTION_SOURCE",
|
37508
|
-
"targets": "TARGET_TYPE_FILE",
|
37509
|
-
"feature_support.edition_introduced": "EDITION_2024",
|
37510
|
-
"edition_defaults.edition": "EDITION_2024",
|
37511
|
-
"edition_defaults.value": "EXPORT_TOP_LEVEL"
|
37512
|
-
}
|
37513
37909
|
}
|
37514
37910
|
},
|
37515
37911
|
"extensions": [
|
37516
37912
|
[
|
37517
37913
|
1000,
|
37518
|
-
|
37914
|
+
1000
|
37915
|
+
],
|
37916
|
+
[
|
37917
|
+
1001,
|
37918
|
+
1001
|
37919
|
+
],
|
37920
|
+
[
|
37921
|
+
1002,
|
37922
|
+
1002
|
37923
|
+
],
|
37924
|
+
[
|
37925
|
+
9990,
|
37926
|
+
9990
|
37519
37927
|
],
|
37520
37928
|
[
|
37521
37929
|
9995,
|
@@ -37560,13 +37968,7 @@
|
|
37560
37968
|
"UTF8_VALIDATION_UNKNOWN": 0,
|
37561
37969
|
"VERIFY": 2,
|
37562
37970
|
"NONE": 3
|
37563
|
-
}
|
37564
|
-
"reserved": [
|
37565
|
-
[
|
37566
|
-
1,
|
37567
|
-
1
|
37568
|
-
]
|
37569
|
-
]
|
37971
|
+
}
|
37570
37972
|
},
|
37571
37973
|
"MessageEncoding": {
|
37572
37974
|
"values": {
|
@@ -37581,33 +37983,6 @@
|
|
37581
37983
|
"ALLOW": 1,
|
37582
37984
|
"LEGACY_BEST_EFFORT": 2
|
37583
37985
|
}
|
37584
|
-
},
|
37585
|
-
"EnforceNamingStyle": {
|
37586
|
-
"values": {
|
37587
|
-
"ENFORCE_NAMING_STYLE_UNKNOWN": 0,
|
37588
|
-
"STYLE2024": 1,
|
37589
|
-
"STYLE_LEGACY": 2
|
37590
|
-
}
|
37591
|
-
},
|
37592
|
-
"VisibilityFeature": {
|
37593
|
-
"fields": {},
|
37594
|
-
"reserved": [
|
37595
|
-
[
|
37596
|
-
1,
|
37597
|
-
536870911
|
37598
|
-
]
|
37599
|
-
],
|
37600
|
-
"nested": {
|
37601
|
-
"DefaultSymbolVisibility": {
|
37602
|
-
"values": {
|
37603
|
-
"DEFAULT_SYMBOL_VISIBILITY_UNKNOWN": 0,
|
37604
|
-
"EXPORT_ALL": 1,
|
37605
|
-
"EXPORT_TOP_LEVEL": 2,
|
37606
|
-
"LOCAL_ALL": 3,
|
37607
|
-
"STRICT": 4
|
37608
|
-
}
|
37609
|
-
}
|
37610
|
-
}
|
37611
37986
|
}
|
37612
37987
|
}
|
37613
37988
|
},
|
@@ -37635,26 +38010,11 @@
|
|
37635
38010
|
"type": "Edition",
|
37636
38011
|
"id": 3
|
37637
38012
|
},
|
37638
|
-
"
|
38013
|
+
"features": {
|
37639
38014
|
"type": "FeatureSet",
|
37640
|
-
"id":
|
37641
|
-
},
|
37642
|
-
"fixedFeatures": {
|
37643
|
-
"type": "FeatureSet",
|
37644
|
-
"id": 5
|
38015
|
+
"id": 2
|
37645
38016
|
}
|
37646
|
-
}
|
37647
|
-
"reserved": [
|
37648
|
-
[
|
37649
|
-
1,
|
37650
|
-
1
|
37651
|
-
],
|
37652
|
-
[
|
37653
|
-
2,
|
37654
|
-
2
|
37655
|
-
],
|
37656
|
-
"features"
|
37657
|
-
]
|
38017
|
+
}
|
37658
38018
|
}
|
37659
38019
|
}
|
37660
38020
|
},
|
@@ -37667,12 +38027,6 @@
|
|
37667
38027
|
"id": 1
|
37668
38028
|
}
|
37669
38029
|
},
|
37670
|
-
"extensions": [
|
37671
|
-
[
|
37672
|
-
536000000,
|
37673
|
-
536000000
|
37674
|
-
]
|
37675
|
-
],
|
37676
38030
|
"nested": {
|
37677
38031
|
"Location": {
|
37678
38032
|
"fields": {
|
@@ -37758,14 +38112,6 @@
|
|
37758
38112
|
}
|
37759
38113
|
}
|
37760
38114
|
},
|
37761
|
-
"SymbolVisibility": {
|
37762
|
-
"edition": "proto2",
|
37763
|
-
"values": {
|
37764
|
-
"VISIBILITY_UNSET": 0,
|
37765
|
-
"VISIBILITY_LOCAL": 1,
|
37766
|
-
"VISIBILITY_EXPORT": 2
|
37767
|
-
}
|
37768
|
-
},
|
37769
38115
|
"Struct": {
|
37770
38116
|
"fields": {
|
37771
38117
|
"fields": {
|
@@ -37916,7 +38262,6 @@
|
|
37916
38262
|
"java_multiple_files": true,
|
37917
38263
|
"java_outer_classname": "OperationsProto",
|
37918
38264
|
"java_package": "com.google.longrunning",
|
37919
|
-
"objc_class_prefix": "GLRUN",
|
37920
38265
|
"php_namespace": "Google\\LongRunning"
|
37921
38266
|
},
|
37922
38267
|
"nested": {
|