google-apis-retail_v2beta 0.90.0 → 0.91.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: 4727b4e317bee8270f99d6328a70540bba14e1a52ecfb91bc5c0abe878af3fa6
4
- data.tar.gz: 8f1e76be367781c595c9a81fc85e4e958d48ccf0a8858f0b8bd663464c310953
3
+ metadata.gz: d20c11a2a7197e87360c1762e34eea5ec1218c8c844bc44aa0a5a3e5b2f0eb8d
4
+ data.tar.gz: de025aaf0aec97aad8033e9b6cb4c5b952bbf29759ca53caca5b44a249207aa4
5
5
  SHA512:
6
- metadata.gz: 35c0bf672a44a6ffb23a3d912152e7f7cc2a31f88d879316fbdfd3dba00bc988f71008a31147a32f8b2db2263d31b45bcd52ffa27c7ca606244e22ed1ca6af1e
7
- data.tar.gz: 01bf16ff49f36a81dccc8c18708e5b19b6a2168ec64164d66359f3d6887a102a1c9fd58fc2fd56165aa95f87d2f6c27e3675e2f72b8133420368ac3c36b7d1e5
6
+ metadata.gz: 69500bc0f1a554ab7522e323643c67c97c520d82b470185190e239eb68e45a0de1be1c9ca908c7bee7bd2ec2c6021e0072547611c3a93c9ac847a98c5910e7a7
7
+ data.tar.gz: 6b69b62587295dc16db24b07d0e9da8efefa703bc1081c9f4b5379898eff78a8f0da3a2003bdf02bd7a35d57c969754da99e45f73d0aa1c4b5d22b6e87c8b24f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-retail_v2beta
2
2
 
3
+ ### v0.91.0 (2024-02-11)
4
+
5
+ * Regenerated from discovery document revision 20240205
6
+
3
7
  ### v0.90.0 (2024-02-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20240129
@@ -339,6 +339,31 @@ module Google
339
339
  end
340
340
  end
341
341
 
342
+ # A BigQuery output result.
343
+ class GoogleCloudRetailV2BigQueryOutputResult
344
+ include Google::Apis::Core::Hashable
345
+
346
+ # The ID of a BigQuery Dataset.
347
+ # Corresponds to the JSON property `datasetId`
348
+ # @return [String]
349
+ attr_accessor :dataset_id
350
+
351
+ # The ID of a BigQuery Table.
352
+ # Corresponds to the JSON property `tableId`
353
+ # @return [String]
354
+ attr_accessor :table_id
355
+
356
+ def initialize(**args)
357
+ update!(**args)
358
+ end
359
+
360
+ # Update properties of this object
361
+ def update!(**args)
362
+ @dataset_id = args[:dataset_id] if args.key?(:dataset_id)
363
+ @table_id = args[:table_id] if args.key?(:table_id)
364
+ end
365
+ end
366
+
342
367
  # Metadata associated with a create operation.
343
368
  class GoogleCloudRetailV2CreateModelMetadata
344
369
  include Google::Apis::Core::Hashable
@@ -360,6 +385,80 @@ module Google
360
385
  end
361
386
  end
362
387
 
