google-apis-cloudsearch_v1 0.26.0 → 0.29.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: e2eebc552d0fe94a74b81de16aab0bc0c3cc680c0984125d133ff630914739b8
|
4
|
+
data.tar.gz: 22957acbbfc878f65889d229a9078c4248636815b890fbff3be4a8ab60634c53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd3598b1a8b20b57a96138fd2e3f4d7067d13f623d8a7e2171595faccf3cbf21b1ca8555897879978a388159944d8e3bcb6b146468d84100f78a769f439496e6
|
7
|
+
data.tar.gz: 5968a10d746f3cf5e910615d142ed35ebdb6079ca94e8db0e7bd588a200d48068d2ccb97573a48408004abc4f83935cc4fe47e309769513c6107967f31eadb75
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Release history for google-apis-cloudsearch_v1
|
2
2
|
|
3
|
+
### v0.29.0 (2022-06-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220613
|
6
|
+
* Regenerated using generator version 0.7.0
|
7
|
+
|
8
|
+
### v0.28.0 (2022-06-07)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20220530
|
11
|
+
* Regenerated using generator version 0.5.0
|
12
|
+
|
13
|
+
### v0.27.0 (2022-05-10)
|
14
|
+
|
15
|
+
* Regenerated from discovery document revision 20220502
|
16
|
+
|
3
17
|
### v0.26.0 (2022-04-20)
|
4
18
|
|
5
19
|
* Regenerated from discovery document revision 20220411
|
@@ -180,7 +180,7 @@ module Google
|
|
180
180
|
end
|
181
181
|
end
|
182
182
|
|
183
|
-
#
|
183
|
+
# The options for boolean properties.
|
184
184
|
class BooleanPropertyOptions
|
185
185
|
include Google::Apis::Core::Hashable
|
186
186
|
|
@@ -279,7 +279,7 @@ module Google
|
|
279
279
|
|
280
280
|
# Proto representation of a custom emoji. May be used in both APIs and in
|
281
281
|
# Spanner, but certain fields should be restricted to one or the other. See the
|
282
|
-
# per-field documentation for details. NEXT_TAG:
|
282
|
+
# per-field documentation for details. NEXT_TAG: 14
|
283
283
|
class CustomEmoji
|
284
284
|
include Google::Apis::Core::Hashable
|
285
285
|
|
@@ -290,6 +290,12 @@ module Google
|
|
290
290
|
# @return [String]
|
291
291
|
attr_accessor :blob_id
|
292
292
|
|
293
|
+
# Content type of the file used to upload the emoji. Used for takeout. Written
|
294
|
+
# to Spanner when the emoji is created.
|
295
|
+
# Corresponds to the JSON property `contentType`
|
296
|
+
# @return [String]
|
297
|
+
attr_accessor :content_type
|
298
|
+
|
293
299
|
# Time when the Emoji was created, in microseconds. This field may be present in
|
294
300
|
# Spanner, within the server, or in public APIs.
|
295
301
|
# Corresponds to the JSON property `createTimeMicros`
|
@@ -301,6 +307,20 @@ module Google
|
|
301
307
|
# @return [Google::Apis::CloudsearchV1::UserId]
|
302
308
|
attr_accessor :creator_user_id
|
303
309
|
|
310
|
+
# Time when the emoji was deleted, in microseconds. This field may be present in
|
311
|
+
# Spanner, within the server, or in public APIs. Only present if the emoji has
|
312
|
+
# been deleted.
|
313
|
+
# Corresponds to the JSON property `deleteTimeMicros`
|
314
|
+
# @return [Fixnum]
|
315
|
+
attr_accessor :delete_time_micros
|
316
|
+
|
317
|
+
# Output only. A short-lived URL clients can use for directly accessing a custom
|
318
|
+
# emoji image. This field is intended for API consumption, and should *never* be
|
319
|
+
# persisted to Spanner.
|
320
|
+
# Corresponds to the JSON property `ephemeralUrl`
|
321
|
+
# @return [String]
|
322
|
+
attr_accessor :ephemeral_url
|
323
|
+
|
304
324
|
# Represents a GSuite customer ID. Obfuscated with CustomerIdObfuscator.
|
305
325
|
# Corresponds to the JSON property `ownerCustomerId`
|
306
326
|
# @return [Google::Apis::CloudsearchV1::CustomerId]
|
@@ -346,8 +366,11 @@ module Google
|
|
346
366
|
# Update properties of this object
|
347
367
|
def update!(**args)
|
348
368
|
@blob_id = args[:blob_id] if args.key?(:blob_id)
|
369
|
+
@content_type = args[:content_type] if args.key?(:content_type)
|
349
370
|
@create_time_micros = args[:create_time_micros] if args.key?(:create_time_micros)
|
350
371
|
@creator_user_id = args[:creator_user_id] if args.key?(:creator_user_id)
|
372
|
+
@delete_time_micros = args[:delete_time_micros] if args.key?(:delete_time_micros)
|
373
|
+
@ephemeral_url = args[:ephemeral_url] if args.key?(:ephemeral_url)
|
351
374
|
@owner_customer_id = args[:owner_customer_id] if args.key?(:owner_customer_id)
|
352
375
|
@read_token = args[:read_token] if args.key?(:read_token)
|
353
376
|
@shortcode = args[:shortcode] if args.key?(:shortcode)
|
@@ -600,8 +623,8 @@ module Google
|
|
600
623
|
# @return [Array<Google::Apis::CloudsearchV1::GSuitePrincipal>]
|
601
624
|
attr_accessor :items_visibility
|
602
625
|
|
603
|
-
#
|
604
|
-
# ignored when creating a datasource.
|
626
|
+
# The name of the datasource resource. Format: datasources/`source_id`. The name
|
627
|
+
# is ignored when creating a datasource.
|
605
628
|
# Corresponds to the JSON property `name`
|
606
629
|
# @return [String]
|
607
630
|
attr_accessor :name
|
@@ -791,7 +814,7 @@ module Google
|
|
791
814
|
end
|
792
815
|
end
|
793
816
|
|
794
|
-
#
|
817
|
+
# The options for date properties.
|
795
818
|
class DatePropertyOptions
|
796
819
|
include Google::Apis::Core::Hashable
|
797
820
|
|
@@ -856,8 +879,8 @@ module Google
|
|
856
879
|
class DeleteQueueItemsRequest
|
857
880
|
include Google::Apis::Core::Hashable
|
858
881
|
|
859
|
-
#
|
860
|
-
#
|
882
|
+
# The name of connector making this call. Format: datasources/`source_id`/
|
883
|
+
# connectors/`ID`
|
861
884
|
# Corresponds to the JSON property `connectorName`
|
862
885
|
# @return [String]
|
863
886
|
attr_accessor :connector_name
|
@@ -867,7 +890,7 @@ module Google
|
|
867
890
|
# @return [Google::Apis::CloudsearchV1::DebugOptions]
|
868
891
|
attr_accessor :debug_options
|
869
892
|
|
870
|
-
#
|
893
|
+
# The name of a queue to delete items from.
|
871
894
|
# Corresponds to the JSON property `queue`
|
872
895
|
# @return [String]
|
873
896
|
attr_accessor :queue
|
@@ -950,7 +973,7 @@ module Google
|
|
950
973
|
end
|
951
974
|
end
|
952
975
|
|
953
|
-
#
|
976
|
+
# The options for double properties.
|
954
977
|
class DoublePropertyOptions
|
955
978
|
include Google::Apis::Core::Hashable
|
956
979
|
|
@@ -1102,9 +1125,14 @@ module Google
|
|
1102
1125
|
attr_accessor :joined_spaces_affinity_score
|
1103
1126
|
|
1104
1127
|
#
|
1105
|
-
# Corresponds to the JSON property `
|
1128
|
+
# Corresponds to the JSON property `lastMessagePostedTimestampSecs`
|
1129
|
+
# @return [Fixnum]
|
1130
|
+
attr_accessor :last_message_posted_timestamp_secs
|
1131
|
+
|
1132
|
+
#
|
1133
|
+
# Corresponds to the JSON property `lastReadTimestampSecs`
|
1106
1134
|
# @return [Fixnum]
|
1107
|
-
attr_accessor :
|
1135
|
+
attr_accessor :last_read_timestamp_secs
|
1108
1136
|
|
1109
1137
|
#
|
1110
1138
|
# Corresponds to the JSON property `memberMetadataCount`
|
@@ -1137,9 +1165,9 @@ module Google
|
|
1137
1165
|
attr_accessor :space_age_in_days
|
1138
1166
|
|
1139
1167
|
#
|
1140
|
-
# Corresponds to the JSON property `
|
1168
|
+
# Corresponds to the JSON property `spaceCreationTimestampSecs`
|
1141
1169
|
# @return [Fixnum]
|
1142
|
-
attr_accessor :
|
1170
|
+
attr_accessor :space_creation_timestamp_secs
|
1143
1171
|
|
1144
1172
|
#
|
1145
1173
|
# Corresponds to the JSON property `topicalityScore`
|
@@ -1158,14 +1186,15 @@ module Google
|
|
1158
1186
|
@final_score = args[:final_score] if args.key?(:final_score)
|
1159
1187
|
@freshness_score = args[:freshness_score] if args.key?(:freshness_score)
|
1160
1188
|
@joined_spaces_affinity_score = args[:joined_spaces_affinity_score] if args.key?(:joined_spaces_affinity_score)
|
1161
|
-
@
|
1189
|
+
@last_message_posted_timestamp_secs = args[:last_message_posted_timestamp_secs] if args.key?(:last_message_posted_timestamp_secs)
|
1190
|
+
@last_read_timestamp_secs = args[:last_read_timestamp_secs] if args.key?(:last_read_timestamp_secs)
|
1162
1191
|
@member_metadata_count = args[:member_metadata_count] if args.key?(:member_metadata_count)
|
1163
1192
|
@message_score = args[:message_score] if args.key?(:message_score)
|
1164
1193
|
@num_auc_contacts = args[:num_auc_contacts] if args.key?(:num_auc_contacts)
|
1165
1194
|
@small_contact_list_affinity_score = args[:small_contact_list_affinity_score] if args.key?(:small_contact_list_affinity_score)
|
1166
1195
|
@small_unjoined_spaces_affinity_score = args[:small_unjoined_spaces_affinity_score] if args.key?(:small_unjoined_spaces_affinity_score)
|
1167
1196
|
@space_age_in_days = args[:space_age_in_days] if args.key?(:space_age_in_days)
|
1168
|
-
@
|
1197
|
+
@space_creation_timestamp_secs = args[:space_creation_timestamp_secs] if args.key?(:space_creation_timestamp_secs)
|
1169
1198
|
@topicality_score = args[:topicality_score] if args.key?(:topicality_score)
|
1170
1199
|
end
|
1171
1200
|
end
|
@@ -1195,7 +1224,7 @@ module Google
|
|
1195
1224
|
|
1196
1225
|
# Proto representation of a custom emoji. May be used in both APIs and in
|
1197
1226
|
# Spanner, but certain fields should be restricted to one or the other. See the
|
1198
|
-
# per-field documentation for details. NEXT_TAG:
|
1227
|
+
# per-field documentation for details. NEXT_TAG: 14
|
1199
1228
|
# Corresponds to the JSON property `customEmoji`
|
1200
1229
|
# @return [Google::Apis::CloudsearchV1::CustomEmoji]
|
1201
1230
|
attr_accessor :custom_emoji
|
@@ -1250,7 +1279,7 @@ module Google
|
|
1250
1279
|
end
|
1251
1280
|
end
|
1252
1281
|
|
1253
|
-
#
|
1282
|
+
# The options for enum properties, which allow you to define a restricted set of
|
1254
1283
|
# strings to match user queries, set rankings for those string values, and
|
1255
1284
|
# define an operator name to be paired with those strings so that users can
|
1256
1285
|
# narrow results to only items with a specific value. For example, for items in
|
@@ -1466,7 +1495,7 @@ module Google
|
|
1466
1495
|
# @return [String]
|
1467
1496
|
attr_accessor :object_type
|
1468
1497
|
|
1469
|
-
#
|
1498
|
+
# The name of the operator chosen for faceting. @see cloudsearch.
|
1470
1499
|
# SchemaPropertyOptions
|
1471
1500
|
# Corresponds to the JSON property `operatorName`
|
1472
1501
|
# @return [String]
|
@@ -1495,7 +1524,8 @@ module Google
|
|
1495
1524
|
class FacetResult
|
1496
1525
|
include Google::Apis::Core::Hashable
|
1497
1526
|
|
1498
|
-
# FacetBuckets for values in response containing at least a single result
|
1527
|
+
# FacetBuckets for values in response containing at least a single result with
|
1528
|
+
# the corresponding filter.
|
1499
1529
|
# Corresponds to the JSON property `buckets`
|
1500
1530
|
# @return [Array<Google::Apis::CloudsearchV1::FacetBucket>]
|
1501
1531
|
attr_accessor :buckets
|
@@ -1505,7 +1535,7 @@ module Google
|
|
1505
1535
|
# @return [String]
|
1506
1536
|
attr_accessor :object_type
|
1507
1537
|
|
1508
|
-
#
|
1538
|
+
# The name of the operator chosen for faceting. @see cloudsearch.
|
1509
1539
|
# SchemaPropertyOptions
|
1510
1540
|
# Corresponds to the JSON property `operatorName`
|
1511
1541
|
# @return [String]
|
@@ -1533,7 +1563,7 @@ module Google
|
|
1533
1563
|
class FieldViolation
|
1534
1564
|
include Google::Apis::Core::Hashable
|
1535
1565
|
|
1536
|
-
#
|
1566
|
+
# The description of the error.
|
1537
1567
|
# Corresponds to the JSON property `description`
|
1538
1568
|
# @return [String]
|
1539
1569
|
attr_accessor :description
|
@@ -2054,7 +2084,7 @@ module Google
|
|
2054
2084
|
end
|
2055
2085
|
end
|
2056
2086
|
|
2057
|
-
#
|
2087
|
+
# The options for html properties.
|
2058
2088
|
class HtmlPropertyOptions
|
2059
2089
|
include Google::Apis::Core::Hashable
|
2060
2090
|
|
@@ -2168,8 +2198,8 @@ module Google
|
|
2168
2198
|
class IndexItemRequest
|
2169
2199
|
include Google::Apis::Core::Hashable
|
2170
2200
|
|
2171
|
-
#
|
2172
|
-
#
|
2201
|
+
# The name of connector making this call. Format: datasources/`source_id`/
|
2202
|
+
# connectors/`ID`
|
2173
2203
|
# Corresponds to the JSON property `connectorName`
|
2174
2204
|
# @return [String]
|
2175
2205
|
attr_accessor :connector_name
|
@@ -2274,7 +2304,7 @@ module Google
|
|
2274
2304
|
end
|
2275
2305
|
end
|
2276
2306
|
|
2277
|
-
#
|
2307
|
+
# The options for integer properties.
|
2278
2308
|
class IntegerPropertyOptions
|
2279
2309
|
include Google::Apis::Core::Hashable
|
2280
2310
|
|
@@ -2377,7 +2407,7 @@ module Google
|
|
2377
2407
|
include Google::Apis::Core::Hashable
|
2378
2408
|
|
2379
2409
|
# Access control list information for the item. For more information see [Map
|
2380
|
-
# ACLs](/cloud-search/docs/guides/acls).
|
2410
|
+
# ACLs](https://developers.google.com/cloud-search/docs/guides/acls).
|
2381
2411
|
# Corresponds to the JSON property `acl`
|
2382
2412
|
# @return [Google::Apis::CloudsearchV1::ItemAcl]
|
2383
2413
|
attr_accessor :acl
|
@@ -2389,7 +2419,7 @@ module Google
|
|
2389
2419
|
# @return [Google::Apis::CloudsearchV1::ItemContent]
|
2390
2420
|
attr_accessor :content
|
2391
2421
|
|
2392
|
-
#
|
2422
|
+
# The type for this item.
|
2393
2423
|
# Corresponds to the JSON property `itemType`
|
2394
2424
|
# @return [String]
|
2395
2425
|
attr_accessor :item_type
|
@@ -2399,8 +2429,8 @@ module Google
|
|
2399
2429
|
# @return [Google::Apis::CloudsearchV1::ItemMetadata]
|
2400
2430
|
attr_accessor :metadata
|
2401
2431
|
|
2402
|
-
#
|
2403
|
-
# required field. The maximum length is 1536 characters.
|
2432
|
+
# The name of the Item. Format: datasources/`source_id`/items/`item_id` This is
|
2433
|
+
# a required field. The maximum length is 1536 characters.
|
2404
2434
|
# Corresponds to the JSON property `name`
|
2405
2435
|
# @return [String]
|
2406
2436
|
attr_accessor :name
|
@@ -2460,7 +2490,7 @@ module Google
|
|
2460
2490
|
end
|
2461
2491
|
|
2462
2492
|
# Access control list information for the item. For more information see [Map
|
2463
|
-
# ACLs](/cloud-search/docs/guides/acls).
|
2493
|
+
# ACLs](https://developers.google.com/cloud-search/docs/guides/acls).
|
2464
2494
|
class ItemAcl
|
2465
2495
|
include Google::Apis::Core::Hashable
|
2466
2496
|
|
@@ -2480,8 +2510,8 @@ module Google
|
|
2480
2510
|
# @return [Array<Google::Apis::CloudsearchV1::Principal>]
|
2481
2511
|
attr_accessor :denied_readers
|
2482
2512
|
|
2483
|
-
#
|
2484
|
-
# inheritance *only* provides access permissions to child items and does not
|
2513
|
+
# The name of the item to inherit the Access Permission List (ACL) from. Note:
|
2514
|
+
# ACL inheritance *only* provides access permissions to child items and does not
|
2485
2515
|
# define structural relationships, nor does it provide convenient ways to delete
|
2486
2516
|
# large groups of items. Deleting an ACL parent from the index only alters the
|
2487
2517
|
# access permissions of child items that reference the parent in the
|
@@ -3088,7 +3118,7 @@ module Google
|
|
3088
3118
|
include Google::Apis::Core::Hashable
|
3089
3119
|
|
3090
3120
|
# The read-only display name formatted according to the locale specified by the
|
3091
|
-
# viewer's account or the Accept-Language HTTP header.
|
3121
|
+
# viewer's account or the `Accept-Language` HTTP header.
|
3092
3122
|
# Corresponds to the JSON property `displayName`
|
3093
3123
|
# @return [String]
|
3094
3124
|
attr_accessor :display_name
|
@@ -3185,7 +3215,7 @@ module Google
|
|
3185
3215
|
class ObjectDefinition
|
3186
3216
|
include Google::Apis::Core::Hashable
|
3187
3217
|
|
3188
|
-
#
|
3218
|
+
# The name for the object, which then defines its type. Item indexing requests
|
3189
3219
|
# should set the objectType field equal to this value. For example, if *name* is
|
3190
3220
|
# *Document*, then indexing requests for items of type Document should set
|
3191
3221
|
# objectType equal to *Document*. Each object definition must be uniquely named
|
@@ -3282,7 +3312,7 @@ module Google
|
|
3282
3312
|
end
|
3283
3313
|
end
|
3284
3314
|
|
3285
|
-
#
|
3315
|
+
# The options for object properties.
|
3286
3316
|
class ObjectPropertyOptions
|
3287
3317
|
include Google::Apis::Core::Hashable
|
3288
3318
|
|
@@ -3413,8 +3443,9 @@ module Google
|
|
3413
3443
|
# @return [Array<Google::Apis::CloudsearchV1::EmailAddress>]
|
3414
3444
|
attr_accessor :email_addresses
|
3415
3445
|
|
3416
|
-
# The resource name of the person to provide information about. See People.get
|
3417
|
-
# from Google
|
3446
|
+
# The resource name of the person to provide information about. See [`People.get`
|
3447
|
+
# ](https://developers.google.com/people/api/rest/v1/people/get) from the Google
|
3448
|
+
# People API.
|
3418
3449
|
# Corresponds to the JSON property `name`
|
3419
3450
|
# @return [String]
|
3420
3451
|
attr_accessor :name
|
@@ -3429,6 +3460,11 @@ module Google
|
|
3429
3460
|
# @return [Array<Google::Apis::CloudsearchV1::Name>]
|
3430
3461
|
attr_accessor :person_names
|
3431
3462
|
|
3463
|
+
# The person's phone numbers
|
3464
|
+
# Corresponds to the JSON property `phoneNumbers`
|
3465
|
+
# @return [Array<Google::Apis::CloudsearchV1::PhoneNumber>]
|
3466
|
+
attr_accessor :phone_numbers
|
3467
|
+
|
3432
3468
|
# A person's read-only photo. A picture shown next to the person's name to help
|
3433
3469
|
# others recognize the person in search results.
|
3434
3470
|
# Corresponds to the JSON property `photos`
|
@@ -3445,10 +3481,36 @@ module Google
|
|
3445
3481
|
@name = args[:name] if args.key?(:name)
|
3446
3482
|
@obfuscated_id = args[:obfuscated_id] if args.key?(:obfuscated_id)
|
3447
3483
|
@person_names = args[:person_names] if args.key?(:person_names)
|
3484
|
+
@phone_numbers = args[:phone_numbers] if args.key?(:phone_numbers)
|
3448
3485
|
@photos = args[:photos] if args.key?(:photos)
|
3449
3486
|
end
|
3450
3487
|
end
|
3451
3488
|
|
3489
|
+
# A person's Phone Number
|
3490
|
+
class PhoneNumber
|
3491
|
+
include Google::Apis::Core::Hashable
|
3492
|
+
|
3493
|
+
# The phone number of the person.
|
3494
|
+
# Corresponds to the JSON property `phoneNumber`
|
3495
|
+
# @return [String]
|
3496
|
+
attr_accessor :phone_number
|
3497
|
+
|
3498
|
+
#
|
3499
|
+
# Corresponds to the JSON property `type`
|
3500
|
+
# @return [String]
|
3501
|
+
attr_accessor :type
|
3502
|
+
|
3503
|
+
def initialize(**args)
|
3504
|
+
update!(**args)
|
3505
|
+
end
|
3506
|
+
|
3507
|
+
# Update properties of this object
|
3508
|
+
def update!(**args)
|
3509
|
+
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
3510
|
+
@type = args[:type] if args.key?(:type)
|
3511
|
+
end
|
3512
|
+
end
|
3513
|
+
|
3452
3514
|
# A person's photo.
|
3453
3515
|
class Photo
|
3454
3516
|
include Google::Apis::Core::Hashable
|
@@ -3472,8 +3534,8 @@ module Google
|
|
3472
3534
|
class PollItemsRequest
|
3473
3535
|
include Google::Apis::Core::Hashable
|
3474
3536
|
|
3475
|
-
#
|
3476
|
-
#
|
3537
|
+
# The name of connector making this call. Format: datasources/`source_id`/
|
3538
|
+
# connectors/`ID`
|
3477
3539
|
# Corresponds to the JSON property `connectorName`
|
3478
3540
|
# @return [String]
|
3479
3541
|
attr_accessor :connector_name
|
@@ -3579,7 +3641,7 @@ module Google
|
|
3579
3641
|
# @return [String]
|
3580
3642
|
attr_accessor :code
|
3581
3643
|
|
3582
|
-
#
|
3644
|
+
# The description of the error.
|
3583
3645
|
# Corresponds to the JSON property `errorMessage`
|
3584
3646
|
# @return [String]
|
3585
3647
|
attr_accessor :error_message
|
@@ -3606,12 +3668,12 @@ module Google
|
|
3606
3668
|
class PropertyDefinition
|
3607
3669
|
include Google::Apis::Core::Hashable
|
3608
3670
|
|
3609
|
-
#
|
3671
|
+
# The options for boolean properties.
|
3610
3672
|
# Corresponds to the JSON property `booleanPropertyOptions`
|
3611
3673
|
# @return [Google::Apis::CloudsearchV1::BooleanPropertyOptions]
|
3612
3674
|
attr_accessor :boolean_property_options
|
3613
3675
|
|
3614
|
-
#
|
3676
|
+
# The options for date properties.
|
3615
3677
|
# Corresponds to the JSON property `datePropertyOptions`
|
3616
3678
|
# @return [Google::Apis::CloudsearchV1::DatePropertyOptions]
|
3617
3679
|
attr_accessor :date_property_options
|
@@ -3621,12 +3683,12 @@ module Google
|
|
3621
3683
|
# @return [Google::Apis::CloudsearchV1::PropertyDisplayOptions]
|
3622
3684
|
attr_accessor :display_options
|
3623
3685
|
|
3624
|
-
#
|
3686
|
+
# The options for double properties.
|
3625
3687
|
# Corresponds to the JSON property `doublePropertyOptions`
|
3626
3688
|
# @return [Google::Apis::CloudsearchV1::DoublePropertyOptions]
|
3627
3689
|
attr_accessor :double_property_options
|
3628
3690
|
|
3629
|
-
#
|
3691
|
+
# The options for enum properties, which allow you to define a restricted set of
|
3630
3692
|
# strings to match user queries, set rankings for those string values, and
|
3631
3693
|
# define an operator name to be paired with those strings so that users can
|
3632
3694
|
# narrow results to only items with a specific value. For example, for items in
|
@@ -3638,19 +3700,19 @@ module Google
|
|
3638
3700
|
# @return [Google::Apis::CloudsearchV1::EnumPropertyOptions]
|
3639
3701
|
attr_accessor :enum_property_options
|
3640
3702
|
|
3641
|
-
#
|
3703
|
+
# The options for html properties.
|
3642
3704
|
# Corresponds to the JSON property `htmlPropertyOptions`
|
3643
3705
|
# @return [Google::Apis::CloudsearchV1::HtmlPropertyOptions]
|
3644
3706
|
attr_accessor :html_property_options
|
3645
3707
|
|
3646
|
-
#
|
3708
|
+
# The options for integer properties.
|
3647
3709
|
# Corresponds to the JSON property `integerPropertyOptions`
|
3648
3710
|
# @return [Google::Apis::CloudsearchV1::IntegerPropertyOptions]
|
3649
3711
|
attr_accessor :integer_property_options
|
3650
3712
|
|
3651
3713
|
# Indicates that the property can be used for generating facets. Cannot be true
|
3652
3714
|
# for properties whose type is object. IsReturnable must be true to set this
|
3653
|
-
# option. Only supported for
|
3715
|
+
# option. Only supported for boolean, enum, and text properties.
|
3654
3716
|
# Corresponds to the JSON property `isFacetable`
|
3655
3717
|
# @return [Boolean]
|
3656
3718
|
attr_accessor :is_facetable
|
@@ -3681,7 +3743,7 @@ module Google
|
|
3681
3743
|
# Indicates that the property can be used for sorting. Cannot be true for
|
3682
3744
|
# properties that are repeatable. Cannot be true for properties whose type is
|
3683
3745
|
# object. IsReturnable must be true to set this option. Only supported for
|
3684
|
-
#
|
3746
|
+
# boolean, date, double, integer, and timestamp properties.
|
3685
3747
|
# Corresponds to the JSON property `isSortable`
|
3686
3748
|
# @return [Boolean]
|
3687
3749
|
attr_accessor :is_sortable
|
@@ -3714,17 +3776,17 @@ module Google
|
|
3714
3776
|
# @return [String]
|
3715
3777
|
attr_accessor :name
|
3716
3778
|
|
3717
|
-
#
|
3779
|
+
# The options for object properties.
|
3718
3780
|
# Corresponds to the JSON property `objectPropertyOptions`
|
3719
3781
|
# @return [Google::Apis::CloudsearchV1::ObjectPropertyOptions]
|
3720
3782
|
attr_accessor :object_property_options
|
3721
3783
|
|
3722
|
-
#
|
3784
|
+
# The options for text properties.
|
3723
3785
|
# Corresponds to the JSON property `textPropertyOptions`
|
3724
3786
|
# @return [Google::Apis::CloudsearchV1::TextPropertyOptions]
|
3725
3787
|
attr_accessor :text_property_options
|
3726
3788
|
|
3727
|
-
#
|
3789
|
+
# The options for timestamp properties.
|
3728
3790
|
# Corresponds to the JSON property `timestampPropertyOptions`
|
3729
3791
|
# @return [Google::Apis::CloudsearchV1::TimestampPropertyOptions]
|
3730
3792
|
attr_accessor :timestamp_property_options
|
@@ -3792,9 +3854,10 @@ module Google
|
|
3792
3854
|
# @return [String]
|
3793
3855
|
attr_accessor :content_hash
|
3794
3856
|
|
3795
|
-
#
|
3796
|
-
# used to determine how to modify this item's status. Setting this field and
|
3797
|
-
# type field results in argument error. The maximum length is 2048
|
3857
|
+
# The metadata hash of the item according to the repository. If specified, this
|
3858
|
+
# is used to determine how to modify this item's status. Setting this field and
|
3859
|
+
# the type field results in argument error. The maximum length is 2048
|
3860
|
+
# characters.
|
3798
3861
|
# Corresponds to the JSON property `metadataHash`
|
3799
3862
|
# @return [String]
|
3800
3863
|
attr_accessor :metadata_hash
|
@@ -3806,7 +3869,7 @@ module Google
|
|
3806
3869
|
# @return [String]
|
3807
3870
|
attr_accessor :payload
|
3808
3871
|
|
3809
|
-
# Queue to which this item belongs
|
3872
|
+
# Queue to which this item belongs. The `default` queue is chosen if this field
|
3810
3873
|
# is not specified. The maximum length is 512 characters.
|
3811
3874
|
# Corresponds to the JSON property `queue`
|
3812
3875
|
# @return [String]
|
@@ -3850,8 +3913,8 @@ module Google
|
|
3850
3913
|
class PushItemRequest
|
3851
3914
|
include Google::Apis::Core::Hashable
|
3852
3915
|
|
3853
|
-
#
|
3854
|
-
#
|
3916
|
+
# The name of connector making this call. Format: datasources/`source_id`/
|
3917
|
+
# connectors/`ID`
|
3855
3918
|
# Corresponds to the JSON property `connectorName`
|
3856
3919
|
# @return [String]
|
3857
3920
|
attr_accessor :connector_name
|
@@ -4092,8 +4155,8 @@ module Google
|
|
4092
4155
|
# @return [String]
|
4093
4156
|
attr_accessor :less_than_operator_name
|
4094
4157
|
|
4095
|
-
#
|
4096
|
-
# for schema-specific operators, and is unset for common operators.
|
4158
|
+
# The name of the object corresponding to the operator. This field is only
|
4159
|
+
# filled for schema-specific operators, and is unset for common operators.
|
4097
4160
|
# Corresponds to the JSON property `objectType`
|
4098
4161
|
# @return [String]
|
4099
4162
|
attr_accessor :object_type
|
@@ -4103,7 +4166,7 @@ module Google
|
|
4103
4166
|
# @return [String]
|
4104
4167
|
attr_accessor :operator_name
|
4105
4168
|
|
4106
|
-
#
|
4169
|
+
# The type of the operator.
|
4107
4170
|
# Corresponds to the JSON property `type`
|
4108
4171
|
# @return [String]
|
4109
4172
|
attr_accessor :type
|
@@ -4196,7 +4259,7 @@ module Google
|
|
4196
4259
|
# @return [Fixnum]
|
4197
4260
|
attr_accessor :http_status_code
|
4198
4261
|
|
4199
|
-
#
|
4262
|
+
# The type of error.
|
4200
4263
|
# Corresponds to the JSON property `type`
|
4201
4264
|
# @return [String]
|
4202
4265
|
attr_accessor :type
|
@@ -4570,7 +4633,8 @@ module Google
|
|
4570
4633
|
attr_accessor :enable_audit_log
|
4571
4634
|
alias_method :enable_audit_log?, :enable_audit_log
|
4572
4635
|
|
4573
|
-
#
|
4636
|
+
# The name of the Search Application. Format: searchapplications/`application_id`
|
4637
|
+
# .
|
4574
4638
|
# Corresponds to the JSON property `name`
|
4575
4639
|
# @return [String]
|
4576
4640
|
attr_accessor :name
|
@@ -5065,8 +5129,8 @@ module Google
|
|
5065
5129
|
class SortOptions
|
5066
5130
|
include Google::Apis::Core::Hashable
|
5067
5131
|
|
5068
|
-
#
|
5069
|
-
# property must be marked as sortable.
|
5132
|
+
# The name of the operator corresponding to the field to sort on. The
|
5133
|
+
# corresponding property must be marked as sortable.
|
5070
5134
|
# Corresponds to the JSON property `operatorName`
|
5071
5135
|
# @return [String]
|
5072
5136
|
attr_accessor :operator_name
|
@@ -5352,8 +5416,8 @@ module Google
|
|
5352
5416
|
class StartUploadItemRequest
|
5353
5417
|
include Google::Apis::Core::Hashable
|
5354
5418
|
|
5355
|
-
#
|
5356
|
-
#
|
5419
|
+
# The name of connector making this call. Format: datasources/`source_id`/
|
5420
|
+
# connectors/`ID`
|
5357
5421
|
# Corresponds to the JSON property `connectorName`
|
5358
5422
|
# @return [String]
|
5359
5423
|
attr_accessor :connector_name
|
@@ -5554,8 +5618,8 @@ module Google
|
|
5554
5618
|
# If true, the text value is tokenized as one atomic value in operator searches
|
5555
5619
|
# and facet matches. For example, if the operator name is "genre" and the value
|
5556
5620
|
# is "science-fiction" the query restrictions "genre:science" and "genre:fiction"
|
5557
|
-
# doesn't match the item; "genre:science-fiction" does.
|
5558
|
-
# sensitive and does not remove special characters. If false, the text is
|
5621
|
+
# doesn't match the item; "genre:science-fiction" does. Text value matching is
|
5622
|
+
# case-sensitive and does not remove special characters. If false, the text is
|
5559
5623
|
# tokenized. For example, if the value is "science-fiction" the queries "genre:
|
5560
5624
|
# science" and "genre:fiction" matches the item.
|
5561
5625
|
# Corresponds to the JSON property `exactMatchWithOperator`
|
@@ -5586,7 +5650,7 @@ module Google
|
|
5586
5650
|
end
|
5587
5651
|
end
|
5588
5652
|
|
5589
|
-
#
|
5653
|
+
# The options for text properties.
|
5590
5654
|
class TextPropertyOptions
|
5591
5655
|
include Google::Apis::Core::Hashable
|
5592
5656
|
|
@@ -5683,7 +5747,7 @@ module Google
|
|
5683
5747
|
end
|
5684
5748
|
end
|
5685
5749
|
|
5686
|
-
#
|
5750
|
+
# The options for timestamp properties.
|
5687
5751
|
class TimestampPropertyOptions
|
5688
5752
|
include Google::Apis::Core::Hashable
|
5689
5753
|
|
@@ -5771,8 +5835,8 @@ module Google
|
|
5771
5835
|
class UnreserveItemsRequest
|
5772
5836
|
include Google::Apis::Core::Hashable
|
5773
5837
|
|
5774
|
-
#
|
5775
|
-
#
|
5838
|
+
# The name of connector making this call. Format: datasources/`source_id`/
|
5839
|
+
# connectors/`ID`
|
5776
5840
|
# Corresponds to the JSON property `connectorName`
|
5777
5841
|
# @return [String]
|
5778
5842
|
attr_accessor :connector_name
|
@@ -5782,7 +5846,7 @@ module Google
|
|
5782
5846
|
# @return [Google::Apis::CloudsearchV1::DebugOptions]
|
5783
5847
|
attr_accessor :debug_options
|
5784
5848
|
|
5785
|
-
#
|
5849
|
+
# The name of a queue to unreserve items from.
|
5786
5850
|
# Corresponds to the JSON property `queue`
|
5787
5851
|
# @return [String]
|
5788
5852
|
attr_accessor :queue
|
@@ -5865,7 +5929,7 @@ module Google
|
|
5865
5929
|
class UploadItemRef
|
5866
5930
|
include Google::Apis::Core::Hashable
|
5867
5931
|
|
5868
|
-
#
|
5932
|
+
# The name of the content reference. The maximum length is 2048 characters.
|
5869
5933
|
# Corresponds to the JSON property `name`
|
5870
5934
|
# @return [String]
|
5871
5935
|
attr_accessor :name
|
@@ -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.29.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.7.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220613"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -640,6 +640,12 @@ module Google
|
|
640
640
|
include Google::Apis::Core::JsonObjectSupport
|
641
641
|
end
|
642
642
|
|
643
|
+
class PhoneNumber
|
644
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
645
|
+
|
646
|
+
include Google::Apis::Core::JsonObjectSupport
|
647
|
+
end
|
648
|
+
|
643
649
|
class Photo
|
644
650
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
645
651
|
|
@@ -1169,9 +1175,12 @@ module Google
|
|
1169
1175
|
# @private
|
1170
1176
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1171
1177
|
property :blob_id, as: 'blobId'
|
1178
|
+
property :content_type, as: 'contentType'
|
1172
1179
|
property :create_time_micros, :numeric_string => true, as: 'createTimeMicros'
|
1173
1180
|
property :creator_user_id, as: 'creatorUserId', class: Google::Apis::CloudsearchV1::UserId, decorator: Google::Apis::CloudsearchV1::UserId::Representation
|
1174
1181
|
|
1182
|
+
property :delete_time_micros, :numeric_string => true, as: 'deleteTimeMicros'
|
1183
|
+
property :ephemeral_url, as: 'ephemeralUrl'
|
1175
1184
|
property :owner_customer_id, as: 'ownerCustomerId', class: Google::Apis::CloudsearchV1::CustomerId, decorator: Google::Apis::CloudsearchV1::CustomerId::Representation
|
1176
1185
|
|
1177
1186
|
property :read_token, as: 'readToken'
|
@@ -1408,14 +1417,15 @@ module Google
|
|
1408
1417
|
property :final_score, as: 'finalScore'
|
1409
1418
|
property :freshness_score, as: 'freshnessScore'
|
1410
1419
|
property :joined_spaces_affinity_score, as: 'joinedSpacesAffinityScore'
|
1411
|
-
property :
|
1420
|
+
property :last_message_posted_timestamp_secs, :numeric_string => true, as: 'lastMessagePostedTimestampSecs'
|
1421
|
+
property :last_read_timestamp_secs, :numeric_string => true, as: 'lastReadTimestampSecs'
|
1412
1422
|
property :member_metadata_count, as: 'memberMetadataCount'
|
1413
1423
|
property :message_score, as: 'messageScore'
|
1414
1424
|
property :num_auc_contacts, :numeric_string => true, as: 'numAucContacts'
|
1415
1425
|
property :small_contact_list_affinity_score, as: 'smallContactListAffinityScore'
|
1416
1426
|
property :small_unjoined_spaces_affinity_score, as: 'smallUnjoinedSpacesAffinityScore'
|
1417
1427
|
property :space_age_in_days, as: 'spaceAgeInDays'
|
1418
|
-
property :
|
1428
|
+
property :space_creation_timestamp_secs, :numeric_string => true, as: 'spaceCreationTimestampSecs'
|
1419
1429
|
property :topicality_score, as: 'topicalityScore'
|
1420
1430
|
end
|
1421
1431
|
end
|
@@ -2081,11 +2091,21 @@ module Google
|
|
2081
2091
|
property :obfuscated_id, as: 'obfuscatedId'
|
2082
2092
|
collection :person_names, as: 'personNames', class: Google::Apis::CloudsearchV1::Name, decorator: Google::Apis::CloudsearchV1::Name::Representation
|
2083
2093
|
|
2094
|
+
collection :phone_numbers, as: 'phoneNumbers', class: Google::Apis::CloudsearchV1::PhoneNumber, decorator: Google::Apis::CloudsearchV1::PhoneNumber::Representation
|
2095
|
+
|
2084
2096
|
collection :photos, as: 'photos', class: Google::Apis::CloudsearchV1::Photo, decorator: Google::Apis::CloudsearchV1::Photo::Representation
|
2085
2097
|
|
2086
2098
|
end
|
2087
2099
|
end
|
2088
2100
|
|
2101
|
+
class PhoneNumber
|
2102
|
+
# @private
|
2103
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2104
|
+
property :phone_number, as: 'phoneNumber'
|
2105
|
+
property :type, as: 'type'
|
2106
|
+
end
|
2107
|
+
end
|
2108
|
+
|
2089
2109
|
class Photo
|
2090
2110
|
# @private
|
2091
2111
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -260,7 +260,7 @@ module Google
|
|
260
260
|
# Deletes the schema of a data source. **Note:** This API requires an admin or
|
261
261
|
# service account to execute.
|
262
262
|
# @param [String] name
|
263
|
-
#
|
263
|
+
# The name of the data source to delete Schema. Format: datasources/`source_id`
|
264
264
|
# @param [Boolean] debug_options_enable_debugging
|
265
265
|
# If you are asked by Google to help with debugging, set this field. Otherwise,
|
266
266
|
# ignore this field.
|
@@ -295,7 +295,7 @@ module Google
|
|
295
295
|
# Gets the schema of a data source. **Note:** This API requires an admin or
|
296
296
|
# service account to execute.
|
297
297
|
# @param [String] name
|
298
|
-
#
|
298
|
+
# The name of the data source to get Schema. Format: datasources/`source_id`
|
299
299
|
# @param [Boolean] debug_options_enable_debugging
|
300
300
|
# If you are asked by Google to help with debugging, set this field. Otherwise,
|
301
301
|
# ignore this field.
|
@@ -332,7 +332,7 @@ module Google
|
|
332
332
|
# the entire schema. **Note:** This API requires an admin or service account to
|
333
333
|
# execute.
|
334
334
|
# @param [String] name
|
335
|
-
#
|
335
|
+
# The name of the data source to update Schema. Format: datasources/`source_id`
|
336
336
|
# @param [Google::Apis::CloudsearchV1::UpdateSchemaRequest] update_schema_request_object
|
337
337
|
# @param [String] fields
|
338
338
|
# Selector specifying which fields to include in a partial response.
|
@@ -367,11 +367,11 @@ module Google
|
|
367
367
|
# admin or service account to execute. The service account used is the one
|
368
368
|
# whitelisted in the corresponding data source.
|
369
369
|
# @param [String] name
|
370
|
-
# Required.
|
371
|
-
# item_id`
|
370
|
+
# Required. The name of the item to delete. Format: datasources/`source_id`/
|
371
|
+
# items/`item_id`
|
372
372
|
# @param [String] connector_name
|
373
|
-
#
|
374
|
-
#
|
373
|
+
# The name of connector making this call. Format: datasources/`source_id`/
|
374
|
+
# connectors/`ID`
|
375
375
|
# @param [Boolean] debug_options_enable_debugging
|
376
376
|
# If you are asked by Google to help with debugging, set this field. Otherwise,
|
377
377
|
# ignore this field.
|
@@ -422,7 +422,7 @@ module Google
|
|
422
422
|
# This API requires an admin or service account to execute. The service account
|
423
423
|
# used is the one whitelisted in the corresponding data source.
|
424
424
|
# @param [String] name
|
425
|
-
#
|
425
|
+
# The name of the Data Source to delete items in a queue. Format: datasources/`
|
426
426
|
# source_id`
|
427
427
|
# @param [Google::Apis::CloudsearchV1::DeleteQueueItemsRequest] delete_queue_items_request_object
|
428
428
|
# @param [String] fields
|
@@ -458,10 +458,11 @@ module Google
|
|
458
458
|
# to execute. The service account used is the one whitelisted in the
|
459
459
|
# corresponding data source.
|
460
460
|
# @param [String] name
|
461
|
-
#
|
461
|
+
# The name of the item to get info. Format: datasources/`source_id`/items/`
|
462
|
+
# item_id`
|
462
463
|
# @param [String] connector_name
|
463
|
-
#
|
464
|
-
#
|
464
|
+
# The name of connector making this call. Format: datasources/`source_id`/
|
465
|
+
# connectors/`ID`
|
465
466
|
# @param [Boolean] debug_options_enable_debugging
|
466
467
|
# If you are asked by Google to help with debugging, set this field. Otherwise,
|
467
468
|
# ignore this field.
|
@@ -500,8 +501,8 @@ module Google
|
|
500
501
|
# an admin or service account to execute. The service account used is the one
|
501
502
|
# whitelisted in the corresponding data source.
|
502
503
|
# @param [String] name
|
503
|
-
#
|
504
|
-
# required field. The maximum length is 1536 characters.
|
504
|
+
# The name of the Item. Format: datasources/`source_id`/items/`item_id` This is
|
505
|
+
# a required field. The maximum length is 1536 characters.
|
505
506
|
# @param [Google::Apis::CloudsearchV1::IndexItemRequest] index_item_request_object
|
506
507
|
# @param [String] fields
|
507
508
|
# Selector specifying which fields to include in a partial response.
|
@@ -536,7 +537,7 @@ module Google
|
|
536
537
|
# account to execute. The service account used is the one whitelisted in the
|
537
538
|
# corresponding data source.
|
538
539
|
# @param [String] name
|
539
|
-
#
|
540
|
+
# The name of the Data Source to list Items. Format: datasources/`source_id`
|
540
541
|
# @param [Boolean] brief
|
541
542
|
# When set to true, the indexing system only populates the following fields:
|
542
543
|
# name, version, queue. metadata.hash, metadata.title, metadata.
|
@@ -546,8 +547,8 @@ module Google
|
|
546
547
|
# itemStatus.repositoryError.type, If this value is false, then all the fields
|
547
548
|
# are populated in Item.
|
548
549
|
# @param [String] connector_name
|
549
|
-
#
|
550
|
-
#
|
550
|
+
# The name of connector making this call. Format: datasources/`source_id`/
|
551
|
+
# connectors/`ID`
|
551
552
|
# @param [Boolean] debug_options_enable_debugging
|
552
553
|
# If you are asked by Google to help with debugging, set this field. Otherwise,
|
553
554
|
# ignore this field.
|
@@ -599,7 +600,7 @@ module Google
|
|
599
600
|
# admin or service account to execute. The service account used is the one
|
600
601
|
# whitelisted in the corresponding data source.
|
601
602
|
# @param [String] name
|
602
|
-
#
|
603
|
+
# The name of the Data Source to poll items. Format: datasources/`source_id`
|
603
604
|
# @param [Google::Apis::CloudsearchV1::PollItemsRequest] poll_items_request_object
|
604
605
|
# @param [String] fields
|
605
606
|
# Selector specifying which fields to include in a partial response.
|
@@ -634,7 +635,7 @@ module Google
|
|
634
635
|
# an admin or service account to execute. The service account used is the one
|
635
636
|
# whitelisted in the corresponding data source.
|
636
637
|
# @param [String] name
|
637
|
-
#
|
638
|
+
# The name of the item to push into the indexing queue. Format: datasources/`
|
638
639
|
# source_id`/items/`ID` This is a required field. The maximum length is 1536
|
639
640
|
# characters.
|
640
641
|
# @param [Google::Apis::CloudsearchV1::PushItemRequest] push_item_request_object
|
@@ -672,7 +673,8 @@ module Google
|
|
672
673
|
# restarted. This API requires an admin or service account to execute. The
|
673
674
|
# service account used is the one whitelisted in the corresponding data source.
|
674
675
|
# @param [String] name
|
675
|
-
#
|
676
|
+
# The name of the Data Source to unreserve all items. Format: datasources/`
|
677
|
+
# source_id`
|
676
678
|
# @param [Google::Apis::CloudsearchV1::UnreserveItemsRequest] unreserve_items_request_object
|
677
679
|
# @param [String] fields
|
678
680
|
# Selector specifying which fields to include in a partial response.
|
@@ -708,8 +710,8 @@ module Google
|
|
708
710
|
# API requires an admin or service account to execute. The service account used
|
709
711
|
# is the one whitelisted in the corresponding data source.
|
710
712
|
# @param [String] name
|
711
|
-
#
|
712
|
-
# items/`item_id`. The maximum length is 1536 bytes.
|
713
|
+
# The name of the Item to start a resumable upload. Format: datasources/`
|
714
|
+
# source_id`/items/`item_id`. The maximum length is 1536 bytes.
|
713
715
|
# @param [Google::Apis::CloudsearchV1::StartUploadItemRequest] start_upload_item_request_object
|
714
716
|
# @param [String] fields
|
715
717
|
# Selector specifying which fields to include in a partial response.
|
@@ -1099,7 +1101,7 @@ module Google
|
|
1099
1101
|
|
1100
1102
|
# Deletes a datasource. **Note:** This API requires an admin account to execute.
|
1101
1103
|
# @param [String] name
|
1102
|
-
#
|
1104
|
+
# The name of the datasource. Format: datasources/`source_id`.
|
1103
1105
|
# @param [Boolean] debug_options_enable_debugging
|
1104
1106
|
# If you are asked by Google to help with debugging, set this field. Otherwise,
|
1105
1107
|
# ignore this field.
|
@@ -1133,7 +1135,7 @@ module Google
|
|
1133
1135
|
|
1134
1136
|
# Gets a datasource. **Note:** This API requires an admin account to execute.
|
1135
1137
|
# @param [String] name
|
1136
|
-
#
|
1138
|
+
# The name of the datasource resource. Format: datasources/`source_id`.
|
1137
1139
|
# @param [Boolean] debug_options_enable_debugging
|
1138
1140
|
# If you are asked by Google to help with debugging, set this field. Otherwise,
|
1139
1141
|
# ignore this field.
|
@@ -1205,8 +1207,8 @@ module Google
|
|
1205
1207
|
|
1206
1208
|
# Updates a datasource. **Note:** This API requires an admin account to execute.
|
1207
1209
|
# @param [String] name
|
1208
|
-
#
|
1209
|
-
# ignored when creating a datasource.
|
1210
|
+
# The name of the datasource resource. Format: datasources/`source_id`. The name
|
1211
|
+
# is ignored when creating a datasource.
|
1210
1212
|
# @param [Google::Apis::CloudsearchV1::UpdateDataSourceRequest] update_data_source_request_object
|
1211
1213
|
# @param [String] fields
|
1212
1214
|
# Selector specifying which fields to include in a partial response.
|
@@ -1307,7 +1309,8 @@ module Google
|
|
1307
1309
|
# Gets the specified search application. **Note:** This API requires an admin
|
1308
1310
|
# account to execute.
|
1309
1311
|
# @param [String] name
|
1310
|
-
#
|
1312
|
+
# The name of the search application. Format: searchapplications/`application_id`
|
1313
|
+
# .
|
1311
1314
|
# @param [Boolean] debug_options_enable_debugging
|
1312
1315
|
# If you are asked by Google to help with debugging, set this field. Otherwise,
|
1313
1316
|
# ignore this field.
|
@@ -1416,7 +1419,8 @@ module Google
|
|
1416
1419
|
# Updates a search application. **Note:** This API requires an admin account to
|
1417
1420
|
# execute.
|
1418
1421
|
# @param [String] name
|
1419
|
-
#
|
1422
|
+
# The name of the Search Application. Format: searchapplications/`application_id`
|
1423
|
+
# .
|
1420
1424
|
# @param [Google::Apis::CloudsearchV1::SearchApplication] search_application_object
|
1421
1425
|
# @param [String] fields
|
1422
1426
|
# Selector specifying which fields to include in a partial response.
|
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.29.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-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.6'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.6'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.29.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.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Search API V1
|