google-apis-discoveryengine_v1beta 0.83.0 → 0.85.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/discoveryengine_v1beta/classes.rb +1193 -55
- data/lib/google/apis/discoveryengine_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1beta/representations.rb +482 -0
- data/lib/google/apis/discoveryengine_v1beta/service.rb +249 -15
- metadata +2 -2
@@ -569,6 +569,13 @@ module Google
|
|
569
569
|
# The standard list page size.
|
570
570
|
# @param [String] page_token
|
571
571
|
# The standard list page token.
|
572
|
+
# @param [Boolean] return_partial_success
|
573
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
574
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
575
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
576
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
577
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
578
|
+
# explicitly documented otherwise in service or product specific documentation.
|
572
579
|
# @param [String] fields
|
573
580
|
# Selector specifying which fields to include in a partial response.
|
574
581
|
# @param [String] quota_user
|
@@ -586,7 +593,7 @@ module Google
|
|
586
593
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
587
594
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
588
595
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
589
|
-
def list_project_location_collection_data_connector_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
596
|
+
def list_project_location_collection_data_connector_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
590
597
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
591
598
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
592
599
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -594,6 +601,7 @@ module Google
|
|
594
601
|
command.query['filter'] = filter unless filter.nil?
|
595
602
|
command.query['pageSize'] = page_size unless page_size.nil?
|
596
603
|
command.query['pageToken'] = page_token unless page_token.nil?
|
604
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
597
605
|
command.query['fields'] = fields unless fields.nil?
|
598
606
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
599
607
|
execute_or_queue_command(command, &block)
|
@@ -1351,6 +1359,13 @@ module Google
|
|
1351
1359
|
# The standard list page size.
|
1352
1360
|
# @param [String] page_token
|
1353
1361
|
# The standard list page token.
|
1362
|
+
# @param [Boolean] return_partial_success
|
1363
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
1364
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
1365
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
1366
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
1367
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
1368
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1354
1369
|
# @param [String] fields
|
1355
1370
|
# Selector specifying which fields to include in a partial response.
|
1356
1371
|
# @param [String] quota_user
|
@@ -1368,7 +1383,7 @@ module Google
|
|
1368
1383
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1369
1384
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1370
1385
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1371
|
-
def list_project_location_collection_data_store_branch_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1386
|
+
def list_project_location_collection_data_store_branch_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1372
1387
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
1373
1388
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
1374
1389
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -1376,6 +1391,7 @@ module Google
|
|
1376
1391
|
command.query['filter'] = filter unless filter.nil?
|
1377
1392
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1378
1393
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1394
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1379
1395
|
command.query['fields'] = fields unless fields.nil?
|
1380
1396
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1381
1397
|
execute_or_queue_command(command, &block)
|
@@ -1980,6 +1996,13 @@ module Google
|
|
1980
1996
|
# The standard list page size.
|
1981
1997
|
# @param [String] page_token
|
1982
1998
|
# The standard list page token.
|
1999
|
+
# @param [Boolean] return_partial_success
|
2000
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2001
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2002
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2003
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2004
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2005
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1983
2006
|
# @param [String] fields
|
1984
2007
|
# Selector specifying which fields to include in a partial response.
|
1985
2008
|
# @param [String] quota_user
|
@@ -1997,7 +2020,7 @@ module Google
|
|
1997
2020
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1998
2021
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1999
2022
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2000
|
-
def list_project_location_collection_data_store_model_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2023
|
+
def list_project_location_collection_data_store_model_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2001
2024
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
2002
2025
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
2003
2026
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -2005,6 +2028,7 @@ module Google
|
|
2005
2028
|
command.query['filter'] = filter unless filter.nil?
|
2006
2029
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2007
2030
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2031
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2008
2032
|
command.query['fields'] = fields unless fields.nil?
|
2009
2033
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2010
2034
|
execute_or_queue_command(command, &block)
|
@@ -2051,6 +2075,13 @@ module Google
|
|
2051
2075
|
# The standard list page size.
|
2052
2076
|
# @param [String] page_token
|
2053
2077
|
# The standard list page token.
|
2078
|
+
# @param [Boolean] return_partial_success
|
2079
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2080
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2081
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2082
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2083
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2084
|
+
# explicitly documented otherwise in service or product specific documentation.
|
2054
2085
|
# @param [String] fields
|
2055
2086
|
# Selector specifying which fields to include in a partial response.
|
2056
2087
|
# @param [String] quota_user
|
@@ -2068,7 +2099,7 @@ module Google
|
|
2068
2099
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2069
2100
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2070
2101
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2071
|
-
def list_project_location_collection_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2102
|
+
def list_project_location_collection_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2072
2103
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
2073
2104
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
2074
2105
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -2076,6 +2107,7 @@ module Google
|
|
2076
2107
|
command.query['filter'] = filter unless filter.nil?
|
2077
2108
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2078
2109
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2110
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2079
2111
|
command.query['fields'] = fields unless fields.nil?
|
2080
2112
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2081
2113
|
execute_or_queue_command(command, &block)
|
@@ -2309,6 +2341,13 @@ module Google
|
|
2309
2341
|
# The standard list page size.
|
2310
2342
|
# @param [String] page_token
|
2311
2343
|
# The standard list page token.
|
2344
|
+
# @param [Boolean] return_partial_success
|
2345
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2346
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2347
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2348
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2349
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2350
|
+
# explicitly documented otherwise in service or product specific documentation.
|
2312
2351
|
# @param [String] fields
|
2313
2352
|
# Selector specifying which fields to include in a partial response.
|
2314
2353
|
# @param [String] quota_user
|
@@ -2326,7 +2365,7 @@ module Google
|
|
2326
2365
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2327
2366
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2328
2367
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2329
|
-
def list_project_location_collection_data_store_schema_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2368
|
+
def list_project_location_collection_data_store_schema_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2330
2369
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
2331
2370
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
2332
2371
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -2334,6 +2373,7 @@ module Google
|
|
2334
2373
|
command.query['filter'] = filter unless filter.nil?
|
2335
2374
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2336
2375
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2376
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2337
2377
|
command.query['fields'] = fields unless fields.nil?
|
2338
2378
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2339
2379
|
execute_or_queue_command(command, &block)
|
@@ -3106,6 +3146,13 @@ module Google
|
|
3106
3146
|
# The standard list page size.
|
3107
3147
|
# @param [String] page_token
|
3108
3148
|
# The standard list page token.
|
3149
|
+
# @param [Boolean] return_partial_success
|
3150
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
3151
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
3152
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
3153
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
3154
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
3155
|
+
# explicitly documented otherwise in service or product specific documentation.
|
3109
3156
|
# @param [String] fields
|
3110
3157
|
# Selector specifying which fields to include in a partial response.
|
3111
3158
|
# @param [String] quota_user
|
@@ -3123,7 +3170,7 @@ module Google
|
|
3123
3170
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3124
3171
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3125
3172
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3126
|
-
def list_project_location_collection_data_store_site_search_engine_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3173
|
+
def list_project_location_collection_data_store_site_search_engine_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3127
3174
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
3128
3175
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
3129
3176
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -3131,6 +3178,7 @@ module Google
|
|
3131
3178
|
command.query['filter'] = filter unless filter.nil?
|
3132
3179
|
command.query['pageSize'] = page_size unless page_size.nil?
|
3133
3180
|
command.query['pageToken'] = page_token unless page_token.nil?
|
3181
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
3134
3182
|
command.query['fields'] = fields unless fields.nil?
|
3135
3183
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3136
3184
|
execute_or_queue_command(command, &block)
|
@@ -3502,6 +3550,13 @@ module Google
|
|
3502
3550
|
# The standard list page size.
|
3503
3551
|
# @param [String] page_token
|
3504
3552
|
# The standard list page token.
|
3553
|
+
# @param [Boolean] return_partial_success
|
3554
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
3555
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
3556
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
3557
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
3558
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
3559
|
+
# explicitly documented otherwise in service or product specific documentation.
|
3505
3560
|
# @param [String] fields
|
3506
3561
|
# Selector specifying which fields to include in a partial response.
|
3507
3562
|
# @param [String] quota_user
|
@@ -3519,7 +3574,7 @@ module Google
|
|
3519
3574
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3520
3575
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3521
3576
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3522
|
-
def list_project_location_collection_data_store_site_search_engine_target_site_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3577
|
+
def list_project_location_collection_data_store_site_search_engine_target_site_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3523
3578
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
3524
3579
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
3525
3580
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -3527,6 +3582,7 @@ module Google
|
|
3527
3582
|
command.query['filter'] = filter unless filter.nil?
|
3528
3583
|
command.query['pageSize'] = page_size unless page_size.nil?
|
3529
3584
|
command.query['pageToken'] = page_token unless page_token.nil?
|
3585
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
3530
3586
|
command.query['fields'] = fields unless fields.nil?
|
3531
3587
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3532
3588
|
execute_or_queue_command(command, &block)
|
@@ -4704,6 +4760,13 @@ module Google
|
|
4704
4760
|
# The standard list page size.
|
4705
4761
|
# @param [String] page_token
|
4706
4762
|
# The standard list page token.
|
4763
|
+
# @param [Boolean] return_partial_success
|
4764
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
4765
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
4766
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
4767
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
4768
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
4769
|
+
# explicitly documented otherwise in service or product specific documentation.
|
4707
4770
|
# @param [String] fields
|
4708
4771
|
# Selector specifying which fields to include in a partial response.
|
4709
4772
|
# @param [String] quota_user
|
@@ -4721,7 +4784,7 @@ module Google
|
|
4721
4784
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4722
4785
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4723
4786
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4724
|
-
def list_project_location_collection_engine_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4787
|
+
def list_project_location_collection_engine_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4725
4788
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
4726
4789
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
4727
4790
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -4729,6 +4792,7 @@ module Google
|
|
4729
4792
|
command.query['filter'] = filter unless filter.nil?
|
4730
4793
|
command.query['pageSize'] = page_size unless page_size.nil?
|
4731
4794
|
command.query['pageToken'] = page_token unless page_token.nil?
|
4795
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
4732
4796
|
command.query['fields'] = fields unless fields.nil?
|
4733
4797
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
4734
4798
|
execute_or_queue_command(command, &block)
|
@@ -5318,6 +5382,13 @@ module Google
|
|
5318
5382
|
# The standard list page size.
|
5319
5383
|
# @param [String] page_token
|
5320
5384
|
# The standard list page token.
|
5385
|
+
# @param [Boolean] return_partial_success
|
5386
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
5387
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
5388
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
5389
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
5390
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
5391
|
+
# explicitly documented otherwise in service or product specific documentation.
|
5321
5392
|
# @param [String] fields
|
5322
5393
|
# Selector specifying which fields to include in a partial response.
|
5323
5394
|
# @param [String] quota_user
|
@@ -5335,7 +5406,7 @@ module Google
|
|
5335
5406
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5336
5407
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5337
5408
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5338
|
-
def list_project_location_collection_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5409
|
+
def list_project_location_collection_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5339
5410
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
5340
5411
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
5341
5412
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -5343,6 +5414,7 @@ module Google
|
|
5343
5414
|
command.query['filter'] = filter unless filter.nil?
|
5344
5415
|
command.query['pageSize'] = page_size unless page_size.nil?
|
5345
5416
|
command.query['pageToken'] = page_token unless page_token.nil?
|
5417
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
5346
5418
|
command.query['fields'] = fields unless fields.nil?
|
5347
5419
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5348
5420
|
execute_or_queue_command(command, &block)
|
@@ -6065,6 +6137,13 @@ module Google
|
|
6065
6137
|
# The standard list page size.
|
6066
6138
|
# @param [String] page_token
|
6067
6139
|
# The standard list page token.
|
6140
|
+
# @param [Boolean] return_partial_success
|
6141
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
6142
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
6143
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
6144
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
6145
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
6146
|
+
# explicitly documented otherwise in service or product specific documentation.
|
6068
6147
|
# @param [String] fields
|
6069
6148
|
# Selector specifying which fields to include in a partial response.
|
6070
6149
|
# @param [String] quota_user
|
@@ -6082,7 +6161,7 @@ module Google
|
|
6082
6161
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6083
6162
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6084
6163
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6085
|
-
def list_project_location_data_store_branch_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6164
|
+
def list_project_location_data_store_branch_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6086
6165
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
6087
6166
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
6088
6167
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -6090,6 +6169,7 @@ module Google
|
|
6090
6169
|
command.query['filter'] = filter unless filter.nil?
|
6091
6170
|
command.query['pageSize'] = page_size unless page_size.nil?
|
6092
6171
|
command.query['pageToken'] = page_token unless page_token.nil?
|
6172
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
6093
6173
|
command.query['fields'] = fields unless fields.nil?
|
6094
6174
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6095
6175
|
execute_or_queue_command(command, &block)
|
@@ -6662,6 +6742,13 @@ module Google
|
|
6662
6742
|
# The standard list page size.
|
6663
6743
|
# @param [String] page_token
|
6664
6744
|
# The standard list page token.
|
6745
|
+
# @param [Boolean] return_partial_success
|
6746
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
6747
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
6748
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
6749
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
6750
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
6751
|
+
# explicitly documented otherwise in service or product specific documentation.
|
6665
6752
|
# @param [String] fields
|
6666
6753
|
# Selector specifying which fields to include in a partial response.
|
6667
6754
|
# @param [String] quota_user
|
@@ -6679,7 +6766,7 @@ module Google
|
|
6679
6766
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6680
6767
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6681
6768
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6682
|
-
def list_project_location_data_store_model_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6769
|
+
def list_project_location_data_store_model_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6683
6770
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
6684
6771
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
6685
6772
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -6687,6 +6774,7 @@ module Google
|
|
6687
6774
|
command.query['filter'] = filter unless filter.nil?
|
6688
6775
|
command.query['pageSize'] = page_size unless page_size.nil?
|
6689
6776
|
command.query['pageToken'] = page_token unless page_token.nil?
|
6777
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
6690
6778
|
command.query['fields'] = fields unless fields.nil?
|
6691
6779
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6692
6780
|
execute_or_queue_command(command, &block)
|
@@ -6733,6 +6821,13 @@ module Google
|
|
6733
6821
|
# The standard list page size.
|
6734
6822
|
# @param [String] page_token
|
6735
6823
|
# The standard list page token.
|
6824
|
+
# @param [Boolean] return_partial_success
|
6825
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
6826
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
6827
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
6828
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
6829
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
6830
|
+
# explicitly documented otherwise in service or product specific documentation.
|
6736
6831
|
# @param [String] fields
|
6737
6832
|
# Selector specifying which fields to include in a partial response.
|
6738
6833
|
# @param [String] quota_user
|
@@ -6750,7 +6845,7 @@ module Google
|
|
6750
6845
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6751
6846
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6752
6847
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6753
|
-
def list_project_location_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6848
|
+
def list_project_location_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6754
6849
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
6755
6850
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
6756
6851
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -6758,6 +6853,7 @@ module Google
|
|
6758
6853
|
command.query['filter'] = filter unless filter.nil?
|
6759
6854
|
command.query['pageSize'] = page_size unless page_size.nil?
|
6760
6855
|
command.query['pageToken'] = page_token unless page_token.nil?
|
6856
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
6761
6857
|
command.query['fields'] = fields unless fields.nil?
|
6762
6858
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6763
6859
|
execute_or_queue_command(command, &block)
|
@@ -8691,6 +8787,13 @@ module Google
|
|
8691
8787
|
# The standard list page size.
|
8692
8788
|
# @param [String] page_token
|
8693
8789
|
# The standard list page token.
|
8790
|
+
# @param [Boolean] return_partial_success
|
8791
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
8792
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
8793
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
8794
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
8795
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
8796
|
+
# explicitly documented otherwise in service or product specific documentation.
|
8694
8797
|
# @param [String] fields
|
8695
8798
|
# Selector specifying which fields to include in a partial response.
|
8696
8799
|
# @param [String] quota_user
|
@@ -8708,7 +8811,7 @@ module Google
|
|
8708
8811
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
8709
8812
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
8710
8813
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
8711
|
-
def list_project_location_identity_mapping_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8814
|
+
def list_project_location_identity_mapping_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8712
8815
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
8713
8816
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
8714
8817
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -8716,6 +8819,121 @@ module Google
|
|
8716
8819
|
command.query['filter'] = filter unless filter.nil?
|
8717
8820
|
command.query['pageSize'] = page_size unless page_size.nil?
|
8718
8821
|
command.query['pageToken'] = page_token unless page_token.nil?
|
8822
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
8823
|
+
command.query['fields'] = fields unless fields.nil?
|
8824
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
8825
|
+
execute_or_queue_command(command, &block)
|
8826
|
+
end
|
8827
|
+
|
8828
|
+
# Creates a LicenseConfig
|
8829
|
+
# @param [String] parent
|
8830
|
+
# Required. The parent resource name, such as `projects/`project`/locations/`
|
8831
|
+
# location``.
|
8832
|
+
# @param [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig] google_cloud_discoveryengine_v1beta_license_config_object
|
8833
|
+
# @param [String] license_config_id
|
8834
|
+
# Optional. The ID to use for the LicenseConfig, which will become the final
|
8835
|
+
# component of the LicenseConfig's resource name. We are using the tier (product
|
8836
|
+
# edition) name as the license config id such as `search` or `
|
8837
|
+
# search_and_assistant`.
|
8838
|
+
# @param [String] fields
|
8839
|
+
# Selector specifying which fields to include in a partial response.
|
8840
|
+
# @param [String] quota_user
|
8841
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
8842
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
8843
|
+
# @param [Google::Apis::RequestOptions] options
|
8844
|
+
# Request-specific options
|
8845
|
+
#
|
8846
|
+
# @yield [result, err] Result & error if block supplied
|
8847
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig] parsed result object
|
8848
|
+
# @yieldparam err [StandardError] error object if request failed
|
8849
|
+
#
|
8850
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig]
|
8851
|
+
#
|
8852
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
8853
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
8854
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
8855
|
+
def create_project_location_license_config(parent, google_cloud_discoveryengine_v1beta_license_config_object = nil, license_config_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8856
|
+
command = make_simple_command(:post, 'v1beta/{+parent}/licenseConfigs', options)
|
8857
|
+
command.request_representation = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig::Representation
|
8858
|
+
command.request_object = google_cloud_discoveryengine_v1beta_license_config_object
|
8859
|
+
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig::Representation
|
8860
|
+
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig
|
8861
|
+
command.params['parent'] = parent unless parent.nil?
|
8862
|
+
command.query['licenseConfigId'] = license_config_id unless license_config_id.nil?
|
8863
|
+
command.query['fields'] = fields unless fields.nil?
|
8864
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
8865
|
+
execute_or_queue_command(command, &block)
|
8866
|
+
end
|
8867
|
+
|
8868
|
+
# Gets a LicenseConfig.
|
8869
|
+
# @param [String] name
|
8870
|
+
# Required. Full resource name of LicenseConfig, such as `projects/`project`/
|
8871
|
+
# locations/`location`/licenseConfigs/*`. If the caller does not have permission
|
8872
|
+
# to access the LicenseConfig, regardless of whether or not it exists, a
|
8873
|
+
# PERMISSION_DENIED error is returned. If the requested LicenseConfig does not
|
8874
|
+
# exist, a NOT_FOUND error is returned.
|
8875
|
+
# @param [String] fields
|
8876
|
+
# Selector specifying which fields to include in a partial response.
|
8877
|
+
# @param [String] quota_user
|
8878
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
8879
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
8880
|
+
# @param [Google::Apis::RequestOptions] options
|
8881
|
+
# Request-specific options
|
8882
|
+
#
|
8883
|
+
# @yield [result, err] Result & error if block supplied
|
8884
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig] parsed result object
|
8885
|
+
# @yieldparam err [StandardError] error object if request failed
|
8886
|
+
#
|
8887
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig]
|
8888
|
+
#
|
8889
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
8890
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
8891
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
8892
|
+
def get_project_location_license_config(name, fields: nil, quota_user: nil, options: nil, &block)
|
8893
|
+
command = make_simple_command(:get, 'v1beta/{+name}', options)
|
8894
|
+
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig::Representation
|
8895
|
+
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig
|
8896
|
+
command.params['name'] = name unless name.nil?
|
8897
|
+
command.query['fields'] = fields unless fields.nil?
|
8898
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
8899
|
+
execute_or_queue_command(command, &block)
|
8900
|
+
end
|
8901
|
+
|
8902
|
+
# Updates the LicenseConfig
|
8903
|
+
# @param [String] name
|
8904
|
+
# Immutable. Identifier. The fully qualified resource name of the license config.
|
8905
|
+
# Format: `projects/`project`/locations/`location`/licenseConfigs/`
|
8906
|
+
# license_config``
|
8907
|
+
# @param [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig] google_cloud_discoveryengine_v1beta_license_config_object
|
8908
|
+
# @param [String] update_mask
|
8909
|
+
# Optional. Indicates which fields in the provided LicenseConfig to update. If
|
8910
|
+
# an unsupported or unknown field is provided, an INVALID_ARGUMENT error is
|
8911
|
+
# returned.
|
8912
|
+
# @param [String] fields
|
8913
|
+
# Selector specifying which fields to include in a partial response.
|
8914
|
+
# @param [String] quota_user
|
8915
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
8916
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
8917
|
+
# @param [Google::Apis::RequestOptions] options
|
8918
|
+
# Request-specific options
|
8919
|
+
#
|
8920
|
+
# @yield [result, err] Result & error if block supplied
|
8921
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig] parsed result object
|
8922
|
+
# @yieldparam err [StandardError] error object if request failed
|
8923
|
+
#
|
8924
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig]
|
8925
|
+
#
|
8926
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
8927
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
8928
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
8929
|
+
def patch_project_location_license_config(name, google_cloud_discoveryengine_v1beta_license_config_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8930
|
+
command = make_simple_command(:patch, 'v1beta/{+name}', options)
|
8931
|
+
command.request_representation = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig::Representation
|
8932
|
+
command.request_object = google_cloud_discoveryengine_v1beta_license_config_object
|
8933
|
+
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig::Representation
|
8934
|
+
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaLicenseConfig
|
8935
|
+
command.params['name'] = name unless name.nil?
|
8936
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
8719
8937
|
command.query['fields'] = fields unless fields.nil?
|
8720
8938
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
8721
8939
|
execute_or_queue_command(command, &block)
|
@@ -8762,6 +8980,13 @@ module Google
|
|
8762
8980
|
# The standard list page size.
|
8763
8981
|
# @param [String] page_token
|
8764
8982
|
# The standard list page token.
|
8983
|
+
# @param [Boolean] return_partial_success
|
8984
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
8985
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
8986
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
8987
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
8988
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
8989
|
+
# explicitly documented otherwise in service or product specific documentation.
|
8765
8990
|
# @param [String] fields
|
8766
8991
|
# Selector specifying which fields to include in a partial response.
|
8767
8992
|
# @param [String] quota_user
|
@@ -8779,7 +9004,7 @@ module Google
|
|
8779
9004
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
8780
9005
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
8781
9006
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
8782
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
9007
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8783
9008
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
8784
9009
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
8785
9010
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -8787,6 +9012,7 @@ module Google
|
|
8787
9012
|
command.query['filter'] = filter unless filter.nil?
|
8788
9013
|
command.query['pageSize'] = page_size unless page_size.nil?
|
8789
9014
|
command.query['pageToken'] = page_token unless page_token.nil?
|
9015
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
8790
9016
|
command.query['fields'] = fields unless fields.nil?
|
8791
9017
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
8792
9018
|
execute_or_queue_command(command, &block)
|
@@ -9584,6 +9810,13 @@ module Google
|
|
9584
9810
|
# The standard list page size.
|
9585
9811
|
# @param [String] page_token
|
9586
9812
|
# The standard list page token.
|
9813
|
+
# @param [Boolean] return_partial_success
|
9814
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
9815
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
9816
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
9817
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
9818
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
9819
|
+
# explicitly documented otherwise in service or product specific documentation.
|
9587
9820
|
# @param [String] fields
|
9588
9821
|
# Selector specifying which fields to include in a partial response.
|
9589
9822
|
# @param [String] quota_user
|
@@ -9601,7 +9834,7 @@ module Google
|
|
9601
9834
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
9602
9835
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
9603
9836
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
9604
|
-
def list_project_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
9837
|
+
def list_project_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
9605
9838
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
9606
9839
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
9607
9840
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -9609,6 +9842,7 @@ module Google
|
|
9609
9842
|
command.query['filter'] = filter unless filter.nil?
|
9610
9843
|
command.query['pageSize'] = page_size unless page_size.nil?
|
9611
9844
|
command.query['pageToken'] = page_token unless page_token.nil?
|
9845
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
9612
9846
|
command.query['fields'] = fields unless fields.nil?
|
9613
9847
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
9614
9848
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.85.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.85.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|