google-apis-discoveryengine_v1 0.52.0 → 0.54.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_v1/classes.rb +1253 -53
- data/lib/google/apis/discoveryengine_v1/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1/representations.rb +500 -0
- data/lib/google/apis/discoveryengine_v1/service.rb +249 -15
- metadata +2 -2
|
@@ -648,6 +648,13 @@ module Google
|
|
|
648
648
|
# The standard list page size.
|
|
649
649
|
# @param [String] page_token
|
|
650
650
|
# The standard list page token.
|
|
651
|
+
# @param [Boolean] return_partial_success
|
|
652
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
653
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
654
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
655
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
656
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
657
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
651
658
|
# @param [String] fields
|
|
652
659
|
# Selector specifying which fields to include in a partial response.
|
|
653
660
|
# @param [String] quota_user
|
|
@@ -665,7 +672,7 @@ module Google
|
|
|
665
672
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
666
673
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
667
674
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
668
|
-
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)
|
|
675
|
+
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)
|
|
669
676
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
670
677
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
671
678
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -673,6 +680,7 @@ module Google
|
|
|
673
680
|
command.query['filter'] = filter unless filter.nil?
|
|
674
681
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
675
682
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
683
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
676
684
|
command.query['fields'] = fields unless fields.nil?
|
|
677
685
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
678
686
|
execute_or_queue_command(command, &block)
|
|
@@ -1430,6 +1438,13 @@ module Google
|
|
|
1430
1438
|
# The standard list page size.
|
|
1431
1439
|
# @param [String] page_token
|
|
1432
1440
|
# The standard list page token.
|
|
1441
|
+
# @param [Boolean] return_partial_success
|
|
1442
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1443
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
1444
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
1445
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
1446
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
1447
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
1433
1448
|
# @param [String] fields
|
|
1434
1449
|
# Selector specifying which fields to include in a partial response.
|
|
1435
1450
|
# @param [String] quota_user
|
|
@@ -1447,7 +1462,7 @@ module Google
|
|
|
1447
1462
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1448
1463
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1449
1464
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1450
|
-
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)
|
|
1465
|
+
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)
|
|
1451
1466
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
1452
1467
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
1453
1468
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -1455,6 +1470,7 @@ module Google
|
|
|
1455
1470
|
command.query['filter'] = filter unless filter.nil?
|
|
1456
1471
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1457
1472
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1473
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
1458
1474
|
command.query['fields'] = fields unless fields.nil?
|
|
1459
1475
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1460
1476
|
execute_or_queue_command(command, &block)
|
|
@@ -2059,6 +2075,13 @@ module Google
|
|
|
2059
2075
|
# The standard list page size.
|
|
2060
2076
|
# @param [String] page_token
|
|
2061
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.
|
|
2062
2085
|
# @param [String] fields
|
|
2063
2086
|
# Selector specifying which fields to include in a partial response.
|
|
2064
2087
|
# @param [String] quota_user
|
|
@@ -2076,7 +2099,7 @@ module Google
|
|
|
2076
2099
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2077
2100
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2078
2101
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2079
|
-
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)
|
|
2102
|
+
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)
|
|
2080
2103
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
2081
2104
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
2082
2105
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -2084,6 +2107,7 @@ module Google
|
|
|
2084
2107
|
command.query['filter'] = filter unless filter.nil?
|
|
2085
2108
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
2086
2109
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
2110
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
2087
2111
|
command.query['fields'] = fields unless fields.nil?
|
|
2088
2112
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2089
2113
|
execute_or_queue_command(command, &block)
|
|
@@ -2130,6 +2154,13 @@ module Google
|
|
|
2130
2154
|
# The standard list page size.
|
|
2131
2155
|
# @param [String] page_token
|
|
2132
2156
|
# The standard list page token.
|
|
2157
|
+
# @param [Boolean] return_partial_success
|
|
2158
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
2159
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
2160
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
2161
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
2162
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
2163
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
2133
2164
|
# @param [String] fields
|
|
2134
2165
|
# Selector specifying which fields to include in a partial response.
|
|
2135
2166
|
# @param [String] quota_user
|
|
@@ -2147,7 +2178,7 @@ module Google
|
|
|
2147
2178
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2148
2179
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2149
2180
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2150
|
-
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)
|
|
2181
|
+
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)
|
|
2151
2182
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
2152
2183
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
2153
2184
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -2155,6 +2186,7 @@ module Google
|
|
|
2155
2186
|
command.query['filter'] = filter unless filter.nil?
|
|
2156
2187
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
2157
2188
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
2189
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
2158
2190
|
command.query['fields'] = fields unless fields.nil?
|
|
2159
2191
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2160
2192
|
execute_or_queue_command(command, &block)
|
|
@@ -2388,6 +2420,13 @@ module Google
|
|
|
2388
2420
|
# The standard list page size.
|
|
2389
2421
|
# @param [String] page_token
|
|
2390
2422
|
# The standard list page token.
|
|
2423
|
+
# @param [Boolean] return_partial_success
|
|
2424
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
2425
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
2426
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
2427
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
2428
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
2429
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
2391
2430
|
# @param [String] fields
|
|
2392
2431
|
# Selector specifying which fields to include in a partial response.
|
|
2393
2432
|
# @param [String] quota_user
|
|
@@ -2405,7 +2444,7 @@ module Google
|
|
|
2405
2444
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2406
2445
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2407
2446
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2408
|
-
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)
|
|
2447
|
+
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)
|
|
2409
2448
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
2410
2449
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
2411
2450
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -2413,6 +2452,7 @@ module Google
|
|
|
2413
2452
|
command.query['filter'] = filter unless filter.nil?
|
|
2414
2453
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
2415
2454
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
2455
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
2416
2456
|
command.query['fields'] = fields unless fields.nil?
|
|
2417
2457
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2418
2458
|
execute_or_queue_command(command, &block)
|
|
@@ -3113,6 +3153,13 @@ module Google
|
|
|
3113
3153
|
# The standard list page size.
|
|
3114
3154
|
# @param [String] page_token
|
|
3115
3155
|
# The standard list page token.
|
|
3156
|
+
# @param [Boolean] return_partial_success
|
|
3157
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
3158
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
3159
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
3160
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
3161
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
3162
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
3116
3163
|
# @param [String] fields
|
|
3117
3164
|
# Selector specifying which fields to include in a partial response.
|
|
3118
3165
|
# @param [String] quota_user
|
|
@@ -3130,7 +3177,7 @@ module Google
|
|
|
3130
3177
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3131
3178
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3132
3179
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3133
|
-
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)
|
|
3180
|
+
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)
|
|
3134
3181
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
3135
3182
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
3136
3183
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -3138,6 +3185,7 @@ module Google
|
|
|
3138
3185
|
command.query['filter'] = filter unless filter.nil?
|
|
3139
3186
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
3140
3187
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
3188
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
3141
3189
|
command.query['fields'] = fields unless fields.nil?
|
|
3142
3190
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3143
3191
|
execute_or_queue_command(command, &block)
|
|
@@ -3509,6 +3557,13 @@ module Google
|
|
|
3509
3557
|
# The standard list page size.
|
|
3510
3558
|
# @param [String] page_token
|
|
3511
3559
|
# The standard list page token.
|
|
3560
|
+
# @param [Boolean] return_partial_success
|
|
3561
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
3562
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
3563
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
3564
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
3565
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
3566
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
3512
3567
|
# @param [String] fields
|
|
3513
3568
|
# Selector specifying which fields to include in a partial response.
|
|
3514
3569
|
# @param [String] quota_user
|
|
@@ -3526,7 +3581,7 @@ module Google
|
|
|
3526
3581
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3527
3582
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3528
3583
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3529
|
-
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)
|
|
3584
|
+
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)
|
|
3530
3585
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
3531
3586
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
3532
3587
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -3534,6 +3589,7 @@ module Google
|
|
|
3534
3589
|
command.query['filter'] = filter unless filter.nil?
|
|
3535
3590
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
3536
3591
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
3592
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
3537
3593
|
command.query['fields'] = fields unless fields.nil?
|
|
3538
3594
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3539
3595
|
execute_or_queue_command(command, &block)
|
|
@@ -4607,6 +4663,13 @@ module Google
|
|
|
4607
4663
|
# The standard list page size.
|
|
4608
4664
|
# @param [String] page_token
|
|
4609
4665
|
# The standard list page token.
|
|
4666
|
+
# @param [Boolean] return_partial_success
|
|
4667
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
4668
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
4669
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
4670
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
4671
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
4672
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
4610
4673
|
# @param [String] fields
|
|
4611
4674
|
# Selector specifying which fields to include in a partial response.
|
|
4612
4675
|
# @param [String] quota_user
|
|
@@ -4624,7 +4687,7 @@ module Google
|
|
|
4624
4687
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
4625
4688
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
4626
4689
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
4627
|
-
def list_project_location_collection_engine_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
4690
|
+
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)
|
|
4628
4691
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
4629
4692
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
4630
4693
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -4632,6 +4695,7 @@ module Google
|
|
|
4632
4695
|
command.query['filter'] = filter unless filter.nil?
|
|
4633
4696
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
4634
4697
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
4698
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
4635
4699
|
command.query['fields'] = fields unless fields.nil?
|
|
4636
4700
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
4637
4701
|
execute_or_queue_command(command, &block)
|
|
@@ -5149,6 +5213,13 @@ module Google
|
|
|
5149
5213
|
# The standard list page size.
|
|
5150
5214
|
# @param [String] page_token
|
|
5151
5215
|
# The standard list page token.
|
|
5216
|
+
# @param [Boolean] return_partial_success
|
|
5217
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
5218
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
5219
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
5220
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
5221
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
5222
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
5152
5223
|
# @param [String] fields
|
|
5153
5224
|
# Selector specifying which fields to include in a partial response.
|
|
5154
5225
|
# @param [String] quota_user
|
|
@@ -5166,7 +5237,7 @@ module Google
|
|
|
5166
5237
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
5167
5238
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
5168
5239
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
5169
|
-
def list_project_location_collection_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
5240
|
+
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)
|
|
5170
5241
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
5171
5242
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
5172
5243
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -5174,6 +5245,7 @@ module Google
|
|
|
5174
5245
|
command.query['filter'] = filter unless filter.nil?
|
|
5175
5246
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
5176
5247
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
5248
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
5177
5249
|
command.query['fields'] = fields unless fields.nil?
|
|
5178
5250
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
5179
5251
|
execute_or_queue_command(command, &block)
|
|
@@ -5896,6 +5968,13 @@ module Google
|
|
|
5896
5968
|
# The standard list page size.
|
|
5897
5969
|
# @param [String] page_token
|
|
5898
5970
|
# The standard list page token.
|
|
5971
|
+
# @param [Boolean] return_partial_success
|
|
5972
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
5973
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
5974
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
5975
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
5976
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
5977
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
5899
5978
|
# @param [String] fields
|
|
5900
5979
|
# Selector specifying which fields to include in a partial response.
|
|
5901
5980
|
# @param [String] quota_user
|
|
@@ -5913,7 +5992,7 @@ module Google
|
|
|
5913
5992
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
5914
5993
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
5915
5994
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
5916
|
-
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)
|
|
5995
|
+
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)
|
|
5917
5996
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
5918
5997
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
5919
5998
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -5921,6 +6000,7 @@ module Google
|
|
|
5921
6000
|
command.query['filter'] = filter unless filter.nil?
|
|
5922
6001
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
5923
6002
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
6003
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
5924
6004
|
command.query['fields'] = fields unless fields.nil?
|
|
5925
6005
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
5926
6006
|
execute_or_queue_command(command, &block)
|
|
@@ -6493,6 +6573,13 @@ module Google
|
|
|
6493
6573
|
# The standard list page size.
|
|
6494
6574
|
# @param [String] page_token
|
|
6495
6575
|
# The standard list page token.
|
|
6576
|
+
# @param [Boolean] return_partial_success
|
|
6577
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
6578
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
6579
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
6580
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
6581
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
6582
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
6496
6583
|
# @param [String] fields
|
|
6497
6584
|
# Selector specifying which fields to include in a partial response.
|
|
6498
6585
|
# @param [String] quota_user
|
|
@@ -6510,7 +6597,7 @@ module Google
|
|
|
6510
6597
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
6511
6598
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
6512
6599
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
6513
|
-
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)
|
|
6600
|
+
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)
|
|
6514
6601
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
6515
6602
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
6516
6603
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -6518,6 +6605,7 @@ module Google
|
|
|
6518
6605
|
command.query['filter'] = filter unless filter.nil?
|
|
6519
6606
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
6520
6607
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
6608
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
6521
6609
|
command.query['fields'] = fields unless fields.nil?
|
|
6522
6610
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
6523
6611
|
execute_or_queue_command(command, &block)
|
|
@@ -6564,6 +6652,13 @@ module Google
|
|
|
6564
6652
|
# The standard list page size.
|
|
6565
6653
|
# @param [String] page_token
|
|
6566
6654
|
# The standard list page token.
|
|
6655
|
+
# @param [Boolean] return_partial_success
|
|
6656
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
6657
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
6658
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
6659
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
6660
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
6661
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
6567
6662
|
# @param [String] fields
|
|
6568
6663
|
# Selector specifying which fields to include in a partial response.
|
|
6569
6664
|
# @param [String] quota_user
|
|
@@ -6581,7 +6676,7 @@ module Google
|
|
|
6581
6676
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
6582
6677
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
6583
6678
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
6584
|
-
def list_project_location_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
6679
|
+
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)
|
|
6585
6680
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
6586
6681
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
6587
6682
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -6589,6 +6684,7 @@ module Google
|
|
|
6589
6684
|
command.query['filter'] = filter unless filter.nil?
|
|
6590
6685
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
6591
6686
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
6687
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
6592
6688
|
command.query['fields'] = fields unless fields.nil?
|
|
6593
6689
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
6594
6690
|
execute_or_queue_command(command, &block)
|
|
@@ -8258,6 +8354,13 @@ module Google
|
|
|
8258
8354
|
# The standard list page size.
|
|
8259
8355
|
# @param [String] page_token
|
|
8260
8356
|
# The standard list page token.
|
|
8357
|
+
# @param [Boolean] return_partial_success
|
|
8358
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
8359
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
8360
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
8361
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
8362
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
8363
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
8261
8364
|
# @param [String] fields
|
|
8262
8365
|
# Selector specifying which fields to include in a partial response.
|
|
8263
8366
|
# @param [String] quota_user
|
|
@@ -8275,7 +8378,7 @@ module Google
|
|
|
8275
8378
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
8276
8379
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
8277
8380
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
8278
|
-
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)
|
|
8381
|
+
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)
|
|
8279
8382
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
8280
8383
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
8281
8384
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -8283,6 +8386,121 @@ module Google
|
|
|
8283
8386
|
command.query['filter'] = filter unless filter.nil?
|
|
8284
8387
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
8285
8388
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
8389
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
8390
|
+
command.query['fields'] = fields unless fields.nil?
|
|
8391
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
8392
|
+
execute_or_queue_command(command, &block)
|
|
8393
|
+
end
|
|
8394
|
+
|
|
8395
|
+
# Creates a LicenseConfig
|
|
8396
|
+
# @param [String] parent
|
|
8397
|
+
# Required. The parent resource name, such as `projects/`project`/locations/`
|
|
8398
|
+
# location``.
|
|
8399
|
+
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig] google_cloud_discoveryengine_v1_license_config_object
|
|
8400
|
+
# @param [String] license_config_id
|
|
8401
|
+
# Optional. The ID to use for the LicenseConfig, which will become the final
|
|
8402
|
+
# component of the LicenseConfig's resource name. We are using the tier (product
|
|
8403
|
+
# edition) name as the license config id such as `search` or `
|
|
8404
|
+
# search_and_assistant`.
|
|
8405
|
+
# @param [String] fields
|
|
8406
|
+
# Selector specifying which fields to include in a partial response.
|
|
8407
|
+
# @param [String] quota_user
|
|
8408
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
8409
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
8410
|
+
# @param [Google::Apis::RequestOptions] options
|
|
8411
|
+
# Request-specific options
|
|
8412
|
+
#
|
|
8413
|
+
# @yield [result, err] Result & error if block supplied
|
|
8414
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig] parsed result object
|
|
8415
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
8416
|
+
#
|
|
8417
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig]
|
|
8418
|
+
#
|
|
8419
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
8420
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
8421
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
8422
|
+
def create_project_location_license_config(parent, google_cloud_discoveryengine_v1_license_config_object = nil, license_config_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
8423
|
+
command = make_simple_command(:post, 'v1/{+parent}/licenseConfigs', options)
|
|
8424
|
+
command.request_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig::Representation
|
|
8425
|
+
command.request_object = google_cloud_discoveryengine_v1_license_config_object
|
|
8426
|
+
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig::Representation
|
|
8427
|
+
command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig
|
|
8428
|
+
command.params['parent'] = parent unless parent.nil?
|
|
8429
|
+
command.query['licenseConfigId'] = license_config_id unless license_config_id.nil?
|
|
8430
|
+
command.query['fields'] = fields unless fields.nil?
|
|
8431
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
8432
|
+
execute_or_queue_command(command, &block)
|
|
8433
|
+
end
|
|
8434
|
+
|
|
8435
|
+
# Gets a LicenseConfig.
|
|
8436
|
+
# @param [String] name
|
|
8437
|
+
# Required. Full resource name of LicenseConfig, such as `projects/`project`/
|
|
8438
|
+
# locations/`location`/licenseConfigs/*`. If the caller does not have permission
|
|
8439
|
+
# to access the LicenseConfig, regardless of whether or not it exists, a
|
|
8440
|
+
# PERMISSION_DENIED error is returned. If the requested LicenseConfig does not
|
|
8441
|
+
# exist, a NOT_FOUND error is returned.
|
|
8442
|
+
# @param [String] fields
|
|
8443
|
+
# Selector specifying which fields to include in a partial response.
|
|
8444
|
+
# @param [String] quota_user
|
|
8445
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
8446
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
8447
|
+
# @param [Google::Apis::RequestOptions] options
|
|
8448
|
+
# Request-specific options
|
|
8449
|
+
#
|
|
8450
|
+
# @yield [result, err] Result & error if block supplied
|
|
8451
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig] parsed result object
|
|
8452
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
8453
|
+
#
|
|
8454
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig]
|
|
8455
|
+
#
|
|
8456
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
8457
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
8458
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
8459
|
+
def get_project_location_license_config(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
8460
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
8461
|
+
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig::Representation
|
|
8462
|
+
command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig
|
|
8463
|
+
command.params['name'] = name unless name.nil?
|
|
8464
|
+
command.query['fields'] = fields unless fields.nil?
|
|
8465
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
8466
|
+
execute_or_queue_command(command, &block)
|
|
8467
|
+
end
|
|
8468
|
+
|
|
8469
|
+
# Updates the LicenseConfig
|
|
8470
|
+
# @param [String] name
|
|
8471
|
+
# Immutable. Identifier. The fully qualified resource name of the license config.
|
|
8472
|
+
# Format: `projects/`project`/locations/`location`/licenseConfigs/`
|
|
8473
|
+
# license_config``
|
|
8474
|
+
# @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig] google_cloud_discoveryengine_v1_license_config_object
|
|
8475
|
+
# @param [String] update_mask
|
|
8476
|
+
# Optional. Indicates which fields in the provided LicenseConfig to update. If
|
|
8477
|
+
# an unsupported or unknown field is provided, an INVALID_ARGUMENT error is
|
|
8478
|
+
# returned.
|
|
8479
|
+
# @param [String] fields
|
|
8480
|
+
# Selector specifying which fields to include in a partial response.
|
|
8481
|
+
# @param [String] quota_user
|
|
8482
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
8483
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
8484
|
+
# @param [Google::Apis::RequestOptions] options
|
|
8485
|
+
# Request-specific options
|
|
8486
|
+
#
|
|
8487
|
+
# @yield [result, err] Result & error if block supplied
|
|
8488
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig] parsed result object
|
|
8489
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
8490
|
+
#
|
|
8491
|
+
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig]
|
|
8492
|
+
#
|
|
8493
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
8494
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
8495
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
8496
|
+
def patch_project_location_license_config(name, google_cloud_discoveryengine_v1_license_config_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
8497
|
+
command = make_simple_command(:patch, 'v1/{+name}', options)
|
|
8498
|
+
command.request_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig::Representation
|
|
8499
|
+
command.request_object = google_cloud_discoveryengine_v1_license_config_object
|
|
8500
|
+
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig::Representation
|
|
8501
|
+
command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1LicenseConfig
|
|
8502
|
+
command.params['name'] = name unless name.nil?
|
|
8503
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
8286
8504
|
command.query['fields'] = fields unless fields.nil?
|
|
8287
8505
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
8288
8506
|
execute_or_queue_command(command, &block)
|
|
@@ -8329,6 +8547,13 @@ module Google
|
|
|
8329
8547
|
# The standard list page size.
|
|
8330
8548
|
# @param [String] page_token
|
|
8331
8549
|
# The standard list page token.
|
|
8550
|
+
# @param [Boolean] return_partial_success
|
|
8551
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
8552
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
8553
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
8554
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
8555
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
8556
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
8332
8557
|
# @param [String] fields
|
|
8333
8558
|
# Selector specifying which fields to include in a partial response.
|
|
8334
8559
|
# @param [String] quota_user
|
|
@@ -8346,7 +8571,7 @@ module Google
|
|
|
8346
8571
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
8347
8572
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
8348
8573
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
8349
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
8574
|
+
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)
|
|
8350
8575
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
8351
8576
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
8352
8577
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -8354,6 +8579,7 @@ module Google
|
|
|
8354
8579
|
command.query['filter'] = filter unless filter.nil?
|
|
8355
8580
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
8356
8581
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
8582
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
8357
8583
|
command.query['fields'] = fields unless fields.nil?
|
|
8358
8584
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
8359
8585
|
execute_or_queue_command(command, &block)
|
|
@@ -8724,6 +8950,13 @@ module Google
|
|
|
8724
8950
|
# The standard list page size.
|
|
8725
8951
|
# @param [String] page_token
|
|
8726
8952
|
# The standard list page token.
|
|
8953
|
+
# @param [Boolean] return_partial_success
|
|
8954
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
8955
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
8956
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
8957
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
8958
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
8959
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
8727
8960
|
# @param [String] fields
|
|
8728
8961
|
# Selector specifying which fields to include in a partial response.
|
|
8729
8962
|
# @param [String] quota_user
|
|
@@ -8741,7 +8974,7 @@ module Google
|
|
|
8741
8974
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
8742
8975
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
8743
8976
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
8744
|
-
def list_project_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
8977
|
+
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)
|
|
8745
8978
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
8746
8979
|
command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse::Representation
|
|
8747
8980
|
command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningListOperationsResponse
|
|
@@ -8749,6 +8982,7 @@ module Google
|
|
|
8749
8982
|
command.query['filter'] = filter unless filter.nil?
|
|
8750
8983
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
8751
8984
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
8985
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
8752
8986
|
command.query['fields'] = fields unless fields.nil?
|
|
8753
8987
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
8754
8988
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-discoveryengine_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.54.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.54.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|