google-apis-discoveryengine_v1alpha 0.7.0 → 0.8.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: cb0977f8f2baaca6c95a1fa9139a5b4d1f02e780b3e8ab456d1f1c94612cc066
4
- data.tar.gz: d71148dc1b63db47f48485956d2dcd240acd1d09a2ae99d184ef704bff444883
3
+ metadata.gz: 4a04315ae82dac2cd3af803d8ca5303b0079d891c8bcc234178c6060351a6202
4
+ data.tar.gz: 8a719d95273d2bdcf745b01831365c6781e560583441a42d1e787788620dd728
5
5
  SHA512:
6
- metadata.gz: 32e98508876b84a4f3347bb0b0e8bbbd19b821151099fa6a319a96fb17e53e3d92b8185cd360886b8c4d3e49c807a3b107e15bbdb112266b4ca2d422cc38c572
7
- data.tar.gz: 7f64aa9cb4efc04d9a8f8056fcf3479cb07e207340cdebfaa8b513110317c82c6b10da1c52c0f37fd6a2cfe80f5d27085d6ecd929df1fbdba33aa37a475404b6
6
+ metadata.gz: f13ac288b7dfbf39f7f92e97c50153d2a96d28236bb44e44c5c91249115bf8972952d1bc08b637fddb28e37a4a2270948fbf62dc2060c0e414fad921895cd59b
7
+ data.tar.gz: 1d84a07a948f1be1e48be6a7327d451360cea6ae9757f776c6eb064542c7e2f8fbb58b02cf5f71dcd233eb20dc4d0c573332a8b11dee6a8b65b9498211dc1450
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1alpha
2
2
 
3
+ ### v0.8.0 (2023-03-26)
4
+
5
+ * Regenerated from discovery document revision 20230325
6
+
3
7
  ### v0.7.0 (2023-03-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20230310
@@ -259,9 +259,12 @@ module Google
259
259
  include Google::Apis::Core::Hashable
260
260
 
261
261
  # The schema to use when parsing the data from the source. Supported values for
262
- # imports: * `user_event` (default): One JSON UserEvent per line. * `document` (
263
- # default): One JSON Document per line. Each document must have a valid document.
264
- # id.
262
+ # user event imports: * `user_event` (default): One UserEvent per row. Supported
263
+ # values for document imports: * `document` (default): One Document format per
264
+ # row. Each document must have a valid Document.id and one of Document.json_data
265
+ # or Document.struct_data. * `custom`: One custom data per row in arbitrary
266
+ # format that conforms the defined Schema of the data store. This can only be
267
+ # used by the GENERIC Data Store vertical.
265
268
  # Corresponds to the JSON property `dataSchema`
266
269
  # @return [String]
267
270
  attr_accessor :data_schema
@@ -346,209 +349,6 @@ module Google
346
349
  end
347
350
  end
348
351
 
