google-apis-retail_v2alpha 0.93.0 → 0.94.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f72c46d59fc5a2b4da11c33098fe456bd7f5214e0315f2ef29105ddc31c8449e
4
- data.tar.gz: 18137f2cf36548d29ae2c71ec651e584667f02b1cf3ecc0d3c961bd6241a10fb
3
+ metadata.gz: 7dd49f5603cb2b82f3eb980d6ef3e7ced3d3e62c5b70b164b33f275deffa2c74
4
+ data.tar.gz: dce5e3f86f9a234f52d3305e1cb6752086bdcdf18edc289924ed62dc1b4397fd
5
5
  SHA512:
6
- metadata.gz: a8856b56ce308c11d4221d832ee67a1840407b22693644264f87f3819acee37fa0c4c66793b2e174c30b9b85e4b006ae28f43c2c510b1fbd52ffa4ecc8ce4cef
7
- data.tar.gz: c12299eca858a1f485f96fe88289e75a362a66008d30def649a542f48e9b5c2c03931fe6a8826d77ff0ec34db48bb8f9030421e817ead84128281ef6182473e0
6
+ metadata.gz: 4dc61334bd1216fc830073569aa181bfb574a8ebfa2f67f2542e5e2db40ec82dba63cb290ff56b6c093e24b2815fdd8a97cd20b2a5145eece88e55fddbf869f9
7
+ data.tar.gz: 3b709183505792ab071ce3bdaf00511a9544eab808559a5c1e66c8aade051f7138df8f39e7ecede1f4fc82f67302a486af8fe579198fc2a5b5311faa77213423
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-retail_v2alpha
2
2
 
3
+ ### v0.94.0 (2024-02-11)
4
+
5
+ * Regenerated from discovery document revision 20240205
6
+
3
7
  ### v0.93.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::RetailV2alpha::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::RetailV2alpha::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::RetailV2alpha::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::RetailV2alpha::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::RetailV2alpha::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 RetailV2alpha
18
18
  # Version of the google-apis-retail_v2alpha gem
19
- GEM_VERSION = "0.93.0"
19
+ GEM_VERSION = "0.94.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
 
@@ -1579,6 +1609,14 @@ module Google
1579
1609
  end
1580
1610
  end
1581
1611
 
1612
+ class GoogleCloudRetailV2BigQueryOutputResult
1613
+ # @private
1614
+ class Representation < Google::Apis::Core::JsonRepresentation
1615
+ property :dataset_id, as: 'datasetId'
1616
+ property :table_id, as: 'tableId'
1617
+ end
1618
+ end
1619
+
1582
1620
  class GoogleCloudRetailV2CreateModelMetadata
1583
1621
  # @private
1584
1622
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1586,6 +1624,32 @@ module Google
1586
1624
  end
1587
1625
  end
1588
1626
 
1627
+ class GoogleCloudRetailV2ExportAnalyticsMetricsResponse
1628
+ # @private
1629
+ class Representation < Google::Apis::Core::JsonRepresentation
1630
+ collection :error_samples, as: 'errorSamples', class: Google::Apis::RetailV2alpha::GoogleRpcStatus, decorator: Google::Apis::RetailV2alpha::GoogleRpcStatus::Representation
1631
+
1632
+ property :errors_config, as: 'errorsConfig', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2ExportErrorsConfig, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2ExportErrorsConfig::Representation
1633
+
1634
+ property :output_result, as: 'outputResult', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2OutputResult, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2OutputResult::Representation
1635
+
1636
+ end
1637
+ end
1638
+
1639
+ class GoogleCloudRetailV2ExportErrorsConfig
1640
+ # @private
1641
+ class Representation < Google::Apis::Core::JsonRepresentation
1642
+ property :gcs_prefix, as: 'gcsPrefix'
1643
+ end
1644
+ end
1645
+
1646
+ class GoogleCloudRetailV2GcsOutputResult
1647
+ # @private
1648
+ class Representation < Google::Apis::Core::JsonRepresentation
1649
+ property :output_uri, as: 'outputUri'
1650
+ end
1651
+ end
1652
+
1589
1653
  class GoogleCloudRetailV2ImportCompletionDataResponse
1590
1654
  # @private
1591
1655
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1680,6 +1744,16 @@ module Google
1680
1744
  end
1681
1745
  end
1682
1746
 
1747
+ class GoogleCloudRetailV2OutputResult
1748
+ # @private
1749
+ class Representation < Google::Apis::Core::JsonRepresentation
1750
+ collection :bigquery_result, as: 'bigqueryResult', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2BigQueryOutputResult, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2BigQueryOutputResult::Representation
1751
+
1752
+ collection :gcs_result, as: 'gcsResult', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2GcsOutputResult, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2GcsOutputResult::Representation
1753
+
1754
+ end
1755
+ end
1756
+
1683
1757
  class GoogleCloudRetailV2PurgeMetadata
1684
1758
  # @private
1685
1759
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-retail_v2alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.93.0
4
+ version: 0.94.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_v2alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2alpha/v0.93.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2alpha/v0.94.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2alpha
63
63
  post_install_message:
64
64
  rdoc_options: []