google-apis-cloudsearch_v1 0.18.0 → 0.21.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b5cff3291c662548ca94546242f0e5cad047ac71f79bf4d7ab5cdd8bd76771a0
4
- data.tar.gz: dd516c049cb24a6e4a3df96359dc5a48c0839aa490a0580efe5ad2f965da1706
3
+ metadata.gz: 29660f994060996339bd9efb55b361807ca27f5e8a4f6afe2fc6a84aae41a053
4
+ data.tar.gz: 85709337cd3c3d22374a15e112c0c2e8dc7e58005e59d1a14a6070fe1e296f3e
5
5
  SHA512:
6
- metadata.gz: a81885fccdd511f2b36041d152de4ca04c8e9f3ed7a838da95107c2249a888120be444c88990114c972c1a4ce41e4b5ea37a2de78953f922f4f412145c2d61cc
7
- data.tar.gz: 850616363c82e2cf5b28dce78d12c281e65abf64f307c6086b0c93da96e86d1bf3860dd00a2ca2e965a6a94c4e5ac14a4e403f95df19fc0509bd836dc6ee28ce
6
+ metadata.gz: b278da815aa25785f217daffc1706900e443e19d3bea97614aa05c94d0feab62af6f3472fe9da96ab7160ee63f41f13f97f60859096317bd31b62cd238777e1b
7
+ data.tar.gz: 4cad4c1f6e1d28b9a0f0345f069f309c7c19b4697a4ad4f716736813b2fd7ba08b3bc02154b8d69fabe560d5750c339f315dd01612b2febac1204b36ffba9f87
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-cloudsearch_v1
2
2
 
3
+ ### v0.21.0 (2022-02-22)
4
+
5
+ * Regenerated from discovery document revision 20220215
6
+
7
+ ### v0.20.0 (2022-02-15)
8
+
9
+ * Regenerated from discovery document revision 20220207
10
+
11
+ ### v0.19.0 (2022-02-07)
12
+
13
+ * Regenerated from discovery document revision 20220201
14
+
3
15
  ### v0.18.0 (2022-01-31)
4
16
 
5
17
  * Regenerated from discovery document revision 20220125