349
- # Defines circumstances to be checked before allowing a behavior
350
- class GoogleCloudDiscoveryengineV1alphaCondition
351
- include Google::Apis::Core::Hashable
352
-
353
- # Optional. Range of time(s) specifying when condition is active. Maximum of 10
354
- # time ranges.
355
- # Corresponds to the JSON property `activeTimeRange`
356
- # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConditionTimeRange>]
357
- attr_accessor :active_time_range
358
-
359
- # Optional. Search only A list of terms to match the query on. Maximum of 10
360
- # query terms.
361
- # Corresponds to the JSON property `queryTerms`
362
- # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConditionQueryTerm>]
363
- attr_accessor :query_terms
364
-
365
- def initialize(**args)
366
- update!(**args)
367
- end
368
-
369
- # Update properties of this object
370
- def update!(**args)
371
- @active_time_range = args[:active_time_range] if args.key?(:active_time_range)
372
- @query_terms = args[:query_terms] if args.key?(:query_terms)
373
- end
374
- end
375
-
376
- # Matcher for search request query
377
- class GoogleCloudDiscoveryengineV1alphaConditionQueryTerm
378
- include Google::Apis::Core::Hashable
379
-
380
- # Whether the search query needs to exactly match the query term.
381
- # Corresponds to the JSON property `fullMatch`
382
- # @return [Boolean]
383
- attr_accessor :full_match
384
- alias_method :full_match?, :full_match
385
-
386
- # The specific query value to match against Must be lowercase, must be UTF-8.
387
- # Can have at most 3 space separated terms if full_match is true. Cannot be an
388
- # empty string. Maximum length of 5000 characters.
389
- # Corresponds to the JSON property `value`
390
- # @return [String]
391
- attr_accessor :value
392
-
393
- def initialize(**args)
394
- update!(**args)
395
- end
396
-
397
- # Update properties of this object
398
- def update!(**args)
399
- @full_match = args[:full_match] if args.key?(:full_match)
400
- @value = args[:value] if args.key?(:value)
401
- end
402
- end
403
-
404
- # Used for time-dependent conditions.
405
- class GoogleCloudDiscoveryengineV1alphaConditionTimeRange
406
- include Google::Apis::Core::Hashable
407
-
408
- # End of time range. Range is inclusive. Must be in the future.
409
- # Corresponds to the JSON property `endTime`
410
- # @return [String]
411
- attr_accessor :end_time
412
-
413
- # Start of time range. Range is inclusive.
414
- # Corresponds to the JSON property `startTime`
415
- # @return [String]
416
- attr_accessor :start_time
417
-
418
- def initialize(**args)
419
- update!(**args)
420
- end
421
-
422
- # Update properties of this object
423
- def update!(**args)
424
- @end_time = args[:end_time] if args.key?(:end_time)
425
- @start_time = args[:start_time] if args.key?(:start_time)
426
- end
427
- end
428
-
429
- # Defines a conditioned behavior to employ during serving. Must be attached to a
430
- # [ServingConfig] to be considered at serving time. Permitted actions dependent
431
- # on Solution Type.
432
- class GoogleCloudDiscoveryengineV1alphaControl
433
- include Google::Apis::Core::Hashable
434
-
435
- # Output only. List of all [ServingConfig] ids this control is attached to. May
436
- # take up to 10 minutes to update after changes.
437
- # Corresponds to the JSON property `associatedServingConfigIds`
438
- # @return [Array<String>]
439
- attr_accessor :associated_serving_config_ids
440
-
441
- # Adjusts order of products in returned list.
442
- # Corresponds to the JSON property `boostAction`
443
- # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaControlBoostAction]
444
- attr_accessor :boost_action
445
-
446
- # Determines when the associated action will trigger. Omit to always apply the
447
- # action. Currently only a single condition may be specified. Otherwise an
448
- # INVALID ARGUMENT error is thrown.
449
- # Corresponds to the JSON property `conditions`
450
- # @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCondition>]
451
- attr_accessor :conditions
452
-
453
- # Required. Human readable name. The identifier used in UI views. Must be UTF-8
454
- # encoded string. Length limit is 128 characters. Otherwise an INVALID ARGUMENT
455
- # error is thrown.
456
- # Corresponds to the JSON property `displayName`
457
- # @return [String]
458
- attr_accessor :display_name
459
-
460
- # Specified which products may be included in results. Uses same filter as boost.
461
- # Corresponds to the JSON property `filterAction`
462
- # @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaControlFilterAction]
463
- attr_accessor :filter_action
464
-
465
- # Immutable. Fully qualified name `projects/*/locations/global/dataStore/*/
466
- # controls/*`
467
- # Corresponds to the JSON property `name`
468
- # @return [String]
469
- attr_accessor :name
470
-
471
- # Required. What solution the control belongs to. Must be compatible with
472
- # vertical of resource. Otherwise an INVALID ARGUMENT error is thrown.
473
- # Corresponds to the JSON property `solutionType`
474
- # @return [String]
475
- attr_accessor :solution_type
476
-
477
- # Specifies the use case for the control. Affects what condition fields can be
478
- # set. Only applies to SOLUTION_TYPE_SEARCH. Currently only allow one use case
479
- # per control. Must be set when solution_type is SolutionType.
480
- # SOLUTION_TYPE_SEARCH.
481
- # Corresponds to the JSON property `useCases`
482
- # @return [Array<String>]
483
- attr_accessor :use_cases
484
-
485
- def initialize(**args)
486
- update!(**args)
487
- end
488
-
489
- # Update properties of this object
490
- def update!(**args)
491
- @associated_serving_config_ids = args[:associated_serving_config_ids] if args.key?(:associated_serving_config_ids)
492
- @boost_action = args[:boost_action] if args.key?(:boost_action)
493
- @conditions = args[:conditions] if args.key?(:conditions)
494
- @display_name = args[:display_name] if args.key?(:display_name)
495
- @filter_action = args[:filter_action] if args.key?(:filter_action)
496
- @name = args[:name] if args.key?(:name)
497
- @solution_type = args[:solution_type] if args.key?(:solution_type)
498
- @use_cases = args[:use_cases] if args.key?(:use_cases)
499
- end
500
- end
501
-
502
- # Adjusts order of products in returned list.
503
- class GoogleCloudDiscoveryengineV1alphaControlBoostAction
504
- include Google::Apis::Core::Hashable
505
-
506
- # Required. Strength of the boost, which should be in [-1, 1]. Negative boost
507
- # means demotion. Default is 0.0 (No-op).
508
- # Corresponds to the JSON property `boost`
509
- # @return [Float]
510
- attr_accessor :boost
511
-
512
- # Required. Specifies which products to apply the boost to. If no filter is
513
- # provided all products will be boosted (No-op). Syntax documentation: https://
514
- # cloud.google.com/retail/docs/filter-and-order Maximum length is 5000
515
- # characters. Otherwise an INVALID ARGUMENT error is thrown.
516
- # Corresponds to the JSON property `filter`
517
- # @return [String]
518
- attr_accessor :filter
519
-
520
- def initialize(**args)
521
- update!(**args)
522
- end
523
-
524
- # Update properties of this object
525
- def update!(**args)
526
- @boost = args[:boost] if args.key?(:boost)
527
- @filter = args[:filter] if args.key?(:filter)
528
- end
529
- end
530
-
531
- # Specified which products may be included in results. Uses same filter as boost.
532
- class GoogleCloudDiscoveryengineV1alphaControlFilterAction
533
- include Google::Apis::Core::Hashable
534
-
535
- # Required. A filter to apply on the matching condition results. Required Syntax
536
- # documentation: https://cloud.google.com/retail/docs/filter-and-order Maximum
537
- # length is 5000 characters. Otherwise an INVALID ARGUMENT error is thrown.
538
- # Corresponds to the JSON property `filter`
539
- # @return [String]
540
- attr_accessor :filter
541
-
542
- def initialize(**args)
543
- update!(**args)
544
- end
545
-
546
- # Update properties of this object
547
- def update!(**args)
548
- @filter = args[:filter] if args.key?(:filter)
549
- end
550
- end
551
-
552
352
  # A custom attribute that is not explicitly modeled in a resource, e.g.