388
+ # Response of the ExportAnalyticsMetricsRequest. If the long running operation
389
+ # was successful, then this message is returned by the google.longrunning.
390
+ # Operations.response field if the operation was successful.
391
+ class GoogleCloudRetailV2ExportAnalyticsMetricsResponse
392
+ include Google::Apis::Core::Hashable
393
+
394
+ # A sample of errors encountered while processing the request.
395
+ # Corresponds to the JSON property `errorSamples`
396
+ # @return [Array<Google::Apis::RetailV2beta::GoogleRpcStatus>]
397
+ attr_accessor :error_samples
398
+
399
+ # Configuration of destination for Export related errors.
400
+ # Corresponds to the JSON property `errorsConfig`
401
+ # @return [Google::Apis::RetailV2beta::GoogleCloudRetailV2ExportErrorsConfig]
402
+ attr_accessor :errors_config
403
+
404
+ # Output result that stores the information about where the exported data is
405
+ # stored.
406
+ # Corresponds to the JSON property `outputResult`
407
+ # @return [Google::Apis::RetailV2beta::GoogleCloudRetailV2OutputResult]
408
+ attr_accessor :output_result
409
+
410
+ def initialize(**args)
411
+ update!(**args)
412
+ end
413
+
414
+ # Update properties of this object
415
+ def update!(**args)
416
+ @error_samples = args[:error_samples] if args.key?(:error_samples)
417
+ @errors_config = args[:errors_config] if args.key?(:errors_config)
418
+ @output_result = args[:output_result] if args.key?(:output_result)
419
+ end
420
+ end
421
+
422
+ # Configuration of destination for Export related errors.
423
+ class GoogleCloudRetailV2ExportErrorsConfig
424
+ include Google::Apis::Core::Hashable
425
+
426
+ # Google Cloud Storage path for import errors. This must be an empty, existing
427
+ # Cloud Storage bucket. Export errors will be written to a file in this bucket,
428
+ # one per line, as a JSON-encoded `google.rpc.Status` message.
429
+ # Corresponds to the JSON property `gcsPrefix`
430
+ # @return [String]
431
+ attr_accessor :gcs_prefix
432
+
433
+ def initialize(**args)
434
+ update!(**args)
435
+ end
436
+
437
+ # Update properties of this object
438
+ def update!(**args)
439
+ @gcs_prefix = args[:gcs_prefix] if args.key?(:gcs_prefix)
440
+ end
441
+ end
442
+
443
+ # A Gcs output result.
444
+ class GoogleCloudRetailV2GcsOutputResult
445
+ include Google::Apis::Core::Hashable
446
+
447
+ # The uri of Gcs output
448
+ # Corresponds to the JSON property `outputUri`
449
+ # @return [String]
450
+ attr_accessor :output_uri
451
+
452
+ def initialize(**args)
453
+ update!(**args)
454
+ end
455
+
456
+ # Update properties of this object
457
+ def update!(**args)
458
+ @output_uri = args[:output_uri] if args.key?(:output_uri)
459
+ end
460
+ end
461
+
363
462
  # Response of the ImportCompletionDataRequest. If the long running operation is
364
463
  # done, this message is returned by the google.longrunning.Operations.response
365
464
  # field if the operation is successful.
@@ -723,6 +822,32 @@ module Google
723
822
  end
724
823
  end
725
824
 
825
+ # Output result that stores the information about where the exported data is
826
+ # stored.
827
+ class GoogleCloudRetailV2OutputResult
828
+ include Google::Apis::Core::Hashable
829
+
830
+ # The BigQuery location where the result is stored.
831
+ # Corresponds to the JSON property `bigqueryResult`
832
+ # @return [Array<Google::Apis::RetailV2beta::GoogleCloudRetailV2BigQueryOutputResult>]
833
+ attr_accessor :bigquery_result
834
+
835
+ # The Google Cloud Storage location where the result is stored.
836
+ # Corresponds to the JSON property `gcsResult`
837
+ # @return [Array<Google::Apis::RetailV2beta::GoogleCloudRetailV2GcsOutputResult>]
838
+ attr_accessor :gcs_result
839
+
840
+ def initialize(**args)
841
+ update!(**args)
842
+ end
843
+
844
+ # Update properties of this object
845
+ def update!(**args)
846
+ @bigquery_result = args[:bigquery_result] if args.key?(:bigquery_result)
847
+ @gcs_result = args[:gcs_result] if args.key?(:gcs_result)
848
+ end
849
+ end
850
+
726
851
  # Metadata related to the progress of the Purge operation. This will be returned
727
852
  # by the google.longrunning.Operation.metadata field.
728
853
  class GoogleCloudRetailV2PurgeMetadata
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RetailV2beta
18
18
  # Version of the google-apis-retail_v2beta gem
19
- GEM_VERSION = "0.90.0"
19
+ GEM_VERSION = "0.91.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240129"
25
+ REVISION = "20240205"
26
26
  end
27
27
  end
28
28
  end
@@ -88,12 +88,36 @@ module Google
88
88
  include Google::Apis::Core::JsonObjectSupport
89
89
  end
90
90
 
91
+ class GoogleCloudRetailV2BigQueryOutputResult
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
91
97
  class GoogleCloudRetailV2CreateModelMetadata
92
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
99
 
94
100
  include Google::Apis::Core::JsonObjectSupport
95
101
  end
96
102
 
