google-apis-cloudsearch_v1 0.19.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: 16b3d47ea6c18afb6ed35176cf9a924b7d32a9aa5f58c240dc10e5fbf890ed45
4
- data.tar.gz: 060566d790bcadee23fe39f0341eb7ba031be0b417ceb6c87b6f2dd6cf14ea7e
3
+ metadata.gz: 7790240370bba3d766cd8437fd6da27339be752a598010409be7d3f97a34d668
4
+ data.tar.gz: 4a8957a9d1389d4a7fc38d0f6cc5f3bfd490621b54589bb8617d4b40f5c7121a
5
5
  SHA512:
6
- metadata.gz: 5092793fefe0b67e06314a28fe786d8865c502d64e292e88b318b7a95d406f75cfd0a191ef9f837d8c59375bebde838ee05477c77d4db7138418e7d83916a832
7
- data.tar.gz: 6e47aaefb8b909e6d55b797d75521e2511b3b7689ba3099747673efdae2c2dc0b713d3c1360faf3a4bda390e80683223f1a4d164338cadd9e2d0943cf6ab3c8b
6
+ metadata.gz: '075069afe496b4da4247622ef2c5e09c4bcf876f4fb45f764ceacef274e8bc519c44d35074c5c3379da9c2e2f7b4cb046aaf5c13bfd7a4ceed00f2985fabeb9c'
7
+ data.tar.gz: 3c504f81d395a235102e2e1e8e601fef46252cf29e9e07c2a520e57bc744e7def2f5216f9fa3da56eea9f286b2fd78385903848b98aa477f318d4d7a74d142b5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.19.0 (2022-02-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20220201
@@ -53,6 +53,41 @@ module Google
53
53
  end
54
54
  end
55
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
+
56
91
  # Represents the settings for Cloud audit logging
57
92
  class AuditLoggingSettings
58
93
  include Google::Apis::Core::Hashable
@@ -98,6 +133,25 @@ module Google
98
133
  end
99
134
  end
100
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
+
101
155
  # Used to provide a search operator for boolean properties. This is optional.
102
156
  # Search operators let users restrict the query to specific fields relevant to
103
157
  # the type of item being searched.
@@ -223,6 +277,105 @@ module Google
223
277
  end
224
278
  end
225
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
+
226
379
  # Aggregation of items by status code as of the specified date.
227
380
  class CustomerIndexStats
228
381
  include Google::Apis::Core::Hashable
@@ -755,6 +908,25 @@ module Google
755
908
  end
756
909
  end
757
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
+
758
930
  # Used to provide a search operator for double properties. This is optional.
759
931
  # Search operators let users restrict the query to specific fields relevant to
760
932
  # the type of item being searched.
@@ -913,6 +1085,33 @@ module Google
913
1085
  end
914
1086
  end
915
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
+
916
1115
  # Used to provide a search operator for enum properties. This is optional.
917
1116
  # Search operators let users restrict the query to specific fields relevant to
918
1117
  # the type of item being searched. For example, if you provide no operator for a
@@ -1697,6 +1896,32 @@ module Google
1697
1896
  end
1698
1897
  end
1699
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
+
1700
1925
  # Used to provide a search operator for html properties. This is optional.
1701
1926
  # Search operators let users restrict the query to specific fields relevant to
1702
1927
  # the type of item being searched.
@@ -4500,8 +4725,8 @@ module Google
4500
4725
  # @return [Fixnum]
4501
4726
  attr_accessor :page_size
4502
4727
 
4503
- # The raw query string. See supported search operators in the [Cloud search
4504
- # 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)
4505
4730
  # Corresponds to the JSON property `query`
4506
4731
  # @return [String]
4507
4732
  attr_accessor :query
@@ -4910,6 +5135,75 @@ module Google
4910
5135
  end
4911
5136
  end
4912
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
+
4913
5207
  #
4914
5208
  class SpellResult
4915
5209
  include Google::Apis::Core::Hashable
@@ -5461,6 +5755,40 @@ module Google
5461
5755
  end
5462
5756
  end
5463
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
+
5464
5792
  #
5465
5793
  class VpcSettings
5466
5794
  include Google::Apis::Core::Hashable
@@ -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.0"
19
+ GEM_VERSION = "0.20.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 = "20220201"
25
+ REVISION = "20220207"
26
26
  end
27
27
  end
28
28
  end
@@ -28,12 +28,24 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class AppId
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
31
37
  class AuditLoggingSettings
32
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
39
 
34
40
  include Google::Apis::Core::JsonObjectSupport
35
41
  end
36
42
 
43
+ class AvatarInfo
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
37
49
  class BooleanOperatorOptions
38
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
51
 
@@ -64,6 +76,18 @@ module Google
64
76
  include Google::Apis::Core::JsonObjectSupport
65
77
  end
66
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
+
67
91
  class CustomerIndexStats
68
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
93
 
@@ -160,6 +184,12 @@ module Google
160
184
  include Google::Apis::Core::JsonObjectSupport
161
185
  end
162
186
 
187
+ class DmId
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
163
193
  class DoubleOperatorOptions
164
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
195
 
@@ -208,6 +238,12 @@ module Google
208
238
  include Google::Apis::Core::JsonObjectSupport
209
239
  end
210
240
 
241
+ class Emoji
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
211
247
  class EnumOperatorOptions
212
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
249
 
@@ -358,6 +394,12 @@ module Google
358
394
  include Google::Apis::Core::JsonObjectSupport
359
395
  end
360
396
 
397
+ class GroupId
398
+ class Representation < Google::Apis::Core::JsonRepresentation; end
399
+
400
+ include Google::Apis::Core::JsonObjectSupport
401
+ end
402
+
361
403
  class HtmlOperatorOptions
362
404
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
405
 
@@ -880,6 +922,18 @@ module Google
880
922
  include Google::Apis::Core::JsonObjectSupport
881
923
  end
882
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
+
883
937
  class SpellResult
884
938
  class Representation < Google::Apis::Core::JsonRepresentation; end
885
939
 
@@ -1000,6 +1054,12 @@ module Google
1000
1054
  include Google::Apis::Core::JsonObjectSupport
1001
1055
  end
1002
1056
 
1057
+ class UserId
1058
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1059
+
1060
+ include Google::Apis::Core::JsonObjectSupport
1061
+ end
1062
+
1003
1063
  class VpcSettings
1004
1064
  class Representation < Google::Apis::Core::JsonRepresentation; end
1005
1065
 
@@ -1033,6 +1093,15 @@ module Google
1033
1093
  end
1034
1094
  end
1035
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
+
1036
1105
  class AuditLoggingSettings
1037
1106
  # @private
1038
1107
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1043,6 +1112,14 @@ module Google
1043
1112
  end
1044
1113
  end
1045
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
+
1046
1123
  class BooleanOperatorOptions
1047
1124
  # @private
1048
1125
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1082,6 +1159,30 @@ module Google
1082
1159
  end
1083
1160
  end
1084
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
+
1085
1186
  class CustomerIndexStats
1086
1187
  # @private
1087
1188
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1235,6 +1336,13 @@ module Google
1235
1336
  end
1236
1337
  end
1237
1338
 
1339
+ class DmId
1340
+ # @private
1341
+ class Representation < Google::Apis::Core::JsonRepresentation
1342
+ property :dm_id, as: 'dmId'
1343
+ end
1344
+ end
1345
+
1238
1346
  class DoubleOperatorOptions
1239
1347
  # @private
1240
1348
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1292,6 +1400,15 @@ module Google
1292
1400
  end
1293
1401
  end
1294
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
+
1295
1412
  class EnumOperatorOptions
1296
1413
  # @private
1297
1414
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1523,6 +1640,16 @@ module Google
1523
1640
  end
1524
1641
  end
1525
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
+
1526
1653
  class HtmlOperatorOptions
1527
1654
  # @private
1528
1655
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2449,6 +2576,27 @@ module Google
2449
2576
  end
2450
2577
  end
2451
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
+
2452
2600
  class SpellResult
2453
2601
  # @private
2454
2602
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2626,6 +2774,16 @@ module Google
2626
2774
  end
2627
2775
  end
2628
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
+
2629
2787
  class VpcSettings
2630
2788
  # @private
2631
2789
  class Representation < Google::Apis::Core::JsonRepresentation
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.19.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-02-14 00:00:00.000000000 Z
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.19.0
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: []