553
353
  # UserEvent.
554
354
  class GoogleCloudDiscoveryengineV1alphaCustomAttribute
@@ -613,7 +413,7 @@ module Google
613
413
  # @return [String]
614
414
  attr_accessor :parent_document_id
615
415
 
616
- # Required. The identifier of the schema located in the same data store.
416
+ # The identifier of the schema located in the same data store.
617
417
  # Corresponds to the JSON property `schemaId`
618
418
  # @return [String]
619
419
  attr_accessor :schema_id
@@ -690,9 +490,11 @@ module Google
690
490
  # document imports: * `document` (default): One JSON Document per line. Each
691
491
  # document must have a valid Document.id. * `content`: Unstructured data (e.g.
692
492
  # 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. Supported
694
- # values for user even imports: * `user_event` (default): One JSON UserEvent per
695
- # line.
493
+ # ID set to the first 128 bits of SHA256(URI) encoded as a hex string. * `custom`
494
+ # : One custom data JSON per row in arbitrary format that conforms the defined
495
+ # Schema of the data store. This can only be used by the GENERIC Data Store
496
+ # vertical. Supported values for user even imports: * `user_event` (default):
497
+ # One JSON UserEvent per line.
696
498
  # Corresponds to the JSON property `dataSchema`
697
499
  # @return [String]
698
500
  attr_accessor :data_schema
@@ -700,8 +502,9 @@ module Google
700
502
  # Required. Cloud Storage URIs to input files. URI can be up to 2000 characters
701
503
  # long. URIs can match the full object path (for example, `gs://bucket/directory/
702
504
  # object.json`) or a pattern matching one or more files, such as `gs://bucket/
703
- # directory/*.json`. A request can contain at most 100 files or 100000 files if
704
- # the data_schema is `content`. And each file can be up to 2 GB.
505
+ # directory/*.json`. A request can contain at most 100 files (or 100,000 files
506
+ # if `data_schema` is `content`). Each file can be up to 2 GB (or 100 MB if `
507
+ # data_schema` is `content`).
705
508
  # Corresponds to the JSON property `inputUris`
706
509
  # @return [Array<String>]
707
510
  attr_accessor :input_uris
@@ -1317,6 +1120,40 @@ module Google
1317
1120
  end
1318
1121
  end
1319
1122
 