103
+ class GoogleCloudRetailV2ExportAnalyticsMetricsResponse
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
109
+ class GoogleCloudRetailV2ExportErrorsConfig
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
115
+ class GoogleCloudRetailV2GcsOutputResult
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
97
121
  class GoogleCloudRetailV2ImportCompletionDataResponse
98
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
123
 
@@ -148,6 +172,12 @@ module Google
148
172
  include Google::Apis::Core::JsonObjectSupport
149
173
  end
150
174
 
175
+ class GoogleCloudRetailV2OutputResult
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
151
181
  class GoogleCloudRetailV2PurgeMetadata
152
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
183
 
@@ -1525,6 +1555,14 @@ module Google
1525
1555
  end
1526
1556
  end
1527
1557
 
1558
+ class GoogleCloudRetailV2BigQueryOutputResult
1559
+ # @private
1560
+ class Representation < Google::Apis::Core::JsonRepresentation
1561
+ property :dataset_id, as: 'datasetId'
1562
+ property :table_id, as: 'tableId'
1563
+ end
1564
+ end
1565
+
1528
1566
  class GoogleCloudRetailV2CreateModelMetadata
1529
1567
  # @private
1530
1568
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1532,6 +1570,32 @@ module Google
1532
1570
  end
1533
1571
  end
1534
1572
 
1573
+ class GoogleCloudRetailV2ExportAnalyticsMetricsResponse
1574
+ # @private
1575
+ class Representation < Google::Apis::Core::JsonRepresentation
1576
+ collection :error_samples, as: 'errorSamples', class: Google::Apis::RetailV2beta::GoogleRpcStatus, decorator: Google::Apis::RetailV2beta::GoogleRpcStatus::Representation
1577
+
1578
+ property :errors_config, as: 'errorsConfig', class: Google::Apis::RetailV2beta::GoogleCloudRetailV2ExportErrorsConfig, decorator: Google::Apis::RetailV2beta::GoogleCloudRetailV2ExportErrorsConfig::Representation
1579
+
1580
+ property :output_result, as: 'outputResult', class: Google::Apis::RetailV2beta::GoogleCloudRetailV2OutputResult, decorator: Google::Apis::RetailV2beta::GoogleCloudRetailV2OutputResult::Representation
1581
+
1582
+ end
1583
+ end
1584
+
1585
+ class GoogleCloudRetailV2ExportErrorsConfig
1586
+ # @private
1587
+ class Representation < Google::Apis::Core::JsonRepresentation
1588
+ property :gcs_prefix, as: 'gcsPrefix'
1589
+ end
1590
+ end
1591
+
1592
+ class GoogleCloudRetailV2GcsOutputResult
1593
+ # @private
1594
+ class Representation < Google::Apis::Core::JsonRepresentation
1595
+ property :output_uri, as: 'outputUri'
1596
+ end
1597
+ end
1598
+
1535
1599
  class GoogleCloudRetailV2ImportCompletionDataResponse
1536
1600
  # @private
1537
1601
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1626,6 +1690,16 @@ module Google
1626
1690
  end
1627
1691
  end
1628
1692
 
1693
+ class GoogleCloudRetailV2OutputResult
1694
+ # @private
1695
+ class Representation < Google::Apis::Core::JsonRepresentation
1696
+ collection :bigquery_result, as: 'bigqueryResult', class: Google::Apis::RetailV2beta::GoogleCloudRetailV2BigQueryOutputResult, decorator: Google::Apis::RetailV2beta::GoogleCloudRetailV2BigQueryOutputResult::Representation
1697
+
1698
+ collection :gcs_result, as: 'gcsResult', class: Google::Apis::RetailV2beta::GoogleCloudRetailV2GcsOutputResult, decorator: Google::Apis::RetailV2beta::GoogleCloudRetailV2GcsOutputResult::Representation
1699
+
1700
+ end
1701
+ end
1702
+
1629
1703
  class GoogleCloudRetailV2PurgeMetadata
1630
1704
  # @private
1631
1705
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-retail_v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.90.0
4
+ version: 0.91.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: 2024-02-04 00:00:00.000000000 Z
11
+ date: 2024-02-11 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-retail_v2beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.90.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.91.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2beta
63
63
  post_install_message:
64
64
  rdoc_options: []