@@ -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
- # See [this guide](https://developers.devsite.corp.google.com/cloud-search/docs/
1921
- # guides/operations) to understand how item version affects reindexing after
1922
- # delete item.
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]
@@ -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 [Cloud search
4318
- # Cheat Sheet](https://support.google.com/a/users/answer/9299929)
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,81 @@ 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 `avatarUrl`
5168
+ # @return [String]
5169
+ attr_accessor :avatar_url
5170
+
5171
+ #
5172
+ # Corresponds to the JSON property `description`
5173
+ # @return [String]
5174
+ attr_accessor :description
5175
+
5176
+ # Id representing a group that could be a space, a chat, or a direct message
5177
+ # space. Which ID is set here will determine which group
5178
+ # Corresponds to the JSON property `groupId`
5179
+ # @return [Google::Apis::CloudsearchV1::GroupId]
5180
+ attr_accessor :group_id
5181
+
5182
+ #
5183
+ # Corresponds to the JSON property `name`
5184
+ # @return [String]
5185
+ attr_accessor :name
5186
+
5187
+ #
5188
+ # Corresponds to the JSON property `numMembers`
5189
+ # @return [Fixnum]
5190
+ attr_accessor :num_members
5191
+
5192
+ # searching user's membership state in this space
5193
+ # Corresponds to the JSON property `userMembershipState`
5194
+ # @return [String]
5195
+ attr_accessor :user_membership_state
5196
+
5197
+ def initialize(**args)
5198
+ update!(**args)
5199
+ end
5200
+
5201
+ # Update properties of this object
5202
+ def update!(**args)
5203
+ @avatar_info = args[:avatar_info] if args.key?(:avatar_info)
5204
+ @avatar_url = args[:avatar_url] if args.key?(:avatar_url)
5205
+ @description = args[:description] if args.key?(:description)
5206
+ @group_id = args[:group_id] if args.key?(:group_id)
5207
+ @name = args[:name] if args.key?(:name)
5208
+ @num_members = args[:num_members] if args.key?(:num_members)
5209
+ @user_membership_state = args[:user_membership_state] if args.key?(:user_membership_state)
5210
+ end
5211
+ end
5212
+
4701
5213
  #
4702
5214
  class SpellResult
4703
5215
  include Google::Apis::Core::Hashable
@@ -5092,6 +5604,25 @@ module Google
5092
5604
  end
5093
5605
  end
5094
5606
 
5607
+ # Next tag: 2
5608
+ class TypeInfo
5609
+ include Google::Apis::Core::Hashable
5610
+
5611
+ # Next tag: 2
5612
+ # Corresponds to the JSON property `videoInfo`
5613
+ # @return [Google::Apis::CloudsearchV1::VideoInfo]
5614
+ attr_accessor :video_info
5615
+
5616
+ def initialize(**args)
5617
+ update!(**args)
5618
+ end
5619
+
5620
+ # Update properties of this object
5621
+ def update!(**args)
5622
+ @video_info = args[:video_info] if args.key?(:video_info)
5623
+ end
5624
+ end
5625
+
5095
5626
  #
5096
5627
  class UnmappedIdentity
5097
5628
  include Google::Apis::Core::Hashable
@@ -5230,6 +5761,40 @@ module Google
5230
5761
  end
5231
5762
  end
5232
5763
 
5764
+ # Primary key for User resource.
5765
+ class UserId
5766
+ include Google::Apis::Core::Hashable
5767
+
5768
+ # Opaque, server-assigned ID of the User.
5769
+ # Corresponds to the JSON property `id`
5770
+ # @return [String]
5771
+ attr_accessor :id
5772
+
5773
+ # Identifier of an App.
5774
+ # Corresponds to the JSON property `originAppId`
5775
+ # @return [Google::Apis::CloudsearchV1::AppId]
5776
+ attr_accessor :origin_app_id
5777
+
5778
+ # Clients do not need to send UserType to Backend, but Backend will always send
5779
+ # this field to clients per the following rule: 1. For HUMAN Ids, the field is
5780
+ # empty but by default .getType() will return HUMAN. 2. For BOT Ids, the field
5781
+ # is ALWAYS set to BOT.
5782
+ # Corresponds to the JSON property `type`
5783
+ # @return [String]
5784
+ attr_accessor :type
5785
+
5786
+ def initialize(**args)
5787
+ update!(**args)
5788
+ end
5789
+
5790
+ # Update properties of this object
5791
+ def update!(**args)
5792
+ @id = args[:id] if args.key?(:id)
5793
+ @origin_app_id = args[:origin_app_id] if args.key?(:origin_app_id)
5794
+ @type = args[:type] if args.key?(:type)
5795
+ end
5796
+ end
5797
+
5233
5798
  #
5234
5799
  class VpcSettings
5235
5800
  include Google::Apis::Core::Hashable
@@ -5336,6 +5901,26 @@ module Google
5336
5901
  @value = args[:value] if args.key?(:value)
5337
5902
  end
5338
5903
  end
5904
+
5905
+ # Next tag: 2
5906
+ class VideoInfo
5907
+ include Google::Apis::Core::Hashable
5908
+
5909
+ # Duration of the video in milliseconds. This field can be absent for recently
5910
+ # uploaded video or inaccurate sometimes.
5911
+ # Corresponds to the JSON property `duration`
5912
+ # @return [Fixnum]
5913
+ attr_accessor :duration
5914
+
5915
+ def initialize(**args)
5916
+ update!(**args)
5917
+ end
5918
+
5919
+ # Update properties of this object
5920
+ def update!(**args)
5921
+ @duration = args[:duration] if args.key?(:duration)
5922
+ end
5923
+ end
5339
5924
  end
5340
5925
  end
5341
5926
  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.18.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220125"
25
+ REVISION = "20220215"
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,28 @@ 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 :avatar_url, as: 'avatarUrl'
2592
+ property :description, as: 'description'
2593
+ property :group_id, as: 'groupId', class: Google::Apis::CloudsearchV1::GroupId, decorator: Google::Apis::CloudsearchV1::GroupId::Representation
2594
+
2595
+ property :name, as: 'name'
2596
+ property :num_members, as: 'numMembers'
2597
+ property :user_membership_state, as: 'userMembershipState'
2598
+ end
2599
+ end
2600
+
2355
2601
  class SpellResult
2356
2602
  # @private
2357
2603
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2474,6 +2720,14 @@ module Google
2474
2720
  end
2475
2721
  end
2476
2722
 
2723
+ class TypeInfo
2724
+ # @private
2725
+ class Representation < Google::Apis::Core::JsonRepresentation
2726
+ property :video_info, as: 'videoInfo', class: Google::Apis::CloudsearchV1::VideoInfo, decorator: Google::Apis::CloudsearchV1::VideoInfo::Representation
2727
+
2728
+ end
2729
+ end
2730
+
2477
2731
  class UnmappedIdentity
2478
2732
  # @private
2479
2733
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2521,6 +2775,16 @@ module Google
2521
2775
  end
2522
2776
  end
2523
2777
 
2778
+ class UserId
2779
+ # @private
2780
+ class Representation < Google::Apis::Core::JsonRepresentation
2781
+ property :id, as: 'id'
2782
+ property :origin_app_id, as: 'originAppId', class: Google::Apis::CloudsearchV1::AppId, decorator: Google::Apis::CloudsearchV1::AppId::Representation
2783
+
2784
+ property :type, as: 'type'
2785
+ end
2786
+ end
2787
+
2524
2788
  class VpcSettings
2525
2789
  # @private
2526
2790
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2549,6 +2813,13 @@ module Google
2549
2813
 
2550
2814
  end
2551
2815
  end
2816
+
2817
+ class VideoInfo
2818
+ # @private
2819
+ class Representation < Google::Apis::Core::JsonRepresentation
2820
+ property :duration, as: 'duration'
2821
+ end
2822
+ end
2552
2823
  end
2553
2824
  end
2554
2825
  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. See [this guide]
386
- # (https://developers.devsite.corp.google.com/cloud-search/docs/guides/
387
- # operations) to understand how item version affects reindexing after delete
388
- # item.
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
@@ -1169,8 +1169,8 @@ module Google
1169
1169
  # If you are asked by Google to help with debugging, set this field. Otherwise,
1170
1170
  # ignore this field.
1171
1171
  # @param [Fixnum] page_size
1172
- # Maximum number of datasources to fetch in a request. The max value is 100. The
1173
- # default value is 10
1172
+ # Maximum number of datasources to fetch in a request. The max value is 1000.
1173
+ # The default value is 1000.
1174
1174
  # @param [String] page_token
1175
1175
  # Starting index of the results.
1176
1176
  # @param [String] fields
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.18.0
4
+ version: 0.21.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-02-07 00:00:00.000000000 Z
11
+ date: 2022-02-28 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.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.21.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: []