1123
+ # Defines the structure and layout of a type of document data.
1124
+ class GoogleCloudDiscoveryengineV1alphaSchema
1125
+ include Google::Apis::Core::Hashable
1126
+
1127
+ # The JSON representation of the schema.
1128
+ # Corresponds to the JSON property `jsonSchema`
1129
+ # @return [String]
1130
+ attr_accessor :json_schema
1131
+
1132
+ # Immutable. The full resource name of the schema, in the format of `projects/`
1133
+ # project`/locations/`location`/collections/`collection`/dataStores/`data_store`/
1134
+ # schemas/`schema``. This field must be a UTF-8 encoded string with a length
1135
+ # limit of 1024 characters.
1136
+ # Corresponds to the JSON property `name`
1137
+ # @return [String]
1138
+ attr_accessor :name
1139
+
1140
+ # The structured representation of the schema.
1141
+ # Corresponds to the JSON property `structSchema`
1142
+ # @return [Hash<String,Object>]
1143
+ attr_accessor :struct_schema
1144
+
1145
+ def initialize(**args)
1146
+ update!(**args)
1147
+ end
1148
+
1149
+ # Update properties of this object
1150
+ def update!(**args)
1151
+ @json_schema = args[:json_schema] if args.key?(:json_schema)
1152
+ @name = args[:name] if args.key?(:name)
1153
+ @struct_schema = args[:struct_schema] if args.key?(:struct_schema)
1154
+ end
1155
+ end
1156
+
1320
1157
  # Detailed search information.
1321
1158
  class GoogleCloudDiscoveryengineV1alphaSearchInfo
1322
1159
  include Google::Apis::Core::Hashable
@@ -1819,6 +1656,40 @@ module Google
1819
1656
  end
1820
1657
  end
1821
1658
 
1659
+ # Defines the structure and layout of a type of document data.
1660
+ class GoogleCloudDiscoveryengineV1betaSchema
1661
+ include Google::Apis::Core::Hashable
1662
+
1663
+ # The JSON representation of the schema.
1664
+ # Corresponds to the JSON property `jsonSchema`
1665
+ # @return [String]
1666
+ attr_accessor :json_schema
1667
+
1668
+ # Immutable. The full resource name of the schema, in the format of `projects/`
1669
+ # project`/locations/`location`/collections/`collection`/dataStores/`data_store`/
1670
+ # schemas/`schema``. This field must be a UTF-8 encoded string with a length
1671
+ # limit of 1024 characters.
1672
+ # Corresponds to the JSON property `name`
1673
+ # @return [String]
1674
+ attr_accessor :name
1675
+
1676
+ # The structured representation of the schema.
1677
+ # Corresponds to the JSON property `structSchema`
1678
+ # @return [Hash<String,Object>]
1679
+ attr_accessor :struct_schema
1680
+
1681
+ def initialize(**args)
1682
+ update!(**args)
1683
+ end
1684
+
1685
+ # Update properties of this object
1686
+ def update!(**args)
1687
+ @json_schema = args[:json_schema] if args.key?(:json_schema)
1688
+ @name = args[:name] if args.key?(:name)
1689
+ @struct_schema = args[:struct_schema] if args.key?(:struct_schema)
1690
+ end
1691
+ end
1692
+
1822
1693
  # The response message for Operations.ListOperations.
1823
1694
  class GoogleLongrunningListOperationsResponse
1824
1695
  include Google::Apis::Core::Hashable
@@ -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.7.0"
19
+ GEM_VERSION = "0.8.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 = "20230310"
25
+ REVISION = "20230325"
26
26
  end
27
27
  end
28
28
  end
@@ -76,42 +76,6 @@ module Google
76
76
  include Google::Apis::Core::JsonObjectSupport
77
77
  end
78
78
 
79
- class GoogleCloudDiscoveryengineV1alphaCondition
80
- class Representation < Google::Apis::Core::JsonRepresentation; end
81
-
82
- include Google::Apis::Core::JsonObjectSupport
83
- end
84
-
85
- class GoogleCloudDiscoveryengineV1alphaConditionQueryTerm
86
- class Representation < Google::Apis::Core::JsonRepresentation; end
87
-
88
- include Google::Apis::Core::JsonObjectSupport
89
- end
90
-
91
- class GoogleCloudDiscoveryengineV1alphaConditionTimeRange
92
- class Representation < Google::Apis::Core::JsonRepresentation; end
93
-
94
- include Google::Apis::Core::JsonObjectSupport
95
- end
96
-
97
- class GoogleCloudDiscoveryengineV1alphaControl
98
- class Representation < Google::Apis::Core::JsonRepresentation; end
99
-
100
- include Google::Apis::Core::JsonObjectSupport
101
- end
102
-
103
- class GoogleCloudDiscoveryengineV1alphaControlBoostAction
104
- class Representation < Google::Apis::Core::JsonRepresentation; end
105
-
106
- include Google::Apis::Core::JsonObjectSupport
107
- end
108
-
109
- class GoogleCloudDiscoveryengineV1alphaControlFilterAction
110
- class Representation < Google::Apis::Core::JsonRepresentation; end
111
-
112
- include Google::Apis::Core::JsonObjectSupport
113
- end
114
-
115
79
  class GoogleCloudDiscoveryengineV1alphaCustomAttribute
