google-apis-aiplatform_v1beta1 0.62.0 → 0.63.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 +4 -0
- data/lib/google/apis/aiplatform_v1beta1/classes.rb +378 -6
- data/lib/google/apis/aiplatform_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/aiplatform_v1beta1/representations.rb +175 -0
- data/lib/google/apis/aiplatform_v1beta1/service.rb +593 -62
- metadata +2 -2
@@ -1637,6 +1637,13 @@ module Google
|
|
1637
1637
|
# The standard list page size.
|
1638
1638
|
# @param [String] page_token
|
1639
1639
|
# The standard list page token.
|
1640
|
+
# @param [Boolean] return_partial_success
|
1641
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
1642
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
1643
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
1644
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
1645
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
1646
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1640
1647
|
# @param [String] fields
|
1641
1648
|
# Selector specifying which fields to include in a partial response.
|
1642
1649
|
# @param [String] quota_user
|
@@ -1654,7 +1661,7 @@ module Google
|
|
1654
1661
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1655
1662
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1656
1663
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1657
|
-
def list_project_location_agent_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1664
|
+
def list_project_location_agent_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1658
1665
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
1659
1666
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
1660
1667
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -1662,6 +1669,7 @@ module Google
|
|
1662
1669
|
command.query['filter'] = filter unless filter.nil?
|
1663
1670
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1664
1671
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1672
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1665
1673
|
command.query['fields'] = fields unless fields.nil?
|
1666
1674
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1667
1675
|
execute_or_queue_command(command, &block)
|
@@ -1820,6 +1828,13 @@ module Google
|
|
1820
1828
|
# The standard list page size.
|
1821
1829
|
# @param [String] page_token
|
1822
1830
|
# The standard list page token.
|
1831
|
+
# @param [Boolean] return_partial_success
|
1832
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
1833
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
1834
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
1835
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
1836
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
1837
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1823
1838
|
# @param [String] fields
|
1824
1839
|
# Selector specifying which fields to include in a partial response.
|
1825
1840
|
# @param [String] quota_user
|
@@ -1837,7 +1852,7 @@ module Google
|
|
1837
1852
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1838
1853
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1839
1854
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1840
|
-
def list_project_location_app_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1855
|
+
def list_project_location_app_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1841
1856
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
1842
1857
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
1843
1858
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -1845,6 +1860,7 @@ module Google
|
|
1845
1860
|
command.query['filter'] = filter unless filter.nil?
|
1846
1861
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1847
1862
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1863
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1848
1864
|
command.query['fields'] = fields unless fields.nil?
|
1849
1865
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1850
1866
|
execute_or_queue_command(command, &block)
|
@@ -2558,6 +2574,13 @@ module Google
|
|
2558
2574
|
# The standard list page size.
|
2559
2575
|
# @param [String] page_token
|
2560
2576
|
# The standard list page token.
|
2577
|
+
# @param [Boolean] return_partial_success
|
2578
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2579
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2580
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2581
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2582
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2583
|
+
# explicitly documented otherwise in service or product specific documentation.
|
2561
2584
|
# @param [String] fields
|
2562
2585
|
# Selector specifying which fields to include in a partial response.
|
2563
2586
|
# @param [String] quota_user
|
@@ -2575,7 +2598,7 @@ module Google
|
|
2575
2598
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2576
2599
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2577
2600
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2578
|
-
def list_project_location_custom_job_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2601
|
+
def list_project_location_custom_job_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2579
2602
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
2580
2603
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
2581
2604
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -2583,6 +2606,7 @@ module Google
|
|
2583
2606
|
command.query['filter'] = filter unless filter.nil?
|
2584
2607
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2585
2608
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2609
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2586
2610
|
command.query['fields'] = fields unless fields.nil?
|
2587
2611
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2588
2612
|
execute_or_queue_command(command, &block)
|
@@ -2929,6 +2953,13 @@ module Google
|
|
2929
2953
|
# The standard list page size.
|
2930
2954
|
# @param [String] page_token
|
2931
2955
|
# The standard list page token.
|
2956
|
+
# @param [Boolean] return_partial_success
|
2957
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2958
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2959
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2960
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2961
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2962
|
+
# explicitly documented otherwise in service or product specific documentation.
|
2932
2963
|
# @param [String] fields
|
2933
2964
|
# Selector specifying which fields to include in a partial response.
|
2934
2965
|
# @param [String] quota_user
|
@@ -2946,7 +2977,7 @@ module Google
|
|
2946
2977
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2947
2978
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2948
2979
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2949
|
-
def list_project_location_data_labeling_job_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2980
|
+
def list_project_location_data_labeling_job_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2950
2981
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
2951
2982
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
2952
2983
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -2954,6 +2985,7 @@ module Google
|
|
2954
2985
|
command.query['filter'] = filter unless filter.nil?
|
2955
2986
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2956
2987
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2988
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2957
2989
|
command.query['fields'] = fields unless fields.nil?
|
2958
2990
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2959
2991
|
execute_or_queue_command(command, &block)
|
@@ -3566,6 +3598,13 @@ module Google
|
|
3566
3598
|
# The standard list page size.
|
3567
3599
|
# @param [String] page_token
|
3568
3600
|
# The standard list page token.
|
3601
|
+
# @param [Boolean] return_partial_success
|
3602
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
3603
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
3604
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
3605
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
3606
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
3607
|
+
# explicitly documented otherwise in service or product specific documentation.
|
3569
3608
|
# @param [String] fields
|
3570
3609
|
# Selector specifying which fields to include in a partial response.
|
3571
3610
|
# @param [String] quota_user
|
@@ -3583,7 +3622,7 @@ module Google
|
|
3583
3622
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3584
3623
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3585
3624
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3586
|
-
def list_project_location_dataset_annotation_spec_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3625
|
+
def list_project_location_dataset_annotation_spec_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3587
3626
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
3588
3627
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
3589
3628
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -3591,6 +3630,7 @@ module Google
|
|
3591
3630
|
command.query['filter'] = filter unless filter.nil?
|
3592
3631
|
command.query['pageSize'] = page_size unless page_size.nil?
|
3593
3632
|
command.query['pageToken'] = page_token unless page_token.nil?
|
3633
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
3594
3634
|
command.query['fields'] = fields unless fields.nil?
|
3595
3635
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3596
3636
|
execute_or_queue_command(command, &block)
|
@@ -3844,6 +3884,13 @@ module Google
|
|
3844
3884
|
# The standard list page size.
|
3845
3885
|
# @param [String] page_token
|
3846
3886
|
# The standard list page token.
|
3887
|
+
# @param [Boolean] return_partial_success
|
3888
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
3889
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
3890
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
3891
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
3892
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
3893
|
+
# explicitly documented otherwise in service or product specific documentation.
|
3847
3894
|
# @param [String] fields
|
3848
3895
|
# Selector specifying which fields to include in a partial response.
|
3849
3896
|
# @param [String] quota_user
|
@@ -3861,7 +3908,7 @@ module Google
|
|
3861
3908
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3862
3909
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3863
3910
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3864
|
-
def list_project_location_dataset_data_item_annotation_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3911
|
+
def list_project_location_dataset_data_item_annotation_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3865
3912
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
3866
3913
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
3867
3914
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -3869,6 +3916,7 @@ module Google
|
|
3869
3916
|
command.query['filter'] = filter unless filter.nil?
|
3870
3917
|
command.query['pageSize'] = page_size unless page_size.nil?
|
3871
3918
|
command.query['pageToken'] = page_token unless page_token.nil?
|
3919
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
3872
3920
|
command.query['fields'] = fields unless fields.nil?
|
3873
3921
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3874
3922
|
execute_or_queue_command(command, &block)
|
@@ -4027,6 +4075,13 @@ module Google
|
|
4027
4075
|
# The standard list page size.
|
4028
4076
|
# @param [String] page_token
|
4029
4077
|
# The standard list page token.
|
4078
|
+
# @param [Boolean] return_partial_success
|
4079
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
4080
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
4081
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
4082
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
4083
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
4084
|
+
# explicitly documented otherwise in service or product specific documentation.
|
4030
4085
|
# @param [String] fields
|
4031
4086
|
# Selector specifying which fields to include in a partial response.
|
4032
4087
|
# @param [String] quota_user
|
@@ -4044,7 +4099,7 @@ module Google
|
|
4044
4099
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4045
4100
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4046
4101
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4047
|
-
def list_project_location_dataset_data_item_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4102
|
+
def list_project_location_dataset_data_item_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4048
4103
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
4049
4104
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
4050
4105
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -4052,6 +4107,7 @@ module Google
|
|
4052
4107
|
command.query['filter'] = filter unless filter.nil?
|
4053
4108
|
command.query['pageSize'] = page_size unless page_size.nil?
|
4054
4109
|
command.query['pageToken'] = page_token unless page_token.nil?
|
4110
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
4055
4111
|
command.query['fields'] = fields unless fields.nil?
|
4056
4112
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
4057
4113
|
execute_or_queue_command(command, &block)
|
@@ -4428,6 +4484,13 @@ module Google
|
|
4428
4484
|
# The standard list page size.
|
4429
4485
|
# @param [String] page_token
|
4430
4486
|
# The standard list page token.
|
4487
|
+
# @param [Boolean] return_partial_success
|
4488
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
4489
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
4490
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
4491
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
4492
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
4493
|
+
# explicitly documented otherwise in service or product specific documentation.
|
4431
4494
|
# @param [String] fields
|
4432
4495
|
# Selector specifying which fields to include in a partial response.
|
4433
4496
|
# @param [String] quota_user
|
@@ -4445,7 +4508,7 @@ module Google
|
|
4445
4508
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4446
4509
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4447
4510
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4448
|
-
def list_project_location_dataset_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4511
|
+
def list_project_location_dataset_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4449
4512
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
4450
4513
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
4451
4514
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -4453,6 +4516,7 @@ module Google
|
|
4453
4516
|
command.query['filter'] = filter unless filter.nil?
|
4454
4517
|
command.query['pageSize'] = page_size unless page_size.nil?
|
4455
4518
|
command.query['pageToken'] = page_token unless page_token.nil?
|
4519
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
4456
4520
|
command.query['fields'] = fields unless fields.nil?
|
4457
4521
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
4458
4522
|
execute_or_queue_command(command, &block)
|
@@ -4689,6 +4753,13 @@ module Google
|
|
4689
4753
|
# The standard list page size.
|
4690
4754
|
# @param [String] page_token
|
4691
4755
|
# The standard list page token.
|
4756
|
+
# @param [Boolean] return_partial_success
|
4757
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
4758
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
4759
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
4760
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
4761
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
4762
|
+
# explicitly documented otherwise in service or product specific documentation.
|
4692
4763
|
# @param [String] fields
|
4693
4764
|
# Selector specifying which fields to include in a partial response.
|
4694
4765
|
# @param [String] quota_user
|
@@ -4706,7 +4777,7 @@ module Google
|
|
4706
4777
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4707
4778
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4708
4779
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4709
|
-
def list_project_location_dataset_saved_query_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4780
|
+
def list_project_location_dataset_saved_query_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4710
4781
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
4711
4782
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
4712
4783
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -4714,6 +4785,7 @@ module Google
|
|
4714
4785
|
command.query['filter'] = filter unless filter.nil?
|
4715
4786
|
command.query['pageSize'] = page_size unless page_size.nil?
|
4716
4787
|
command.query['pageToken'] = page_token unless page_token.nil?
|
4788
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
4717
4789
|
command.query['fields'] = fields unless fields.nil?
|
4718
4790
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
4719
4791
|
execute_or_queue_command(command, &block)
|
@@ -5091,6 +5163,13 @@ module Google
|
|
5091
5163
|
# The standard list page size.
|
5092
5164
|
# @param [String] page_token
|
5093
5165
|
# The standard list page token.
|
5166
|
+
# @param [Boolean] return_partial_success
|
5167
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
5168
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
5169
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
5170
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
5171
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
5172
|
+
# explicitly documented otherwise in service or product specific documentation.
|
5094
5173
|
# @param [String] fields
|
5095
5174
|
# Selector specifying which fields to include in a partial response.
|
5096
5175
|
# @param [String] quota_user
|
@@ -5108,7 +5187,7 @@ module Google
|
|
5108
5187
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5109
5188
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5110
5189
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5111
|
-
def list_project_location_deployment_resource_pool_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5190
|
+
def list_project_location_deployment_resource_pool_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5112
5191
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
5113
5192
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
5114
5193
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -5116,6 +5195,7 @@ module Google
|
|
5116
5195
|
command.query['filter'] = filter unless filter.nil?
|
5117
5196
|
command.query['pageSize'] = page_size unless page_size.nil?
|
5118
5197
|
command.query['pageToken'] = page_token unless page_token.nil?
|
5198
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
5119
5199
|
command.query['fields'] = fields unless fields.nil?
|
5120
5200
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5121
5201
|
execute_or_queue_command(command, &block)
|
@@ -5274,6 +5354,13 @@ module Google
|
|
5274
5354
|
# The standard list page size.
|
5275
5355
|
# @param [String] page_token
|
5276
5356
|
# The standard list page token.
|
5357
|
+
# @param [Boolean] return_partial_success
|
5358
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
5359
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
5360
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
5361
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
5362
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
5363
|
+
# explicitly documented otherwise in service or product specific documentation.
|
5277
5364
|
# @param [String] fields
|
5278
5365
|
# Selector specifying which fields to include in a partial response.
|
5279
5366
|
# @param [String] quota_user
|
@@ -5291,7 +5378,7 @@ module Google
|
|
5291
5378
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5292
5379
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5293
5380
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5294
|
-
def list_project_location_edge_device_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5381
|
+
def list_project_location_edge_device_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5295
5382
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
5296
5383
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
5297
5384
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -5299,6 +5386,7 @@ module Google
|
|
5299
5386
|
command.query['filter'] = filter unless filter.nil?
|
5300
5387
|
command.query['pageSize'] = page_size unless page_size.nil?
|
5301
5388
|
command.query['pageToken'] = page_token unless page_token.nil?
|
5389
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
5302
5390
|
command.query['fields'] = fields unless fields.nil?
|
5303
5391
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5304
5392
|
execute_or_queue_command(command, &block)
|
@@ -6531,6 +6619,13 @@ module Google
|
|
6531
6619
|
# The standard list page size.
|
6532
6620
|
# @param [String] page_token
|
6533
6621
|
# The standard list page token.
|
6622
|
+
# @param [Boolean] return_partial_success
|
6623
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
6624
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
6625
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
6626
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
6627
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
6628
|
+
# explicitly documented otherwise in service or product specific documentation.
|
6534
6629
|
# @param [String] fields
|
6535
6630
|
# Selector specifying which fields to include in a partial response.
|
6536
6631
|
# @param [String] quota_user
|
@@ -6548,7 +6643,7 @@ module Google
|
|
6548
6643
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6549
6644
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6550
6645
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6551
|
-
def list_project_location_endpoint_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6646
|
+
def list_project_location_endpoint_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6552
6647
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
6553
6648
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
6554
6649
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -6556,6 +6651,7 @@ module Google
|
|
6556
6651
|
command.query['filter'] = filter unless filter.nil?
|
6557
6652
|
command.query['pageSize'] = page_size unless page_size.nil?
|
6558
6653
|
command.query['pageToken'] = page_token unless page_token.nil?
|
6654
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
6559
6655
|
command.query['fields'] = fields unless fields.nil?
|
6560
6656
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6561
6657
|
execute_or_queue_command(command, &block)
|
@@ -6820,6 +6916,13 @@ module Google
|
|
6820
6916
|
# The standard list page size.
|
6821
6917
|
# @param [String] page_token
|
6822
6918
|
# The standard list page token.
|
6919
|
+
# @param [Boolean] return_partial_success
|
6920
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
6921
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
6922
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
6923
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
6924
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
6925
|
+
# explicitly documented otherwise in service or product specific documentation.
|
6823
6926
|
# @param [String] fields
|
6824
6927
|
# Selector specifying which fields to include in a partial response.
|
6825
6928
|
# @param [String] quota_user
|
@@ -6837,7 +6940,7 @@ module Google
|
|
6837
6940
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6838
6941
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6839
6942
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6840
|
-
def list_project_location_evaluation_item_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6943
|
+
def list_project_location_evaluation_item_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6841
6944
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
6842
6945
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
6843
6946
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -6845,6 +6948,7 @@ module Google
|
|
6845
6948
|
command.query['filter'] = filter unless filter.nil?
|
6846
6949
|
command.query['pageSize'] = page_size unless page_size.nil?
|
6847
6950
|
command.query['pageToken'] = page_token unless page_token.nil?
|
6951
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
6848
6952
|
command.query['fields'] = fields unless fields.nil?
|
6849
6953
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6850
6954
|
execute_or_queue_command(command, &block)
|
@@ -7144,6 +7248,13 @@ module Google
|
|
7144
7248
|
# The standard list page size.
|
7145
7249
|
# @param [String] page_token
|
7146
7250
|
# The standard list page token.
|
7251
|
+
# @param [Boolean] return_partial_success
|
7252
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
7253
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
7254
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
7255
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
7256
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
7257
|
+
# explicitly documented otherwise in service or product specific documentation.
|
7147
7258
|
# @param [String] fields
|
7148
7259
|
# Selector specifying which fields to include in a partial response.
|
7149
7260
|
# @param [String] quota_user
|
@@ -7161,7 +7272,7 @@ module Google
|
|
7161
7272
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
7162
7273
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
7163
7274
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
7164
|
-
def list_project_location_evaluation_run_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
7275
|
+
def list_project_location_evaluation_run_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
7165
7276
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
7166
7277
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
7167
7278
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -7169,6 +7280,7 @@ module Google
|
|
7169
7280
|
command.query['filter'] = filter unless filter.nil?
|
7170
7281
|
command.query['pageSize'] = page_size unless page_size.nil?
|
7171
7282
|
command.query['pageToken'] = page_token unless page_token.nil?
|
7283
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
7172
7284
|
command.query['fields'] = fields unless fields.nil?
|
7173
7285
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
7174
7286
|
execute_or_queue_command(command, &block)
|
@@ -7471,6 +7583,13 @@ module Google
|
|
7471
7583
|
# The standard list page size.
|
7472
7584
|
# @param [String] page_token
|
7473
7585
|
# The standard list page token.
|
7586
|
+
# @param [Boolean] return_partial_success
|
7587
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
7588
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
7589
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
7590
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
7591
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
7592
|
+
# explicitly documented otherwise in service or product specific documentation.
|
7474
7593
|
# @param [String] fields
|
7475
7594
|
# Selector specifying which fields to include in a partial response.
|
7476
7595
|
# @param [String] quota_user
|
@@ -7488,7 +7607,7 @@ module Google
|
|
7488
7607
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
7489
7608
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
7490
7609
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
7491
|
-
def list_project_location_evaluation_set_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
7610
|
+
def list_project_location_evaluation_set_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
7492
7611
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
7493
7612
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
7494
7613
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -7496,6 +7615,7 @@ module Google
|
|
7496
7615
|
command.query['filter'] = filter unless filter.nil?
|
7497
7616
|
command.query['pageSize'] = page_size unless page_size.nil?
|
7498
7617
|
command.query['pageToken'] = page_token unless page_token.nil?
|
7618
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
7499
7619
|
command.query['fields'] = fields unless fields.nil?
|
7500
7620
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
7501
7621
|
execute_or_queue_command(command, &block)
|
@@ -7617,6 +7737,13 @@ module Google
|
|
7617
7737
|
# The standard list page size.
|
7618
7738
|
# @param [String] page_token
|
7619
7739
|
# The standard list page token.
|
7740
|
+
# @param [Boolean] return_partial_success
|
7741
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
7742
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
7743
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
7744
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
7745
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
7746
|
+
# explicitly documented otherwise in service or product specific documentation.
|
7620
7747
|
# @param [String] fields
|
7621
7748
|
# Selector specifying which fields to include in a partial response.
|
7622
7749
|
# @param [String] quota_user
|
@@ -7634,7 +7761,7 @@ module Google
|
|
7634
7761
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
7635
7762
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
7636
7763
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
7637
|
-
def list_project_location_evaluation_task_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
7764
|
+
def list_project_location_evaluation_task_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
7638
7765
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
7639
7766
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
7640
7767
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -7642,6 +7769,7 @@ module Google
|
|
7642
7769
|
command.query['filter'] = filter unless filter.nil?
|
7643
7770
|
command.query['pageSize'] = page_size unless page_size.nil?
|
7644
7771
|
command.query['pageToken'] = page_token unless page_token.nil?
|
7772
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
7645
7773
|
command.query['fields'] = fields unless fields.nil?
|
7646
7774
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
7647
7775
|
execute_or_queue_command(command, &block)
|
@@ -8132,6 +8260,13 @@ module Google
|
|
8132
8260
|
# The standard list page size.
|
8133
8261
|
# @param [String] page_token
|
8134
8262
|
# The standard list page token.
|
8263
|
+
# @param [Boolean] return_partial_success
|
8264
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
8265
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
8266
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
8267
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
8268
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
8269
|
+
# explicitly documented otherwise in service or product specific documentation.
|
8135
8270
|
# @param [String] fields
|
8136
8271
|
# Selector specifying which fields to include in a partial response.
|
8137
8272
|
# @param [String] quota_user
|
@@ -8149,7 +8284,7 @@ module Google
|
|
8149
8284
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
8150
8285
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
8151
8286
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
8152
|
-
def list_project_location_example_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8287
|
+
def list_project_location_example_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8153
8288
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
8154
8289
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
8155
8290
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -8157,6 +8292,7 @@ module Google
|
|
8157
8292
|
command.query['filter'] = filter unless filter.nil?
|
8158
8293
|
command.query['pageSize'] = page_size unless page_size.nil?
|
8159
8294
|
command.query['pageToken'] = page_token unless page_token.nil?
|
8295
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
8160
8296
|
command.query['fields'] = fields unless fields.nil?
|
8161
8297
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
8162
8298
|
execute_or_queue_command(command, &block)
|
@@ -8315,6 +8451,13 @@ module Google
|
|
8315
8451
|
# The standard list page size.
|
8316
8452
|
# @param [String] page_token
|
8317
8453
|
# The standard list page token.
|
8454
|
+
# @param [Boolean] return_partial_success
|
8455
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
8456
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
8457
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
8458
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
8459
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
8460
|
+
# explicitly documented otherwise in service or product specific documentation.
|
8318
8461
|
# @param [String] fields
|
8319
8462
|
# Selector specifying which fields to include in a partial response.
|
8320
8463
|
# @param [String] quota_user
|
@@ -8332,7 +8475,7 @@ module Google
|
|
8332
8475
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
8333
8476
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
8334
8477
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
8335
|
-
def list_project_location_extension_controller_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8478
|
+
def list_project_location_extension_controller_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8336
8479
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
8337
8480
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
8338
8481
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -8340,6 +8483,7 @@ module Google
|
|
8340
8483
|
command.query['filter'] = filter unless filter.nil?
|
8341
8484
|
command.query['pageSize'] = page_size unless page_size.nil?
|
8342
8485
|
command.query['pageToken'] = page_token unless page_token.nil?
|
8486
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
8343
8487
|
command.query['fields'] = fields unless fields.nil?
|
8344
8488
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
8345
8489
|
execute_or_queue_command(command, &block)
|
@@ -8748,6 +8892,13 @@ module Google
|
|
8748
8892
|
# The standard list page size.
|
8749
8893
|
# @param [String] page_token
|
8750
8894
|
# The standard list page token.
|
8895
|
+
# @param [Boolean] return_partial_success
|
8896
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
8897
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
8898
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
8899
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
8900
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
8901
|
+
# explicitly documented otherwise in service or product specific documentation.
|
8751
8902
|
# @param [String] fields
|
8752
8903
|
# Selector specifying which fields to include in a partial response.
|
8753
8904
|
# @param [String] quota_user
|
@@ -8765,7 +8916,7 @@ module Google
|
|
8765
8916
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
8766
8917
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
8767
8918
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
8768
|
-
def list_project_location_extension_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8919
|
+
def list_project_location_extension_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8769
8920
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
8770
8921
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
8771
8922
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -8773,6 +8924,7 @@ module Google
|
|
8773
8924
|
command.query['filter'] = filter unless filter.nil?
|
8774
8925
|
command.query['pageSize'] = page_size unless page_size.nil?
|
8775
8926
|
command.query['pageToken'] = page_token unless page_token.nil?
|
8927
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
8776
8928
|
command.query['fields'] = fields unless fields.nil?
|
8777
8929
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
8778
8930
|
execute_or_queue_command(command, &block)
|
@@ -9550,6 +9702,13 @@ module Google
|
|
9550
9702
|
# The standard list page size.
|
9551
9703
|
# @param [String] page_token
|
9552
9704
|
# The standard list page token.
|
9705
|
+
# @param [Boolean] return_partial_success
|
9706
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
9707
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
9708
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
9709
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
9710
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
9711
|
+
# explicitly documented otherwise in service or product specific documentation.
|
9553
9712
|
# @param [String] fields
|
9554
9713
|
# Selector specifying which fields to include in a partial response.
|
9555
9714
|
# @param [String] quota_user
|
@@ -9567,7 +9726,7 @@ module Google
|
|
9567
9726
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
9568
9727
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
9569
9728
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
9570
|
-
def list_project_location_feature_group_feature_monitor_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
9729
|
+
def list_project_location_feature_group_feature_monitor_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
9571
9730
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
9572
9731
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
9573
9732
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -9575,6 +9734,7 @@ module Google
|
|
9575
9734
|
command.query['filter'] = filter unless filter.nil?
|
9576
9735
|
command.query['pageSize'] = page_size unless page_size.nil?
|
9577
9736
|
command.query['pageToken'] = page_token unless page_token.nil?
|
9737
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
9578
9738
|
command.query['fields'] = fields unless fields.nil?
|
9579
9739
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
9580
9740
|
execute_or_queue_command(command, &block)
|
@@ -9976,6 +10136,13 @@ module Google
|
|
9976
10136
|
# The standard list page size.
|
9977
10137
|
# @param [String] page_token
|
9978
10138
|
# The standard list page token.
|
10139
|
+
# @param [Boolean] return_partial_success
|
10140
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
10141
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
10142
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
10143
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
10144
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
10145
|
+
# explicitly documented otherwise in service or product specific documentation.
|
9979
10146
|
# @param [String] fields
|
9980
10147
|
# Selector specifying which fields to include in a partial response.
|
9981
10148
|
# @param [String] quota_user
|
@@ -9993,7 +10160,7 @@ module Google
|
|
9993
10160
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
9994
10161
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
9995
10162
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
9996
|
-
def list_project_location_feature_group_feature_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
10163
|
+
def list_project_location_feature_group_feature_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
9997
10164
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
9998
10165
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
9999
10166
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -10001,6 +10168,7 @@ module Google
|
|
10001
10168
|
command.query['filter'] = filter unless filter.nil?
|
10002
10169
|
command.query['pageSize'] = page_size unless page_size.nil?
|
10003
10170
|
command.query['pageToken'] = page_token unless page_token.nil?
|
10171
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
10004
10172
|
command.query['fields'] = fields unless fields.nil?
|
10005
10173
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
10006
10174
|
execute_or_queue_command(command, &block)
|
@@ -10122,6 +10290,13 @@ module Google
|
|
10122
10290
|
# The standard list page size.
|
10123
10291
|
# @param [String] page_token
|
10124
10292
|
# The standard list page token.
|
10293
|
+
# @param [Boolean] return_partial_success
|
10294
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
10295
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
10296
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
10297
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
10298
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
10299
|
+
# explicitly documented otherwise in service or product specific documentation.
|
10125
10300
|
# @param [String] fields
|
10126
10301
|
# Selector specifying which fields to include in a partial response.
|
10127
10302
|
# @param [String] quota_user
|
@@ -10139,7 +10314,7 @@ module Google
|
|
10139
10314
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
10140
10315
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
10141
10316
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
10142
|
-
def list_project_location_feature_group_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
10317
|
+
def list_project_location_feature_group_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
10143
10318
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
10144
10319
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
10145
10320
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -10147,6 +10322,7 @@ module Google
|
|
10147
10322
|
command.query['filter'] = filter unless filter.nil?
|
10148
10323
|
command.query['pageSize'] = page_size unless page_size.nil?
|
10149
10324
|
command.query['pageToken'] = page_token unless page_token.nil?
|
10325
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
10150
10326
|
command.query['fields'] = fields unless fields.nil?
|
10151
10327
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
10152
10328
|
execute_or_queue_command(command, &block)
|
@@ -10674,6 +10850,41 @@ module Google
|
|
10674
10850
|
execute_or_queue_command(command, &block)
|
10675
10851
|
end
|
10676
10852
|
|
10853
|
+
# RPC to generate an access token for the given feature view. FeatureViews under
|
10854
|
+
# the same FeatureOnlineStore share the same access token.
|
10855
|
+
# @param [String] feature_view
|
10856
|
+
# FeatureView resource format `projects/`project`/locations/`location`/
|
10857
|
+
# featureOnlineStores/`featureOnlineStore`/featureViews/`featureView``
|
10858
|
+
# @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenRequest] google_cloud_aiplatform_v1beta1_generate_fetch_access_token_request_object
|
10859
|
+
# @param [String] fields
|
10860
|
+
# Selector specifying which fields to include in a partial response.
|
10861
|
+
# @param [String] quota_user
|
10862
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
10863
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
10864
|
+
# @param [Google::Apis::RequestOptions] options
|
10865
|
+
# Request-specific options
|
10866
|
+
#
|
10867
|
+
# @yield [result, err] Result & error if block supplied
|
10868
|
+
# @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenResponse] parsed result object
|
10869
|
+
# @yieldparam err [StandardError] error object if request failed
|
10870
|
+
#
|
10871
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenResponse]
|
10872
|
+
#
|
10873
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
10874
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
10875
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
10876
|
+
def generate_project_location_feature_online_store_feature_view_fetch_access_token(feature_view, google_cloud_aiplatform_v1beta1_generate_fetch_access_token_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
10877
|
+
command = make_simple_command(:post, 'v1beta1/{+featureView}:generateFetchAccessToken', options)
|
10878
|
+
command.request_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenRequest::Representation
|
10879
|
+
command.request_object = google_cloud_aiplatform_v1beta1_generate_fetch_access_token_request_object
|
10880
|
+
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenResponse::Representation
|
10881
|
+
command.response_class = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenResponse
|
10882
|
+
command.params['featureView'] = feature_view unless feature_view.nil?
|
10883
|
+
command.query['fields'] = fields unless fields.nil?
|
10884
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
10885
|
+
execute_or_queue_command(command, &block)
|
10886
|
+
end
|
10887
|
+
|
10677
10888
|
# Gets details of a single FeatureView.
|
10678
10889
|
# @param [String] name
|
10679
10890
|
# Required. The name of the FeatureView resource. Format: `projects/`project`/
|
@@ -11203,6 +11414,13 @@ module Google
|
|
11203
11414
|
# The standard list page size.
|
11204
11415
|
# @param [String] page_token
|
11205
11416
|
# The standard list page token.
|
11417
|
+
# @param [Boolean] return_partial_success
|
11418
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
11419
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
11420
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
11421
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
11422
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
11423
|
+
# explicitly documented otherwise in service or product specific documentation.
|
11206
11424
|
# @param [String] fields
|
11207
11425
|
# Selector specifying which fields to include in a partial response.
|
11208
11426
|
# @param [String] quota_user
|
@@ -11220,7 +11438,7 @@ module Google
|
|
11220
11438
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11221
11439
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11222
11440
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11223
|
-
def list_project_location_feature_online_store_feature_view_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
11441
|
+
def list_project_location_feature_online_store_feature_view_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
11224
11442
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
11225
11443
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
11226
11444
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -11228,6 +11446,7 @@ module Google
|
|
11228
11446
|
command.query['filter'] = filter unless filter.nil?
|
11229
11447
|
command.query['pageSize'] = page_size unless page_size.nil?
|
11230
11448
|
command.query['pageToken'] = page_token unless page_token.nil?
|
11449
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
11231
11450
|
command.query['fields'] = fields unless fields.nil?
|
11232
11451
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11233
11452
|
execute_or_queue_command(command, &block)
|
@@ -11349,6 +11568,13 @@ module Google
|
|
11349
11568
|
# The standard list page size.
|
11350
11569
|
# @param [String] page_token
|
11351
11570
|
# The standard list page token.
|
11571
|
+
# @param [Boolean] return_partial_success
|
11572
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
11573
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
11574
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
11575
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
11576
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
11577
|
+
# explicitly documented otherwise in service or product specific documentation.
|
11352
11578
|
# @param [String] fields
|
11353
11579
|
# Selector specifying which fields to include in a partial response.
|
11354
11580
|
# @param [String] quota_user
|
@@ -11366,7 +11592,7 @@ module Google
|
|
11366
11592
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11367
11593
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11368
11594
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11369
|
-
def list_project_location_feature_online_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
11595
|
+
def list_project_location_feature_online_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
11370
11596
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
11371
11597
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
11372
11598
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -11374,6 +11600,7 @@ module Google
|
|
11374
11600
|
command.query['filter'] = filter unless filter.nil?
|
11375
11601
|
command.query['pageSize'] = page_size unless page_size.nil?
|
11376
11602
|
command.query['pageToken'] = page_token unless page_token.nil?
|
11603
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
11377
11604
|
command.query['fields'] = fields unless fields.nil?
|
11378
11605
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11379
11606
|
execute_or_queue_command(command, &block)
|
@@ -12831,6 +13058,13 @@ module Google
|
|
12831
13058
|
# The standard list page size.
|
12832
13059
|
# @param [String] page_token
|
12833
13060
|
# The standard list page token.
|
13061
|
+
# @param [Boolean] return_partial_success
|
13062
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
13063
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
13064
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
13065
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
13066
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
13067
|
+
# explicitly documented otherwise in service or product specific documentation.
|
12834
13068
|
# @param [String] fields
|
12835
13069
|
# Selector specifying which fields to include in a partial response.
|
12836
13070
|
# @param [String] quota_user
|
@@ -12848,7 +13082,7 @@ module Google
|
|
12848
13082
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
12849
13083
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
12850
13084
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
12851
|
-
def list_project_location_featurestore_entity_type_feature_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
13085
|
+
def list_project_location_featurestore_entity_type_feature_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
12852
13086
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
12853
13087
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
12854
13088
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -12856,6 +13090,7 @@ module Google
|
|
12856
13090
|
command.query['filter'] = filter unless filter.nil?
|
12857
13091
|
command.query['pageSize'] = page_size unless page_size.nil?
|
12858
13092
|
command.query['pageToken'] = page_token unless page_token.nil?
|
13093
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
12859
13094
|
command.query['fields'] = fields unless fields.nil?
|
12860
13095
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
12861
13096
|
execute_or_queue_command(command, &block)
|
@@ -13014,6 +13249,13 @@ module Google
|
|
13014
13249
|
# The standard list page size.
|
13015
13250
|
# @param [String] page_token
|
13016
13251
|
# The standard list page token.
|
13252
|
+
# @param [Boolean] return_partial_success
|
13253
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
13254
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
13255
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
13256
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
13257
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
13258
|
+
# explicitly documented otherwise in service or product specific documentation.
|
13017
13259
|
# @param [String] fields
|
13018
13260
|
# Selector specifying which fields to include in a partial response.
|
13019
13261
|
# @param [String] quota_user
|
@@ -13031,7 +13273,7 @@ module Google
|
|
13031
13273
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
13032
13274
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
13033
13275
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
13034
|
-
def list_project_location_featurestore_entity_type_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
13276
|
+
def list_project_location_featurestore_entity_type_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
13035
13277
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
13036
13278
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
13037
13279
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -13039,6 +13281,7 @@ module Google
|
|
13039
13281
|
command.query['filter'] = filter unless filter.nil?
|
13040
13282
|
command.query['pageSize'] = page_size unless page_size.nil?
|
13041
13283
|
command.query['pageToken'] = page_token unless page_token.nil?
|
13284
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
13042
13285
|
command.query['fields'] = fields unless fields.nil?
|
13043
13286
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
13044
13287
|
execute_or_queue_command(command, &block)
|
@@ -13197,6 +13440,13 @@ module Google
|
|
13197
13440
|
# The standard list page size.
|
13198
13441
|
# @param [String] page_token
|
13199
13442
|
# The standard list page token.
|
13443
|
+
# @param [Boolean] return_partial_success
|
13444
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
13445
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
13446
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
13447
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
13448
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
13449
|
+
# explicitly documented otherwise in service or product specific documentation.
|
13200
13450
|
# @param [String] fields
|
13201
13451
|
# Selector specifying which fields to include in a partial response.
|
13202
13452
|
# @param [String] quota_user
|
@@ -13214,7 +13464,7 @@ module Google
|
|
13214
13464
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
13215
13465
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
13216
13466
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
13217
|
-
def list_project_location_featurestore_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
13467
|
+
def list_project_location_featurestore_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
13218
13468
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
13219
13469
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
13220
13470
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -13222,6 +13472,7 @@ module Google
|
|
13222
13472
|
command.query['filter'] = filter unless filter.nil?
|
13223
13473
|
command.query['pageSize'] = page_size unless page_size.nil?
|
13224
13474
|
command.query['pageToken'] = page_token unless page_token.nil?
|
13475
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
13225
13476
|
command.query['fields'] = fields unless fields.nil?
|
13226
13477
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
13227
13478
|
execute_or_queue_command(command, &block)
|
@@ -13575,6 +13826,13 @@ module Google
|
|
13575
13826
|
# The standard list page size.
|
13576
13827
|
# @param [String] page_token
|
13577
13828
|
# The standard list page token.
|
13829
|
+
# @param [Boolean] return_partial_success
|
13830
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
13831
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
13832
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
13833
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
13834
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
13835
|
+
# explicitly documented otherwise in service or product specific documentation.
|
13578
13836
|
# @param [String] fields
|
13579
13837
|
# Selector specifying which fields to include in a partial response.
|
13580
13838
|
# @param [String] quota_user
|
@@ -13592,7 +13850,7 @@ module Google
|
|
13592
13850
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
13593
13851
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
13594
13852
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
13595
|
-
def list_project_location_hyperparameter_tuning_job_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
13853
|
+
def list_project_location_hyperparameter_tuning_job_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
13596
13854
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
13597
13855
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
13598
13856
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -13600,6 +13858,7 @@ module Google
|
|
13600
13858
|
command.query['filter'] = filter unless filter.nil?
|
13601
13859
|
command.query['pageSize'] = page_size unless page_size.nil?
|
13602
13860
|
command.query['pageToken'] = page_token unless page_token.nil?
|
13861
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
13603
13862
|
command.query['fields'] = fields unless fields.nil?
|
13604
13863
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
13605
13864
|
execute_or_queue_command(command, &block)
|
@@ -14120,6 +14379,13 @@ module Google
|
|
14120
14379
|
# The standard list page size.
|
14121
14380
|
# @param [String] page_token
|
14122
14381
|
# The standard list page token.
|
14382
|
+
# @param [Boolean] return_partial_success
|
14383
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
14384
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
14385
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
14386
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
14387
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
14388
|
+
# explicitly documented otherwise in service or product specific documentation.
|
14123
14389
|
# @param [String] fields
|
14124
14390
|
# Selector specifying which fields to include in a partial response.
|
14125
14391
|
# @param [String] quota_user
|
@@ -14137,7 +14403,7 @@ module Google
|
|
14137
14403
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
14138
14404
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
14139
14405
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
14140
|
-
def list_project_location_index_endpoint_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
14406
|
+
def list_project_location_index_endpoint_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
14141
14407
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
14142
14408
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
14143
14409
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -14145,6 +14411,7 @@ module Google
|
|
14145
14411
|
command.query['filter'] = filter unless filter.nil?
|
14146
14412
|
command.query['pageSize'] = page_size unless page_size.nil?
|
14147
14413
|
command.query['pageToken'] = page_token unless page_token.nil?
|
14414
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
14148
14415
|
command.query['fields'] = fields unless fields.nil?
|
14149
14416
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
14150
14417
|
execute_or_queue_command(command, &block)
|
@@ -14583,6 +14850,13 @@ module Google
|
|
14583
14850
|
# The standard list page size.
|
14584
14851
|
# @param [String] page_token
|
14585
14852
|
# The standard list page token.
|
14853
|
+
# @param [Boolean] return_partial_success
|
14854
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
14855
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
14856
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
14857
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
14858
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
14859
|
+
# explicitly documented otherwise in service or product specific documentation.
|
14586
14860
|
# @param [String] fields
|
14587
14861
|
# Selector specifying which fields to include in a partial response.
|
14588
14862
|
# @param [String] quota_user
|
@@ -14600,7 +14874,7 @@ module Google
|
|
14600
14874
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
14601
14875
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
14602
14876
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
14603
|
-
def list_project_location_index_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
14877
|
+
def list_project_location_index_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
14604
14878
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
14605
14879
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
14606
14880
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -14608,6 +14882,7 @@ module Google
|
|
14608
14882
|
command.query['filter'] = filter unless filter.nil?
|
14609
14883
|
command.query['pageSize'] = page_size unless page_size.nil?
|
14610
14884
|
command.query['pageToken'] = page_token unless page_token.nil?
|
14885
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
14611
14886
|
command.query['fields'] = fields unless fields.nil?
|
14612
14887
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
14613
14888
|
execute_or_queue_command(command, &block)
|
@@ -15229,6 +15504,13 @@ module Google
|
|
15229
15504
|
# The standard list page size.
|
15230
15505
|
# @param [String] page_token
|
15231
15506
|
# The standard list page token.
|
15507
|
+
# @param [Boolean] return_partial_success
|
15508
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
15509
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
15510
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
15511
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
15512
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
15513
|
+
# explicitly documented otherwise in service or product specific documentation.
|
15232
15514
|
# @param [String] fields
|
15233
15515
|
# Selector specifying which fields to include in a partial response.
|
15234
15516
|
# @param [String] quota_user
|
@@ -15246,7 +15528,7 @@ module Google
|
|
15246
15528
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
15247
15529
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
15248
15530
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
15249
|
-
def list_project_location_metadata_store_artifact_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
15531
|
+
def list_project_location_metadata_store_artifact_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
15250
15532
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
15251
15533
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
15252
15534
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -15254,6 +15536,7 @@ module Google
|
|
15254
15536
|
command.query['filter'] = filter unless filter.nil?
|
15255
15537
|
command.query['pageSize'] = page_size unless page_size.nil?
|
15256
15538
|
command.query['pageToken'] = page_token unless page_token.nil?
|
15539
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
15257
15540
|
command.query['fields'] = fields unless fields.nil?
|
15258
15541
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
15259
15542
|
execute_or_queue_command(command, &block)
|
@@ -15814,6 +16097,13 @@ module Google
|
|
15814
16097
|
# The standard list page size.
|
15815
16098
|
# @param [String] page_token
|
15816
16099
|
# The standard list page token.
|
16100
|
+
# @param [Boolean] return_partial_success
|
16101
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
16102
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
16103
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
16104
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
16105
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
16106
|
+
# explicitly documented otherwise in service or product specific documentation.
|
15817
16107
|
# @param [String] fields
|
15818
16108
|
# Selector specifying which fields to include in a partial response.
|
15819
16109
|
# @param [String] quota_user
|
@@ -15831,7 +16121,7 @@ module Google
|
|
15831
16121
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
15832
16122
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
15833
16123
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
15834
|
-
def list_project_location_metadata_store_context_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
16124
|
+
def list_project_location_metadata_store_context_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
15835
16125
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
15836
16126
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
15837
16127
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -15839,6 +16129,7 @@ module Google
|
|
15839
16129
|
command.query['filter'] = filter unless filter.nil?
|
15840
16130
|
command.query['pageSize'] = page_size unless page_size.nil?
|
15841
16131
|
command.query['pageToken'] = page_token unless page_token.nil?
|
16132
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
15842
16133
|
command.query['fields'] = fields unless fields.nil?
|
15843
16134
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
15844
16135
|
execute_or_queue_command(command, &block)
|
@@ -16321,6 +16612,13 @@ module Google
|
|
16321
16612
|
# The standard list page size.
|
16322
16613
|
# @param [String] page_token
|
16323
16614
|
# The standard list page token.
|
16615
|
+
# @param [Boolean] return_partial_success
|
16616
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
16617
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
16618
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
16619
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
16620
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
16621
|
+
# explicitly documented otherwise in service or product specific documentation.
|
16324
16622
|
# @param [String] fields
|
16325
16623
|
# Selector specifying which fields to include in a partial response.
|
16326
16624
|
# @param [String] quota_user
|
@@ -16338,7 +16636,7 @@ module Google
|
|
16338
16636
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
16339
16637
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
16340
16638
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
16341
|
-
def list_project_location_metadata_store_execution_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
16639
|
+
def list_project_location_metadata_store_execution_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
16342
16640
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
16343
16641
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
16344
16642
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -16346,6 +16644,7 @@ module Google
|
|
16346
16644
|
command.query['filter'] = filter unless filter.nil?
|
16347
16645
|
command.query['pageSize'] = page_size unless page_size.nil?
|
16348
16646
|
command.query['pageToken'] = page_token unless page_token.nil?
|
16647
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
16349
16648
|
command.query['fields'] = fields unless fields.nil?
|
16350
16649
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
16351
16650
|
execute_or_queue_command(command, &block)
|
@@ -16624,6 +16923,13 @@ module Google
|
|
16624
16923
|
# The standard list page size.
|
16625
16924
|
# @param [String] page_token
|
16626
16925
|
# The standard list page token.
|
16926
|
+
# @param [Boolean] return_partial_success
|
16927
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
16928
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
16929
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
16930
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
16931
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
16932
|
+
# explicitly documented otherwise in service or product specific documentation.
|
16627
16933
|
# @param [String] fields
|
16628
16934
|
# Selector specifying which fields to include in a partial response.
|
16629
16935
|
# @param [String] quota_user
|
@@ -16641,7 +16947,7 @@ module Google
|
|
16641
16947
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
16642
16948
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
16643
16949
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
16644
|
-
def list_project_location_metadata_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
16950
|
+
def list_project_location_metadata_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
16645
16951
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
16646
16952
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
16647
16953
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -16649,6 +16955,7 @@ module Google
|
|
16649
16955
|
command.query['filter'] = filter unless filter.nil?
|
16650
16956
|
command.query['pageSize'] = page_size unless page_size.nil?
|
16651
16957
|
command.query['pageToken'] = page_token unless page_token.nil?
|
16958
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
16652
16959
|
command.query['fields'] = fields unless fields.nil?
|
16653
16960
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
16654
16961
|
execute_or_queue_command(command, &block)
|
@@ -16879,6 +17186,13 @@ module Google
|
|
16879
17186
|
# The standard list page size.
|
16880
17187
|
# @param [String] page_token
|
16881
17188
|
# The standard list page token.
|
17189
|
+
# @param [Boolean] return_partial_success
|
17190
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
17191
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
17192
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
17193
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
17194
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
17195
|
+
# explicitly documented otherwise in service or product specific documentation.
|
16882
17196
|
# @param [String] fields
|
16883
17197
|
# Selector specifying which fields to include in a partial response.
|
16884
17198
|
# @param [String] quota_user
|
@@ -16896,7 +17210,7 @@ module Google
|
|
16896
17210
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
16897
17211
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
16898
17212
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
16899
|
-
def list_project_location_migratable_resource_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
17213
|
+
def list_project_location_migratable_resource_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
16900
17214
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
16901
17215
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
16902
17216
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -16904,6 +17218,7 @@ module Google
|
|
16904
17218
|
command.query['filter'] = filter unless filter.nil?
|
16905
17219
|
command.query['pageSize'] = page_size unless page_size.nil?
|
16906
17220
|
command.query['pageToken'] = page_token unless page_token.nil?
|
17221
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
16907
17222
|
command.query['fields'] = fields unless fields.nil?
|
16908
17223
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
16909
17224
|
execute_or_queue_command(command, &block)
|
@@ -17374,6 +17689,13 @@ module Google
|
|
17374
17689
|
# The standard list page size.
|
17375
17690
|
# @param [String] page_token
|
17376
17691
|
# The standard list page token.
|
17692
|
+
# @param [Boolean] return_partial_success
|
17693
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
17694
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
17695
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
17696
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
17697
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
17698
|
+
# explicitly documented otherwise in service or product specific documentation.
|
17377
17699
|
# @param [String] fields
|
17378
17700
|
# Selector specifying which fields to include in a partial response.
|
17379
17701
|
# @param [String] quota_user
|
@@ -17391,7 +17713,7 @@ module Google
|
|
17391
17713
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
17392
17714
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
17393
17715
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
17394
|
-
def list_project_location_model_deployment_monitoring_job_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
17716
|
+
def list_project_location_model_deployment_monitoring_job_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
17395
17717
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
17396
17718
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
17397
17719
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -17399,6 +17721,7 @@ module Google
|
|
17399
17721
|
command.query['filter'] = filter unless filter.nil?
|
17400
17722
|
command.query['pageSize'] = page_size unless page_size.nil?
|
17401
17723
|
command.query['pageToken'] = page_token unless page_token.nil?
|
17724
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
17402
17725
|
command.query['fields'] = fields unless fields.nil?
|
17403
17726
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
17404
17727
|
execute_or_queue_command(command, &block)
|
@@ -17960,6 +18283,13 @@ module Google
|
|
17960
18283
|
# The standard list page size.
|
17961
18284
|
# @param [String] page_token
|
17962
18285
|
# The standard list page token.
|
18286
|
+
# @param [Boolean] return_partial_success
|
18287
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
18288
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
18289
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
18290
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
18291
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
18292
|
+
# explicitly documented otherwise in service or product specific documentation.
|
17963
18293
|
# @param [String] fields
|
17964
18294
|
# Selector specifying which fields to include in a partial response.
|
17965
18295
|
# @param [String] quota_user
|
@@ -17977,7 +18307,7 @@ module Google
|
|
17977
18307
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
17978
18308
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
17979
18309
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
17980
|
-
def list_project_location_model_monitor_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
18310
|
+
def list_project_location_model_monitor_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
17981
18311
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
17982
18312
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
17983
18313
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -17985,6 +18315,7 @@ module Google
|
|
17985
18315
|
command.query['filter'] = filter unless filter.nil?
|
17986
18316
|
command.query['pageSize'] = page_size unless page_size.nil?
|
17987
18317
|
command.query['pageToken'] = page_token unless page_token.nil?
|
18318
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
17988
18319
|
command.query['fields'] = fields unless fields.nil?
|
17989
18320
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
17990
18321
|
execute_or_queue_command(command, &block)
|
@@ -18839,6 +19170,13 @@ module Google
|
|
18839
19170
|
# The standard list page size.
|
18840
19171
|
# @param [String] page_token
|
18841
19172
|
# The standard list page token.
|
19173
|
+
# @param [Boolean] return_partial_success
|
19174
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
19175
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
19176
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
19177
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
19178
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
19179
|
+
# explicitly documented otherwise in service or product specific documentation.
|
18842
19180
|
# @param [String] fields
|
18843
19181
|
# Selector specifying which fields to include in a partial response.
|
18844
19182
|
# @param [String] quota_user
|
@@ -18856,7 +19194,7 @@ module Google
|
|
18856
19194
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
18857
19195
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
18858
19196
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
18859
|
-
def list_project_location_model_evaluation_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
19197
|
+
def list_project_location_model_evaluation_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
18860
19198
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
18861
19199
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
18862
19200
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -18864,6 +19202,7 @@ module Google
|
|
18864
19202
|
command.query['filter'] = filter unless filter.nil?
|
18865
19203
|
command.query['pageSize'] = page_size unless page_size.nil?
|
18866
19204
|
command.query['pageToken'] = page_token unless page_token.nil?
|
19205
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
18867
19206
|
command.query['fields'] = fields unless fields.nil?
|
18868
19207
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
18869
19208
|
execute_or_queue_command(command, &block)
|
@@ -19135,6 +19474,13 @@ module Google
|
|
19135
19474
|
# The standard list page size.
|
19136
19475
|
# @param [String] page_token
|
19137
19476
|
# The standard list page token.
|
19477
|
+
# @param [Boolean] return_partial_success
|
19478
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
19479
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
19480
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
19481
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
19482
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
19483
|
+
# explicitly documented otherwise in service or product specific documentation.
|
19138
19484
|
# @param [String] fields
|
19139
19485
|
# Selector specifying which fields to include in a partial response.
|
19140
19486
|
# @param [String] quota_user
|
@@ -19152,7 +19498,7 @@ module Google
|
|
19152
19498
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
19153
19499
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
19154
19500
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
19155
|
-
def list_project_location_model_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
19501
|
+
def list_project_location_model_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
19156
19502
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
19157
19503
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
19158
19504
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -19160,6 +19506,7 @@ module Google
|
|
19160
19506
|
command.query['filter'] = filter unless filter.nil?
|
19161
19507
|
command.query['pageSize'] = page_size unless page_size.nil?
|
19162
19508
|
command.query['pageToken'] = page_token unless page_token.nil?
|
19509
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
19163
19510
|
command.query['fields'] = fields unless fields.nil?
|
19164
19511
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
19165
19512
|
execute_or_queue_command(command, &block)
|
@@ -19805,6 +20152,13 @@ module Google
|
|
19805
20152
|
# The standard list page size.
|
19806
20153
|
# @param [String] page_token
|
19807
20154
|
# The standard list page token.
|
20155
|
+
# @param [Boolean] return_partial_success
|
20156
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
20157
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
20158
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
20159
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
20160
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
20161
|
+
# explicitly documented otherwise in service or product specific documentation.
|
19808
20162
|
# @param [String] fields
|
19809
20163
|
# Selector specifying which fields to include in a partial response.
|
19810
20164
|
# @param [String] quota_user
|
@@ -19822,7 +20176,7 @@ module Google
|
|
19822
20176
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
19823
20177
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
19824
20178
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
19825
|
-
def list_project_location_notebook_execution_job_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
20179
|
+
def list_project_location_notebook_execution_job_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
19826
20180
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
19827
20181
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
19828
20182
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -19830,6 +20184,7 @@ module Google
|
|
19830
20184
|
command.query['filter'] = filter unless filter.nil?
|
19831
20185
|
command.query['pageSize'] = page_size unless page_size.nil?
|
19832
20186
|
command.query['pageToken'] = page_token unless page_token.nil?
|
20187
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
19833
20188
|
command.query['fields'] = fields unless fields.nil?
|
19834
20189
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
19835
20190
|
execute_or_queue_command(command, &block)
|
@@ -20313,6 +20668,13 @@ module Google
|
|
20313
20668
|
# The standard list page size.
|
20314
20669
|
# @param [String] page_token
|
20315
20670
|
# The standard list page token.
|
20671
|
+
# @param [Boolean] return_partial_success
|
20672
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
20673
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
20674
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
20675
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
20676
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
20677
|
+
# explicitly documented otherwise in service or product specific documentation.
|
20316
20678
|
# @param [String] fields
|
20317
20679
|
# Selector specifying which fields to include in a partial response.
|
20318
20680
|
# @param [String] quota_user
|
@@ -20330,7 +20692,7 @@ module Google
|
|
20330
20692
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
20331
20693
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
20332
20694
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
20333
|
-
def list_project_location_notebook_runtime_template_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
20695
|
+
def list_project_location_notebook_runtime_template_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
20334
20696
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
20335
20697
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
20336
20698
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -20338,6 +20700,7 @@ module Google
|
|
20338
20700
|
command.query['filter'] = filter unless filter.nil?
|
20339
20701
|
command.query['pageSize'] = page_size unless page_size.nil?
|
20340
20702
|
command.query['pageToken'] = page_token unless page_token.nil?
|
20703
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
20341
20704
|
command.query['fields'] = fields unless fields.nil?
|
20342
20705
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
20343
20706
|
execute_or_queue_command(command, &block)
|
@@ -20849,6 +21212,13 @@ module Google
|
|
20849
21212
|
# The standard list page size.
|
20850
21213
|
# @param [String] page_token
|
20851
21214
|
# The standard list page token.
|
21215
|
+
# @param [Boolean] return_partial_success
|
21216
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
21217
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
21218
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
21219
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
21220
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
21221
|
+
# explicitly documented otherwise in service or product specific documentation.
|
20852
21222
|
# @param [String] fields
|
20853
21223
|
# Selector specifying which fields to include in a partial response.
|
20854
21224
|
# @param [String] quota_user
|
@@ -20866,7 +21236,7 @@ module Google
|
|
20866
21236
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
20867
21237
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
20868
21238
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
20869
|
-
def list_project_location_notebook_runtime_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
21239
|
+
def list_project_location_notebook_runtime_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
20870
21240
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
20871
21241
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
20872
21242
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -20874,6 +21244,7 @@ module Google
|
|
20874
21244
|
command.query['filter'] = filter unless filter.nil?
|
20875
21245
|
command.query['pageSize'] = page_size unless page_size.nil?
|
20876
21246
|
command.query['pageToken'] = page_token unless page_token.nil?
|
21247
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
20877
21248
|
command.query['fields'] = fields unless fields.nil?
|
20878
21249
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
20879
21250
|
execute_or_queue_command(command, &block)
|
@@ -21032,6 +21403,13 @@ module Google
|
|
21032
21403
|
# The standard list page size.
|
21033
21404
|
# @param [String] page_token
|
21034
21405
|
# The standard list page token.
|
21406
|
+
# @param [Boolean] return_partial_success
|
21407
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
21408
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
21409
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
21410
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
21411
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
21412
|
+
# explicitly documented otherwise in service or product specific documentation.
|
21035
21413
|
# @param [String] fields
|
21036
21414
|
# Selector specifying which fields to include in a partial response.
|
21037
21415
|
# @param [String] quota_user
|
@@ -21049,7 +21427,7 @@ module Google
|
|
21049
21427
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
21050
21428
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
21051
21429
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
21052
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
21430
|
+
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)
|
21053
21431
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
21054
21432
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
21055
21433
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -21057,6 +21435,7 @@ module Google
|
|
21057
21435
|
command.query['filter'] = filter unless filter.nil?
|
21058
21436
|
command.query['pageSize'] = page_size unless page_size.nil?
|
21059
21437
|
command.query['pageToken'] = page_token unless page_token.nil?
|
21438
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
21060
21439
|
command.query['fields'] = fields unless fields.nil?
|
21061
21440
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
21062
21441
|
execute_or_queue_command(command, &block)
|
@@ -21428,6 +21807,13 @@ module Google
|
|
21428
21807
|
# The standard list page size.
|
21429
21808
|
# @param [String] page_token
|
21430
21809
|
# The standard list page token.
|
21810
|
+
# @param [Boolean] return_partial_success
|
21811
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
21812
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
21813
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
21814
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
21815
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
21816
|
+
# explicitly documented otherwise in service or product specific documentation.
|
21431
21817
|
# @param [String] fields
|
21432
21818
|
# Selector specifying which fields to include in a partial response.
|
21433
21819
|
# @param [String] quota_user
|
@@ -21445,7 +21831,7 @@ module Google
|
|
21445
21831
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
21446
21832
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
21447
21833
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
21448
|
-
def list_project_location_persistent_resource_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
21834
|
+
def list_project_location_persistent_resource_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
21449
21835
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
21450
21836
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
21451
21837
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -21453,6 +21839,7 @@ module Google
|
|
21453
21839
|
command.query['filter'] = filter unless filter.nil?
|
21454
21840
|
command.query['pageSize'] = page_size unless page_size.nil?
|
21455
21841
|
command.query['pageToken'] = page_token unless page_token.nil?
|
21842
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
21456
21843
|
command.query['fields'] = fields unless fields.nil?
|
21457
21844
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
21458
21845
|
execute_or_queue_command(command, &block)
|
@@ -21900,6 +22287,13 @@ module Google
|
|
21900
22287
|
# The standard list page size.
|
21901
22288
|
# @param [String] page_token
|
21902
22289
|
# The standard list page token.
|
22290
|
+
# @param [Boolean] return_partial_success
|
22291
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
22292
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
22293
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
22294
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
22295
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
22296
|
+
# explicitly documented otherwise in service or product specific documentation.
|
21903
22297
|
# @param [String] fields
|
21904
22298
|
# Selector specifying which fields to include in a partial response.
|
21905
22299
|
# @param [String] quota_user
|
@@ -21917,7 +22311,7 @@ module Google
|
|
21917
22311
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
21918
22312
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
21919
22313
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
21920
|
-
def list_project_location_pipeline_job_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
22314
|
+
def list_project_location_pipeline_job_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
21921
22315
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
21922
22316
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
21923
22317
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -21925,6 +22319,7 @@ module Google
|
|
21925
22319
|
command.query['filter'] = filter unless filter.nil?
|
21926
22320
|
command.query['pageSize'] = page_size unless page_size.nil?
|
21927
22321
|
command.query['pageToken'] = page_token unless page_token.nil?
|
22322
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
21928
22323
|
command.query['fields'] = fields unless fields.nil?
|
21929
22324
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
21930
22325
|
execute_or_queue_command(command, &block)
|
@@ -22755,6 +23150,13 @@ module Google
|
|
22755
23150
|
# The standard list page size.
|
22756
23151
|
# @param [String] page_token
|
22757
23152
|
# The standard list page token.
|
23153
|
+
# @param [Boolean] return_partial_success
|
23154
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
23155
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
23156
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
23157
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
23158
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
23159
|
+
# explicitly documented otherwise in service or product specific documentation.
|
22758
23160
|
# @param [String] fields
|
22759
23161
|
# Selector specifying which fields to include in a partial response.
|
22760
23162
|
# @param [String] quota_user
|
@@ -22772,7 +23174,7 @@ module Google
|
|
22772
23174
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
22773
23175
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
22774
23176
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
22775
|
-
def list_project_location_rag_corpora_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
23177
|
+
def list_project_location_rag_corpora_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
22776
23178
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
22777
23179
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
22778
23180
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -22780,6 +23182,7 @@ module Google
|
|
22780
23182
|
command.query['filter'] = filter unless filter.nil?
|
22781
23183
|
command.query['pageSize'] = page_size unless page_size.nil?
|
22782
23184
|
command.query['pageToken'] = page_token unless page_token.nil?
|
23185
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
22783
23186
|
command.query['fields'] = fields unless fields.nil?
|
22784
23187
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
22785
23188
|
execute_or_queue_command(command, &block)
|
@@ -23077,6 +23480,13 @@ module Google
|
|
23077
23480
|
# The standard list page size.
|
23078
23481
|
# @param [String] page_token
|
23079
23482
|
# The standard list page token.
|
23483
|
+
# @param [Boolean] return_partial_success
|
23484
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
23485
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
23486
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
23487
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
23488
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
23489
|
+
# explicitly documented otherwise in service or product specific documentation.
|
23080
23490
|
# @param [String] fields
|
23081
23491
|
# Selector specifying which fields to include in a partial response.
|
23082
23492
|
# @param [String] quota_user
|
@@ -23094,7 +23504,7 @@ module Google
|
|
23094
23504
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
23095
23505
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
23096
23506
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
23097
|
-
def list_project_location_rag_corpora_rag_file_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
23507
|
+
def list_project_location_rag_corpora_rag_file_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
23098
23508
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
23099
23509
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
23100
23510
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -23102,6 +23512,7 @@ module Google
|
|
23102
23512
|
command.query['filter'] = filter unless filter.nil?
|
23103
23513
|
command.query['pageSize'] = page_size unless page_size.nil?
|
23104
23514
|
command.query['pageToken'] = page_token unless page_token.nil?
|
23515
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
23105
23516
|
command.query['fields'] = fields unless fields.nil?
|
23106
23517
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
23107
23518
|
execute_or_queue_command(command, &block)
|
@@ -23260,6 +23671,13 @@ module Google
|
|
23260
23671
|
# The standard list page size.
|
23261
23672
|
# @param [String] page_token
|
23262
23673
|
# The standard list page token.
|
23674
|
+
# @param [Boolean] return_partial_success
|
23675
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
23676
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
23677
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
23678
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
23679
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
23680
|
+
# explicitly documented otherwise in service or product specific documentation.
|
23263
23681
|
# @param [String] fields
|
23264
23682
|
# Selector specifying which fields to include in a partial response.
|
23265
23683
|
# @param [String] quota_user
|
@@ -23277,7 +23695,7 @@ module Google
|
|
23277
23695
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
23278
23696
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
23279
23697
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
23280
|
-
def list_project_location_rag_engine_config_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
23698
|
+
def list_project_location_rag_engine_config_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
23281
23699
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
23282
23700
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
23283
23701
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -23285,6 +23703,7 @@ module Google
|
|
23285
23703
|
command.query['filter'] = filter unless filter.nil?
|
23286
23704
|
command.query['pageSize'] = page_size unless page_size.nil?
|
23287
23705
|
command.query['pageToken'] = page_token unless page_token.nil?
|
23706
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
23288
23707
|
command.query['fields'] = fields unless fields.nil?
|
23289
23708
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
23290
23709
|
execute_or_queue_command(command, &block)
|
@@ -24376,6 +24795,13 @@ module Google
|
|
24376
24795
|
# The standard list page size.
|
24377
24796
|
# @param [String] page_token
|
24378
24797
|
# The standard list page token.
|
24798
|
+
# @param [Boolean] return_partial_success
|
24799
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
24800
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
24801
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
24802
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
24803
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
24804
|
+
# explicitly documented otherwise in service or product specific documentation.
|
24379
24805
|
# @param [String] fields
|
24380
24806
|
# Selector specifying which fields to include in a partial response.
|
24381
24807
|
# @param [String] quota_user
|
@@ -24393,7 +24819,7 @@ module Google
|
|
24393
24819
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
24394
24820
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
24395
24821
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
24396
|
-
def list_project_location_reasoning_engine_memory_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
24822
|
+
def list_project_location_reasoning_engine_memory_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
24397
24823
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
24398
24824
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
24399
24825
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -24401,6 +24827,7 @@ module Google
|
|
24401
24827
|
command.query['filter'] = filter unless filter.nil?
|
24402
24828
|
command.query['pageSize'] = page_size unless page_size.nil?
|
24403
24829
|
command.query['pageToken'] = page_token unless page_token.nil?
|
24830
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
24404
24831
|
command.query['fields'] = fields unless fields.nil?
|
24405
24832
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
24406
24833
|
execute_or_queue_command(command, &block)
|
@@ -24559,6 +24986,13 @@ module Google
|
|
24559
24986
|
# The standard list page size.
|
24560
24987
|
# @param [String] page_token
|
24561
24988
|
# The standard list page token.
|
24989
|
+
# @param [Boolean] return_partial_success
|
24990
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
24991
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
24992
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
24993
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
24994
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
24995
|
+
# explicitly documented otherwise in service or product specific documentation.
|
24562
24996
|
# @param [String] fields
|
24563
24997
|
# Selector specifying which fields to include in a partial response.
|
24564
24998
|
# @param [String] quota_user
|
@@ -24576,7 +25010,7 @@ module Google
|
|
24576
25010
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
24577
25011
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
24578
25012
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
24579
|
-
def list_project_location_reasoning_engine_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
25013
|
+
def list_project_location_reasoning_engine_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
24580
25014
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
24581
25015
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
24582
25016
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -24584,6 +25018,7 @@ module Google
|
|
24584
25018
|
command.query['filter'] = filter unless filter.nil?
|
24585
25019
|
command.query['pageSize'] = page_size unless page_size.nil?
|
24586
25020
|
command.query['pageToken'] = page_token unless page_token.nil?
|
25021
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
24587
25022
|
command.query['fields'] = fields unless fields.nil?
|
24588
25023
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
24589
25024
|
execute_or_queue_command(command, &block)
|
@@ -24921,6 +25356,13 @@ module Google
|
|
24921
25356
|
# The standard list page size.
|
24922
25357
|
# @param [String] page_token
|
24923
25358
|
# The standard list page token.
|
25359
|
+
# @param [Boolean] return_partial_success
|
25360
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
25361
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
25362
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
25363
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
25364
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
25365
|
+
# explicitly documented otherwise in service or product specific documentation.
|
24924
25366
|
# @param [String] fields
|
24925
25367
|
# Selector specifying which fields to include in a partial response.
|
24926
25368
|
# @param [String] quota_user
|
@@ -24938,7 +25380,7 @@ module Google
|
|
24938
25380
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
24939
25381
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
24940
25382
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
24941
|
-
def list_project_location_reasoning_engine_sandbox_environment_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
25383
|
+
def list_project_location_reasoning_engine_sandbox_environment_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
24942
25384
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
24943
25385
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
24944
25386
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -24946,6 +25388,7 @@ module Google
|
|
24946
25388
|
command.query['filter'] = filter unless filter.nil?
|
24947
25389
|
command.query['pageSize'] = page_size unless page_size.nil?
|
24948
25390
|
command.query['pageToken'] = page_token unless page_token.nil?
|
25391
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
24949
25392
|
command.query['fields'] = fields unless fields.nil?
|
24950
25393
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
24951
25394
|
execute_or_queue_command(command, &block)
|
@@ -25367,6 +25810,13 @@ module Google
|
|
25367
25810
|
# The standard list page size.
|
25368
25811
|
# @param [String] page_token
|
25369
25812
|
# The standard list page token.
|
25813
|
+
# @param [Boolean] return_partial_success
|
25814
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
25815
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
25816
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
25817
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
25818
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
25819
|
+
# explicitly documented otherwise in service or product specific documentation.
|
25370
25820
|
# @param [String] fields
|
25371
25821
|
# Selector specifying which fields to include in a partial response.
|
25372
25822
|
# @param [String] quota_user
|
@@ -25384,7 +25834,7 @@ module Google
|
|
25384
25834
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
25385
25835
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
25386
25836
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
25387
|
-
def list_project_location_reasoning_engine_session_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
25837
|
+
def list_project_location_reasoning_engine_session_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
25388
25838
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
25389
25839
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
25390
25840
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -25392,6 +25842,7 @@ module Google
|
|
25392
25842
|
command.query['filter'] = filter unless filter.nil?
|
25393
25843
|
command.query['pageSize'] = page_size unless page_size.nil?
|
25394
25844
|
command.query['pageToken'] = page_token unless page_token.nil?
|
25845
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
25395
25846
|
command.query['fields'] = fields unless fields.nil?
|
25396
25847
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
25397
25848
|
execute_or_queue_command(command, &block)
|
@@ -25828,6 +26279,13 @@ module Google
|
|
25828
26279
|
# The standard list page size.
|
25829
26280
|
# @param [String] page_token
|
25830
26281
|
# The standard list page token.
|
26282
|
+
# @param [Boolean] return_partial_success
|
26283
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
26284
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
26285
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
26286
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
26287
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
26288
|
+
# explicitly documented otherwise in service or product specific documentation.
|
25831
26289
|
# @param [String] fields
|
25832
26290
|
# Selector specifying which fields to include in a partial response.
|
25833
26291
|
# @param [String] quota_user
|
@@ -25845,7 +26303,7 @@ module Google
|
|
25845
26303
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
25846
26304
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
25847
26305
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
25848
|
-
def list_project_location_schedule_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
26306
|
+
def list_project_location_schedule_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
25849
26307
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
25850
26308
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
25851
26309
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -25853,6 +26311,7 @@ module Google
|
|
25853
26311
|
command.query['filter'] = filter unless filter.nil?
|
25854
26312
|
command.query['pageSize'] = page_size unless page_size.nil?
|
25855
26313
|
command.query['pageToken'] = page_token unless page_token.nil?
|
26314
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
25856
26315
|
command.query['fields'] = fields unless fields.nil?
|
25857
26316
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
25858
26317
|
execute_or_queue_command(command, &block)
|
@@ -25974,6 +26433,13 @@ module Google
|
|
25974
26433
|
# The standard list page size.
|
25975
26434
|
# @param [String] page_token
|
25976
26435
|
# The standard list page token.
|
26436
|
+
# @param [Boolean] return_partial_success
|
26437
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
26438
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
26439
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
26440
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
26441
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
26442
|
+
# explicitly documented otherwise in service or product specific documentation.
|
25977
26443
|
# @param [String] fields
|
25978
26444
|
# Selector specifying which fields to include in a partial response.
|
25979
26445
|
# @param [String] quota_user
|
@@ -25991,7 +26457,7 @@ module Google
|
|
25991
26457
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
25992
26458
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
25993
26459
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
25994
|
-
def list_project_location_solver_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
26460
|
+
def list_project_location_solver_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
25995
26461
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
25996
26462
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
25997
26463
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -25999,6 +26465,7 @@ module Google
|
|
25999
26465
|
command.query['filter'] = filter unless filter.nil?
|
26000
26466
|
command.query['pageSize'] = page_size unless page_size.nil?
|
26001
26467
|
command.query['pageToken'] = page_token unless page_token.nil?
|
26468
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
26002
26469
|
command.query['fields'] = fields unless fields.nil?
|
26003
26470
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
26004
26471
|
execute_or_queue_command(command, &block)
|
@@ -26294,6 +26761,13 @@ module Google
|
|
26294
26761
|
# The standard list page size.
|
26295
26762
|
# @param [String] page_token
|
26296
26763
|
# The standard list page token.
|
26764
|
+
# @param [Boolean] return_partial_success
|
26765
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
26766
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
26767
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
26768
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
26769
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
26770
|
+
# explicitly documented otherwise in service or product specific documentation.
|
26297
26771
|
# @param [String] fields
|
26298
26772
|
# Selector specifying which fields to include in a partial response.
|
26299
26773
|
# @param [String] quota_user
|
@@ -26311,7 +26785,7 @@ module Google
|
|
26311
26785
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
26312
26786
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
26313
26787
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
26314
|
-
def list_project_location_specialist_pool_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
26788
|
+
def list_project_location_specialist_pool_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
26315
26789
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
26316
26790
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
26317
26791
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -26319,6 +26793,7 @@ module Google
|
|
26319
26793
|
command.query['filter'] = filter unless filter.nil?
|
26320
26794
|
command.query['pageSize'] = page_size unless page_size.nil?
|
26321
26795
|
command.query['pageToken'] = page_token unless page_token.nil?
|
26796
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
26322
26797
|
command.query['fields'] = fields unless fields.nil?
|
26323
26798
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
26324
26799
|
execute_or_queue_command(command, &block)
|
@@ -26647,6 +27122,13 @@ module Google
|
|
26647
27122
|
# The standard list page size.
|
26648
27123
|
# @param [String] page_token
|
26649
27124
|
# The standard list page token.
|
27125
|
+
# @param [Boolean] return_partial_success
|
27126
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
27127
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
27128
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
27129
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
27130
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
27131
|
+
# explicitly documented otherwise in service or product specific documentation.
|
26650
27132
|
# @param [String] fields
|
26651
27133
|
# Selector specifying which fields to include in a partial response.
|
26652
27134
|
# @param [String] quota_user
|
@@ -26664,7 +27146,7 @@ module Google
|
|
26664
27146
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
26665
27147
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
26666
27148
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
26667
|
-
def list_project_location_study_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
27149
|
+
def list_project_location_study_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
26668
27150
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
26669
27151
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
26670
27152
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -26672,6 +27154,7 @@ module Google
|
|
26672
27154
|
command.query['filter'] = filter unless filter.nil?
|
26673
27155
|
command.query['pageSize'] = page_size unless page_size.nil?
|
26674
27156
|
command.query['pageToken'] = page_token unless page_token.nil?
|
27157
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
26675
27158
|
command.query['fields'] = fields unless fields.nil?
|
26676
27159
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
26677
27160
|
execute_or_queue_command(command, &block)
|
@@ -27176,6 +27659,13 @@ module Google
|
|
27176
27659
|
# The standard list page size.
|
27177
27660
|
# @param [String] page_token
|
27178
27661
|
# The standard list page token.
|
27662
|
+
# @param [Boolean] return_partial_success
|
27663
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
27664
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
27665
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
27666
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
27667
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
27668
|
+
# explicitly documented otherwise in service or product specific documentation.
|
27179
27669
|
# @param [String] fields
|
27180
27670
|
# Selector specifying which fields to include in a partial response.
|
27181
27671
|
# @param [String] quota_user
|
@@ -27193,7 +27683,7 @@ module Google
|
|
27193
27683
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
27194
27684
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
27195
27685
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
27196
|
-
def list_project_location_study_trial_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
27686
|
+
def list_project_location_study_trial_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
27197
27687
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
27198
27688
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
27199
27689
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -27201,6 +27691,7 @@ module Google
|
|
27201
27691
|
command.query['filter'] = filter unless filter.nil?
|
27202
27692
|
command.query['pageSize'] = page_size unless page_size.nil?
|
27203
27693
|
command.query['pageToken'] = page_token unless page_token.nil?
|
27694
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
27204
27695
|
command.query['fields'] = fields unless fields.nil?
|
27205
27696
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
27206
27697
|
execute_or_queue_command(command, &block)
|
@@ -27920,6 +28411,13 @@ module Google
|
|
27920
28411
|
# The standard list page size.
|
27921
28412
|
# @param [String] page_token
|
27922
28413
|
# The standard list page token.
|
28414
|
+
# @param [Boolean] return_partial_success
|
28415
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
28416
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
28417
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
28418
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
28419
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
28420
|
+
# explicitly documented otherwise in service or product specific documentation.
|
27923
28421
|
# @param [String] fields
|
27924
28422
|
# Selector specifying which fields to include in a partial response.
|
27925
28423
|
# @param [String] quota_user
|
@@ -27937,7 +28435,7 @@ module Google
|
|
27937
28435
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
27938
28436
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
27939
28437
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
27940
|
-
def list_project_location_tensorboard_experiment_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
28438
|
+
def list_project_location_tensorboard_experiment_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
27941
28439
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
27942
28440
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
27943
28441
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -27945,6 +28443,7 @@ module Google
|
|
27945
28443
|
command.query['filter'] = filter unless filter.nil?
|
27946
28444
|
command.query['pageSize'] = page_size unless page_size.nil?
|
27947
28445
|
command.query['pageToken'] = page_token unless page_token.nil?
|
28446
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
27948
28447
|
command.query['fields'] = fields unless fields.nil?
|
27949
28448
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
27950
28449
|
execute_or_queue_command(command, &block)
|
@@ -28372,6 +28871,13 @@ module Google
|
|
28372
28871
|
# The standard list page size.
|
28373
28872
|
# @param [String] page_token
|
28374
28873
|
# The standard list page token.
|
28874
|
+
# @param [Boolean] return_partial_success
|
28875
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
28876
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
28877
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
28878
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
28879
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
28880
|
+
# explicitly documented otherwise in service or product specific documentation.
|
28375
28881
|
# @param [String] fields
|
28376
28882
|
# Selector specifying which fields to include in a partial response.
|
28377
28883
|
# @param [String] quota_user
|
@@ -28389,7 +28895,7 @@ module Google
|
|
28389
28895
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
28390
28896
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
28391
28897
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
28392
|
-
def list_project_location_tensorboard_experiment_run_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
28898
|
+
def list_project_location_tensorboard_experiment_run_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
28393
28899
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
28394
28900
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
28395
28901
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -28397,6 +28903,7 @@ module Google
|
|
28397
28903
|
command.query['filter'] = filter unless filter.nil?
|
28398
28904
|
command.query['pageSize'] = page_size unless page_size.nil?
|
28399
28905
|
command.query['pageToken'] = page_token unless page_token.nil?
|
28906
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
28400
28907
|
command.query['fields'] = fields unless fields.nil?
|
28401
28908
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
28402
28909
|
execute_or_queue_command(command, &block)
|
@@ -28865,6 +29372,13 @@ module Google
|
|
28865
29372
|
# The standard list page size.
|
28866
29373
|
# @param [String] page_token
|
28867
29374
|
# The standard list page token.
|
29375
|
+
# @param [Boolean] return_partial_success
|
29376
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
29377
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
29378
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
29379
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
29380
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
29381
|
+
# explicitly documented otherwise in service or product specific documentation.
|
28868
29382
|
# @param [String] fields
|
28869
29383
|
# Selector specifying which fields to include in a partial response.
|
28870
29384
|
# @param [String] quota_user
|
@@ -28882,7 +29396,7 @@ module Google
|
|
28882
29396
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
28883
29397
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
28884
29398
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
28885
|
-
def list_project_location_tensorboard_experiment_run_time_series_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
29399
|
+
def list_project_location_tensorboard_experiment_run_time_series_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
28886
29400
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
28887
29401
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
28888
29402
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -28890,6 +29404,7 @@ module Google
|
|
28890
29404
|
command.query['filter'] = filter unless filter.nil?
|
28891
29405
|
command.query['pageSize'] = page_size unless page_size.nil?
|
28892
29406
|
command.query['pageToken'] = page_token unless page_token.nil?
|
29407
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
28893
29408
|
command.query['fields'] = fields unless fields.nil?
|
28894
29409
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
28895
29410
|
execute_or_queue_command(command, &block)
|
@@ -29048,6 +29563,13 @@ module Google
|
|
29048
29563
|
# The standard list page size.
|
29049
29564
|
# @param [String] page_token
|
29050
29565
|
# The standard list page token.
|
29566
|
+
# @param [Boolean] return_partial_success
|
29567
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
29568
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
29569
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
29570
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
29571
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
29572
|
+
# explicitly documented otherwise in service or product specific documentation.
|
29051
29573
|
# @param [String] fields
|
29052
29574
|
# Selector specifying which fields to include in a partial response.
|
29053
29575
|
# @param [String] quota_user
|
@@ -29065,7 +29587,7 @@ module Google
|
|
29065
29587
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
29066
29588
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
29067
29589
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
29068
|
-
def list_project_location_tensorboard_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
29590
|
+
def list_project_location_tensorboard_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
29069
29591
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
29070
29592
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
29071
29593
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -29073,6 +29595,7 @@ module Google
|
|
29073
29595
|
command.query['filter'] = filter unless filter.nil?
|
29074
29596
|
command.query['pageSize'] = page_size unless page_size.nil?
|
29075
29597
|
command.query['pageToken'] = page_token unless page_token.nil?
|
29598
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
29076
29599
|
command.query['fields'] = fields unless fields.nil?
|
29077
29600
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
29078
29601
|
execute_or_queue_command(command, &block)
|
@@ -29424,6 +29947,13 @@ module Google
|
|
29424
29947
|
# The standard list page size.
|
29425
29948
|
# @param [String] page_token
|
29426
29949
|
# The standard list page token.
|
29950
|
+
# @param [Boolean] return_partial_success
|
29951
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
29952
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
29953
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
29954
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
29955
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
29956
|
+
# explicitly documented otherwise in service or product specific documentation.
|
29427
29957
|
# @param [String] fields
|
29428
29958
|
# Selector specifying which fields to include in a partial response.
|
29429
29959
|
# @param [String] quota_user
|
@@ -29441,7 +29971,7 @@ module Google
|
|
29441
29971
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
29442
29972
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
29443
29973
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
29444
|
-
def list_project_location_training_pipeline_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
29974
|
+
def list_project_location_training_pipeline_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
29445
29975
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
29446
29976
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
|
29447
29977
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
|
@@ -29449,6 +29979,7 @@ module Google
|
|
29449
29979
|
command.query['filter'] = filter unless filter.nil?
|
29450
29980
|
command.query['pageSize'] = page_size unless page_size.nil?
|
29451
29981
|
command.query['pageToken'] = page_token unless page_token.nil?
|
29982
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
29452
29983
|
command.query['fields'] = fields unless fields.nil?
|
29453
29984
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
29454
29985
|
execute_or_queue_command(command, &block)
|