google-apis-cloudsearch_v1 0.37.0 → 0.39.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.
@@ -1213,6 +1213,15 @@ module Google
|
|
1213
1213
|
# @param [Boolean] debug_options_enable_debugging
|
1214
1214
|
# If you are asked by Google to help with debugging, set this field. Otherwise,
|
1215
1215
|
# ignore this field.
|
1216
|
+
# @param [String] update_mask
|
1217
|
+
# Only applies to [`settings.datasources.patch`](https://developers.google.com/
|
1218
|
+
# cloud-search/docs/reference/rest/v1/settings.datasources/patch). Update mask
|
1219
|
+
# to control which fields to update. Example field paths: `name`, `displayName`.
|
1220
|
+
# * If `update_mask` is non-empty, then only the fields specified in the `
|
1221
|
+
# update_mask` are updated. * If you specify a field in the `update_mask`, but
|
1222
|
+
# don't specify its value in the source, that field is cleared. * If the `
|
1223
|
+
# update_mask` is not present or empty or has the value `*`, then all fields are
|
1224
|
+
# updated.
|
1216
1225
|
# @param [String] fields
|
1217
1226
|
# Selector specifying which fields to include in a partial response.
|
1218
1227
|
# @param [String] quota_user
|
@@ -1230,7 +1239,7 @@ module Google
|
|
1230
1239
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1231
1240
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1232
1241
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1233
|
-
def patch_setting_datasource(name, data_source_object = nil, debug_options_enable_debugging: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1242
|
+
def patch_setting_datasource(name, data_source_object = nil, debug_options_enable_debugging: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1234
1243
|
command = make_simple_command(:patch, 'v1/settings/{+name}', options)
|
1235
1244
|
command.request_representation = Google::Apis::CloudsearchV1::DataSource::Representation
|
1236
1245
|
command.request_object = data_source_object
|
@@ -1238,6 +1247,7 @@ module Google
|
|
1238
1247
|
command.response_class = Google::Apis::CloudsearchV1::Operation
|
1239
1248
|
command.params['name'] = name unless name.nil?
|
1240
1249
|
command.query['debugOptions.enableDebugging'] = debug_options_enable_debugging unless debug_options_enable_debugging.nil?
|
1250
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1241
1251
|
command.query['fields'] = fields unless fields.nil?
|
1242
1252
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1243
1253
|
execute_or_queue_command(command, &block)
|
@@ -1425,6 +1435,15 @@ module Google
|
|
1425
1435
|
# The name of the Search Application. Format: searchapplications/`application_id`
|
1426
1436
|
# .
|
1427
1437
|
# @param [Google::Apis::CloudsearchV1::SearchApplication] search_application_object
|
1438
|
+
# @param [String] update_mask
|
1439
|
+
# Only applies to [`settings.searchapplications.patch`](https://developers.
|
1440
|
+
# google.com/cloud-search/docs/reference/rest/v1/settings.searchapplications/
|
1441
|
+
# patch). Update mask to control which fields to update. Example field paths: `
|
1442
|
+
# search_application.name`, `search_application.displayName`. * If `update_mask`
|
1443
|
+
# is non-empty, then only the fields specified in the `update_mask` are updated.
|
1444
|
+
# * If you specify a field in the `update_mask`, but don't specify its value in
|
1445
|
+
# the `search_application`, then that field is cleared. * If the `update_mask`
|
1446
|
+
# is not present or empty or has the value `*`, then all fields are updated.
|
1428
1447
|
# @param [String] fields
|
1429
1448
|
# Selector specifying which fields to include in a partial response.
|
1430
1449
|
# @param [String] quota_user
|
@@ -1442,13 +1461,14 @@ module Google
|
|
1442
1461
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1443
1462
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1444
1463
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1445
|
-
def patch_setting_searchapplication(name, search_application_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1464
|
+
def patch_setting_searchapplication(name, search_application_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1446
1465
|
command = make_simple_command(:patch, 'v1/settings/{+name}', options)
|
1447
1466
|
command.request_representation = Google::Apis::CloudsearchV1::SearchApplication::Representation
|
1448
1467
|
command.request_object = search_application_object
|
1449
1468
|
command.response_representation = Google::Apis::CloudsearchV1::Operation::Representation
|
1450
1469
|
command.response_class = Google::Apis::CloudsearchV1::Operation
|
1451
1470
|
command.params['name'] = name unless name.nil?
|
1471
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1452
1472
|
command.query['fields'] = fields unless fields.nil?
|
1453
1473
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1454
1474
|
execute_or_queue_command(command, &block)
|
@@ -1495,6 +1515,15 @@ module Google
|
|
1495
1515
|
# The name of the Search Application. Format: searchapplications/`application_id`
|
1496
1516
|
# .
|
1497
1517
|
# @param [Google::Apis::CloudsearchV1::SearchApplication] search_application_object
|
1518
|
+
# @param [String] update_mask
|
1519
|
+
# Only applies to [`settings.searchapplications.patch`](https://developers.
|
1520
|
+
# google.com/cloud-search/docs/reference/rest/v1/settings.searchapplications/
|
1521
|
+
# patch). Update mask to control which fields to update. Example field paths: `
|
1522
|
+
# search_application.name`, `search_application.displayName`. * If `update_mask`
|
1523
|
+
# is non-empty, then only the fields specified in the `update_mask` are updated.
|
1524
|
+
# * If you specify a field in the `update_mask`, but don't specify its value in
|
1525
|
+
# the `search_application`, then that field is cleared. * If the `update_mask`
|
1526
|
+
# is not present or empty or has the value `*`, then all fields are updated.
|
1498
1527
|
# @param [String] fields
|
1499
1528
|
# Selector specifying which fields to include in a partial response.
|
1500
1529
|
# @param [String] quota_user
|
@@ -1512,13 +1541,14 @@ module Google
|
|
1512
1541
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1513
1542
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1514
1543
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1515
|
-
def update_setting_searchapplication(name, search_application_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1544
|
+
def update_setting_searchapplication(name, search_application_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1516
1545
|
command = make_simple_command(:put, 'v1/settings/{+name}', options)
|
1517
1546
|
command.request_representation = Google::Apis::CloudsearchV1::SearchApplication::Representation
|
1518
1547
|
command.request_object = search_application_object
|
1519
1548
|
command.response_representation = Google::Apis::CloudsearchV1::Operation::Representation
|
1520
1549
|
command.response_class = Google::Apis::CloudsearchV1::Operation
|
1521
1550
|
command.params['name'] = name unless name.nil?
|
1551
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1522
1552
|
command.query['fields'] = fields unless fields.nil?
|
1523
1553
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1524
1554
|
execute_or_queue_command(command, &block)
|
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.39.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-10-
|
11
|
+
date: 2022-10-31 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.9.
|
19
|
+
version: 0.9.1
|
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.9.
|
29
|
+
version: 0.9.1
|
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.39.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: []
|