116
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
81
 
@@ -232,6 +196,12 @@ module Google
232
196
  include Google::Apis::Core::JsonObjectSupport
233
197
  end
234
198
 
199
+ class GoogleCloudDiscoveryengineV1alphaSchema
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
235
205
  class GoogleCloudDiscoveryengineV1alphaSearchInfo
236
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
207
 
@@ -286,6 +256,12 @@ module Google
286
256
  include Google::Apis::Core::JsonObjectSupport
287
257
  end
288
258
 
259
+ class GoogleCloudDiscoveryengineV1betaSchema
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
289
265
  class GoogleLongrunningListOperationsResponse
290
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
267
 
@@ -403,64 +379,6 @@ module Google
403
379
  end
404
380
  end
405
381
 
406
- class GoogleCloudDiscoveryengineV1alphaCondition
407
- # @private
408
- class Representation < Google::Apis::Core::JsonRepresentation
409
- collection :active_time_range, as: 'activeTimeRange', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConditionTimeRange, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConditionTimeRange::Representation
410
-
411
- collection :query_terms, as: 'queryTerms', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConditionQueryTerm, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConditionQueryTerm::Representation
412
-
413
- end
414
- end
415
-
416
- class GoogleCloudDiscoveryengineV1alphaConditionQueryTerm
417
- # @private
418
- class Representation < Google::Apis::Core::JsonRepresentation
419
- property :full_match, as: 'fullMatch'
420
- property :value, as: 'value'
421
- end
422
- end
423
-
424
- class GoogleCloudDiscoveryengineV1alphaConditionTimeRange
425
- # @private
426
- class Representation < Google::Apis::Core::JsonRepresentation
427
- property :end_time, as: 'endTime'
428
- property :start_time, as: 'startTime'
429
- end
430
- end
431
-
432
- class GoogleCloudDiscoveryengineV1alphaControl
433
- # @private
434
- class Representation < Google::Apis::Core::JsonRepresentation
435
- collection :associated_serving_config_ids, as: 'associatedServingConfigIds'
436
- property :boost_action, as: 'boostAction', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaControlBoostAction, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaControlBoostAction::Representation
437
-
438
- collection :conditions, as: 'conditions', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCondition, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCondition::Representation
439
-
440
- property :display_name, as: 'displayName'
441
- property :filter_action, as: 'filterAction', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaControlFilterAction, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaControlFilterAction::Representation
442
-
443
- property :name, as: 'name'
444
- property :solution_type, as: 'solutionType'
445
- collection :use_cases, as: 'useCases'
446
- end
447
- end
448
-
449
- class GoogleCloudDiscoveryengineV1alphaControlBoostAction
450
- # @private
451
- class Representation < Google::Apis::Core::JsonRepresentation
452
- property :boost, as: 'boost'
453
- property :filter, as: 'filter'
454
- end
455
- end
456
-
457
- class GoogleCloudDiscoveryengineV1alphaControlFilterAction
458
- # @private
459
- class Representation < Google::Apis::Core::JsonRepresentation
460
- property :filter, as: 'filter'
461
- end
462
- end
463
-
464
382
  class GoogleCloudDiscoveryengineV1alphaCustomAttribute
465
383
  # @private
466
384
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -664,6 +582,15 @@ module Google
664
582
  end
665
583
  end
666
584
 
585
+ class GoogleCloudDiscoveryengineV1alphaSchema
586
+ # @private
587
+ class Representation < Google::Apis::Core::JsonRepresentation
588
+ property :json_schema, as: 'jsonSchema'
589
+ property :name, as: 'name'
590
+ hash :struct_schema, as: 'structSchema'
591
+ end
592
+ end
593
+
667
594
  class GoogleCloudDiscoveryengineV1alphaSearchInfo
668
595
  # @private
669
596
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -775,6 +702,15 @@ module Google
775
702
  end
776
703
  end
777
704
 
705
+ class GoogleCloudDiscoveryengineV1betaSchema
706
+ # @private
707
+ class Representation < Google::Apis::Core::JsonRepresentation
708
+ property :json_schema, as: 'jsonSchema'
709
+ property :name, as: 'name'
710
+ hash :struct_schema, as: 'structSchema'
711
+ end
712
+ end
713
+
778
714
  class GoogleLongrunningListOperationsResponse
779
715
  # @private
780
716
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.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-19 00:00:00.000000000 Z
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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.7.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.8.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []