google-apis-discoveryengine_v1alpha 0.71.0 → 0.72.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_v1alpha/classes.rb +133 -4
- data/lib/google/apis/discoveryengine_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1alpha/representations.rb +70 -0
- data/lib/google/apis/discoveryengine_v1alpha/service.rb +47 -12
- 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: 0a4301d4093524456720dc3d7268bd647fe14b8cce5edbf37fd8031d79b22460
|
4
|
+
data.tar.gz: 6237785bcff0ffc499fc62b1cff6f9c6f21bf6ef01a006b23048c29995510618
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b2ab0c26c2196475fc48fae649689d0765ba573e07f704b7e239185bf418f54332798efaa641a3c34d8d288e2b6e5568470115397bbe25b5312b4773c4c65ab
|
7
|
+
data.tar.gz: a2133192e00728df99fd80cf3d0faa49620fe95d8cd44ae1274725119720274316fe7e3d0d79b07c8484cb03b59a24ce7a10ee6e7eb1fb3aaa6ba573ba008e2a
|
data/CHANGELOG.md
CHANGED
@@ -8622,6 +8622,31 @@ module Google
|
|
8622
8622
|
end
|
8623
8623
|
end
|
8624
8624
|
|
8625
|
+
# The BigQuery output destination configuration.
|
8626
|
+
class GoogleCloudDiscoveryengineV1alphaBigQueryDestination
|
8627
|
+
include Google::Apis::Core::Hashable
|
8628
|
+
|
8629
|
+
# Required. The ID of a BigQuery Dataset.
|
8630
|
+
# Corresponds to the JSON property `datasetId`
|
8631
|
+
# @return [String]
|
8632
|
+
attr_accessor :dataset_id
|
8633
|
+
|
8634
|
+
# Required. The table_id of exported BigQuery table.
|
8635
|
+
# Corresponds to the JSON property `tableId`
|
8636
|
+
# @return [String]
|
8637
|
+
attr_accessor :table_id
|
8638
|
+
|
8639
|
+
def initialize(**args)
|
8640
|
+
update!(**args)
|
8641
|
+
end
|
8642
|
+
|
8643
|
+
# Update properties of this object
|
8644
|
+
def update!(**args)
|
8645
|
+
@dataset_id = args[:dataset_id] if args.key?(:dataset_id)
|
8646
|
+
@table_id = args[:table_id] if args.key?(:table_id)
|
8647
|
+
end
|
8648
|
+
end
|
8649
|
+
|
8625
8650
|
# BigQuery source import data from.
|
8626
8651
|
class GoogleCloudDiscoveryengineV1alphaBigQuerySource
|
8627
8652
|
include Google::Apis::Core::Hashable
|
@@ -13388,6 +13413,67 @@ module Google
|
|
13388
13413
|
end
|
13389
13414
|
end
|
13390
13415
|
|
13416
|
+
# Metadata related to the progress of the Export operation. This is returned by
|
13417
|
+
# the google.longrunning.Operation.metadata field.
|
13418
|
+
class GoogleCloudDiscoveryengineV1alphaExportMetricsMetadata
|
13419
|
+
include Google::Apis::Core::Hashable
|
13420
|
+
|
13421
|
+
# Operation create time.
|
13422
|
+
# Corresponds to the JSON property `createTime`
|
13423
|
+
# @return [String]
|
13424
|
+
attr_accessor :create_time
|
13425
|
+
|
13426
|
+
# Operation last update time. If the operation is done, this is also the finish
|
13427
|
+
# time.
|
13428
|
+
# Corresponds to the JSON property `updateTime`
|
13429
|
+
# @return [String]
|
13430
|
+
attr_accessor :update_time
|
13431
|
+
|
13432
|
+
def initialize(**args)
|
13433
|
+
update!(**args)
|
13434
|
+
end
|
13435
|
+
|
13436
|
+
# Update properties of this object
|
13437
|
+
def update!(**args)
|
13438
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
13439
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
13440
|
+
end
|
13441
|
+
end
|
13442
|
+
|
13443
|
+
# Request message for the `ExportMetrics` method.
|
13444
|
+
class GoogleCloudDiscoveryengineV1alphaExportMetricsRequest
|
13445
|
+
include Google::Apis::Core::Hashable
|
13446
|
+
|
13447
|
+
# The output configuration setting.
|
13448
|
+
# Corresponds to the JSON property `outputConfig`
|
13449
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaOutputConfig]
|
13450
|
+
attr_accessor :output_config
|
13451
|
+
|
13452
|
+
def initialize(**args)
|
13453
|
+
update!(**args)
|
13454
|
+
end
|
13455
|
+
|
13456
|
+
# Update properties of this object
|
13457
|
+
def update!(**args)
|
13458
|
+
@output_config = args[:output_config] if args.key?(:output_config)
|
13459
|
+
end
|
13460
|
+
end
|
13461
|
+
|
13462
|
+
# Response of the ExportMetricsRequest. If the long running operation was
|
13463
|
+
# successful, then this message is returned by the google.longrunning.Operations.
|
13464
|
+
# response field.
|
13465
|
+
class GoogleCloudDiscoveryengineV1alphaExportMetricsResponse
|
13466
|
+
include Google::Apis::Core::Hashable
|
13467
|
+
|
13468
|
+
def initialize(**args)
|
13469
|
+
update!(**args)
|
13470
|
+
end
|
13471
|
+
|
13472
|
+
# Update properties of this object
|
13473
|
+
def update!(**args)
|
13474
|
+
end
|
13475
|
+
end
|
13476
|
+
|
13391
13477
|
# Fact Chunk.
|
13392
13478
|
class GoogleCloudDiscoveryengineV1alphaFactChunk
|
13393
13479
|
include Google::Apis::Core::Hashable
|
@@ -15786,10 +15872,10 @@ module Google
|
|
15786
15872
|
|
15787
15873
|
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
15788
15874
|
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
15789
|
-
# is_pinned` * `labels` * `create_time` * `update_time` Examples:
|
15790
|
-
# user_pseudo_id = some_id
|
15791
|
-
# is_pinned=true AND (NOT labels:hidden)
|
15792
|
-
#
|
15875
|
+
# is_pinned` * `labels` * `create_time` * `update_time` Examples: * `
|
15876
|
+
# user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `
|
15877
|
+
# is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"
|
15878
|
+
# `
|
15793
15879
|
# Corresponds to the JSON property `filter`
|
15794
15880
|
# @return [String]
|
15795
15881
|
attr_accessor :filter
|
@@ -16068,6 +16154,25 @@ module Google
|
|
16068
16154
|
end
|
16069
16155
|
end
|
16070
16156
|
|
16157
|
+
# The output configuration setting.
|
16158
|
+
class GoogleCloudDiscoveryengineV1alphaOutputConfig
|
16159
|
+
include Google::Apis::Core::Hashable
|
16160
|
+
|
16161
|
+
# The BigQuery output destination configuration.
|
16162
|
+
# Corresponds to the JSON property `bigqueryDestination`
|
16163
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigQueryDestination]
|
16164
|
+
attr_accessor :bigquery_destination
|
16165
|
+
|
16166
|
+
def initialize(**args)
|
16167
|
+
update!(**args)
|
16168
|
+
end
|
16169
|
+
|
16170
|
+
# Update properties of this object
|
16171
|
+
def update!(**args)
|
16172
|
+
@bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
|
16173
|
+
end
|
16174
|
+
end
|
16175
|
+
|
16071
16176
|
# Detailed page information.
|
16072
16177
|
class GoogleCloudDiscoveryengineV1alphaPageInfo
|
16073
16178
|
include Google::Apis::Core::Hashable
|
@@ -19476,6 +19581,17 @@ module Google
|
|
19476
19581
|
class GoogleCloudDiscoveryengineV1alphaSearchRequestNaturalLanguageQueryUnderstandingSpec
|
19477
19582
|
include Google::Apis::Core::Hashable
|
19478
19583
|
|
19584
|
+
# Optional. Controls behavior of how extracted filters are applied to the search.
|
19585
|
+
# The default behavior depends on the request. For single datastore structured
|
19586
|
+
# search, the default is `HARD_FILTER`. For multi-datastore search, the default
|
19587
|
+
# behavior is `SOFT_BOOST`. Location-based filters are always applied as hard
|
19588
|
+
# filters, and the `SOFT_BOOST` setting will not affect them. This field is only
|
19589
|
+
# used if SearchRequest.natural_language_query_understanding_spec.
|
19590
|
+
# filter_extraction_condition is set to FilterExtractionCondition.ENABLED.
|
19591
|
+
# Corresponds to the JSON property `extractedFilterBehavior`
|
19592
|
+
# @return [String]
|
19593
|
+
attr_accessor :extracted_filter_behavior
|
19594
|
+
|
19479
19595
|
# The condition under which filter extraction should occur. Server behavior
|
19480
19596
|
# defaults to `DISABLED`.
|
19481
19597
|
# Corresponds to the JSON property `filterExtractionCondition`
|
@@ -19497,6 +19613,7 @@ module Google
|
|
19497
19613
|
|
19498
19614
|
# Update properties of this object
|
19499
19615
|
def update!(**args)
|
19616
|
+
@extracted_filter_behavior = args[:extracted_filter_behavior] if args.key?(:extracted_filter_behavior)
|
19500
19617
|
@filter_extraction_condition = args[:filter_extraction_condition] if args.key?(:filter_extraction_condition)
|
19501
19618
|
@geo_search_query_detection_field_names = args[:geo_search_query_detection_field_names] if args.key?(:geo_search_query_detection_field_names)
|
19502
19619
|
end
|
@@ -27994,6 +28111,17 @@ module Google
|
|
27994
28111
|
class GoogleCloudDiscoveryengineV1betaSearchRequestNaturalLanguageQueryUnderstandingSpec
|
27995
28112
|
include Google::Apis::Core::Hashable
|
27996
28113
|
|
28114
|
+
# Optional. Controls behavior of how extracted filters are applied to the search.
|
28115
|
+
# The default behavior depends on the request. For single datastore structured
|
28116
|
+
# search, the default is `HARD_FILTER`. For multi-datastore search, the default
|
28117
|
+
# behavior is `SOFT_BOOST`. Location-based filters are always applied as hard
|
28118
|
+
# filters, and the `SOFT_BOOST` setting will not affect them. This field is only
|
28119
|
+
# used if SearchRequest.natural_language_query_understanding_spec.
|
28120
|
+
# filter_extraction_condition is set to FilterExtractionCondition.ENABLED.
|
28121
|
+
# Corresponds to the JSON property `extractedFilterBehavior`
|
28122
|
+
# @return [String]
|
28123
|
+
attr_accessor :extracted_filter_behavior
|
28124
|
+
|
27997
28125
|
# The condition under which filter extraction should occur. Server behavior
|
27998
28126
|
# defaults to `DISABLED`.
|
27999
28127
|
# Corresponds to the JSON property `filterExtractionCondition`
|
@@ -28015,6 +28143,7 @@ module Google
|
|
28015
28143
|
|
28016
28144
|
# Update properties of this object
|
28017
28145
|
def update!(**args)
|
28146
|
+
@extracted_filter_behavior = args[:extracted_filter_behavior] if args.key?(:extracted_filter_behavior)
|
28018
28147
|
@filter_extraction_condition = args[:filter_extraction_condition] if args.key?(:filter_extraction_condition)
|
28019
28148
|
@geo_search_query_detection_field_names = args[:geo_search_query_detection_field_names] if args.key?(:geo_search_query_detection_field_names)
|
28020
28149
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1alpha
|
18
18
|
# Version of the google-apis-discoveryengine_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.72.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 = "20250728"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1390,6 +1390,12 @@ module Google
|
|
1390
1390
|
include Google::Apis::Core::JsonObjectSupport
|
1391
1391
|
end
|
1392
1392
|
|
1393
|
+
class GoogleCloudDiscoveryengineV1alphaBigQueryDestination
|
1394
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1395
|
+
|
1396
|
+
include Google::Apis::Core::JsonObjectSupport
|
1397
|
+
end
|
1398
|
+
|
1393
1399
|
class GoogleCloudDiscoveryengineV1alphaBigQuerySource
|
1394
1400
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1395
1401
|
|
@@ -2104,6 +2110,24 @@ module Google
|
|
2104
2110
|
include Google::Apis::Core::JsonObjectSupport
|
2105
2111
|
end
|
2106
2112
|
|
2113
|
+
class GoogleCloudDiscoveryengineV1alphaExportMetricsMetadata
|
2114
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2115
|
+
|
2116
|
+
include Google::Apis::Core::JsonObjectSupport
|
2117
|
+
end
|
2118
|
+
|
2119
|
+
class GoogleCloudDiscoveryengineV1alphaExportMetricsRequest
|
2120
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2121
|
+
|
2122
|
+
include Google::Apis::Core::JsonObjectSupport
|
2123
|
+
end
|
2124
|
+
|
2125
|
+
class GoogleCloudDiscoveryengineV1alphaExportMetricsResponse
|
2126
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2127
|
+
|
2128
|
+
include Google::Apis::Core::JsonObjectSupport
|
2129
|
+
end
|
2130
|
+
|
2107
2131
|
class GoogleCloudDiscoveryengineV1alphaFactChunk
|
2108
2132
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2109
2133
|
|
@@ -2578,6 +2602,12 @@ module Google
|
|
2578
2602
|
include Google::Apis::Core::JsonObjectSupport
|
2579
2603
|
end
|
2580
2604
|
|
2605
|
+
class GoogleCloudDiscoveryengineV1alphaOutputConfig
|
2606
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2607
|
+
|
2608
|
+
include Google::Apis::Core::JsonObjectSupport
|
2609
|
+
end
|
2610
|
+
|
2581
2611
|
class GoogleCloudDiscoveryengineV1alphaPageInfo
|
2582
2612
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2583
2613
|
|
@@ -6982,6 +7012,14 @@ module Google
|
|
6982
7012
|
end
|
6983
7013
|
end
|
6984
7014
|
|
7015
|
+
class GoogleCloudDiscoveryengineV1alphaBigQueryDestination
|
7016
|
+
# @private
|
7017
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7018
|
+
property :dataset_id, as: 'datasetId'
|
7019
|
+
property :table_id, as: 'tableId'
|
7020
|
+
end
|
7021
|
+
end
|
7022
|
+
|
6985
7023
|
class GoogleCloudDiscoveryengineV1alphaBigQuerySource
|
6986
7024
|
# @private
|
6987
7025
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8244,6 +8282,28 @@ module Google
|
|
8244
8282
|
end
|
8245
8283
|
end
|
8246
8284
|
|
8285
|
+
class GoogleCloudDiscoveryengineV1alphaExportMetricsMetadata
|
8286
|
+
# @private
|
8287
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8288
|
+
property :create_time, as: 'createTime'
|
8289
|
+
property :update_time, as: 'updateTime'
|
8290
|
+
end
|
8291
|
+
end
|
8292
|
+
|
8293
|
+
class GoogleCloudDiscoveryengineV1alphaExportMetricsRequest
|
8294
|
+
# @private
|
8295
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8296
|
+
property :output_config, as: 'outputConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaOutputConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaOutputConfig::Representation
|
8297
|
+
|
8298
|
+
end
|
8299
|
+
end
|
8300
|
+
|
8301
|
+
class GoogleCloudDiscoveryengineV1alphaExportMetricsResponse
|
8302
|
+
# @private
|
8303
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8304
|
+
end
|
8305
|
+
end
|
8306
|
+
|
8247
8307
|
class GoogleCloudDiscoveryengineV1alphaFactChunk
|
8248
8308
|
# @private
|
8249
8309
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -9028,6 +9088,14 @@ module Google
|
|
9028
9088
|
end
|
9029
9089
|
end
|
9030
9090
|
|
9091
|
+
class GoogleCloudDiscoveryengineV1alphaOutputConfig
|
9092
|
+
# @private
|
9093
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9094
|
+
property :bigquery_destination, as: 'bigqueryDestination', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigQueryDestination, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigQueryDestination::Representation
|
9095
|
+
|
9096
|
+
end
|
9097
|
+
end
|
9098
|
+
|
9031
9099
|
class GoogleCloudDiscoveryengineV1alphaPageInfo
|
9032
9100
|
# @private
|
9033
9101
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -9878,6 +9946,7 @@ module Google
|
|
9878
9946
|
class GoogleCloudDiscoveryengineV1alphaSearchRequestNaturalLanguageQueryUnderstandingSpec
|
9879
9947
|
# @private
|
9880
9948
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9949
|
+
property :extracted_filter_behavior, as: 'extractedFilterBehavior'
|
9881
9950
|
property :filter_extraction_condition, as: 'filterExtractionCondition'
|
9882
9951
|
collection :geo_search_query_detection_field_names, as: 'geoSearchQueryDetectionFieldNames'
|
9883
9952
|
end
|
@@ -12127,6 +12196,7 @@ module Google
|
|
12127
12196
|
class GoogleCloudDiscoveryengineV1betaSearchRequestNaturalLanguageQueryUnderstandingSpec
|
12128
12197
|
# @private
|
12129
12198
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12199
|
+
property :extracted_filter_behavior, as: 'extractedFilterBehavior'
|
12130
12200
|
property :filter_extraction_condition, as: 'filterExtractionCondition'
|
12131
12201
|
collection :geo_search_query_detection_field_names, as: 'geoSearchQueryDetectionFieldNames'
|
12132
12202
|
end
|
@@ -3474,10 +3474,10 @@ module Google
|
|
3474
3474
|
# @param [String] filter
|
3475
3475
|
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
3476
3476
|
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
3477
|
-
# is_pinned` * `labels` * `create_time` * `update_time` Examples:
|
3478
|
-
# user_pseudo_id = some_id
|
3479
|
-
# is_pinned=true AND (NOT labels:hidden)
|
3480
|
-
#
|
3477
|
+
# is_pinned` * `labels` * `create_time` * `update_time` Examples: * `
|
3478
|
+
# user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `
|
3479
|
+
# is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"
|
3480
|
+
# `
|
3481
3481
|
# @param [String] order_by
|
3482
3482
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
3483
3483
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
@@ -4883,6 +4883,41 @@ module Google
|
|
4883
4883
|
execute_or_queue_command(command, &block)
|
4884
4884
|
end
|
4885
4885
|
|
4886
|
+
# Exports metrics.
|
4887
|
+
# @param [String] analytics
|
4888
|
+
# Required. The analytics resource name under the engine where the metrics are
|
4889
|
+
# created. The format is `projects/`project`/locations/`location`/collections/`
|
4890
|
+
# collection`/engines/`engine`/analytics`.
|
4891
|
+
# @param [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaExportMetricsRequest] google_cloud_discoveryengine_v1alpha_export_metrics_request_object
|
4892
|
+
# @param [String] fields
|
4893
|
+
# Selector specifying which fields to include in a partial response.
|
4894
|
+
# @param [String] quota_user
|
4895
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
4896
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
4897
|
+
# @param [Google::Apis::RequestOptions] options
|
4898
|
+
# Request-specific options
|
4899
|
+
#
|
4900
|
+
# @yield [result, err] Result & error if block supplied
|
4901
|
+
# @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation] parsed result object
|
4902
|
+
# @yieldparam err [StandardError] error object if request failed
|
4903
|
+
#
|
4904
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation]
|
4905
|
+
#
|
4906
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4907
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4908
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4909
|
+
def export_project_location_collection_engine_analytic_metrics(analytics, google_cloud_discoveryengine_v1alpha_export_metrics_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
4910
|
+
command = make_simple_command(:post, 'v1alpha/{+analytics}:exportMetrics', options)
|
4911
|
+
command.request_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaExportMetricsRequest::Representation
|
4912
|
+
command.request_object = google_cloud_discoveryengine_v1alpha_export_metrics_request_object
|
4913
|
+
command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation::Representation
|
4914
|
+
command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation
|
4915
|
+
command.params['analytics'] = analytics unless analytics.nil?
|
4916
|
+
command.query['fields'] = fields unless fields.nil?
|
4917
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
4918
|
+
execute_or_queue_command(command, &block)
|
4919
|
+
end
|
4920
|
+
|
4886
4921
|
# Gets an Assistant.
|
4887
4922
|
# @param [String] name
|
4888
4923
|
# Required. Resource name of Assistant. Format: `projects/`project`/locations/`
|
@@ -5979,10 +6014,10 @@ module Google
|
|
5979
6014
|
# @param [String] filter
|
5980
6015
|
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
5981
6016
|
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
5982
|
-
# is_pinned` * `labels` * `create_time` * `update_time` Examples:
|
5983
|
-
# user_pseudo_id = some_id
|
5984
|
-
# is_pinned=true AND (NOT labels:hidden)
|
5985
|
-
#
|
6017
|
+
# is_pinned` * `labels` * `create_time` * `update_time` Examples: * `
|
6018
|
+
# user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `
|
6019
|
+
# is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"
|
6020
|
+
# `
|
5986
6021
|
# @param [String] order_by
|
5987
6022
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
5988
6023
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
@@ -8490,10 +8525,10 @@ module Google
|
|
8490
8525
|
# @param [String] filter
|
8491
8526
|
# A comma-separated list of fields to filter by, in EBNF grammar. The supported
|
8492
8527
|
# fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `
|
8493
|
-
# is_pinned` * `labels` * `create_time` * `update_time` Examples:
|
8494
|
-
# user_pseudo_id = some_id
|
8495
|
-
# is_pinned=true AND (NOT labels:hidden)
|
8496
|
-
#
|
8528
|
+
# is_pinned` * `labels` * `create_time` * `update_time` Examples: * `
|
8529
|
+
# user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `
|
8530
|
+
# is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"
|
8531
|
+
# `
|
8497
8532
|
# @param [String] order_by
|
8498
8533
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
8499
8534
|
# desc" after a field name for descending. Supported fields: * `update_time` * `
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.72.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_v1alpha/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.72.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|