google-apis-discoveryengine_v1beta 0.9.0 → 0.11.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7ddb436563f57dea35c44b8f13a923c7cd532346794aa24575f8983324a3f46
|
4
|
+
data.tar.gz: b80e34b4b63b4e3bab08f1b006727536decd432f84a2f342ee1d02bc82a4a5a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 999cbf09de0d533c1e6ad2dbff097a3db1347f87813c22d340b4f8e02995097b479f76107caafee5282df0086ef769f037731b9e1f9ec92404b17091341d81d2
|
7
|
+
data.tar.gz: b29edf94b92b17ec73ab6fd7d49b61b4396d58b0f1b5cce379f5817f38b029980361915f67a49b283adaeaeb26c58b3838f415fe10e94e10e592c6521cf6bedc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-discoveryengine_v1beta
|
2
2
|
|
3
|
+
### v0.11.0 (2023-03-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230325
|
6
|
+
|
7
|
+
### v0.10.0 (2023-03-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230310
|
10
|
+
|
3
11
|
### v0.9.0 (2023-03-12)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230306
|
@@ -254,209 +254,6 @@ module Google
|
|
254
254
|
end
|
255
255
|
end
|
256
256
|
|
257
|
-
# Defines circumstances to be checked before allowing a behavior
|
258
|
-
class GoogleCloudDiscoveryengineV1alphaCondition
|
259
|
-
include Google::Apis::Core::Hashable
|
260
|
-
|
261
|
-
# Optional. Range of time(s) specifying when condition is active. Maximum of 10
|
262
|
-
# time ranges.
|
263
|
-
# Corresponds to the JSON property `activeTimeRange`
|
264
|
-
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaConditionTimeRange>]
|
265
|
-
attr_accessor :active_time_range
|
266
|
-
|
267
|
-
# Optional. Search only A list of terms to match the query on. Maximum of 10
|
268
|
-
# query terms.
|
269
|
-
# Corresponds to the JSON property `queryTerms`
|
270
|
-
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaConditionQueryTerm>]
|
271
|
-
attr_accessor :query_terms
|
272
|
-
|
273
|
-
def initialize(**args)
|
274
|
-
update!(**args)
|
275
|
-
end
|
276
|
-
|
277
|
-
# Update properties of this object
|
278
|
-
def update!(**args)
|
279
|
-
@active_time_range = args[:active_time_range] if args.key?(:active_time_range)
|
280
|
-
@query_terms = args[:query_terms] if args.key?(:query_terms)
|
281
|
-
end
|
282
|
-
end
|
283
|
-
|
284
|
-
# Matcher for search request query
|
285
|
-
class GoogleCloudDiscoveryengineV1alphaConditionQueryTerm
|
286
|
-
include Google::Apis::Core::Hashable
|
287
|
-
|
288
|
-
# Whether the search query needs to exactly match the query term.
|
289
|
-
# Corresponds to the JSON property `fullMatch`
|
290
|
-
# @return [Boolean]
|
291
|
-
attr_accessor :full_match
|
292
|
-
alias_method :full_match?, :full_match
|
293
|
-
|
294
|
-
# The specific query value to match against Must be lowercase, must be UTF-8.
|
295
|
-
# Can have at most 3 space separated terms if full_match is true. Cannot be an
|
296
|
-
# empty string. Maximum length of 5000 characters.
|
297
|
-
# Corresponds to the JSON property `value`
|
298
|
-
# @return [String]
|
299
|
-
attr_accessor :value
|
300
|
-
|
301
|
-
def initialize(**args)
|
302
|
-
update!(**args)
|
303
|
-
end
|
304
|
-
|
305
|
-
# Update properties of this object
|
306
|
-
def update!(**args)
|
307
|
-
@full_match = args[:full_match] if args.key?(:full_match)
|
308
|
-
@value = args[:value] if args.key?(:value)
|
309
|
-
end
|
310
|
-
end
|
311
|
-
|
312
|
-
# Used for time-dependent conditions.
|
313
|
-
class GoogleCloudDiscoveryengineV1alphaConditionTimeRange
|
314
|
-
include Google::Apis::Core::Hashable
|
315
|
-
|
316
|
-
# End of time range. Range is inclusive. Must be in the future.
|
317
|
-
# Corresponds to the JSON property `endTime`
|
318
|
-
# @return [String]
|
319
|
-
attr_accessor :end_time
|
320
|
-
|
321
|
-
# Start of time range. Range is inclusive.
|
322
|
-
# Corresponds to the JSON property `startTime`
|
323
|
-
# @return [String]
|
324
|
-
attr_accessor :start_time
|
325
|
-
|
326
|
-
def initialize(**args)
|
327
|
-
update!(**args)
|
328
|
-
end
|
329
|
-
|
330
|
-
# Update properties of this object
|
331
|
-
def update!(**args)
|
332
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
333
|
-
@start_time = args[:start_time] if args.key?(:start_time)
|
334
|
-
end
|
335
|
-
end
|
336
|
-
|
337
|
-
# Defines a conditioned behavior to employ during serving. Must be attached to a
|
338
|
-
# [ServingConfig] to be considered at serving time. Permitted actions dependent
|
339
|
-
# on Solution Type.
|
340
|
-
class GoogleCloudDiscoveryengineV1alphaControl
|
341
|
-
include Google::Apis::Core::Hashable
|
342
|
-
|
343
|
-
# Output only. List of all [ServingConfig] ids this control is attached to. May
|
344
|
-
# take up to 10 minutes to update after changes.
|
345
|
-
# Corresponds to the JSON property `associatedServingConfigIds`
|
346
|
-
# @return [Array<String>]
|
347
|
-
attr_accessor :associated_serving_config_ids
|
348
|
-
|
349
|
-
# Adjusts order of products in returned list.
|
350
|
-
# Corresponds to the JSON property `boostAction`
|
351
|
-
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaControlBoostAction]
|
352
|
-
attr_accessor :boost_action
|
353
|
-
|
354
|
-
# Determines when the associated action will trigger. Omit to always apply the
|
355
|
-
# action. Currently only a single condition may be specified. Otherwise an
|
356
|
-
# INVALID ARGUMENT error is thrown.
|
357
|
-
# Corresponds to the JSON property `conditions`
|
358
|
-
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCondition>]
|
359
|
-
attr_accessor :conditions
|
360
|
-
|
361
|
-
# Required. Human readable name. The identifier used in UI views. Must be UTF-8
|
362
|
-
# encoded string. Length limit is 128 characters. Otherwise an INVALID ARGUMENT
|
363
|
-
# error is thrown.
|
364
|
-
# Corresponds to the JSON property `displayName`
|
365
|
-
# @return [String]
|
366
|
-
attr_accessor :display_name
|
367
|
-
|
368
|
-
# Specified which products may be included in results. Uses same filter as boost.
|
369
|
-
# Corresponds to the JSON property `filterAction`
|
370
|
-
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaControlFilterAction]
|
371
|
-
attr_accessor :filter_action
|
372
|
-
|
373
|
-
# Immutable. Fully qualified name `projects/*/locations/global/dataStore/*/
|
374
|
-
# controls/*`
|
375
|
-
# Corresponds to the JSON property `name`
|
376
|
-
# @return [String]
|
377
|
-
attr_accessor :name
|
378
|
-
|
379
|
-
# Required. What solution the control belongs to. Must be compatible with
|
380
|
-
# vertical of resource. Otherwise an INVALID ARGUMENT error is thrown.
|
381
|
-
# Corresponds to the JSON property `solutionType`
|
382
|
-
# @return [String]
|
383
|
-
attr_accessor :solution_type
|
384
|
-
|
385
|
-
# Specifies the use case for the control. Affects what condition fields can be
|
386
|
-
# set. Only applies to SOLUTION_TYPE_SEARCH. Currently only allow one use case
|
387
|
-
# per control. Must be set when solution_type is SolutionType.
|
388
|
-
# SOLUTION_TYPE_SEARCH.
|
389
|
-
# Corresponds to the JSON property `useCases`
|
390
|
-
# @return [Array<String>]
|
391
|
-
attr_accessor :use_cases
|
392
|
-
|
393
|
-
def initialize(**args)
|
394
|
-
update!(**args)
|
395
|
-
end
|
396
|
-
|
397
|
-
# Update properties of this object
|
398
|
-
def update!(**args)
|
399
|
-
@associated_serving_config_ids = args[:associated_serving_config_ids] if args.key?(:associated_serving_config_ids)
|
400
|
-
@boost_action = args[:boost_action] if args.key?(:boost_action)
|
401
|
-
@conditions = args[:conditions] if args.key?(:conditions)
|
402
|
-
@display_name = args[:display_name] if args.key?(:display_name)
|
403
|
-
@filter_action = args[:filter_action] if args.key?(:filter_action)
|
404
|
-
@name = args[:name] if args.key?(:name)
|
405
|
-
@solution_type = args[:solution_type] if args.key?(:solution_type)
|
406
|
-
@use_cases = args[:use_cases] if args.key?(:use_cases)
|
407
|
-
end
|
408
|
-
end
|
409
|
-
|
410
|
-
# Adjusts order of products in returned list.
|
411
|
-
class GoogleCloudDiscoveryengineV1alphaControlBoostAction
|
412
|
-
include Google::Apis::Core::Hashable
|
413
|
-
|
414
|
-
# Required. Strength of the boost, which should be in [-1, 1]. Negative boost
|
415
|
-
# means demotion. Default is 0.0 (No-op).
|
416
|
-
# Corresponds to the JSON property `boost`
|
417
|
-
# @return [Float]
|
418
|
-
attr_accessor :boost
|
419
|
-
|
420
|
-
# Required. Specifies which products to apply the boost to. If no filter is
|
421
|
-
# provided all products will be boosted (No-op). Syntax documentation: https://
|
422
|
-
# cloud.google.com/retail/docs/filter-and-order Maximum length is 5000
|
423
|
-
# characters. Otherwise an INVALID ARGUMENT error is thrown.
|
424
|
-
# Corresponds to the JSON property `filter`
|
425
|
-
# @return [String]
|
426
|
-
attr_accessor :filter
|
427
|
-
|
428
|
-
def initialize(**args)
|
429
|
-
update!(**args)
|
430
|
-
end
|
431
|
-
|
432
|
-
# Update properties of this object
|
433
|
-
def update!(**args)
|
434
|
-
@boost = args[:boost] if args.key?(:boost)
|
435
|
-
@filter = args[:filter] if args.key?(:filter)
|
436
|
-
end
|
437
|
-
end
|
438
|
-
|
439
|
-
# Specified which products may be included in results. Uses same filter as boost.
|
440
|
-
class GoogleCloudDiscoveryengineV1alphaControlFilterAction
|
441
|
-
include Google::Apis::Core::Hashable
|
442
|
-
|
443
|
-
# Required. A filter to apply on the matching condition results. Required Syntax
|
444
|
-
# documentation: https://cloud.google.com/retail/docs/filter-and-order Maximum
|
445
|
-
# length is 5000 characters. Otherwise an INVALID ARGUMENT error is thrown.
|
446
|
-
# Corresponds to the JSON property `filter`
|
447
|
-
# @return [String]
|
448
|
-
attr_accessor :filter
|
449
|
-
|
450
|
-
def initialize(**args)
|
451
|
-
update!(**args)
|
452
|
-
end
|
453
|
-
|
454
|
-
# Update properties of this object
|
455
|
-
def update!(**args)
|
456
|
-
@filter = args[:filter] if args.key?(:filter)
|
457
|
-
end
|
458
|
-
end
|
459
|
-
|
460
257
|
# Metadata related to the progress of the ImportDocuments operation. This will
|
461
258
|
# be returned by the google.longrunning.Operation.metadata field.
|
462
259
|
class GoogleCloudDiscoveryengineV1alphaImportDocumentsMetadata
|
@@ -623,14 +420,51 @@ module Google
|
|
623
420
|
end
|
624
421
|
end
|
625
422
|
|
423
|
+
# Defines the structure and layout of a type of document data.
|
424
|
+
class GoogleCloudDiscoveryengineV1alphaSchema
|
425
|
+
include Google::Apis::Core::Hashable
|
426
|
+
|
427
|
+
# The JSON representation of the schema.
|
428
|
+
# Corresponds to the JSON property `jsonSchema`
|
429
|
+
# @return [String]
|
430
|
+
attr_accessor :json_schema
|
431
|
+
|
432
|
+
# Immutable. The full resource name of the schema, in the format of `projects/`
|
433
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`data_store`/
|
434
|
+
# schemas/`schema``. This field must be a UTF-8 encoded string with a length
|
435
|
+
# limit of 1024 characters.
|
436
|
+
# Corresponds to the JSON property `name`
|
437
|
+
# @return [String]
|
438
|
+
attr_accessor :name
|
439
|
+
|
440
|
+
# The structured representation of the schema.
|
441
|
+
# Corresponds to the JSON property `structSchema`
|
442
|
+
# @return [Hash<String,Object>]
|
443
|
+
attr_accessor :struct_schema
|
444
|
+
|
445
|
+
def initialize(**args)
|
446
|
+
update!(**args)
|
447
|
+
end
|
448
|
+
|
449
|
+
# Update properties of this object
|
450
|
+
def update!(**args)
|
451
|
+
@json_schema = args[:json_schema] if args.key?(:json_schema)
|
452
|
+
@name = args[:name] if args.key?(:name)
|
453
|
+
@struct_schema = args[:struct_schema] if args.key?(:struct_schema)
|
454
|
+
end
|
455
|
+
end
|
456
|
+
|
626
457
|
# BigQuery source import data from.
|
627
458
|
class GoogleCloudDiscoveryengineV1betaBigQuerySource
|
628
459
|
include Google::Apis::Core::Hashable
|
629
460
|
|
630
461
|
# The schema to use when parsing the data from the source. Supported values for
|
631
|
-
# imports: * `user_event` (default): One
|
632
|
-
#
|
633
|
-
# id.
|
462
|
+
# user event imports: * `user_event` (default): One UserEvent per row. Supported
|
463
|
+
# values for document imports: * `document` (default): One Document format per
|
464
|
+
# row. Each document must have a valid Document.id and one of Document.json_data
|
465
|
+
# or Document.struct_data. * `custom`: One custom data per row in arbitrary
|
466
|
+
# format that conforms the defined Schema of the data store. This can only be
|
467
|
+
# used by the GENERIC Data Store vertical.
|
634
468
|
# Corresponds to the JSON property `dataSchema`
|
635
469
|
# @return [String]
|
636
470
|
attr_accessor :data_schema
|
@@ -779,7 +613,7 @@ module Google
|
|
779
613
|
# @return [String]
|
780
614
|
attr_accessor :parent_document_id
|
781
615
|
|
782
|
-
#
|
616
|
+
# The identifier of the schema located in the same data store.
|
783
617
|
# Corresponds to the JSON property `schemaId`
|
784
618
|
# @return [String]
|
785
619
|
attr_accessor :schema_id
|
@@ -853,9 +687,14 @@ module Google
|
|
853
687
|
include Google::Apis::Core::Hashable
|
854
688
|
|
855
689
|
# The schema to use when parsing the data from the source. Supported values for
|
856
|
-
# imports: * `
|
857
|
-
#
|
858
|
-
#
|
690
|
+
# document imports: * `document` (default): One JSON Document per line. Each
|
691
|
+
# document must have a valid Document.id. * `content`: Unstructured data (e.g.
|
692
|
+
# PDF, HTML). Each file matched by `input_uris` will become a document, with the
|
693
|
+
# ID set to the first 128 bits of SHA256(URI) encoded as a hex string. * `custom`
|
694
|
+
# : One custom data JSON per row in arbitrary format that conforms the defined
|
695
|
+
# Schema of the data store. This can only be used by the GENERIC Data Store
|
696
|
+
# vertical. Supported values for user even imports: * `user_event` (default):
|
697
|
+
# One JSON UserEvent per line.
|
859
698
|
# Corresponds to the JSON property `dataSchema`
|
860
699
|
# @return [String]
|
861
700
|
attr_accessor :data_schema
|
@@ -863,8 +702,9 @@ module Google
|
|
863
702
|
# Required. Cloud Storage URIs to input files. URI can be up to 2000 characters
|
864
703
|
# long. URIs can match the full object path (for example, `gs://bucket/directory/
|
865
704
|
# object.json`) or a pattern matching one or more files, such as `gs://bucket/
|
866
|
-
# directory/*.json`. A request can contain at most 100 files
|
867
|
-
# be up to 2 GB
|
705
|
+
# directory/*.json`. A request can contain at most 100 files (or 100,000 files
|
706
|
+
# if `data_schema` is `content`). Each file can be up to 2 GB (or 100 MB if `
|
707
|
+
# data_schema` is `content`).
|
868
708
|
# Corresponds to the JSON property `inputUris`
|
869
709
|
# @return [Array<String>]
|
870
710
|
attr_accessor :input_uris
|
@@ -1480,6 +1320,40 @@ module Google
|
|
1480
1320
|
end
|
1481
1321
|
end
|
1482
1322
|
|
1323
|
+
# Defines the structure and layout of a type of document data.
|
1324
|
+
class GoogleCloudDiscoveryengineV1betaSchema
|
1325
|
+
include Google::Apis::Core::Hashable
|
1326
|
+
|
1327
|
+
# The JSON representation of the schema.
|
1328
|
+
# Corresponds to the JSON property `jsonSchema`
|
1329
|
+
# @return [String]
|
1330
|
+
attr_accessor :json_schema
|
1331
|
+
|
1332
|
+
# Immutable. The full resource name of the schema, in the format of `projects/`
|
1333
|
+
# project`/locations/`location`/collections/`collection`/dataStores/`data_store`/
|
1334
|
+
# schemas/`schema``. This field must be a UTF-8 encoded string with a length
|
1335
|
+
# limit of 1024 characters.
|
1336
|
+
# Corresponds to the JSON property `name`
|
1337
|
+
# @return [String]
|
1338
|
+
attr_accessor :name
|
1339
|
+
|
1340
|
+
# The structured representation of the schema.
|
1341
|
+
# Corresponds to the JSON property `structSchema`
|
1342
|
+
# @return [Hash<String,Object>]
|
1343
|
+
attr_accessor :struct_schema
|
1344
|
+
|
1345
|
+
def initialize(**args)
|
1346
|
+
update!(**args)
|
1347
|
+
end
|
1348
|
+
|
1349
|
+
# Update properties of this object
|
1350
|
+
def update!(**args)
|
1351
|
+
@json_schema = args[:json_schema] if args.key?(:json_schema)
|
1352
|
+
@name = args[:name] if args.key?(:name)
|
1353
|
+
@struct_schema = args[:struct_schema] if args.key?(:struct_schema)
|
1354
|
+
end
|
1355
|
+
end
|
1356
|
+
|
1483
1357
|
# Detailed search information.
|
1484
1358
|
class GoogleCloudDiscoveryengineV1betaSearchInfo
|
1485
1359
|
include Google::Apis::Core::Hashable
|
@@ -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.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230325"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,42 +64,6 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
-
class GoogleCloudDiscoveryengineV1alphaCondition
|
68
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
-
|
70
|
-
include Google::Apis::Core::JsonObjectSupport
|
71
|
-
end
|
72
|
-
|
73
|
-
class GoogleCloudDiscoveryengineV1alphaConditionQueryTerm
|
74
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
-
|
76
|
-
include Google::Apis::Core::JsonObjectSupport
|
77
|
-
end
|
78
|
-
|
79
|
-
class GoogleCloudDiscoveryengineV1alphaConditionTimeRange
|
80
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
-
|
82
|
-
include Google::Apis::Core::JsonObjectSupport
|
83
|
-
end
|
84
|
-
|
85
|
-
class GoogleCloudDiscoveryengineV1alphaControl
|
86
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
-
|
88
|
-
include Google::Apis::Core::JsonObjectSupport
|
89
|
-
end
|
90
|
-
|
91
|
-
class GoogleCloudDiscoveryengineV1alphaControlBoostAction
|
92
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
-
|
94
|
-
include Google::Apis::Core::JsonObjectSupport
|
95
|
-
end
|
96
|
-
|
97
|
-
class GoogleCloudDiscoveryengineV1alphaControlFilterAction
|
98
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
-
|
100
|
-
include Google::Apis::Core::JsonObjectSupport
|
101
|
-
end
|
102
|
-
|
103
67
|
class GoogleCloudDiscoveryengineV1alphaImportDocumentsMetadata
|
104
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
69
|
|
@@ -130,6 +94,12 @@ module Google
|
|
130
94
|
include Google::Apis::Core::JsonObjectSupport
|
131
95
|
end
|
132
96
|
|
97
|
+
class GoogleCloudDiscoveryengineV1alphaSchema
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
133
103
|
class GoogleCloudDiscoveryengineV1betaBigQuerySource
|
134
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
105
|
|
@@ -262,6 +232,12 @@ module Google
|
|
262
232
|
include Google::Apis::Core::JsonObjectSupport
|
263
233
|
end
|
264
234
|
|
235
|
+
class GoogleCloudDiscoveryengineV1betaSchema
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
265
241
|
class GoogleCloudDiscoveryengineV1betaSearchInfo
|
266
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
243
|
|
@@ -382,64 +358,6 @@ module Google
|
|
382
358
|
end
|
383
359
|
end
|
384
360
|
|
385
|
-
class GoogleCloudDiscoveryengineV1alphaCondition
|
386
|
-
# @private
|
387
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
388
|
-
collection :active_time_range, as: 'activeTimeRange', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaConditionTimeRange, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaConditionTimeRange::Representation
|
389
|
-
|
390
|
-
collection :query_terms, as: 'queryTerms', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaConditionQueryTerm, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaConditionQueryTerm::Representation
|
391
|
-
|
392
|
-
end
|
393
|
-
end
|
394
|
-
|
395
|
-
class GoogleCloudDiscoveryengineV1alphaConditionQueryTerm
|
396
|
-
# @private
|
397
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
398
|
-
property :full_match, as: 'fullMatch'
|
399
|
-
property :value, as: 'value'
|
400
|
-
end
|
401
|
-
end
|
402
|
-
|
403
|
-
class GoogleCloudDiscoveryengineV1alphaConditionTimeRange
|
404
|
-
# @private
|
405
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
406
|
-
property :end_time, as: 'endTime'
|
407
|
-
property :start_time, as: 'startTime'
|
408
|
-
end
|
409
|
-
end
|
410
|
-
|
411
|
-
class GoogleCloudDiscoveryengineV1alphaControl
|
412
|
-
# @private
|
413
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
414
|
-
collection :associated_serving_config_ids, as: 'associatedServingConfigIds'
|
415
|
-
property :boost_action, as: 'boostAction', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaControlBoostAction, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaControlBoostAction::Representation
|
416
|
-
|
417
|
-
collection :conditions, as: 'conditions', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCondition, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaCondition::Representation
|
418
|
-
|
419
|
-
property :display_name, as: 'displayName'
|
420
|
-
property :filter_action, as: 'filterAction', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaControlFilterAction, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaControlFilterAction::Representation
|
421
|
-
|
422
|
-
property :name, as: 'name'
|
423
|
-
property :solution_type, as: 'solutionType'
|
424
|
-
collection :use_cases, as: 'useCases'
|
425
|
-
end
|
426
|
-
end
|
427
|
-
|
428
|
-
class GoogleCloudDiscoveryengineV1alphaControlBoostAction
|
429
|
-
# @private
|
430
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
431
|
-
property :boost, as: 'boost'
|
432
|
-
property :filter, as: 'filter'
|
433
|
-
end
|
434
|
-
end
|
435
|
-
|
436
|
-
class GoogleCloudDiscoveryengineV1alphaControlFilterAction
|
437
|
-
# @private
|
438
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
439
|
-
property :filter, as: 'filter'
|
440
|
-
end
|
441
|
-
end
|
442
|
-
|
443
361
|
class GoogleCloudDiscoveryengineV1alphaImportDocumentsMetadata
|
444
362
|
# @private
|
445
363
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -489,6 +407,15 @@ module Google
|
|
489
407
|
end
|
490
408
|
end
|
491
409
|
|
410
|
+
class GoogleCloudDiscoveryengineV1alphaSchema
|
411
|
+
# @private
|
412
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
413
|
+
property :json_schema, as: 'jsonSchema'
|
414
|
+
property :name, as: 'name'
|
415
|
+
hash :struct_schema, as: 'structSchema'
|
416
|
+
end
|
417
|
+
end
|
418
|
+
|
492
419
|
class GoogleCloudDiscoveryengineV1betaBigQuerySource
|
493
420
|
# @private
|
494
421
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -713,6 +640,15 @@ module Google
|
|
713
640
|
end
|
714
641
|
end
|
715
642
|
|
643
|
+
class GoogleCloudDiscoveryengineV1betaSchema
|
644
|
+
# @private
|
645
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
646
|
+
property :json_schema, as: 'jsonSchema'
|
647
|
+
property :name, as: 'name'
|
648
|
+
hash :struct_schema, as: 'structSchema'
|
649
|
+
end
|
650
|
+
end
|
651
|
+
|
716
652
|
class GoogleCloudDiscoveryengineV1betaSearchInfo
|
717
653
|
# @private
|
718
654
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.11.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|