google-apis-discoveryengine_v1beta 0.83.0 → 0.84.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/discoveryengine_v1beta/classes.rb +101 -35
- data/lib/google/apis/discoveryengine_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1beta/representations.rb +12 -0
- data/lib/google/apis/discoveryengine_v1beta/service.rb +135 -15
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3ee3344dee6a6e9b88ba235a94f5f80fdb180a4df2a3b160b6898488b8fda62
|
4
|
+
data.tar.gz: cc10d5d64a09c81835c00dfb8eba9747875ac70bc4e9bc346294647dfedbfaae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: faf50dd5a658760f10b8466724f85edd06ed3ce45d1b1e04de7c49169cc13b3a32205f08f140ecf0d48afa8c066368a7ace5238f9de5e73ecbb03af47b20225c
|
7
|
+
data.tar.gz: cdf4a8a559df8465a60d5dbd8fe7fe4e0a00dd00f44ac09ed5022a241d16f917c747ee48ded9676398da82359977bbbaee9955eb7cb656ac10fe74431ab046f7
|
data/CHANGELOG.md
CHANGED
@@ -1463,12 +1463,7 @@ module Google
|
|
1463
1463
|
class GoogleCloudDiscoveryengineV1ActionConfig
|
1464
1464
|
include Google::Apis::Core::Hashable
|
1465
1465
|
|
1466
|
-
#
|
1467
|
-
# Required parameters for sources that support OAUTH, i.e. `gmail`, `
|
1468
|
-
# google_calendar`, `jira`, `workday`, `salesforce`, `confluence`: * Key: `
|
1469
|
-
# client_id` * Value: type STRING. The client ID for the service provider to
|
1470
|
-
# identify your application. * Key: `client_secret` * Value:type STRING. The
|
1471
|
-
# client secret generated by the application's authorization server.
|
1466
|
+
# Optional. Action parameters in structured json format.
|
1472
1467
|
# Corresponds to the JSON property `actionParams`
|
1473
1468
|
# @return [Hash<String,Object>]
|
1474
1469
|
attr_accessor :action_params
|
@@ -1480,6 +1475,11 @@ module Google
|
|
1480
1475
|
attr_accessor :is_action_configured
|
1481
1476
|
alias_method :is_action_configured?, :is_action_configured
|
1482
1477
|
|
1478
|
+
# Optional. Action parameters in json string format.
|
1479
|
+
# Corresponds to the JSON property `jsonActionParams`
|
1480
|
+
# @return [String]
|
1481
|
+
attr_accessor :json_action_params
|
1482
|
+
|
1483
1483
|
# Optional. The Service Directory resource name (projects/*/locations/*/
|
1484
1484
|
# namespaces/*/services/*) representing a VPC network endpoint used to connect
|
1485
1485
|
# to the data source's `instance_uri`, defined in DataConnector.params. Required
|
@@ -1503,6 +1503,7 @@ module Google
|
|
1503
1503
|
def update!(**args)
|
1504
1504
|
@action_params = args[:action_params] if args.key?(:action_params)
|
1505
1505
|
@is_action_configured = args[:is_action_configured] if args.key?(:is_action_configured)
|
1506
|
+
@json_action_params = args[:json_action_params] if args.key?(:json_action_params)
|
1506
1507
|
@service_name = args[:service_name] if args.key?(:service_name)
|
1507
1508
|
@use_static_secrets = args[:use_static_secrets] if args.key?(:use_static_secrets)
|
1508
1509
|
end
|
@@ -1915,6 +1916,11 @@ module Google
|
|
1915
1916
|
class GoogleCloudDiscoveryengineV1BapConfig
|
1916
1917
|
include Google::Apis::Core::Hashable
|
1917
1918
|
|
1919
|
+
# Optional. The actions enabled on the associated BAP connection.
|
1920
|
+
# Corresponds to the JSON property `enabledActions`
|
1921
|
+
# @return [Array<String>]
|
1922
|
+
attr_accessor :enabled_actions
|
1923
|
+
|
1918
1924
|
# Required. The supported connector modes for the associated BAP connection.
|
1919
1925
|
# Corresponds to the JSON property `supportedConnectorModes`
|
1920
1926
|
# @return [Array<String>]
|
@@ -1926,6 +1932,7 @@ module Google
|
|
1926
1932
|
|
1927
1933
|
# Update properties of this object
|
1928
1934
|
def update!(**args)
|
1935
|
+
@enabled_actions = args[:enabled_actions] if args.key?(:enabled_actions)
|
1929
1936
|
@supported_connector_modes = args[:supported_connector_modes] if args.key?(:supported_connector_modes)
|
1930
1937
|
end
|
1931
1938
|
end
|
@@ -3021,6 +3028,12 @@ module Google
|
|
3021
3028
|
# @return [Hash<String,Object>]
|
3022
3029
|
attr_accessor :auth_params
|
3023
3030
|
|
3031
|
+
# Optional. Any authentication parameters specific to EUA connectors in json
|
3032
|
+
# string format.
|
3033
|
+
# Corresponds to the JSON property `jsonAuthParams`
|
3034
|
+
# @return [String]
|
3035
|
+
attr_accessor :json_auth_params
|
3036
|
+
|
3024
3037
|
# Tenant information for a connector source. This includes some of the same
|
3025
3038
|
# information stored in the Credential message, but is limited to only what is
|
3026
3039
|
# needed to provide a list of accessible tenants to the user.
|
@@ -3036,6 +3049,7 @@ module Google
|
|
3036
3049
|
def update!(**args)
|
3037
3050
|
@additional_params = args[:additional_params] if args.key?(:additional_params)
|
3038
3051
|
@auth_params = args[:auth_params] if args.key?(:auth_params)
|
3052
|
+
@json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
|
3039
3053
|
@tenant = args[:tenant] if args.key?(:tenant)
|
3040
3054
|
end
|
3041
3055
|
end
|
@@ -3050,11 +3064,17 @@ module Google
|
|
3050
3064
|
# @return [Hash<String,Object>]
|
3051
3065
|
attr_accessor :additional_params
|
3052
3066
|
|
3053
|
-
# Optional. Any authentication parameters specific to FEDERATED.
|
3067
|
+
# Optional. Any authentication parameters specific to FEDERATED connectors.
|
3054
3068
|
# Corresponds to the JSON property `authParams`
|
3055
3069
|
# @return [Hash<String,Object>]
|
3056
3070
|
attr_accessor :auth_params
|
3057
3071
|
|
3072
|
+
# Optional. Any authentication parameters specific to FEDERATED connectors in
|
3073
|
+
# json string format.
|
3074
|
+
# Corresponds to the JSON property `jsonAuthParams`
|
3075
|
+
# @return [String]
|
3076
|
+
attr_accessor :json_auth_params
|
3077
|
+
|
3058
3078
|
def initialize(**args)
|
3059
3079
|
update!(**args)
|
3060
3080
|
end
|
@@ -3063,6 +3083,7 @@ module Google
|
|
3063
3083
|
def update!(**args)
|
3064
3084
|
@additional_params = args[:additional_params] if args.key?(:additional_params)
|
3065
3085
|
@auth_params = args[:auth_params] if args.key?(:auth_params)
|
3086
|
+
@json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
|
3066
3087
|
end
|
3067
3088
|
end
|
3068
3089
|
|
@@ -3227,6 +3248,12 @@ module Google
|
|
3227
3248
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1CmekConfig]
|
3228
3249
|
attr_accessor :cmek_config
|
3229
3250
|
|
3251
|
+
# Optional. Configuration for configurable billing approach. See go/vais-
|
3252
|
+
# repricing-billing-dd for more details, only apply to non-Spark UCS Search.
|
3253
|
+
# Corresponds to the JSON property `configurableBillingApproach`
|
3254
|
+
# @return [String]
|
3255
|
+
attr_accessor :configurable_billing_approach
|
3256
|
+
|
3230
3257
|
# Immutable. The content config of the data store. If this field is unset, the
|
3231
3258
|
# server behavior defaults to ContentConfig.NO_CONTENT.
|
3232
3259
|
# Corresponds to the JSON property `contentConfig`
|
@@ -3330,6 +3357,7 @@ module Google
|
|
3330
3357
|
@advanced_site_search_config = args[:advanced_site_search_config] if args.key?(:advanced_site_search_config)
|
3331
3358
|
@billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
|
3332
3359
|
@cmek_config = args[:cmek_config] if args.key?(:cmek_config)
|
3360
|
+
@configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
|
3333
3361
|
@content_config = args[:content_config] if args.key?(:content_config)
|
3334
3362
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3335
3363
|
@default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
|
@@ -4080,7 +4108,7 @@ module Google
|
|
4080
4108
|
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
4081
4109
|
# org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
|
4082
4110
|
# personalization-memory` * `disable-image-generation` * `disable-video-
|
4083
|
-
# generation`
|
4111
|
+
# generation` * `disable-onedrive-upload`
|
4084
4112
|
# Corresponds to the JSON property `features`
|
4085
4113
|
# @return [Hash<String,String>]
|
4086
4114
|
attr_accessor :features
|
@@ -6523,12 +6551,7 @@ module Google
|
|
6523
6551
|
class GoogleCloudDiscoveryengineV1alphaActionConfig
|
6524
6552
|
include Google::Apis::Core::Hashable
|
6525
6553
|
|
6526
|
-
#
|
6527
|
-
# Required parameters for sources that support OAUTH, i.e. `gmail`, `
|
6528
|
-
# google_calendar`, `jira`, `workday`, `salesforce`, `confluence`: * Key: `
|
6529
|
-
# client_id` * Value: type STRING. The client ID for the service provider to
|
6530
|
-
# identify your application. * Key: `client_secret` * Value:type STRING. The
|
6531
|
-
# client secret generated by the application's authorization server.
|
6554
|
+
# Optional. Action parameters in structured json format.
|
6532
6555
|
# Corresponds to the JSON property `actionParams`
|
6533
6556
|
# @return [Hash<String,Object>]
|
6534
6557
|
attr_accessor :action_params
|
@@ -6540,6 +6563,11 @@ module Google
|
|
6540
6563
|
attr_accessor :is_action_configured
|
6541
6564
|
alias_method :is_action_configured?, :is_action_configured
|
6542
6565
|
|
6566
|
+
# Optional. Action parameters in json string format.
|
6567
|
+
# Corresponds to the JSON property `jsonActionParams`
|
6568
|
+
# @return [String]
|
6569
|
+
attr_accessor :json_action_params
|
6570
|
+
|
6543
6571
|
# Optional. The Service Directory resource name (projects/*/locations/*/
|
6544
6572
|
# namespaces/*/services/*) representing a VPC network endpoint used to connect
|
6545
6573
|
# to the data source's `instance_uri`, defined in DataConnector.params. Required
|
@@ -6563,6 +6591,7 @@ module Google
|
|
6563
6591
|
def update!(**args)
|
6564
6592
|
@action_params = args[:action_params] if args.key?(:action_params)
|
6565
6593
|
@is_action_configured = args[:is_action_configured] if args.key?(:is_action_configured)
|
6594
|
+
@json_action_params = args[:json_action_params] if args.key?(:json_action_params)
|
6566
6595
|
@service_name = args[:service_name] if args.key?(:service_name)
|
6567
6596
|
@use_static_secrets = args[:use_static_secrets] if args.key?(:use_static_secrets)
|
6568
6597
|
end
|
@@ -7408,6 +7437,11 @@ module Google
|
|
7408
7437
|
class GoogleCloudDiscoveryengineV1alphaBapConfig
|
7409
7438
|
include Google::Apis::Core::Hashable
|
7410
7439
|
|
7440
|
+
# Optional. The actions enabled on the associated BAP connection.
|
7441
|
+
# Corresponds to the JSON property `enabledActions`
|
7442
|
+
# @return [Array<String>]
|
7443
|
+
attr_accessor :enabled_actions
|
7444
|
+
|
7411
7445
|
# Required. The supported connector modes for the associated BAP connection.
|
7412
7446
|
# Corresponds to the JSON property `supportedConnectorModes`
|
7413
7447
|
# @return [Array<String>]
|
@@ -7419,6 +7453,7 @@ module Google
|
|
7419
7453
|
|
7420
7454
|
# Update properties of this object
|
7421
7455
|
def update!(**args)
|
7456
|
+
@enabled_actions = args[:enabled_actions] if args.key?(:enabled_actions)
|
7422
7457
|
@supported_connector_modes = args[:supported_connector_modes] if args.key?(:supported_connector_modes)
|
7423
7458
|
end
|
7424
7459
|
end
|
@@ -8781,6 +8816,12 @@ module Google
|
|
8781
8816
|
# @return [Hash<String,Object>]
|
8782
8817
|
attr_accessor :auth_params
|
8783
8818
|
|
8819
|
+
# Optional. Any authentication parameters specific to EUA connectors in json
|
8820
|
+
# string format.
|
8821
|
+
# Corresponds to the JSON property `jsonAuthParams`
|
8822
|
+
# @return [String]
|
8823
|
+
attr_accessor :json_auth_params
|
8824
|
+
|
8784
8825
|
# Tenant information for a connector source. This includes some of the same
|
8785
8826
|
# information stored in the Credential message, but is limited to only what is
|
8786
8827
|
# needed to provide a list of accessible tenants to the user.
|
@@ -8796,6 +8837,7 @@ module Google
|
|
8796
8837
|
def update!(**args)
|
8797
8838
|
@additional_params = args[:additional_params] if args.key?(:additional_params)
|
8798
8839
|
@auth_params = args[:auth_params] if args.key?(:auth_params)
|
8840
|
+
@json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
|
8799
8841
|
@tenant = args[:tenant] if args.key?(:tenant)
|
8800
8842
|
end
|
8801
8843
|
end
|
@@ -8810,11 +8852,17 @@ module Google
|
|
8810
8852
|
# @return [Hash<String,Object>]
|
8811
8853
|
attr_accessor :additional_params
|
8812
8854
|
|
8813
|
-
# Optional. Any authentication parameters specific to FEDERATED.
|
8855
|
+
# Optional. Any authentication parameters specific to FEDERATED connectors.
|
8814
8856
|
# Corresponds to the JSON property `authParams`
|
8815
8857
|
# @return [Hash<String,Object>]
|
8816
8858
|
attr_accessor :auth_params
|
8817
8859
|
|
8860
|
+
# Optional. Any authentication parameters specific to FEDERATED connectors in
|
8861
|
+
# json string format.
|
8862
|
+
# Corresponds to the JSON property `jsonAuthParams`
|
8863
|
+
# @return [String]
|
8864
|
+
attr_accessor :json_auth_params
|
8865
|
+
|
8818
8866
|
def initialize(**args)
|
8819
8867
|
update!(**args)
|
8820
8868
|
end
|
@@ -8823,6 +8871,7 @@ module Google
|
|
8823
8871
|
def update!(**args)
|
8824
8872
|
@additional_params = args[:additional_params] if args.key?(:additional_params)
|
8825
8873
|
@auth_params = args[:auth_params] if args.key?(:auth_params)
|
8874
|
+
@json_auth_params = args[:json_auth_params] if args.key?(:json_auth_params)
|
8826
8875
|
end
|
8827
8876
|
end
|
8828
8877
|
|
@@ -8987,6 +9036,12 @@ module Google
|
|
8987
9036
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCmekConfig]
|
8988
9037
|
attr_accessor :cmek_config
|
8989
9038
|
|
9039
|
+
# Optional. Configuration for configurable billing approach. See go/vais-
|
9040
|
+
# repricing-billing-dd for more details, only apply to non-Spark UCS Search.
|
9041
|
+
# Corresponds to the JSON property `configurableBillingApproach`
|
9042
|
+
# @return [String]
|
9043
|
+
attr_accessor :configurable_billing_approach
|
9044
|
+
|
8990
9045
|
# Immutable. The content config of the data store. If this field is unset, the
|
8991
9046
|
# server behavior defaults to ContentConfig.NO_CONTENT.
|
8992
9047
|
# Corresponds to the JSON property `contentConfig`
|
@@ -9105,6 +9160,7 @@ module Google
|
|
9105
9160
|
@advanced_site_search_config = args[:advanced_site_search_config] if args.key?(:advanced_site_search_config)
|
9106
9161
|
@billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
|
9107
9162
|
@cmek_config = args[:cmek_config] if args.key?(:cmek_config)
|
9163
|
+
@configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
|
9108
9164
|
@content_config = args[:content_config] if args.key?(:content_config)
|
9109
9165
|
@create_time = args[:create_time] if args.key?(:create_time)
|
9110
9166
|
@default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
|
@@ -9918,7 +9974,7 @@ module Google
|
|
9918
9974
|
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
9919
9975
|
# org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
|
9920
9976
|
# personalization-memory` * `disable-image-generation` * `disable-video-
|
9921
|
-
# generation`
|
9977
|
+
# generation` * `disable-onedrive-upload`
|
9922
9978
|
# Corresponds to the JSON property `features`
|
9923
9979
|
# @return [Hash<String,String>]
|
9924
9980
|
attr_accessor :features
|
@@ -12721,9 +12777,8 @@ module Google
|
|
12721
12777
|
alias_method :safe_search?, :safe_search
|
12722
12778
|
|
12723
12779
|
# SearchAddonSpec is used to disable add-ons for search as per new repricing
|
12724
|
-
# model.
|
12725
|
-
#
|
12726
|
-
# applicable.
|
12780
|
+
# model. By default if the SearchAddonSpec is not specified, we consider that
|
12781
|
+
# the customer wants to enable them wherever applicable.
|
12727
12782
|
# Corresponds to the JSON property `searchAddonSpec`
|
12728
12783
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaSearchRequestSearchAddonSpec]
|
12729
12784
|
attr_accessor :search_addon_spec
|
@@ -13780,9 +13835,8 @@ module Google
|
|
13780
13835
|
end
|
13781
13836
|
|
13782
13837
|
# SearchAddonSpec is used to disable add-ons for search as per new repricing
|
13783
|
-
# model.
|
13784
|
-
#
|
13785
|
-
# applicable.
|
13838
|
+
# model. By default if the SearchAddonSpec is not specified, we consider that
|
13839
|
+
# the customer wants to enable them wherever applicable.
|
13786
13840
|
class GoogleCloudDiscoveryengineV1alphaSearchRequestSearchAddonSpec
|
13787
13841
|
include Google::Apis::Core::Hashable
|
13788
13842
|
|
@@ -19995,6 +20049,12 @@ module Google
|
|
19995
20049
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCmekConfig]
|
19996
20050
|
attr_accessor :cmek_config
|
19997
20051
|
|
20052
|
+
# Optional. Configuration for configurable billing approach. See go/vais-
|
20053
|
+
# repricing-billing-dd for more details, only apply to non-Spark UCS Search.
|
20054
|
+
# Corresponds to the JSON property `configurableBillingApproach`
|
20055
|
+
# @return [String]
|
20056
|
+
attr_accessor :configurable_billing_approach
|
20057
|
+
|
19998
20058
|
# Immutable. The content config of the data store. If this field is unset, the
|
19999
20059
|
# server behavior defaults to ContentConfig.NO_CONTENT.
|
20000
20060
|
# Corresponds to the JSON property `contentConfig`
|
@@ -20108,6 +20168,7 @@ module Google
|
|
20108
20168
|
@advanced_site_search_config = args[:advanced_site_search_config] if args.key?(:advanced_site_search_config)
|
20109
20169
|
@billing_estimation = args[:billing_estimation] if args.key?(:billing_estimation)
|
20110
20170
|
@cmek_config = args[:cmek_config] if args.key?(:cmek_config)
|
20171
|
+
@configurable_billing_approach = args[:configurable_billing_approach] if args.key?(:configurable_billing_approach)
|
20111
20172
|
@content_config = args[:content_config] if args.key?(:content_config)
|
20112
20173
|
@create_time = args[:create_time] if args.key?(:create_time)
|
20113
20174
|
@default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
|
@@ -21137,7 +21198,7 @@ module Google
|
|
21137
21198
|
# gallery` * `model-selector` * `notebook-lm` * `people-search` * `people-search-
|
21138
21199
|
# org-chart` * `bi-directional-audio` * `feedback` * `session-sharing` * `
|
21139
21200
|
# personalization-memory` * `disable-image-generation` * `disable-video-
|
21140
|
-
# generation`
|
21201
|
+
# generation` * `disable-onedrive-upload`
|
21141
21202
|
# Corresponds to the JSON property `features`
|
21142
21203
|
# @return [Hash<String,String>]
|
21143
21204
|
attr_accessor :features
|
@@ -25566,9 +25627,8 @@ module Google
|
|
25566
25627
|
alias_method :safe_search?, :safe_search
|
25567
25628
|
|
25568
25629
|
# SearchAddonSpec is used to disable add-ons for search as per new repricing
|
25569
|
-
# model.
|
25570
|
-
#
|
25571
|
-
# applicable.
|
25630
|
+
# model. By default if the SearchAddonSpec is not specified, we consider that
|
25631
|
+
# the customer wants to enable them wherever applicable.
|
25572
25632
|
# Corresponds to the JSON property `searchAddonSpec`
|
25573
25633
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchRequestSearchAddonSpec]
|
25574
25634
|
attr_accessor :search_addon_spec
|
@@ -26614,9 +26674,8 @@ module Google
|
|
26614
26674
|
end
|
26615
26675
|
|
26616
26676
|
# SearchAddonSpec is used to disable add-ons for search as per new repricing
|
26617
|
-
# model.
|
26618
|
-
#
|
26619
|
-
# applicable.
|
26677
|
+
# model. By default if the SearchAddonSpec is not specified, we consider that
|
26678
|
+
# the customer wants to enable them wherever applicable.
|
26620
26679
|
class GoogleCloudDiscoveryengineV1betaSearchRequestSearchAddonSpec
|
26621
26680
|
include Google::Apis::Core::Hashable
|
26622
26681
|
|
@@ -29263,12 +29322,11 @@ module Google
|
|
29263
29322
|
# Search for Documents. * `view-item`: Detailed page view of a Document. * `view-
|
29264
29323
|
# item-list`: View of a panel or ordered list of Documents. * `view-home-page`:
|
29265
29324
|
# View of the home page. * `view-category-page`: View of a category page, e.g.
|
29266
|
-
# Home > Men > Jeans * `add-
|
29267
|
-
#
|
29268
|
-
#
|
29269
|
-
#
|
29270
|
-
#
|
29271
|
-
# * `conversion`: Customer defined conversion event.
|
29325
|
+
# Home > Men > Jeans Retail-related values: * `add-to-cart`: Add an item(s) to
|
29326
|
+
# cart, e.g. in Retail online shopping * `purchase`: Purchase an item(s) Media-
|
29327
|
+
# related values: * `media-play`: Start/resume watching a video, playing a song,
|
29328
|
+
# etc. * `media-complete`: Finished or stopped midway through a video, song, etc.
|
29329
|
+
# Custom conversion value: * `conversion`: Customer defined conversion event.
|
29272
29330
|
# Corresponds to the JSON property `eventType`
|
29273
29331
|
# @return [String]
|
29274
29332
|
attr_accessor :event_type
|
@@ -29561,6 +29619,13 @@ module Google
|
|
29561
29619
|
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleLongrunningOperation>]
|
29562
29620
|
attr_accessor :operations
|
29563
29621
|
|
29622
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
29623
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
29624
|
+
# when attempting to list all resources across all supported locations.
|
29625
|
+
# Corresponds to the JSON property `unreachable`
|
29626
|
+
# @return [Array<String>]
|
29627
|
+
attr_accessor :unreachable
|
29628
|
+
|
29564
29629
|
def initialize(**args)
|
29565
29630
|
update!(**args)
|
29566
29631
|
end
|
@@ -29569,6 +29634,7 @@ module Google
|
|
29569
29634
|
def update!(**args)
|
29570
29635
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
29571
29636
|
@operations = args[:operations] if args.key?(:operations)
|
29637
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
29572
29638
|
end
|
29573
29639
|
end
|
29574
29640
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1beta
|
18
18
|
# Version of the google-apis-discoveryengine_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.84.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250924"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -5124,6 +5124,7 @@ module Google
|
|
5124
5124
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5125
5125
|
hash :action_params, as: 'actionParams'
|
5126
5126
|
property :is_action_configured, as: 'isActionConfigured'
|
5127
|
+
property :json_action_params, as: 'jsonActionParams'
|
5127
5128
|
property :service_name, as: 'serviceName'
|
5128
5129
|
property :use_static_secrets, as: 'useStaticSecrets'
|
5129
5130
|
end
|
@@ -5253,6 +5254,7 @@ module Google
|
|
5253
5254
|
class GoogleCloudDiscoveryengineV1BapConfig
|
5254
5255
|
# @private
|
5255
5256
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5257
|
+
collection :enabled_actions, as: 'enabledActions'
|
5256
5258
|
collection :supported_connector_modes, as: 'supportedConnectorModes'
|
5257
5259
|
end
|
5258
5260
|
end
|
@@ -5530,6 +5532,7 @@ module Google
|
|
5530
5532
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5531
5533
|
hash :additional_params, as: 'additionalParams'
|
5532
5534
|
hash :auth_params, as: 'authParams'
|
5535
|
+
property :json_auth_params, as: 'jsonAuthParams'
|
5533
5536
|
property :tenant, as: 'tenant', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1Tenant, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1Tenant::Representation
|
5534
5537
|
|
5535
5538
|
end
|
@@ -5540,6 +5543,7 @@ module Google
|
|
5540
5543
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5541
5544
|
hash :additional_params, as: 'additionalParams'
|
5542
5545
|
hash :auth_params, as: 'authParams'
|
5546
|
+
property :json_auth_params, as: 'jsonAuthParams'
|
5543
5547
|
end
|
5544
5548
|
end
|
5545
5549
|
|
@@ -5587,6 +5591,7 @@ module Google
|
|
5587
5591
|
|
5588
5592
|
property :cmek_config, as: 'cmekConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1CmekConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1CmekConfig::Representation
|
5589
5593
|
|
5594
|
+
property :configurable_billing_approach, as: 'configurableBillingApproach'
|
5590
5595
|
property :content_config, as: 'contentConfig'
|
5591
5596
|
property :create_time, as: 'createTime'
|
5592
5597
|
property :default_schema_id, as: 'defaultSchemaId'
|
@@ -6465,6 +6470,7 @@ module Google
|
|
6465
6470
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6466
6471
|
hash :action_params, as: 'actionParams'
|
6467
6472
|
property :is_action_configured, as: 'isActionConfigured'
|
6473
|
+
property :json_action_params, as: 'jsonActionParams'
|
6468
6474
|
property :service_name, as: 'serviceName'
|
6469
6475
|
property :use_static_secrets, as: 'useStaticSecrets'
|
6470
6476
|
end
|
@@ -6722,6 +6728,7 @@ module Google
|
|
6722
6728
|
class GoogleCloudDiscoveryengineV1alphaBapConfig
|
6723
6729
|
# @private
|
6724
6730
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6731
|
+
collection :enabled_actions, as: 'enabledActions'
|
6725
6732
|
collection :supported_connector_modes, as: 'supportedConnectorModes'
|
6726
6733
|
end
|
6727
6734
|
end
|
@@ -7069,6 +7076,7 @@ module Google
|
|
7069
7076
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7070
7077
|
hash :additional_params, as: 'additionalParams'
|
7071
7078
|
hash :auth_params, as: 'authParams'
|
7079
|
+
property :json_auth_params, as: 'jsonAuthParams'
|
7072
7080
|
property :tenant, as: 'tenant', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaTenant, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaTenant::Representation
|
7073
7081
|
|
7074
7082
|
end
|
@@ -7079,6 +7087,7 @@ module Google
|
|
7079
7087
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7080
7088
|
hash :additional_params, as: 'additionalParams'
|
7081
7089
|
hash :auth_params, as: 'authParams'
|
7090
|
+
property :json_auth_params, as: 'jsonAuthParams'
|
7082
7091
|
end
|
7083
7092
|
end
|
7084
7093
|
|
@@ -7126,6 +7135,7 @@ module Google
|
|
7126
7135
|
|
7127
7136
|
property :cmek_config, as: 'cmekConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCmekConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCmekConfig::Representation
|
7128
7137
|
|
7138
|
+
property :configurable_billing_approach, as: 'configurableBillingApproach'
|
7129
7139
|
property :content_config, as: 'contentConfig'
|
7130
7140
|
property :create_time, as: 'createTime'
|
7131
7141
|
property :default_schema_id, as: 'defaultSchemaId'
|
@@ -10132,6 +10142,7 @@ module Google
|
|
10132
10142
|
|
10133
10143
|
property :cmek_config, as: 'cmekConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCmekConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCmekConfig::Representation
|
10134
10144
|
|
10145
|
+
property :configurable_billing_approach, as: 'configurableBillingApproach'
|
10135
10146
|
property :content_config, as: 'contentConfig'
|
10136
10147
|
property :create_time, as: 'createTime'
|
10137
10148
|
property :default_schema_id, as: 'defaultSchemaId'
|
@@ -12743,6 +12754,7 @@ module Google
|
|
12743
12754
|
property :next_page_token, as: 'nextPageToken'
|
12744
12755
|
collection :operations, as: 'operations', class: Google::Apis::DiscoveryengineV1beta::GoogleLongrunningOperation, decorator: Google::Apis::DiscoveryengineV1beta::GoogleLongrunningOperation::Representation
|
12745
12756
|
|
12757
|
+
collection :unreachable, as: 'unreachable'
|
12746
12758
|
end
|
12747
12759
|
end
|
12748
12760
|
|
@@ -569,6 +569,13 @@ module Google
|
|
569
569
|
# The standard list page size.
|
570
570
|
# @param [String] page_token
|
571
571
|
# The standard list page token.
|
572
|
+
# @param [Boolean] return_partial_success
|
573
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
574
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
575
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
576
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
577
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
578
|
+
# explicitly documented otherwise in service or product specific documentation.
|
572
579
|
# @param [String] fields
|
573
580
|
# Selector specifying which fields to include in a partial response.
|
574
581
|
# @param [String] quota_user
|
@@ -586,7 +593,7 @@ module Google
|
|
586
593
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
587
594
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
588
595
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
589
|
-
def list_project_location_collection_data_connector_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
596
|
+
def list_project_location_collection_data_connector_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
590
597
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
591
598
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
592
599
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -594,6 +601,7 @@ module Google
|
|
594
601
|
command.query['filter'] = filter unless filter.nil?
|
595
602
|
command.query['pageSize'] = page_size unless page_size.nil?
|
596
603
|
command.query['pageToken'] = page_token unless page_token.nil?
|
604
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
597
605
|
command.query['fields'] = fields unless fields.nil?
|
598
606
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
599
607
|
execute_or_queue_command(command, &block)
|
@@ -1351,6 +1359,13 @@ module Google
|
|
1351
1359
|
# The standard list page size.
|
1352
1360
|
# @param [String] page_token
|
1353
1361
|
# The standard list page token.
|
1362
|
+
# @param [Boolean] return_partial_success
|
1363
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
1364
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
1365
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
1366
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
1367
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
1368
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1354
1369
|
# @param [String] fields
|
1355
1370
|
# Selector specifying which fields to include in a partial response.
|
1356
1371
|
# @param [String] quota_user
|
@@ -1368,7 +1383,7 @@ module Google
|
|
1368
1383
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1369
1384
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1370
1385
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1371
|
-
def list_project_location_collection_data_store_branch_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1386
|
+
def list_project_location_collection_data_store_branch_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1372
1387
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
1373
1388
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
1374
1389
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -1376,6 +1391,7 @@ module Google
|
|
1376
1391
|
command.query['filter'] = filter unless filter.nil?
|
1377
1392
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1378
1393
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1394
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1379
1395
|
command.query['fields'] = fields unless fields.nil?
|
1380
1396
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1381
1397
|
execute_or_queue_command(command, &block)
|
@@ -1980,6 +1996,13 @@ module Google
|
|
1980
1996
|
# The standard list page size.
|
1981
1997
|
# @param [String] page_token
|
1982
1998
|
# The standard list page token.
|
1999
|
+
# @param [Boolean] return_partial_success
|
2000
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2001
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2002
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2003
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2004
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2005
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1983
2006
|
# @param [String] fields
|
1984
2007
|
# Selector specifying which fields to include in a partial response.
|
1985
2008
|
# @param [String] quota_user
|
@@ -1997,7 +2020,7 @@ module Google
|
|
1997
2020
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1998
2021
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1999
2022
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2000
|
-
def list_project_location_collection_data_store_model_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2023
|
+
def list_project_location_collection_data_store_model_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2001
2024
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
2002
2025
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
2003
2026
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -2005,6 +2028,7 @@ module Google
|
|
2005
2028
|
command.query['filter'] = filter unless filter.nil?
|
2006
2029
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2007
2030
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2031
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2008
2032
|
command.query['fields'] = fields unless fields.nil?
|
2009
2033
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2010
2034
|
execute_or_queue_command(command, &block)
|
@@ -2051,6 +2075,13 @@ module Google
|
|
2051
2075
|
# The standard list page size.
|
2052
2076
|
# @param [String] page_token
|
2053
2077
|
# The standard list page token.
|
2078
|
+
# @param [Boolean] return_partial_success
|
2079
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2080
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2081
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2082
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2083
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2084
|
+
# explicitly documented otherwise in service or product specific documentation.
|
2054
2085
|
# @param [String] fields
|
2055
2086
|
# Selector specifying which fields to include in a partial response.
|
2056
2087
|
# @param [String] quota_user
|
@@ -2068,7 +2099,7 @@ module Google
|
|
2068
2099
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2069
2100
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2070
2101
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2071
|
-
def list_project_location_collection_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2102
|
+
def list_project_location_collection_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2072
2103
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
2073
2104
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
2074
2105
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -2076,6 +2107,7 @@ module Google
|
|
2076
2107
|
command.query['filter'] = filter unless filter.nil?
|
2077
2108
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2078
2109
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2110
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2079
2111
|
command.query['fields'] = fields unless fields.nil?
|
2080
2112
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2081
2113
|
execute_or_queue_command(command, &block)
|
@@ -2309,6 +2341,13 @@ module Google
|
|
2309
2341
|
# The standard list page size.
|
2310
2342
|
# @param [String] page_token
|
2311
2343
|
# The standard list page token.
|
2344
|
+
# @param [Boolean] return_partial_success
|
2345
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2346
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2347
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2348
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2349
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2350
|
+
# explicitly documented otherwise in service or product specific documentation.
|
2312
2351
|
# @param [String] fields
|
2313
2352
|
# Selector specifying which fields to include in a partial response.
|
2314
2353
|
# @param [String] quota_user
|
@@ -2326,7 +2365,7 @@ module Google
|
|
2326
2365
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2327
2366
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2328
2367
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2329
|
-
def list_project_location_collection_data_store_schema_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2368
|
+
def list_project_location_collection_data_store_schema_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2330
2369
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
2331
2370
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
2332
2371
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -2334,6 +2373,7 @@ module Google
|
|
2334
2373
|
command.query['filter'] = filter unless filter.nil?
|
2335
2374
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2336
2375
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2376
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2337
2377
|
command.query['fields'] = fields unless fields.nil?
|
2338
2378
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2339
2379
|
execute_or_queue_command(command, &block)
|
@@ -3106,6 +3146,13 @@ module Google
|
|
3106
3146
|
# The standard list page size.
|
3107
3147
|
# @param [String] page_token
|
3108
3148
|
# The standard list page token.
|
3149
|
+
# @param [Boolean] return_partial_success
|
3150
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
3151
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
3152
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
3153
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
3154
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
3155
|
+
# explicitly documented otherwise in service or product specific documentation.
|
3109
3156
|
# @param [String] fields
|
3110
3157
|
# Selector specifying which fields to include in a partial response.
|
3111
3158
|
# @param [String] quota_user
|
@@ -3123,7 +3170,7 @@ module Google
|
|
3123
3170
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3124
3171
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3125
3172
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3126
|
-
def list_project_location_collection_data_store_site_search_engine_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3173
|
+
def list_project_location_collection_data_store_site_search_engine_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3127
3174
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
3128
3175
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
3129
3176
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -3131,6 +3178,7 @@ module Google
|
|
3131
3178
|
command.query['filter'] = filter unless filter.nil?
|
3132
3179
|
command.query['pageSize'] = page_size unless page_size.nil?
|
3133
3180
|
command.query['pageToken'] = page_token unless page_token.nil?
|
3181
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
3134
3182
|
command.query['fields'] = fields unless fields.nil?
|
3135
3183
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3136
3184
|
execute_or_queue_command(command, &block)
|
@@ -3502,6 +3550,13 @@ module Google
|
|
3502
3550
|
# The standard list page size.
|
3503
3551
|
# @param [String] page_token
|
3504
3552
|
# The standard list page token.
|
3553
|
+
# @param [Boolean] return_partial_success
|
3554
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
3555
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
3556
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
3557
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
3558
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
3559
|
+
# explicitly documented otherwise in service or product specific documentation.
|
3505
3560
|
# @param [String] fields
|
3506
3561
|
# Selector specifying which fields to include in a partial response.
|
3507
3562
|
# @param [String] quota_user
|
@@ -3519,7 +3574,7 @@ module Google
|
|
3519
3574
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3520
3575
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3521
3576
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3522
|
-
def list_project_location_collection_data_store_site_search_engine_target_site_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3577
|
+
def list_project_location_collection_data_store_site_search_engine_target_site_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3523
3578
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
3524
3579
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
3525
3580
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -3527,6 +3582,7 @@ module Google
|
|
3527
3582
|
command.query['filter'] = filter unless filter.nil?
|
3528
3583
|
command.query['pageSize'] = page_size unless page_size.nil?
|
3529
3584
|
command.query['pageToken'] = page_token unless page_token.nil?
|
3585
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
3530
3586
|
command.query['fields'] = fields unless fields.nil?
|
3531
3587
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3532
3588
|
execute_or_queue_command(command, &block)
|
@@ -4704,6 +4760,13 @@ module Google
|
|
4704
4760
|
# The standard list page size.
|
4705
4761
|
# @param [String] page_token
|
4706
4762
|
# The standard list page token.
|
4763
|
+
# @param [Boolean] return_partial_success
|
4764
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
4765
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
4766
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
4767
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
4768
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
4769
|
+
# explicitly documented otherwise in service or product specific documentation.
|
4707
4770
|
# @param [String] fields
|
4708
4771
|
# Selector specifying which fields to include in a partial response.
|
4709
4772
|
# @param [String] quota_user
|
@@ -4721,7 +4784,7 @@ module Google
|
|
4721
4784
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4722
4785
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4723
4786
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4724
|
-
def list_project_location_collection_engine_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4787
|
+
def list_project_location_collection_engine_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4725
4788
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
4726
4789
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
4727
4790
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -4729,6 +4792,7 @@ module Google
|
|
4729
4792
|
command.query['filter'] = filter unless filter.nil?
|
4730
4793
|
command.query['pageSize'] = page_size unless page_size.nil?
|
4731
4794
|
command.query['pageToken'] = page_token unless page_token.nil?
|
4795
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
4732
4796
|
command.query['fields'] = fields unless fields.nil?
|
4733
4797
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
4734
4798
|
execute_or_queue_command(command, &block)
|
@@ -5318,6 +5382,13 @@ module Google
|
|
5318
5382
|
# The standard list page size.
|
5319
5383
|
# @param [String] page_token
|
5320
5384
|
# The standard list page token.
|
5385
|
+
# @param [Boolean] return_partial_success
|
5386
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
5387
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
5388
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
5389
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
5390
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
5391
|
+
# explicitly documented otherwise in service or product specific documentation.
|
5321
5392
|
# @param [String] fields
|
5322
5393
|
# Selector specifying which fields to include in a partial response.
|
5323
5394
|
# @param [String] quota_user
|
@@ -5335,7 +5406,7 @@ module Google
|
|
5335
5406
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5336
5407
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5337
5408
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5338
|
-
def list_project_location_collection_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5409
|
+
def list_project_location_collection_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5339
5410
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
5340
5411
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
5341
5412
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -5343,6 +5414,7 @@ module Google
|
|
5343
5414
|
command.query['filter'] = filter unless filter.nil?
|
5344
5415
|
command.query['pageSize'] = page_size unless page_size.nil?
|
5345
5416
|
command.query['pageToken'] = page_token unless page_token.nil?
|
5417
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
5346
5418
|
command.query['fields'] = fields unless fields.nil?
|
5347
5419
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5348
5420
|
execute_or_queue_command(command, &block)
|
@@ -6065,6 +6137,13 @@ module Google
|
|
6065
6137
|
# The standard list page size.
|
6066
6138
|
# @param [String] page_token
|
6067
6139
|
# The standard list page token.
|
6140
|
+
# @param [Boolean] return_partial_success
|
6141
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
6142
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
6143
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
6144
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
6145
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
6146
|
+
# explicitly documented otherwise in service or product specific documentation.
|
6068
6147
|
# @param [String] fields
|
6069
6148
|
# Selector specifying which fields to include in a partial response.
|
6070
6149
|
# @param [String] quota_user
|
@@ -6082,7 +6161,7 @@ module Google
|
|
6082
6161
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6083
6162
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6084
6163
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6085
|
-
def list_project_location_data_store_branch_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6164
|
+
def list_project_location_data_store_branch_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6086
6165
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
6087
6166
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
6088
6167
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -6090,6 +6169,7 @@ module Google
|
|
6090
6169
|
command.query['filter'] = filter unless filter.nil?
|
6091
6170
|
command.query['pageSize'] = page_size unless page_size.nil?
|
6092
6171
|
command.query['pageToken'] = page_token unless page_token.nil?
|
6172
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
6093
6173
|
command.query['fields'] = fields unless fields.nil?
|
6094
6174
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6095
6175
|
execute_or_queue_command(command, &block)
|
@@ -6662,6 +6742,13 @@ module Google
|
|
6662
6742
|
# The standard list page size.
|
6663
6743
|
# @param [String] page_token
|
6664
6744
|
# The standard list page token.
|
6745
|
+
# @param [Boolean] return_partial_success
|
6746
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
6747
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
6748
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
6749
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
6750
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
6751
|
+
# explicitly documented otherwise in service or product specific documentation.
|
6665
6752
|
# @param [String] fields
|
6666
6753
|
# Selector specifying which fields to include in a partial response.
|
6667
6754
|
# @param [String] quota_user
|
@@ -6679,7 +6766,7 @@ module Google
|
|
6679
6766
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6680
6767
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6681
6768
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6682
|
-
def list_project_location_data_store_model_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6769
|
+
def list_project_location_data_store_model_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6683
6770
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
6684
6771
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
6685
6772
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -6687,6 +6774,7 @@ module Google
|
|
6687
6774
|
command.query['filter'] = filter unless filter.nil?
|
6688
6775
|
command.query['pageSize'] = page_size unless page_size.nil?
|
6689
6776
|
command.query['pageToken'] = page_token unless page_token.nil?
|
6777
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
6690
6778
|
command.query['fields'] = fields unless fields.nil?
|
6691
6779
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6692
6780
|
execute_or_queue_command(command, &block)
|
@@ -6733,6 +6821,13 @@ module Google
|
|
6733
6821
|
# The standard list page size.
|
6734
6822
|
# @param [String] page_token
|
6735
6823
|
# The standard list page token.
|
6824
|
+
# @param [Boolean] return_partial_success
|
6825
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
6826
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
6827
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
6828
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
6829
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
6830
|
+
# explicitly documented otherwise in service or product specific documentation.
|
6736
6831
|
# @param [String] fields
|
6737
6832
|
# Selector specifying which fields to include in a partial response.
|
6738
6833
|
# @param [String] quota_user
|
@@ -6750,7 +6845,7 @@ module Google
|
|
6750
6845
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6751
6846
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6752
6847
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6753
|
-
def list_project_location_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6848
|
+
def list_project_location_data_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6754
6849
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
6755
6850
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
6756
6851
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -6758,6 +6853,7 @@ module Google
|
|
6758
6853
|
command.query['filter'] = filter unless filter.nil?
|
6759
6854
|
command.query['pageSize'] = page_size unless page_size.nil?
|
6760
6855
|
command.query['pageToken'] = page_token unless page_token.nil?
|
6856
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
6761
6857
|
command.query['fields'] = fields unless fields.nil?
|
6762
6858
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6763
6859
|
execute_or_queue_command(command, &block)
|
@@ -8691,6 +8787,13 @@ module Google
|
|
8691
8787
|
# The standard list page size.
|
8692
8788
|
# @param [String] page_token
|
8693
8789
|
# The standard list page token.
|
8790
|
+
# @param [Boolean] return_partial_success
|
8791
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
8792
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
8793
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
8794
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
8795
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
8796
|
+
# explicitly documented otherwise in service or product specific documentation.
|
8694
8797
|
# @param [String] fields
|
8695
8798
|
# Selector specifying which fields to include in a partial response.
|
8696
8799
|
# @param [String] quota_user
|
@@ -8708,7 +8811,7 @@ module Google
|
|
8708
8811
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
8709
8812
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
8710
8813
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
8711
|
-
def list_project_location_identity_mapping_store_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8814
|
+
def list_project_location_identity_mapping_store_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8712
8815
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
8713
8816
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
8714
8817
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -8716,6 +8819,7 @@ module Google
|
|
8716
8819
|
command.query['filter'] = filter unless filter.nil?
|
8717
8820
|
command.query['pageSize'] = page_size unless page_size.nil?
|
8718
8821
|
command.query['pageToken'] = page_token unless page_token.nil?
|
8822
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
8719
8823
|
command.query['fields'] = fields unless fields.nil?
|
8720
8824
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
8721
8825
|
execute_or_queue_command(command, &block)
|
@@ -8762,6 +8866,13 @@ module Google
|
|
8762
8866
|
# The standard list page size.
|
8763
8867
|
# @param [String] page_token
|
8764
8868
|
# The standard list page token.
|
8869
|
+
# @param [Boolean] return_partial_success
|
8870
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
8871
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
8872
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
8873
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
8874
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
8875
|
+
# explicitly documented otherwise in service or product specific documentation.
|
8765
8876
|
# @param [String] fields
|
8766
8877
|
# Selector specifying which fields to include in a partial response.
|
8767
8878
|
# @param [String] quota_user
|
@@ -8779,7 +8890,7 @@ module Google
|
|
8779
8890
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
8780
8891
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
8781
8892
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
8782
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8893
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
8783
8894
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
8784
8895
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
8785
8896
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -8787,6 +8898,7 @@ module Google
|
|
8787
8898
|
command.query['filter'] = filter unless filter.nil?
|
8788
8899
|
command.query['pageSize'] = page_size unless page_size.nil?
|
8789
8900
|
command.query['pageToken'] = page_token unless page_token.nil?
|
8901
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
8790
8902
|
command.query['fields'] = fields unless fields.nil?
|
8791
8903
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
8792
8904
|
execute_or_queue_command(command, &block)
|
@@ -9584,6 +9696,13 @@ module Google
|
|
9584
9696
|
# The standard list page size.
|
9585
9697
|
# @param [String] page_token
|
9586
9698
|
# The standard list page token.
|
9699
|
+
# @param [Boolean] return_partial_success
|
9700
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
9701
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
9702
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
9703
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
9704
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
9705
|
+
# explicitly documented otherwise in service or product specific documentation.
|
9587
9706
|
# @param [String] fields
|
9588
9707
|
# Selector specifying which fields to include in a partial response.
|
9589
9708
|
# @param [String] quota_user
|
@@ -9601,7 +9720,7 @@ module Google
|
|
9601
9720
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
9602
9721
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
9603
9722
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
9604
|
-
def list_project_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
9723
|
+
def list_project_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
9605
9724
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
9606
9725
|
command.response_representation = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse::Representation
|
9607
9726
|
command.response_class = Google::Apis::DiscoveryengineV1beta::GoogleLongrunningListOperationsResponse
|
@@ -9609,6 +9728,7 @@ module Google
|
|
9609
9728
|
command.query['filter'] = filter unless filter.nil?
|
9610
9729
|
command.query['pageSize'] = page_size unless page_size.nil?
|
9611
9730
|
command.query['pageToken'] = page_token unless page_token.nil?
|
9731
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
9612
9732
|
command.query['fields'] = fields unless fields.nil?
|
9613
9733
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
9614
9734
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.84.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.84.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|