google-apis-cloudsearch_v1 0.16.0 → 0.20.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7790240370bba3d766cd8437fd6da27339be752a598010409be7d3f97a34d668
|
4
|
+
data.tar.gz: 4a8957a9d1389d4a7fc38d0f6cc5f3bfd490621b54589bb8617d4b40f5c7121a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '075069afe496b4da4247622ef2c5e09c4bcf876f4fb45f764ceacef274e8bc519c44d35074c5c3379da9c2e2f7b4cb046aaf5c13bfd7a4ceed00f2985fabeb9c'
|
7
|
+
data.tar.gz: 3c504f81d395a235102e2e1e8e601fef46252cf29e9e07c2a520e57bc744e7def2f5216f9fa3da56eea9f286b2fd78385903848b98aa477f318d4d7a74d142b5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-cloudsearch_v1
|
2
2
|
|
3
|
+
### v0.20.0 (2022-02-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220207
|
6
|
+
|
7
|
+
### v0.19.0 (2022-02-07)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220201
|
10
|
+
|
11
|
+
### v0.18.0 (2022-01-31)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220125
|
14
|
+
|
15
|
+
### v0.17.0 (2022-01-24)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20220118
|
18
|
+
* Regenerated using generator version 0.4.1
|
19
|
+
|
3
20
|
### v0.16.0 (2021-12-16)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20211208
|
@@ -22,6 +22,72 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module CloudsearchV1
|
24
24
|
|
25
|
+
# Next tag: 4
|
26
|
+
class AclInfo
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
# Number of groups which have at least read access to the document.
|
30
|
+
# Corresponds to the JSON property `groupsCount`
|
31
|
+
# @return [Fixnum]
|
32
|
+
attr_accessor :groups_count
|
33
|
+
|
34
|
+
# The scope to which the content was shared.
|
35
|
+
# Corresponds to the JSON property `scope`
|
36
|
+
# @return [String]
|
37
|
+
attr_accessor :scope
|
38
|
+
|
39
|
+
# Number of users which have at least read access to the document.
|
40
|
+
# Corresponds to the JSON property `usersCount`
|
41
|
+
# @return [Fixnum]
|
42
|
+
attr_accessor :users_count
|
43
|
+
|
44
|
+
def initialize(**args)
|
45
|
+
update!(**args)
|
46
|
+
end
|
47
|
+
|
48
|
+
# Update properties of this object
|
49
|
+
def update!(**args)
|
50
|
+
@groups_count = args[:groups_count] if args.key?(:groups_count)
|
51
|
+
@scope = args[:scope] if args.key?(:scope)
|
52
|
+
@users_count = args[:users_count] if args.key?(:users_count)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
# Identifier of an App.
|
57
|
+
class AppId
|
58
|
+
include Google::Apis::Core::Hashable
|
59
|
+
|
60
|
+
# Enum indicating the type of App this is.
|
61
|
+
# Corresponds to the JSON property `appType`
|
62
|
+
# @return [String]
|
63
|
+
attr_accessor :app_type
|
64
|
+
|
65
|
+
# Enum indicating which 1P App this is when app_type is GSUITE_APP. Determined &
|
66
|
+
# set by the 1P API as a convenience for all users of this identifier(Eg.
|
67
|
+
# clients, chime, backend etc.) to map to 1P properties.
|
68
|
+
# Corresponds to the JSON property `gsuiteAppType`
|
69
|
+
# @return [String]
|
70
|
+
attr_accessor :gsuite_app_type
|
71
|
+
|
72
|
+
# Numeric identifier of the App. Set to Project number for 1/3P Apps. For
|
73
|
+
# Webhook, this is WebhookId. Determined & set by the 1P API from App
|
74
|
+
# credentials on the side channel.
|
75
|
+
# Corresponds to the JSON property `id`
|
76
|
+
# @return [Fixnum]
|
77
|
+
attr_accessor :id
|
78
|
+
|
79
|
+
def initialize(**args)
|
80
|
+
update!(**args)
|
81
|
+
end
|
82
|
+
|
83
|
+
# Update properties of this object
|
84
|
+
def update!(**args)
|
85
|
+
@app_type = args[:app_type] if args.key?(:app_type)
|
86
|
+
@gsuite_app_type = args[:gsuite_app_type] if args.key?(:gsuite_app_type)
|
87
|
+
@id = args[:id] if args.key?(:id)
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
25
91
|
# Represents the settings for Cloud audit logging
|
26
92
|
class AuditLoggingSettings
|
27
93
|
include Google::Apis::Core::Hashable
|
@@ -67,6 +133,25 @@ module Google
|
|
67
133
|
end
|
68
134
|
end
|
69
135
|
|
136
|
+
#
|
137
|
+
class AvatarInfo
|
138
|
+
include Google::Apis::Core::Hashable
|
139
|
+
|
140
|
+
#
|
141
|
+
# Corresponds to the JSON property `emoji`
|
142
|
+
# @return [Google::Apis::CloudsearchV1::Emoji]
|
143
|
+
attr_accessor :emoji
|
144
|
+
|
145
|
+
def initialize(**args)
|
146
|
+
update!(**args)
|
147
|
+
end
|
148
|
+
|
149
|
+
# Update properties of this object
|
150
|
+
def update!(**args)
|
151
|
+
@emoji = args[:emoji] if args.key?(:emoji)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
70
155
|
# Used to provide a search operator for boolean properties. This is optional.
|
71
156
|
# Search operators let users restrict the query to specific fields relevant to
|
72
157
|
# the type of item being searched.
|
@@ -192,6 +277,105 @@ module Google
|
|
192
277
|
end
|
193
278
|
end
|
194
279
|
|
280
|
+
# Proto representation of a custom emoji. May be used in both APIs and in
|
281
|
+
# Spanner, but certain fields should be restricted to one or the other. See the
|
282
|
+
# per-field documentation for details. NEXT_TAG: 11
|
283
|
+
class CustomEmoji
|
284
|
+
include Google::Apis::Core::Hashable
|
285
|
+
|
286
|
+
# ID for the underlying image data in Blobstore. This field should *only* be
|
287
|
+
# present in Spanner or within the server, but should not be exposed in public
|
288
|
+
# APIs.
|
289
|
+
# Corresponds to the JSON property `blobId`
|
290
|
+
# @return [String]
|
291
|
+
attr_accessor :blob_id
|
292
|
+
|
293
|
+
# Time when the Emoji was created, in microseconds. This field may be present in
|
294
|
+
# Spanner, within the server, or in public APIs.
|
295
|
+
# Corresponds to the JSON property `createTimeMicros`
|
296
|
+
# @return [Fixnum]
|
297
|
+
attr_accessor :create_time_micros
|
298
|
+
|
299
|
+
# Primary key for User resource.
|
300
|
+
# Corresponds to the JSON property `creatorUserId`
|
301
|
+
# @return [Google::Apis::CloudsearchV1::UserId]
|
302
|
+
attr_accessor :creator_user_id
|
303
|
+
|
304
|
+
# Represents a GSuite customer ID. Obfuscated with CustomerIdObfuscator.
|
305
|
+
# Corresponds to the JSON property `ownerCustomerId`
|
306
|
+
# @return [Google::Apis::CloudsearchV1::CustomerId]
|
307
|
+
attr_accessor :owner_customer_id
|
308
|
+
|
309
|
+
# Opaque token that clients use to construct the URL for accessing the custom
|
310
|
+
# emoji’s image data. This field is intended for API consumption, and should *
|
311
|
+
# never* be persisted to Spanner.
|
312
|
+
# Corresponds to the JSON property `readToken`
|
313
|
+
# @return [String]
|
314
|
+
attr_accessor :read_token
|
315
|
+
|
316
|
+
# User-provided, human-readable ID for the custom emoji. Users are expected to
|
317
|
+
# observe this field in the UI instead of the UUID. This shortcode should be
|
318
|
+
# unique within an organization, but has no global uniqueness guarantees, unlike
|
319
|
+
# the UUID. This field should *never* be persisted to Spanner.
|
320
|
+
# Corresponds to the JSON property `shortcode`
|
321
|
+
# @return [String]
|
322
|
+
attr_accessor :shortcode
|
323
|
+
|
324
|
+
# Snapshot of the current state of the emoji, which may differ from the source-
|
325
|
+
# of-truth in the CustomEmojis table. This field should *never* be persisted to
|
326
|
+
# Spanner.
|
327
|
+
# Corresponds to the JSON property `state`
|
328
|
+
# @return [String]
|
329
|
+
attr_accessor :state
|
330
|
+
|
331
|
+
#
|
332
|
+
# Corresponds to the JSON property `updateTimeMicros`
|
333
|
+
# @return [Fixnum]
|
334
|
+
attr_accessor :update_time_micros
|
335
|
+
|
336
|
+
# Unique key for a custom emoji resource. Required. This field is *always*
|
337
|
+
# populated.
|
338
|
+
# Corresponds to the JSON property `uuid`
|
339
|
+
# @return [String]
|
340
|
+
attr_accessor :uuid
|
341
|
+
|
342
|
+
def initialize(**args)
|
343
|
+
update!(**args)
|
344
|
+
end
|
345
|
+
|
346
|
+
# Update properties of this object
|
347
|
+
def update!(**args)
|
348
|
+
@blob_id = args[:blob_id] if args.key?(:blob_id)
|
349
|
+
@create_time_micros = args[:create_time_micros] if args.key?(:create_time_micros)
|
350
|
+
@creator_user_id = args[:creator_user_id] if args.key?(:creator_user_id)
|
351
|
+
@owner_customer_id = args[:owner_customer_id] if args.key?(:owner_customer_id)
|
352
|
+
@read_token = args[:read_token] if args.key?(:read_token)
|
353
|
+
@shortcode = args[:shortcode] if args.key?(:shortcode)
|
354
|
+
@state = args[:state] if args.key?(:state)
|
355
|
+
@update_time_micros = args[:update_time_micros] if args.key?(:update_time_micros)
|
356
|
+
@uuid = args[:uuid] if args.key?(:uuid)
|
357
|
+
end
|
358
|
+
end
|
359
|
+
|
360
|
+
# Represents a GSuite customer ID. Obfuscated with CustomerIdObfuscator.
|
361
|
+
class CustomerId
|
362
|
+
include Google::Apis::Core::Hashable
|
363
|
+
|
364
|
+
#
|
365
|
+
# Corresponds to the JSON property `customerId`
|
366
|
+
# @return [String]
|
367
|
+
attr_accessor :customer_id
|
368
|
+
|
369
|
+
def initialize(**args)
|
370
|
+
update!(**args)
|
371
|
+
end
|
372
|
+
|
373
|
+
# Update properties of this object
|
374
|
+
def update!(**args)
|
375
|
+
@customer_id = args[:customer_id] if args.key?(:customer_id)
|
376
|
+
end
|
377
|
+
end
|
378
|
+
|
195
379
|
# Aggregation of items by status code as of the specified date.
|
196
380
|
class CustomerIndexStats
|
197
381
|
include Google::Apis::Core::Hashable
|
@@ -724,6 +908,25 @@ module Google
|
|
724
908
|
end
|
725
909
|
end
|
726
910
|
|
911
|
+
#
|
912
|
+
class DmId
|
913
|
+
include Google::Apis::Core::Hashable
|
914
|
+
|
915
|
+
# Unique server assigned Id, per Direct Message Space.
|
916
|
+
# Corresponds to the JSON property `dmId`
|
917
|
+
# @return [String]
|
918
|
+
attr_accessor :dm_id
|
919
|
+
|
920
|
+
def initialize(**args)
|
921
|
+
update!(**args)
|
922
|
+
end
|
923
|
+
|
924
|
+
# Update properties of this object
|
925
|
+
def update!(**args)
|
926
|
+
@dm_id = args[:dm_id] if args.key?(:dm_id)
|
927
|
+
end
|
928
|
+
end
|
929
|
+
|
727
930
|
# Used to provide a search operator for double properties. This is optional.
|
728
931
|
# Search operators let users restrict the query to specific fields relevant to
|
729
932
|
# the type of item being searched.
|
@@ -882,6 +1085,33 @@ module Google
|
|
882
1085
|
end
|
883
1086
|
end
|
884
1087
|
|
1088
|
+
#
|
1089
|
+
class Emoji
|
1090
|
+
include Google::Apis::Core::Hashable
|
1091
|
+
|
1092
|
+
# Proto representation of a custom emoji. May be used in both APIs and in
|
1093
|
+
# Spanner, but certain fields should be restricted to one or the other. See the
|
1094
|
+
# per-field documentation for details. NEXT_TAG: 11
|
1095
|
+
# Corresponds to the JSON property `customEmoji`
|
1096
|
+
# @return [Google::Apis::CloudsearchV1::CustomEmoji]
|
1097
|
+
attr_accessor :custom_emoji
|
1098
|
+
|
1099
|
+
# A basic emoji represented by a unicode string.
|
1100
|
+
# Corresponds to the JSON property `unicode`
|
1101
|
+
# @return [String]
|
1102
|
+
attr_accessor :unicode
|
1103
|
+
|
1104
|
+
def initialize(**args)
|
1105
|
+
update!(**args)
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
# Update properties of this object
|
1109
|
+
def update!(**args)
|
1110
|
+
@custom_emoji = args[:custom_emoji] if args.key?(:custom_emoji)
|
1111
|
+
@unicode = args[:unicode] if args.key?(:unicode)
|
1112
|
+
end
|
1113
|
+
end
|
1114
|
+
|
885
1115
|
# Used to provide a search operator for enum properties. This is optional.
|
886
1116
|
# Search operators let users restrict the query to specific fields relevant to
|
887
1117
|
# the type of item being searched. For example, if you provide no operator for a
|
@@ -1553,6 +1783,145 @@ module Google
|
|
1553
1783
|
end
|
1554
1784
|
end
|
1555
1785
|
|
1786
|
+
# The corpus specific metadata for office-type documents, from Google Docs and
|
1787
|
+
# other sources. This message is passed to the scorer and beyond. Next tag: 7
|
1788
|
+
class GoogleDocsMetadata
|
1789
|
+
include Google::Apis::Core::Hashable
|
1790
|
+
|
1791
|
+
# Next tag: 4
|
1792
|
+
# Corresponds to the JSON property `aclInfo`
|
1793
|
+
# @return [Google::Apis::CloudsearchV1::AclInfo]
|
1794
|
+
attr_accessor :acl_info
|
1795
|
+
|
1796
|
+
# The conceptual type (presentation, document, etc.) of this document.
|
1797
|
+
# Corresponds to the JSON property `documentType`
|
1798
|
+
# @return [String]
|
1799
|
+
attr_accessor :document_type
|
1800
|
+
|
1801
|
+
# The file extension of the document. NOTE: As of October 2018 this field is not
|
1802
|
+
# backfilled for old documents.
|
1803
|
+
# Corresponds to the JSON property `fileExtension`
|
1804
|
+
# @return [String]
|
1805
|
+
attr_accessor :file_extension
|
1806
|
+
|
1807
|
+
# The last time this document was modified, in seconds since epoch. Only counts
|
1808
|
+
# content modifications.
|
1809
|
+
# Corresponds to the JSON property `lastContentModifiedTimestamp`
|
1810
|
+
# @return [Fixnum]
|
1811
|
+
attr_accessor :last_content_modified_timestamp
|
1812
|
+
|
1813
|
+
# A message containing information about a specific result. This information is
|
1814
|
+
# passed to the scorer and beyond; in particular, GWS relies on it to format the
|
1815
|
+
# result in the UI. Split from GoogleDocsMetadata in case we later want to reuse
|
1816
|
+
# the message.
|
1817
|
+
# Corresponds to the JSON property `resultInfo`
|
1818
|
+
# @return [Google::Apis::CloudsearchV1::GoogleDocsResultInfo]
|
1819
|
+
attr_accessor :result_info
|
1820
|
+
|
1821
|
+
# Next tag: 2
|
1822
|
+
# Corresponds to the JSON property `typeInfo`
|
1823
|
+
# @return [Google::Apis::CloudsearchV1::TypeInfo]
|
1824
|
+
attr_accessor :type_info
|
1825
|
+
|
1826
|
+
def initialize(**args)
|
1827
|
+
update!(**args)
|
1828
|
+
end
|
1829
|
+
|
1830
|
+
# Update properties of this object
|
1831
|
+
def update!(**args)
|
1832
|
+
@acl_info = args[:acl_info] if args.key?(:acl_info)
|
1833
|
+
@document_type = args[:document_type] if args.key?(:document_type)
|
1834
|
+
@file_extension = args[:file_extension] if args.key?(:file_extension)
|
1835
|
+
@last_content_modified_timestamp = args[:last_content_modified_timestamp] if args.key?(:last_content_modified_timestamp)
|
1836
|
+
@result_info = args[:result_info] if args.key?(:result_info)
|
1837
|
+
@type_info = args[:type_info] if args.key?(:type_info)
|
1838
|
+
end
|
1839
|
+
end
|
1840
|
+
|
1841
|
+
# A message containing information about a specific result. This information is
|
1842
|
+
# passed to the scorer and beyond; in particular, GWS relies on it to format the
|
1843
|
+
# result in the UI. Split from GoogleDocsMetadata in case we later want to reuse
|
1844
|
+
# the message.
|
1845
|
+
class GoogleDocsResultInfo
|
1846
|
+
include Google::Apis::Core::Hashable
|
1847
|
+
|
1848
|
+
# The SHA1 hash of the object in Drive, if any.
|
1849
|
+
# Corresponds to the JSON property `attachmentSha1`
|
1850
|
+
# @return [String]
|
1851
|
+
attr_accessor :attachment_sha1
|
1852
|
+
|
1853
|
+
# Identifies a particular object, including both Users and DirEntries. This Id
|
1854
|
+
# is unique across the entire server instance, such as the production or qa
|
1855
|
+
# instance.
|
1856
|
+
# Corresponds to the JSON property `cosmoId`
|
1857
|
+
# @return [Google::Apis::CloudsearchV1::Id]
|
1858
|
+
attr_accessor :cosmo_id
|
1859
|
+
|
1860
|
+
# For Cosmo objects, the Cosmo namespace the object was in. This allows
|
1861
|
+
# downstream clients to identify whether a document was created in Writely or
|
1862
|
+
# Kix, Presently or Punch, or whether it was uploaded from GDrive. See
|
1863
|
+
# storage_cosmo.Id.NAME_SPACE for a list of all Cosmo name spaces.
|
1864
|
+
# Corresponds to the JSON property `cosmoNameSpace`
|
1865
|
+
# @return [Fixnum]
|
1866
|
+
attr_accessor :cosmo_name_space
|
1867
|
+
|
1868
|
+
# The encrypted (user-visible) id of this object. Knowing the id is sufficient
|
1869
|
+
# to create a canonical URL for this document.
|
1870
|
+
# Corresponds to the JSON property `encryptedId`
|
1871
|
+
# @return [String]
|
1872
|
+
attr_accessor :encrypted_id
|
1873
|
+
|
1874
|
+
# The mimetype of the document.
|
1875
|
+
# Corresponds to the JSON property `mimeType`
|
1876
|
+
# @return [String]
|
1877
|
+
attr_accessor :mime_type
|
1878
|
+
|
1879
|
+
# The visibility indicator in the UI will be based upon this.
|
1880
|
+
# Corresponds to the JSON property `shareScope`
|
1881
|
+
# @return [Google::Apis::CloudsearchV1::ShareScope]
|
1882
|
+
attr_accessor :share_scope
|
1883
|
+
|
1884
|
+
def initialize(**args)
|
1885
|
+
update!(**args)
|
1886
|
+
end
|
1887
|
+
|
1888
|
+
# Update properties of this object
|
1889
|
+
def update!(**args)
|
1890
|
+
@attachment_sha1 = args[:attachment_sha1] if args.key?(:attachment_sha1)
|
1891
|
+
@cosmo_id = args[:cosmo_id] if args.key?(:cosmo_id)
|
1892
|
+
@cosmo_name_space = args[:cosmo_name_space] if args.key?(:cosmo_name_space)
|
1893
|
+
@encrypted_id = args[:encrypted_id] if args.key?(:encrypted_id)
|
1894
|
+
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
1895
|
+
@share_scope = args[:share_scope] if args.key?(:share_scope)
|
1896
|
+
end
|
1897
|
+
end
|
1898
|
+
|
1899
|
+
# Id representing a group that could be a space, a chat, or a direct message
|
1900
|
+
# space. Which ID is set here will determine which group
|
1901
|
+
class GroupId
|
1902
|
+
include Google::Apis::Core::Hashable
|
1903
|
+
|
1904
|
+
# Unique, immutable ID of the Direct Message Space
|
1905
|
+
# Corresponds to the JSON property `dmId`
|
1906
|
+
# @return [Google::Apis::CloudsearchV1::DmId]
|
1907
|
+
attr_accessor :dm_id
|
1908
|
+
|
1909
|
+
# Primary key for Space resource.
|
1910
|
+
# Corresponds to the JSON property `spaceId`
|
1911
|
+
# @return [Google::Apis::CloudsearchV1::SpaceId]
|
1912
|
+
attr_accessor :space_id
|
1913
|
+
|
1914
|
+
def initialize(**args)
|
1915
|
+
update!(**args)
|
1916
|
+
end
|
1917
|
+
|
1918
|
+
# Update properties of this object
|
1919
|
+
def update!(**args)
|
1920
|
+
@dm_id = args[:dm_id] if args.key?(:dm_id)
|
1921
|
+
@space_id = args[:space_id] if args.key?(:space_id)
|
1922
|
+
end
|
1923
|
+
end
|
1924
|
+
|
1556
1925
|
# Used to provide a search operator for html properties. This is optional.
|
1557
1926
|
# Search operators let users restrict the query to specific fields relevant to
|
1558
1927
|
# the type of item being searched.
|
@@ -1628,6 +1997,48 @@ module Google
|
|
1628
1997
|
end
|
1629
1998
|
end
|
1630
1999
|
|
2000
|
+
# Identifies a particular object, including both Users and DirEntries. This Id
|
2001
|
+
# is unique across the entire server instance, such as the production or qa
|
2002
|
+
# instance.
|
2003
|
+
class Id
|
2004
|
+
include Google::Apis::Core::Hashable
|
2005
|
+
|
2006
|
+
# The User account in which the DirEntry was originally created. If name_space==
|
2007
|
+
# GAIA, then it's the gaia_id of the user this id is referring to.
|
2008
|
+
# Corresponds to the JSON property `creatorUserId`
|
2009
|
+
# @return [Fixnum]
|
2010
|
+
attr_accessor :creator_user_id
|
2011
|
+
|
2012
|
+
# The local identifier for the DirEntry (local to the creator's account).
|
2013
|
+
# local_id + app_name is guaranteed to be unique within the creator account, but
|
2014
|
+
# not across all User accounts. The string is case sensitive. Ignore if
|
2015
|
+
# name_space==GAIA. NB For name_space==COSMO, all local_id's should be defined
|
2016
|
+
# in google3/java/com/google/storage/cosmo/server/api/SpecialObjectIds.java as
|
2017
|
+
# they have a special predefined meaning. See cosmo.client.CosmoIdFactory.
|
2018
|
+
# createObjectId(long,String) for IMPORTANT recommendations when generating IDs.
|
2019
|
+
# Corresponds to the JSON property `localId`
|
2020
|
+
# @return [String]
|
2021
|
+
attr_accessor :local_id
|
2022
|
+
|
2023
|
+
# The name space in which this id is unique (typically the application that
|
2024
|
+
# created it). Values should be drawn from the above enum, but for
|
2025
|
+
# experimentation, use values greater than 1000.
|
2026
|
+
# Corresponds to the JSON property `nameSpace`
|
2027
|
+
# @return [Fixnum]
|
2028
|
+
attr_accessor :name_space
|
2029
|
+
|
2030
|
+
def initialize(**args)
|
2031
|
+
update!(**args)
|
2032
|
+
end
|
2033
|
+
|
2034
|
+
# Update properties of this object
|
2035
|
+
def update!(**args)
|
2036
|
+
@creator_user_id = args[:creator_user_id] if args.key?(:creator_user_id)
|
2037
|
+
@local_id = args[:local_id] if args.key?(:local_id)
|
2038
|
+
@name_space = args[:name_space] if args.key?(:name_space)
|
2039
|
+
end
|
2040
|
+
end
|
2041
|
+
|
1631
2042
|
#
|
1632
2043
|
class IndexItemOptions
|
1633
2044
|
include Google::Apis::Core::Hashable
|
@@ -1917,9 +2328,9 @@ module Google
|
|
1917
2328
|
# Item using lexical ordering. Cloud Search Indexing won't index or delete any
|
1918
2329
|
# queued item with a version value that is less than or equal to the version of
|
1919
2330
|
# the currently indexed item. The maximum length for this field is 1024 bytes.
|
1920
|
-
#
|
1921
|
-
#
|
1922
|
-
#
|
2331
|
+
# For information on how item version affects the deletion process, refer to [
|
2332
|
+
# Handle revisions after manual deletes](https://developers.google.com/cloud-
|
2333
|
+
# search/docs/guides/operations).
|
1923
2334
|
# Corresponds to the JSON property `version`
|
1924
2335
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
1925
2336
|
# @return [String]
|
@@ -2013,8 +2424,8 @@ module Google
|
|
2013
2424
|
include Google::Apis::Core::Hashable
|
2014
2425
|
|
2015
2426
|
# Represents an upload session reference. This reference is created via upload
|
2016
|
-
# method.
|
2017
|
-
# contentDataRef.
|
2427
|
+
# method. This reference is valid for 30 days after its creation. Updating of
|
2428
|
+
# item content may refer to this uploaded content via contentDataRef.
|
2018
2429
|
# Corresponds to the JSON property `contentDataRef`
|
2019
2430
|
# @return [Google::Apis::CloudsearchV1::UploadItemRef]
|
2020
2431
|
attr_accessor :content_data_ref
|
@@ -2155,8 +2566,8 @@ module Google
|
|
2155
2566
|
# @return [Google::Apis::CloudsearchV1::SearchQualityMetadata]
|
2156
2567
|
attr_accessor :search_quality_metadata
|
2157
2568
|
|
2158
|
-
# Link to the source repository serving the data.
|
2159
|
-
# to the title. Whitespace or special characters may cause Cloud
|
2569
|
+
# Link to the source repository serving the data. Seach results apply this link
|
2570
|
+
# to the title. Whitespace or special characters may cause Cloud Seach result
|
2160
2571
|
# links to trigger a redirect notice; to avoid this, encode the URL. The maximum
|
2161
2572
|
# length is 2048 characters.
|
2162
2573
|
# Corresponds to the JSON property `sourceRepositoryUrl`
|
@@ -4314,8 +4725,8 @@ module Google
|
|
4314
4725
|
# @return [Fixnum]
|
4315
4726
|
attr_accessor :page_size
|
4316
4727
|
|
4317
|
-
# The raw query string. See supported search operators in the [
|
4318
|
-
#
|
4728
|
+
# The raw query string. See supported search operators in the [Narrow your
|
4729
|
+
# search with operators](https://support.google.com/cloudsearch/answer/6172299)
|
4319
4730
|
# Corresponds to the JSON property `query`
|
4320
4731
|
# @return [String]
|
4321
4732
|
attr_accessor :query
|
@@ -4493,6 +4904,32 @@ module Google
|
|
4493
4904
|
end
|
4494
4905
|
end
|
4495
4906
|
|
4907
|
+
#
|
4908
|
+
class ShareScope
|
4909
|
+
include Google::Apis::Core::Hashable
|
4910
|
+
|
4911
|
+
# If scope is DOMAIN, this field contains the dasher domain, for example "google.
|
4912
|
+
# com".
|
4913
|
+
# Corresponds to the JSON property `domain`
|
4914
|
+
# @return [String]
|
4915
|
+
attr_accessor :domain
|
4916
|
+
|
4917
|
+
# The scope to which the content was shared.
|
4918
|
+
# Corresponds to the JSON property `scope`
|
4919
|
+
# @return [String]
|
4920
|
+
attr_accessor :scope
|
4921
|
+
|
4922
|
+
def initialize(**args)
|
4923
|
+
update!(**args)
|
4924
|
+
end
|
4925
|
+
|
4926
|
+
# Update properties of this object
|
4927
|
+
def update!(**args)
|
4928
|
+
@domain = args[:domain] if args.key?(:domain)
|
4929
|
+
@scope = args[:scope] if args.key?(:scope)
|
4930
|
+
end
|
4931
|
+
end
|
4932
|
+
|
4496
4933
|
# Snippet of the search result, which summarizes the content of the resulting
|
4497
4934
|
# page.
|
4498
4935
|
class Snippet
|
@@ -4698,6 +5135,75 @@ module Google
|
|
4698
5135
|
end
|
4699
5136
|
end
|
4700
5137
|
|
5138
|
+
# Primary key for Space resource.
|
5139
|
+
class SpaceId
|
5140
|
+
include Google::Apis::Core::Hashable
|
5141
|
+
|
5142
|
+
# Unique, immutable ID of the Space
|
5143
|
+
# Corresponds to the JSON property `spaceId`
|
5144
|
+
# @return [String]
|
5145
|
+
attr_accessor :space_id
|
5146
|
+
|
5147
|
+
def initialize(**args)
|
5148
|
+
update!(**args)
|
5149
|
+
end
|
5150
|
+
|
5151
|
+
# Update properties of this object
|
5152
|
+
def update!(**args)
|
5153
|
+
@space_id = args[:space_id] if args.key?(:space_id)
|
5154
|
+
end
|
5155
|
+
end
|
5156
|
+
|
5157
|
+
# Defines the representation of a single matching space.
|
5158
|
+
class SpaceInfo
|
5159
|
+
include Google::Apis::Core::Hashable
|
5160
|
+
|
5161
|
+
#
|
5162
|
+
# Corresponds to the JSON property `avatarInfo`
|
5163
|
+
# @return [Google::Apis::CloudsearchV1::AvatarInfo]
|
5164
|
+
attr_accessor :avatar_info
|
5165
|
+
|
5166
|
+
#
|
5167
|
+
# Corresponds to the JSON property `description`
|
5168
|
+
# @return [String]
|
5169
|
+
attr_accessor :description
|
5170
|
+
|
5171
|
+
# Id representing a group that could be a space, a chat, or a direct message
|
5172
|
+
# space. Which ID is set here will determine which group
|
5173
|
+
# Corresponds to the JSON property `groupId`
|
5174
|
+
# @return [Google::Apis::CloudsearchV1::GroupId]
|
5175
|
+
attr_accessor :group_id
|
5176
|
+
|
5177
|
+
#
|
5178
|
+
# Corresponds to the JSON property `name`
|
5179
|
+
# @return [String]
|
5180
|
+
attr_accessor :name
|
5181
|
+
|
5182
|
+
#
|
5183
|
+
# Corresponds to the JSON property `numMembers`
|
5184
|
+
# @return [Fixnum]
|
5185
|
+
attr_accessor :num_members
|
5186
|
+
|
5187
|
+
# searching user's membership state in this space
|
5188
|
+
# Corresponds to the JSON property `userMembershipState`
|
5189
|
+
# @return [String]
|
5190
|
+
attr_accessor :user_membership_state
|
5191
|
+
|
5192
|
+
def initialize(**args)
|
5193
|
+
update!(**args)
|
5194
|
+
end
|
5195
|
+
|
5196
|
+
# Update properties of this object
|
5197
|
+
def update!(**args)
|
5198
|
+
@avatar_info = args[:avatar_info] if args.key?(:avatar_info)
|
5199
|
+
@description = args[:description] if args.key?(:description)
|
5200
|
+
@group_id = args[:group_id] if args.key?(:group_id)
|
5201
|
+
@name = args[:name] if args.key?(:name)
|
5202
|
+
@num_members = args[:num_members] if args.key?(:num_members)
|
5203
|
+
@user_membership_state = args[:user_membership_state] if args.key?(:user_membership_state)
|
5204
|
+
end
|
5205
|
+
end
|
5206
|
+
|
4701
5207
|
#
|
4702
5208
|
class SpellResult
|
4703
5209
|
include Google::Apis::Core::Hashable
|
@@ -5092,6 +5598,25 @@ module Google
|
|
5092
5598
|
end
|
5093
5599
|
end
|
5094
5600
|
|
5601
|
+
# Next tag: 2
|
5602
|
+
class TypeInfo
|
5603
|
+
include Google::Apis::Core::Hashable
|
5604
|
+
|
5605
|
+
# Next tag: 2
|
5606
|
+
# Corresponds to the JSON property `videoInfo`
|
5607
|
+
# @return [Google::Apis::CloudsearchV1::VideoInfo]
|
5608
|
+
attr_accessor :video_info
|
5609
|
+
|
5610
|
+
def initialize(**args)
|
5611
|
+
update!(**args)
|
5612
|
+
end
|
5613
|
+
|
5614
|
+
# Update properties of this object
|
5615
|
+
def update!(**args)
|
5616
|
+
@video_info = args[:video_info] if args.key?(:video_info)
|
5617
|
+
end
|
5618
|
+
end
|
5619
|
+
|
5095
5620
|
#
|
5096
5621
|
class UnmappedIdentity
|
5097
5622
|
include Google::Apis::Core::Hashable
|
@@ -5210,8 +5735,8 @@ module Google
|
|
5210
5735
|
end
|
5211
5736
|
|
5212
5737
|
# Represents an upload session reference. This reference is created via upload
|
5213
|
-
# method.
|
5214
|
-
# contentDataRef.
|
5738
|
+
# method. This reference is valid for 30 days after its creation. Updating of
|
5739
|
+
# item content may refer to this uploaded content via contentDataRef.
|
5215
5740
|
class UploadItemRef
|
5216
5741
|
include Google::Apis::Core::Hashable
|
5217
5742
|
|
@@ -5230,6 +5755,40 @@ module Google
|
|
5230
5755
|
end
|
5231
5756
|
end
|
5232
5757
|
|
5758
|
+
# Primary key for User resource.
|
5759
|
+
class UserId
|
5760
|
+
include Google::Apis::Core::Hashable
|
5761
|
+
|
5762
|
+
# Opaque, server-assigned ID of the User.
|
5763
|
+
# Corresponds to the JSON property `id`
|
5764
|
+
# @return [String]
|
5765
|
+
attr_accessor :id
|
5766
|
+
|
5767
|
+
# Identifier of an App.
|
5768
|
+
# Corresponds to the JSON property `originAppId`
|
5769
|
+
# @return [Google::Apis::CloudsearchV1::AppId]
|
5770
|
+
attr_accessor :origin_app_id
|
5771
|
+
|
5772
|
+
# Clients do not need to send UserType to Backend, but Backend will always send
|
5773
|
+
# this field to clients per the following rule: 1. For HUMAN Ids, the field is
|
5774
|
+
# empty but by default .getType() will return HUMAN. 2. For BOT Ids, the field
|
5775
|
+
# is ALWAYS set to BOT.
|
5776
|
+
# Corresponds to the JSON property `type`
|
5777
|
+
# @return [String]
|
5778
|
+
attr_accessor :type
|
5779
|
+
|
5780
|
+
def initialize(**args)
|
5781
|
+
update!(**args)
|
5782
|
+
end
|
5783
|
+
|
5784
|
+
# Update properties of this object
|
5785
|
+
def update!(**args)
|
5786
|
+
@id = args[:id] if args.key?(:id)
|
5787
|
+
@origin_app_id = args[:origin_app_id] if args.key?(:origin_app_id)
|
5788
|
+
@type = args[:type] if args.key?(:type)
|
5789
|
+
end
|
5790
|
+
end
|
5791
|
+
|
5233
5792
|
#
|
5234
5793
|
class VpcSettings
|
5235
5794
|
include Google::Apis::Core::Hashable
|
@@ -5336,6 +5895,26 @@ module Google
|
|
5336
5895
|
@value = args[:value] if args.key?(:value)
|
5337
5896
|
end
|
5338
5897
|
end
|
5898
|
+
|
5899
|
+
# Next tag: 2
|
5900
|
+
class VideoInfo
|
5901
|
+
include Google::Apis::Core::Hashable
|
5902
|
+
|
5903
|
+
# Duration of the video in milliseconds. This field can be absent for recently
|
5904
|
+
# uploaded video or inaccurate sometimes.
|
5905
|
+
# Corresponds to the JSON property `duration`
|
5906
|
+
# @return [Fixnum]
|
5907
|
+
attr_accessor :duration
|
5908
|
+
|
5909
|
+
def initialize(**args)
|
5910
|
+
update!(**args)
|
5911
|
+
end
|
5912
|
+
|
5913
|
+
# Update properties of this object
|
5914
|
+
def update!(**args)
|
5915
|
+
@duration = args[:duration] if args.key?(:duration)
|
5916
|
+
end
|
5917
|
+
end
|
5339
5918
|
end
|
5340
5919
|
end
|
5341
5920
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudsearchV1
|
18
18
|
# Version of the google-apis-cloudsearch_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220207"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,12 +22,30 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module CloudsearchV1
|
24
24
|
|
25
|
+
class AclInfo
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
31
|
+
class AppId
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
25
37
|
class AuditLoggingSettings
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
39
|
|
28
40
|
include Google::Apis::Core::JsonObjectSupport
|
29
41
|
end
|
30
42
|
|
43
|
+
class AvatarInfo
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
31
49
|
class BooleanOperatorOptions
|
32
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
51
|
|
@@ -58,6 +76,18 @@ module Google
|
|
58
76
|
include Google::Apis::Core::JsonObjectSupport
|
59
77
|
end
|
60
78
|
|
79
|
+
class CustomEmoji
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
85
|
+
class CustomerId
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
61
91
|
class CustomerIndexStats
|
62
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
93
|
|
@@ -154,6 +184,12 @@ module Google
|
|
154
184
|
include Google::Apis::Core::JsonObjectSupport
|
155
185
|
end
|
156
186
|
|
187
|
+
class DmId
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
157
193
|
class DoubleOperatorOptions
|
158
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
195
|
|
@@ -202,6 +238,12 @@ module Google
|
|
202
238
|
include Google::Apis::Core::JsonObjectSupport
|
203
239
|
end
|
204
240
|
|
241
|
+
class Emoji
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
205
247
|
class EnumOperatorOptions
|
206
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
249
|
|
@@ -340,6 +382,24 @@ module Google
|
|
340
382
|
include Google::Apis::Core::JsonObjectSupport
|
341
383
|
end
|
342
384
|
|
385
|
+
class GoogleDocsMetadata
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
391
|
+
class GoogleDocsResultInfo
|
392
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
|
+
|
394
|
+
include Google::Apis::Core::JsonObjectSupport
|
395
|
+
end
|
396
|
+
|
397
|
+
class GroupId
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
|
+
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
401
|
+
end
|
402
|
+
|
343
403
|
class HtmlOperatorOptions
|
344
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
405
|
|
@@ -358,6 +418,12 @@ module Google
|
|
358
418
|
include Google::Apis::Core::JsonObjectSupport
|
359
419
|
end
|
360
420
|
|
421
|
+
class Id
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
361
427
|
class IndexItemOptions
|
362
428
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
429
|
|
@@ -808,6 +874,12 @@ module Google
|
|
808
874
|
include Google::Apis::Core::JsonObjectSupport
|
809
875
|
end
|
810
876
|
|
877
|
+
class ShareScope
|
878
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
879
|
+
|
880
|
+
include Google::Apis::Core::JsonObjectSupport
|
881
|
+
end
|
882
|
+
|
811
883
|
class Snippet
|
812
884
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
813
885
|
|
@@ -850,6 +922,18 @@ module Google
|
|
850
922
|
include Google::Apis::Core::JsonObjectSupport
|
851
923
|
end
|
852
924
|
|
925
|
+
class SpaceId
|
926
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
927
|
+
|
928
|
+
include Google::Apis::Core::JsonObjectSupport
|
929
|
+
end
|
930
|
+
|
931
|
+
class SpaceInfo
|
932
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
933
|
+
|
934
|
+
include Google::Apis::Core::JsonObjectSupport
|
935
|
+
end
|
936
|
+
|
853
937
|
class SpellResult
|
854
938
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
855
939
|
|
@@ -934,6 +1018,12 @@ module Google
|
|
934
1018
|
include Google::Apis::Core::JsonObjectSupport
|
935
1019
|
end
|
936
1020
|
|
1021
|
+
class TypeInfo
|
1022
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1023
|
+
|
1024
|
+
include Google::Apis::Core::JsonObjectSupport
|
1025
|
+
end
|
1026
|
+
|
937
1027
|
class UnmappedIdentity
|
938
1028
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
939
1029
|
|
@@ -964,6 +1054,12 @@ module Google
|
|
964
1054
|
include Google::Apis::Core::JsonObjectSupport
|
965
1055
|
end
|
966
1056
|
|
1057
|
+
class UserId
|
1058
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1059
|
+
|
1060
|
+
include Google::Apis::Core::JsonObjectSupport
|
1061
|
+
end
|
1062
|
+
|
967
1063
|
class VpcSettings
|
968
1064
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
969
1065
|
|
@@ -982,6 +1078,30 @@ module Google
|
|
982
1078
|
include Google::Apis::Core::JsonObjectSupport
|
983
1079
|
end
|
984
1080
|
|
1081
|
+
class VideoInfo
|
1082
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1083
|
+
|
1084
|
+
include Google::Apis::Core::JsonObjectSupport
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
class AclInfo
|
1088
|
+
# @private
|
1089
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1090
|
+
property :groups_count, as: 'groupsCount'
|
1091
|
+
property :scope, as: 'scope'
|
1092
|
+
property :users_count, as: 'usersCount'
|
1093
|
+
end
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
class AppId
|
1097
|
+
# @private
|
1098
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1099
|
+
property :app_type, as: 'appType'
|
1100
|
+
property :gsuite_app_type, as: 'gsuiteAppType'
|
1101
|
+
property :id, :numeric_string => true, as: 'id'
|
1102
|
+
end
|
1103
|
+
end
|
1104
|
+
|
985
1105
|
class AuditLoggingSettings
|
986
1106
|
# @private
|
987
1107
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -992,6 +1112,14 @@ module Google
|
|
992
1112
|
end
|
993
1113
|
end
|
994
1114
|
|
1115
|
+
class AvatarInfo
|
1116
|
+
# @private
|
1117
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1118
|
+
property :emoji, as: 'emoji', class: Google::Apis::CloudsearchV1::Emoji, decorator: Google::Apis::CloudsearchV1::Emoji::Representation
|
1119
|
+
|
1120
|
+
end
|
1121
|
+
end
|
1122
|
+
|
995
1123
|
class BooleanOperatorOptions
|
996
1124
|
# @private
|
997
1125
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1031,6 +1159,30 @@ module Google
|
|
1031
1159
|
end
|
1032
1160
|
end
|
1033
1161
|
|
1162
|
+
class CustomEmoji
|
1163
|
+
# @private
|
1164
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1165
|
+
property :blob_id, as: 'blobId'
|
1166
|
+
property :create_time_micros, :numeric_string => true, as: 'createTimeMicros'
|
1167
|
+
property :creator_user_id, as: 'creatorUserId', class: Google::Apis::CloudsearchV1::UserId, decorator: Google::Apis::CloudsearchV1::UserId::Representation
|
1168
|
+
|
1169
|
+
property :owner_customer_id, as: 'ownerCustomerId', class: Google::Apis::CloudsearchV1::CustomerId, decorator: Google::Apis::CloudsearchV1::CustomerId::Representation
|
1170
|
+
|
1171
|
+
property :read_token, as: 'readToken'
|
1172
|
+
property :shortcode, as: 'shortcode'
|
1173
|
+
property :state, as: 'state'
|
1174
|
+
property :update_time_micros, :numeric_string => true, as: 'updateTimeMicros'
|
1175
|
+
property :uuid, as: 'uuid'
|
1176
|
+
end
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
class CustomerId
|
1180
|
+
# @private
|
1181
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1182
|
+
property :customer_id, as: 'customerId'
|
1183
|
+
end
|
1184
|
+
end
|
1185
|
+
|
1034
1186
|
class CustomerIndexStats
|
1035
1187
|
# @private
|
1036
1188
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1184,6 +1336,13 @@ module Google
|
|
1184
1336
|
end
|
1185
1337
|
end
|
1186
1338
|
|
1339
|
+
class DmId
|
1340
|
+
# @private
|
1341
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1342
|
+
property :dm_id, as: 'dmId'
|
1343
|
+
end
|
1344
|
+
end
|
1345
|
+
|
1187
1346
|
class DoubleOperatorOptions
|
1188
1347
|
# @private
|
1189
1348
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1241,6 +1400,15 @@ module Google
|
|
1241
1400
|
end
|
1242
1401
|
end
|
1243
1402
|
|
1403
|
+
class Emoji
|
1404
|
+
# @private
|
1405
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1406
|
+
property :custom_emoji, as: 'customEmoji', class: Google::Apis::CloudsearchV1::CustomEmoji, decorator: Google::Apis::CloudsearchV1::CustomEmoji::Representation
|
1407
|
+
|
1408
|
+
property :unicode, as: 'unicode'
|
1409
|
+
end
|
1410
|
+
end
|
1411
|
+
|
1244
1412
|
class EnumOperatorOptions
|
1245
1413
|
# @private
|
1246
1414
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1443,6 +1611,45 @@ module Google
|
|
1443
1611
|
end
|
1444
1612
|
end
|
1445
1613
|
|
1614
|
+
class GoogleDocsMetadata
|
1615
|
+
# @private
|
1616
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1617
|
+
property :acl_info, as: 'aclInfo', class: Google::Apis::CloudsearchV1::AclInfo, decorator: Google::Apis::CloudsearchV1::AclInfo::Representation
|
1618
|
+
|
1619
|
+
property :document_type, as: 'documentType'
|
1620
|
+
property :file_extension, as: 'fileExtension'
|
1621
|
+
property :last_content_modified_timestamp, :numeric_string => true, as: 'lastContentModifiedTimestamp'
|
1622
|
+
property :result_info, as: 'resultInfo', class: Google::Apis::CloudsearchV1::GoogleDocsResultInfo, decorator: Google::Apis::CloudsearchV1::GoogleDocsResultInfo::Representation
|
1623
|
+
|
1624
|
+
property :type_info, as: 'typeInfo', class: Google::Apis::CloudsearchV1::TypeInfo, decorator: Google::Apis::CloudsearchV1::TypeInfo::Representation
|
1625
|
+
|
1626
|
+
end
|
1627
|
+
end
|
1628
|
+
|
1629
|
+
class GoogleDocsResultInfo
|
1630
|
+
# @private
|
1631
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1632
|
+
property :attachment_sha1, as: 'attachmentSha1'
|
1633
|
+
property :cosmo_id, as: 'cosmoId', class: Google::Apis::CloudsearchV1::Id, decorator: Google::Apis::CloudsearchV1::Id::Representation
|
1634
|
+
|
1635
|
+
property :cosmo_name_space, as: 'cosmoNameSpace'
|
1636
|
+
property :encrypted_id, as: 'encryptedId'
|
1637
|
+
property :mime_type, as: 'mimeType'
|
1638
|
+
property :share_scope, as: 'shareScope', class: Google::Apis::CloudsearchV1::ShareScope, decorator: Google::Apis::CloudsearchV1::ShareScope::Representation
|
1639
|
+
|
1640
|
+
end
|
1641
|
+
end
|
1642
|
+
|
1643
|
+
class GroupId
|
1644
|
+
# @private
|
1645
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1646
|
+
property :dm_id, as: 'dmId', class: Google::Apis::CloudsearchV1::DmId, decorator: Google::Apis::CloudsearchV1::DmId::Representation
|
1647
|
+
|
1648
|
+
property :space_id, as: 'spaceId', class: Google::Apis::CloudsearchV1::SpaceId, decorator: Google::Apis::CloudsearchV1::SpaceId::Representation
|
1649
|
+
|
1650
|
+
end
|
1651
|
+
end
|
1652
|
+
|
1446
1653
|
class HtmlOperatorOptions
|
1447
1654
|
# @private
|
1448
1655
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1467,6 +1674,15 @@ module Google
|
|
1467
1674
|
end
|
1468
1675
|
end
|
1469
1676
|
|
1677
|
+
class Id
|
1678
|
+
# @private
|
1679
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1680
|
+
property :creator_user_id, :numeric_string => true, as: 'creatorUserId'
|
1681
|
+
property :local_id, as: 'localId'
|
1682
|
+
property :name_space, as: 'nameSpace'
|
1683
|
+
end
|
1684
|
+
end
|
1685
|
+
|
1470
1686
|
class IndexItemOptions
|
1471
1687
|
# @private
|
1472
1688
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2289,6 +2505,14 @@ module Google
|
|
2289
2505
|
end
|
2290
2506
|
end
|
2291
2507
|
|
2508
|
+
class ShareScope
|
2509
|
+
# @private
|
2510
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2511
|
+
property :domain, as: 'domain'
|
2512
|
+
property :scope, as: 'scope'
|
2513
|
+
end
|
2514
|
+
end
|
2515
|
+
|
2292
2516
|
class Snippet
|
2293
2517
|
# @private
|
2294
2518
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2352,6 +2576,27 @@ module Google
|
|
2352
2576
|
end
|
2353
2577
|
end
|
2354
2578
|
|
2579
|
+
class SpaceId
|
2580
|
+
# @private
|
2581
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2582
|
+
property :space_id, as: 'spaceId'
|
2583
|
+
end
|
2584
|
+
end
|
2585
|
+
|
2586
|
+
class SpaceInfo
|
2587
|
+
# @private
|
2588
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2589
|
+
property :avatar_info, as: 'avatarInfo', class: Google::Apis::CloudsearchV1::AvatarInfo, decorator: Google::Apis::CloudsearchV1::AvatarInfo::Representation
|
2590
|
+
|
2591
|
+
property :description, as: 'description'
|
2592
|
+
property :group_id, as: 'groupId', class: Google::Apis::CloudsearchV1::GroupId, decorator: Google::Apis::CloudsearchV1::GroupId::Representation
|
2593
|
+
|
2594
|
+
property :name, as: 'name'
|
2595
|
+
property :num_members, as: 'numMembers'
|
2596
|
+
property :user_membership_state, as: 'userMembershipState'
|
2597
|
+
end
|
2598
|
+
end
|
2599
|
+
|
2355
2600
|
class SpellResult
|
2356
2601
|
# @private
|
2357
2602
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2474,6 +2719,14 @@ module Google
|
|
2474
2719
|
end
|
2475
2720
|
end
|
2476
2721
|
|
2722
|
+
class TypeInfo
|
2723
|
+
# @private
|
2724
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2725
|
+
property :video_info, as: 'videoInfo', class: Google::Apis::CloudsearchV1::VideoInfo, decorator: Google::Apis::CloudsearchV1::VideoInfo::Representation
|
2726
|
+
|
2727
|
+
end
|
2728
|
+
end
|
2729
|
+
|
2477
2730
|
class UnmappedIdentity
|
2478
2731
|
# @private
|
2479
2732
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2521,6 +2774,16 @@ module Google
|
|
2521
2774
|
end
|
2522
2775
|
end
|
2523
2776
|
|
2777
|
+
class UserId
|
2778
|
+
# @private
|
2779
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2780
|
+
property :id, as: 'id'
|
2781
|
+
property :origin_app_id, as: 'originAppId', class: Google::Apis::CloudsearchV1::AppId, decorator: Google::Apis::CloudsearchV1::AppId::Representation
|
2782
|
+
|
2783
|
+
property :type, as: 'type'
|
2784
|
+
end
|
2785
|
+
end
|
2786
|
+
|
2524
2787
|
class VpcSettings
|
2525
2788
|
# @private
|
2526
2789
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2549,6 +2812,13 @@ module Google
|
|
2549
2812
|
|
2550
2813
|
end
|
2551
2814
|
end
|
2815
|
+
|
2816
|
+
class VideoInfo
|
2817
|
+
# @private
|
2818
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2819
|
+
property :duration, as: 'duration'
|
2820
|
+
end
|
2821
|
+
end
|
2552
2822
|
end
|
2553
2823
|
end
|
2554
2824
|
end
|
@@ -382,10 +382,10 @@ module Google
|
|
382
382
|
# compares the Item version in the index to the version of the queued Item using
|
383
383
|
# lexical ordering. Cloud Search Indexing won't delete any queued item with a
|
384
384
|
# version value that is less than or equal to the version of the currently
|
385
|
-
# indexed item. The maximum length for this field is 1024 bytes.
|
386
|
-
#
|
387
|
-
#
|
388
|
-
#
|
385
|
+
# indexed item. The maximum length for this field is 1024 bytes. For information
|
386
|
+
# on how item version affects the deletion process, refer to [Handle revisions
|
387
|
+
# after manual deletes](https://developers.google.com/cloud-search/docs/guides/
|
388
|
+
# operations).
|
389
389
|
# @param [String] fields
|
390
390
|
# Selector specifying which fields to include in a partial response.
|
391
391
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudsearch_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.20.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-02-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsearch_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.20.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsearch_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Search API V1
|