google-apis-retail_v2alpha 0.4.0 → 0.5.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: aa3d3b8d45f63bb806e9d32cd9dae58975d32c97a0a63b4b2a6303d361597b10
|
|
4
|
+
data.tar.gz: cf48da777de8a826c87d9de8e1039f82c228b1632cbb6c175533b2efb7bb1e29
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bffaaa0c4fc37610b0ef9ea7f5d2fd368f781bc271612c0d13d782c090ab301135084033ab6f8ab204840516e76d5b416b324aa5683047f056f08a972d8a6cab
|
|
7
|
+
data.tar.gz: 3594d41000bdb72a5dc7445ca9f8018fb401006369257e066c83581738e6a62fd3af4b1e4d3df0943fec664fc552b4d895426ad5cfb3fcea295b18424c63c871
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-retail_v2alpha
|
|
2
2
|
|
|
3
|
+
### v0.5.0 (2021-03-20)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20210312
|
|
6
|
+
* Regenerated using generator version 0.2.0
|
|
7
|
+
|
|
3
8
|
### v0.4.0 (2021-03-06)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20210226
|
|
@@ -1008,10 +1008,11 @@ module Google
|
|
|
1008
1008
|
# expression is enclosed in parentheses, and must be separated from the tag
|
|
1009
1009
|
# values by a space. `-"tagA"` is also supported and is equivalent to `NOT "tagA"
|
|
1010
1010
|
# `. Tag values must be double quoted UTF-8 encoded strings with a size limit of
|
|
1011
|
-
# 1,000 characters.
|
|
1012
|
-
#
|
|
1013
|
-
#
|
|
1014
|
-
# -"promotional") * filterOutOfStockItems
|
|
1011
|
+
# 1,000 characters. Note: "Recently viewed" models don't support tag filtering
|
|
1012
|
+
# at the moment. * filterOutOfStockItems. Restricts predictions to products that
|
|
1013
|
+
# do not have a stockState value of OUT_OF_STOCK. Examples: * tag=("Red" OR "
|
|
1014
|
+
# Blue") tag="New-Arrival" tag=(NOT "promotional") * filterOutOfStockItems tag=(-
|
|
1015
|
+
# "promotional") * filterOutOfStockItems If your filter blocks all prediction
|
|
1015
1016
|
# results, nothing will be returned. If you want generic (unfiltered) popular
|
|
1016
1017
|
# products to be returned instead, set `strictFiltering` to false in `
|
|
1017
1018
|
# PredictRequest.params`.
|
|
@@ -2283,323 +2284,6 @@ module Google
|
|
|
2283
2284
|
end
|
|
2284
2285
|
end
|
|
2285
2286
|
|
|
2286
|
-
# Configuration of destination for Export related errors.
|
|
2287
|
-
class GoogleCloudRetailV2mainExportErrorsConfig
|
|
2288
|
-
include Google::Apis::Core::Hashable
|
|
2289
|
-
|
|
2290
|
-
# Google Cloud Storage path for import errors. This must be an empty, existing
|
|
2291
|
-
# Cloud Storage bucket. Export errors will be written to a file in this bucket,
|
|
2292
|
-
# one per line, as a JSON-encoded `google.rpc.Status` message.
|
|
2293
|
-
# Corresponds to the JSON property `gcsPrefix`
|
|
2294
|
-
# @return [String]
|
|
2295
|
-
attr_accessor :gcs_prefix
|
|
2296
|
-
|
|
2297
|
-
def initialize(**args)
|
|
2298
|
-
update!(**args)
|
|
2299
|
-
end
|
|
2300
|
-
|
|
2301
|
-
# Update properties of this object
|
|
2302
|
-
def update!(**args)
|
|
2303
|
-
@gcs_prefix = args[:gcs_prefix] if args.key?(:gcs_prefix)
|
|
2304
|
-
end
|
|
2305
|
-
end
|
|
2306
|
-
|
|
2307
|
-
# Metadata related to the progress of the Export operation. This will be
|
|
2308
|
-
# returned by the google.longrunning.Operation.metadata field.
|
|
2309
|
-
class GoogleCloudRetailV2mainExportMetadata
|
|
2310
|
-
include Google::Apis::Core::Hashable
|
|
2311
|
-
|
|
2312
|
-
# Operation create time.
|
|
2313
|
-
# Corresponds to the JSON property `createTime`
|
|
2314
|
-
# @return [String]
|
|
2315
|
-
attr_accessor :create_time
|
|
2316
|
-
|
|
2317
|
-
# Operation last update time. If the operation is done, this is also the finish
|
|
2318
|
-
# time.
|
|
2319
|
-
# Corresponds to the JSON property `updateTime`
|
|
2320
|
-
# @return [String]
|
|
2321
|
-
attr_accessor :update_time
|
|
2322
|
-
|
|
2323
|
-
def initialize(**args)
|
|
2324
|
-
update!(**args)
|
|
2325
|
-
end
|
|
2326
|
-
|
|
2327
|
-
# Update properties of this object
|
|
2328
|
-
def update!(**args)
|
|
2329
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2330
|
-
@update_time = args[:update_time] if args.key?(:update_time)
|
|
2331
|
-
end
|
|
2332
|
-
end
|
|
2333
|
-
|
|
2334
|
-
# Response of the ExportProductsRequest. If the long running operation is done,
|
|
2335
|
-
# then this message is returned by the google.longrunning.Operations.response
|
|
2336
|
-
# field if the operation was successful.
|
|
2337
|
-
class GoogleCloudRetailV2mainExportProductsResponse
|
|
2338
|
-
include Google::Apis::Core::Hashable
|
|
2339
|
-
|
|
2340
|
-
# A sample of errors encountered while processing the request.
|
|
2341
|
-
# Corresponds to the JSON property `errorSamples`
|
|
2342
|
-
# @return [Array<Google::Apis::RetailV2alpha::GoogleRpcStatus>]
|
|
2343
|
-
attr_accessor :error_samples
|
|
2344
|
-
|
|
2345
|
-
# Configuration of destination for Export related errors.
|
|
2346
|
-
# Corresponds to the JSON property `errorsConfig`
|
|
2347
|
-
# @return [Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainExportErrorsConfig]
|
|
2348
|
-
attr_accessor :errors_config
|
|
2349
|
-
|
|
2350
|
-
def initialize(**args)
|
|
2351
|
-
update!(**args)
|
|
2352
|
-
end
|
|
2353
|
-
|
|
2354
|
-
# Update properties of this object
|
|
2355
|
-
def update!(**args)
|
|
2356
|
-
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
|
2357
|
-
@errors_config = args[:errors_config] if args.key?(:errors_config)
|
|
2358
|
-
end
|
|
2359
|
-
end
|
|
2360
|
-
|
|
2361
|
-
# Response of the ExportUserEventsRequest. If the long running operation was
|
|
2362
|
-
# successful, then this message is returned by the google.longrunning.Operations.
|
|
2363
|
-
# response field if the operation was successful.
|
|
2364
|
-
class GoogleCloudRetailV2mainExportUserEventsResponse
|
|
2365
|
-
include Google::Apis::Core::Hashable
|
|
2366
|
-
|
|
2367
|
-
# A sample of errors encountered while processing the request.
|
|
2368
|
-
# Corresponds to the JSON property `errorSamples`
|
|
2369
|
-
# @return [Array<Google::Apis::RetailV2alpha::GoogleRpcStatus>]
|
|
2370
|
-
attr_accessor :error_samples
|
|
2371
|
-
|
|
2372
|
-
# Configuration of destination for Export related errors.
|
|
2373
|
-
# Corresponds to the JSON property `errorsConfig`
|
|
2374
|
-
# @return [Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainExportErrorsConfig]
|
|
2375
|
-
attr_accessor :errors_config
|
|
2376
|
-
|
|
2377
|
-
def initialize(**args)
|
|
2378
|
-
update!(**args)
|
|
2379
|
-
end
|
|
2380
|
-
|
|
2381
|
-
# Update properties of this object
|
|
2382
|
-
def update!(**args)
|
|
2383
|
-
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
|
2384
|
-
@errors_config = args[:errors_config] if args.key?(:errors_config)
|
|
2385
|
-
end
|
|
2386
|
-
end
|
|
2387
|
-
|
|
2388
|
-
# Configuration of destination for Import related errors.
|
|
2389
|
-
class GoogleCloudRetailV2mainImportErrorsConfig
|
|
2390
|
-
include Google::Apis::Core::Hashable
|
|
2391
|
-
|
|
2392
|
-
# Google Cloud Storage path for import errors. This must be an empty, existing
|
|
2393
|
-
# Cloud Storage bucket. Import errors will be written to a file in this bucket,
|
|
2394
|
-
# one per line, as a JSON-encoded `google.rpc.Status` message.
|
|
2395
|
-
# Corresponds to the JSON property `gcsPrefix`
|
|
2396
|
-
# @return [String]
|
|
2397
|
-
attr_accessor :gcs_prefix
|
|
2398
|
-
|
|
2399
|
-
def initialize(**args)
|
|
2400
|
-
update!(**args)
|
|
2401
|
-
end
|
|
2402
|
-
|
|
2403
|
-
# Update properties of this object
|
|
2404
|
-
def update!(**args)
|
|
2405
|
-
@gcs_prefix = args[:gcs_prefix] if args.key?(:gcs_prefix)
|
|
2406
|
-
end
|
|
2407
|
-
end
|
|
2408
|
-
|
|
2409
|
-
# Metadata related to the progress of the Import operation. This will be
|
|
2410
|
-
# returned by the google.longrunning.Operation.metadata field.
|
|
2411
|
-
class GoogleCloudRetailV2mainImportMetadata
|
|
2412
|
-
include Google::Apis::Core::Hashable
|
|
2413
|
-
|
|
2414
|
-
# Operation create time.
|
|
2415
|
-
# Corresponds to the JSON property `createTime`
|
|
2416
|
-
# @return [String]
|
|
2417
|
-
attr_accessor :create_time
|
|
2418
|
-
|
|
2419
|
-
# Count of entries that encountered errors while processing.
|
|
2420
|
-
# Corresponds to the JSON property `failureCount`
|
|
2421
|
-
# @return [Fixnum]
|
|
2422
|
-
attr_accessor :failure_count
|
|
2423
|
-
|
|
2424
|
-
# Count of entries that were processed successfully.
|
|
2425
|
-
# Corresponds to the JSON property `successCount`
|
|
2426
|
-
# @return [Fixnum]
|
|
2427
|
-
attr_accessor :success_count
|
|
2428
|
-
|
|
2429
|
-
# Operation last update time. If the operation is done, this is also the finish
|
|
2430
|
-
# time.
|
|
2431
|
-
# Corresponds to the JSON property `updateTime`
|
|
2432
|
-
# @return [String]
|
|
2433
|
-
attr_accessor :update_time
|
|
2434
|
-
|
|
2435
|
-
def initialize(**args)
|
|
2436
|
-
update!(**args)
|
|
2437
|
-
end
|
|
2438
|
-
|
|
2439
|
-
# Update properties of this object
|
|
2440
|
-
def update!(**args)
|
|
2441
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2442
|
-
@failure_count = args[:failure_count] if args.key?(:failure_count)
|
|
2443
|
-
@success_count = args[:success_count] if args.key?(:success_count)
|
|
2444
|
-
@update_time = args[:update_time] if args.key?(:update_time)
|
|
2445
|
-
end
|
|
2446
|
-
end
|
|
2447
|
-
|
|
2448
|
-
# Response of the ImportProductsRequest. If the long running operation is done,
|
|
2449
|
-
# then this message is returned by the google.longrunning.Operations.response
|
|
2450
|
-
# field if the operation was successful.
|
|
2451
|
-
class GoogleCloudRetailV2mainImportProductsResponse
|
|
2452
|
-
include Google::Apis::Core::Hashable
|
|
2453
|
-
|
|
2454
|
-
# A sample of errors encountered while processing the request.
|
|
2455
|
-
# Corresponds to the JSON property `errorSamples`
|
|
2456
|
-
# @return [Array<Google::Apis::RetailV2alpha::GoogleRpcStatus>]
|
|
2457
|
-
attr_accessor :error_samples
|
|
2458
|
-
|
|
2459
|
-
# Configuration of destination for Import related errors.
|
|
2460
|
-
# Corresponds to the JSON property `errorsConfig`
|
|
2461
|
-
# @return [Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainImportErrorsConfig]
|
|
2462
|
-
attr_accessor :errors_config
|
|
2463
|
-
|
|
2464
|
-
def initialize(**args)
|
|
2465
|
-
update!(**args)
|
|
2466
|
-
end
|
|
2467
|
-
|
|
2468
|
-
# Update properties of this object
|
|
2469
|
-
def update!(**args)
|
|
2470
|
-
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
|
2471
|
-
@errors_config = args[:errors_config] if args.key?(:errors_config)
|
|
2472
|
-
end
|
|
2473
|
-
end
|
|
2474
|
-
|
|
2475
|
-
# Response of the ImportUserEventsRequest. If the long running operation was
|
|
2476
|
-
# successful, then this message is returned by the google.longrunning.Operations.
|
|
2477
|
-
# response field if the operation was successful.
|
|
2478
|
-
class GoogleCloudRetailV2mainImportUserEventsResponse
|
|
2479
|
-
include Google::Apis::Core::Hashable
|
|
2480
|
-
|
|
2481
|
-
# A sample of errors encountered while processing the request.
|
|
2482
|
-
# Corresponds to the JSON property `errorSamples`
|
|
2483
|
-
# @return [Array<Google::Apis::RetailV2alpha::GoogleRpcStatus>]
|
|
2484
|
-
attr_accessor :error_samples
|
|
2485
|
-
|
|
2486
|
-
# Configuration of destination for Import related errors.
|
|
2487
|
-
# Corresponds to the JSON property `errorsConfig`
|
|
2488
|
-
# @return [Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainImportErrorsConfig]
|
|
2489
|
-
attr_accessor :errors_config
|
|
2490
|
-
|
|
2491
|
-
# A summary of import result. The UserEventImportSummary summarizes the import
|
|
2492
|
-
# status for user events.
|
|
2493
|
-
# Corresponds to the JSON property `importSummary`
|
|
2494
|
-
# @return [Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainUserEventImportSummary]
|
|
2495
|
-
attr_accessor :import_summary
|
|
2496
|
-
|
|
2497
|
-
def initialize(**args)
|
|
2498
|
-
update!(**args)
|
|
2499
|
-
end
|
|
2500
|
-
|
|
2501
|
-
# Update properties of this object
|
|
2502
|
-
def update!(**args)
|
|
2503
|
-
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
|
2504
|
-
@errors_config = args[:errors_config] if args.key?(:errors_config)
|
|
2505
|
-
@import_summary = args[:import_summary] if args.key?(:import_summary)
|
|
2506
|
-
end
|
|
2507
|
-
end
|
|
2508
|
-
|
|
2509
|
-
# Metadata related to the progress of the Purge operation. This will be returned
|
|
2510
|
-
# by the google.longrunning.Operation.metadata field.
|
|
2511
|
-
class GoogleCloudRetailV2mainPurgeMetadata
|
|
2512
|
-
include Google::Apis::Core::Hashable
|
|
2513
|
-
|
|
2514
|
-
def initialize(**args)
|
|
2515
|
-
update!(**args)
|
|
2516
|
-
end
|
|
2517
|
-
|
|
2518
|
-
# Update properties of this object
|
|
2519
|
-
def update!(**args)
|
|
2520
|
-
end
|
|
2521
|
-
end
|
|
2522
|
-
|
|
2523
|
-
# Response of the PurgeUserEventsRequest. If the long running operation is
|
|
2524
|
-
# successfully done, then this message is returned by the google.longrunning.
|
|
2525
|
-
# Operations.response field.
|
|
2526
|
-
class GoogleCloudRetailV2mainPurgeUserEventsResponse
|
|
2527
|
-
include Google::Apis::Core::Hashable
|
|
2528
|
-
|
|
2529
|
-
# The total count of events purged as a result of the operation.
|
|
2530
|
-
# Corresponds to the JSON property `purgedEventsCount`
|
|
2531
|
-
# @return [Fixnum]
|
|
2532
|
-
attr_accessor :purged_events_count
|
|
2533
|
-
|
|
2534
|
-
def initialize(**args)
|
|
2535
|
-
update!(**args)
|
|
2536
|
-
end
|
|
2537
|
-
|
|
2538
|
-
# Update properties of this object
|
|
2539
|
-
def update!(**args)
|
|
2540
|
-
@purged_events_count = args[:purged_events_count] if args.key?(:purged_events_count)
|
|
2541
|
-
end
|
|
2542
|
-
end
|
|
2543
|
-
|
|
2544
|
-
# Metadata for RejoinUserEvents method.
|
|
2545
|
-
class GoogleCloudRetailV2mainRejoinUserEventsMetadata
|
|
2546
|
-
include Google::Apis::Core::Hashable
|
|
2547
|
-
|
|
2548
|
-
def initialize(**args)
|
|
2549
|
-
update!(**args)
|
|
2550
|
-
end
|
|
2551
|
-
|
|
2552
|
-
# Update properties of this object
|
|
2553
|
-
def update!(**args)
|
|
2554
|
-
end
|
|
2555
|
-
end
|
|
2556
|
-
|
|
2557
|
-
# Response message for RejoinUserEvents method.
|
|
2558
|
-
class GoogleCloudRetailV2mainRejoinUserEventsResponse
|
|
2559
|
-
include Google::Apis::Core::Hashable
|
|
2560
|
-
|
|
2561
|
-
# Number of user events that were joined with latest product catalog.
|
|
2562
|
-
# Corresponds to the JSON property `rejoinedUserEventsCount`
|
|
2563
|
-
# @return [Fixnum]
|
|
2564
|
-
attr_accessor :rejoined_user_events_count
|
|
2565
|
-
|
|
2566
|
-
def initialize(**args)
|
|
2567
|
-
update!(**args)
|
|
2568
|
-
end
|
|
2569
|
-
|
|
2570
|
-
# Update properties of this object
|
|
2571
|
-
def update!(**args)
|
|
2572
|
-
@rejoined_user_events_count = args[:rejoined_user_events_count] if args.key?(:rejoined_user_events_count)
|
|
2573
|
-
end
|
|
2574
|
-
end
|
|
2575
|
-
|
|
2576
|
-
# A summary of import result. The UserEventImportSummary summarizes the import
|
|
2577
|
-
# status for user events.
|
|
2578
|
-
class GoogleCloudRetailV2mainUserEventImportSummary
|
|
2579
|
-
include Google::Apis::Core::Hashable
|
|
2580
|
-
|
|
2581
|
-
# Count of user events imported with complete existing catalog information.
|
|
2582
|
-
# Corresponds to the JSON property `joinedEventsCount`
|
|
2583
|
-
# @return [Fixnum]
|
|
2584
|
-
attr_accessor :joined_events_count
|
|
2585
|
-
|
|
2586
|
-
# Count of user events imported, but with catalog information not found in the
|
|
2587
|
-
# imported catalog.
|
|
2588
|
-
# Corresponds to the JSON property `unjoinedEventsCount`
|
|
2589
|
-
# @return [Fixnum]
|
|
2590
|
-
attr_accessor :unjoined_events_count
|
|
2591
|
-
|
|
2592
|
-
def initialize(**args)
|
|
2593
|
-
update!(**args)
|
|
2594
|
-
end
|
|
2595
|
-
|
|
2596
|
-
# Update properties of this object
|
|
2597
|
-
def update!(**args)
|
|
2598
|
-
@joined_events_count = args[:joined_events_count] if args.key?(:joined_events_count)
|
|
2599
|
-
@unjoined_events_count = args[:unjoined_events_count] if args.key?(:unjoined_events_count)
|
|
2600
|
-
end
|
|
2601
|
-
end
|
|
2602
|
-
|
|
2603
2287
|
# The response message for Operations.ListOperations.
|
|
2604
2288
|
class GoogleLongrunningListOperationsResponse
|
|
2605
2289
|
include Google::Apis::Core::Hashable
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.5.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210312"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -418,84 +418,6 @@ module Google
|
|
|
418
418
|
include Google::Apis::Core::JsonObjectSupport
|
|
419
419
|
end
|
|
420
420
|
|
|
421
|
-
class GoogleCloudRetailV2mainExportErrorsConfig
|
|
422
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
423
|
-
|
|
424
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
425
|
-
end
|
|
426
|
-
|
|
427
|
-
class GoogleCloudRetailV2mainExportMetadata
|
|
428
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
429
|
-
|
|
430
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
431
|
-
end
|
|
432
|
-
|
|
433
|
-
class GoogleCloudRetailV2mainExportProductsResponse
|
|
434
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
435
|
-
|
|
436
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
437
|
-
end
|
|
438
|
-
|
|
439
|
-
class GoogleCloudRetailV2mainExportUserEventsResponse
|
|
440
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
441
|
-
|
|
442
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
443
|
-
end
|
|
444
|
-
|
|
445
|
-
class GoogleCloudRetailV2mainImportErrorsConfig
|
|
446
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
447
|
-
|
|
448
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
449
|
-
end
|
|
450
|
-
|
|
451
|
-
class GoogleCloudRetailV2mainImportMetadata
|
|
452
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
453
|
-
|
|
454
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
455
|
-
end
|
|
456
|
-
|
|
457
|
-
class GoogleCloudRetailV2mainImportProductsResponse
|
|
458
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
459
|
-
|
|
460
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
461
|
-
end
|
|
462
|
-
|
|
463
|
-
class GoogleCloudRetailV2mainImportUserEventsResponse
|
|
464
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
465
|
-
|
|
466
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
467
|
-
end
|
|
468
|
-
|
|
469
|
-
class GoogleCloudRetailV2mainPurgeMetadata
|
|
470
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
471
|
-
|
|
472
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
473
|
-
end
|
|
474
|
-
|
|
475
|
-
class GoogleCloudRetailV2mainPurgeUserEventsResponse
|
|
476
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
477
|
-
|
|
478
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
479
|
-
end
|
|
480
|
-
|
|
481
|
-
class GoogleCloudRetailV2mainRejoinUserEventsMetadata
|
|
482
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
483
|
-
|
|
484
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
485
|
-
end
|
|
486
|
-
|
|
487
|
-
class GoogleCloudRetailV2mainRejoinUserEventsResponse
|
|
488
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
489
|
-
|
|
490
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
491
|
-
end
|
|
492
|
-
|
|
493
|
-
class GoogleCloudRetailV2mainUserEventImportSummary
|
|
494
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
495
|
-
|
|
496
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
497
|
-
end
|
|
498
|
-
|
|
499
421
|
class GoogleLongrunningListOperationsResponse
|
|
500
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
501
423
|
|
|
@@ -1139,114 +1061,6 @@ module Google
|
|
|
1139
1061
|
end
|
|
1140
1062
|
end
|
|
1141
1063
|
|
|
1142
|
-
class GoogleCloudRetailV2mainExportErrorsConfig
|
|
1143
|
-
# @private
|
|
1144
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1145
|
-
property :gcs_prefix, as: 'gcsPrefix'
|
|
1146
|
-
end
|
|
1147
|
-
end
|
|
1148
|
-
|
|
1149
|
-
class GoogleCloudRetailV2mainExportMetadata
|
|
1150
|
-
# @private
|
|
1151
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1152
|
-
property :create_time, as: 'createTime'
|
|
1153
|
-
property :update_time, as: 'updateTime'
|
|
1154
|
-
end
|
|
1155
|
-
end
|
|
1156
|
-
|
|
1157
|
-
class GoogleCloudRetailV2mainExportProductsResponse
|
|
1158
|
-
# @private
|
|
1159
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1160
|
-
collection :error_samples, as: 'errorSamples', class: Google::Apis::RetailV2alpha::GoogleRpcStatus, decorator: Google::Apis::RetailV2alpha::GoogleRpcStatus::Representation
|
|
1161
|
-
|
|
1162
|
-
property :errors_config, as: 'errorsConfig', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainExportErrorsConfig, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainExportErrorsConfig::Representation
|
|
1163
|
-
|
|
1164
|
-
end
|
|
1165
|
-
end
|
|
1166
|
-
|
|
1167
|
-
class GoogleCloudRetailV2mainExportUserEventsResponse
|
|
1168
|
-
# @private
|
|
1169
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1170
|
-
collection :error_samples, as: 'errorSamples', class: Google::Apis::RetailV2alpha::GoogleRpcStatus, decorator: Google::Apis::RetailV2alpha::GoogleRpcStatus::Representation
|
|
1171
|
-
|
|
1172
|
-
property :errors_config, as: 'errorsConfig', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainExportErrorsConfig, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainExportErrorsConfig::Representation
|
|
1173
|
-
|
|
1174
|
-
end
|
|
1175
|
-
end
|
|
1176
|
-
|
|
1177
|
-
class GoogleCloudRetailV2mainImportErrorsConfig
|
|
1178
|
-
# @private
|
|
1179
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1180
|
-
property :gcs_prefix, as: 'gcsPrefix'
|
|
1181
|
-
end
|
|
1182
|
-
end
|
|
1183
|
-
|
|
1184
|
-
class GoogleCloudRetailV2mainImportMetadata
|
|
1185
|
-
# @private
|
|
1186
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1187
|
-
property :create_time, as: 'createTime'
|
|
1188
|
-
property :failure_count, :numeric_string => true, as: 'failureCount'
|
|
1189
|
-
property :success_count, :numeric_string => true, as: 'successCount'
|
|
1190
|
-
property :update_time, as: 'updateTime'
|
|
1191
|
-
end
|
|
1192
|
-
end
|
|
1193
|
-
|
|
1194
|
-
class GoogleCloudRetailV2mainImportProductsResponse
|
|
1195
|
-
# @private
|
|
1196
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1197
|
-
collection :error_samples, as: 'errorSamples', class: Google::Apis::RetailV2alpha::GoogleRpcStatus, decorator: Google::Apis::RetailV2alpha::GoogleRpcStatus::Representation
|
|
1198
|
-
|
|
1199
|
-
property :errors_config, as: 'errorsConfig', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainImportErrorsConfig, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainImportErrorsConfig::Representation
|
|
1200
|
-
|
|
1201
|
-
end
|
|
1202
|
-
end
|
|
1203
|
-
|
|
1204
|
-
class GoogleCloudRetailV2mainImportUserEventsResponse
|
|
1205
|
-
# @private
|
|
1206
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1207
|
-
collection :error_samples, as: 'errorSamples', class: Google::Apis::RetailV2alpha::GoogleRpcStatus, decorator: Google::Apis::RetailV2alpha::GoogleRpcStatus::Representation
|
|
1208
|
-
|
|
1209
|
-
property :errors_config, as: 'errorsConfig', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainImportErrorsConfig, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainImportErrorsConfig::Representation
|
|
1210
|
-
|
|
1211
|
-
property :import_summary, as: 'importSummary', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainUserEventImportSummary, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2mainUserEventImportSummary::Representation
|
|
1212
|
-
|
|
1213
|
-
end
|
|
1214
|
-
end
|
|
1215
|
-
|
|
1216
|
-
class GoogleCloudRetailV2mainPurgeMetadata
|
|
1217
|
-
# @private
|
|
1218
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1219
|
-
end
|
|
1220
|
-
end
|
|
1221
|
-
|
|
1222
|
-
class GoogleCloudRetailV2mainPurgeUserEventsResponse
|
|
1223
|
-
# @private
|
|
1224
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1225
|
-
property :purged_events_count, :numeric_string => true, as: 'purgedEventsCount'
|
|
1226
|
-
end
|
|
1227
|
-
end
|
|
1228
|
-
|
|
1229
|
-
class GoogleCloudRetailV2mainRejoinUserEventsMetadata
|
|
1230
|
-
# @private
|
|
1231
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1232
|
-
end
|
|
1233
|
-
end
|
|
1234
|
-
|
|
1235
|
-
class GoogleCloudRetailV2mainRejoinUserEventsResponse
|
|
1236
|
-
# @private
|
|
1237
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1238
|
-
property :rejoined_user_events_count, :numeric_string => true, as: 'rejoinedUserEventsCount'
|
|
1239
|
-
end
|
|
1240
|
-
end
|
|
1241
|
-
|
|
1242
|
-
class GoogleCloudRetailV2mainUserEventImportSummary
|
|
1243
|
-
# @private
|
|
1244
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1245
|
-
property :joined_events_count, :numeric_string => true, as: 'joinedEventsCount'
|
|
1246
|
-
property :unjoined_events_count, :numeric_string => true, as: 'unjoinedEventsCount'
|
|
1247
|
-
end
|
|
1248
|
-
end
|
|
1249
|
-
|
|
1250
1064
|
class GoogleLongrunningListOperationsResponse
|
|
1251
1065
|
# @private
|
|
1252
1066
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -443,25 +443,12 @@ module Google
|
|
|
443
443
|
# Makes a recommendation prediction.
|
|
444
444
|
# @param [String] placement
|
|
445
445
|
# Required. Full resource name of the format: `name=projects/*/locations/global/
|
|
446
|
-
# catalogs/default_catalog/placements/*` The
|
|
447
|
-
# placement.
|
|
448
|
-
#
|
|
449
|
-
#
|
|
450
|
-
#
|
|
451
|
-
#
|
|
452
|
-
# shopping cart page. * `home_page`: Predicts the next product that a user will
|
|
453
|
-
# most likely engage with or purchase based on the shopping or viewing history
|
|
454
|
-
# of the specified `userId` or `visitorId`. For example - Recommendations for
|
|
455
|
-
# you. * `product_detail`: Predicts the next product that a user will most
|
|
456
|
-
# likely engage with or purchase. The prediction is based on the shopping or
|
|
457
|
-
# viewing history of the specified `userId` or `visitorId` and its relevance to
|
|
458
|
-
# a specified `CatalogItem`. Typically used on product detail pages. For example
|
|
459
|
-
# - More products like this. * `recently_viewed_default`: Returns up to 75
|
|
460
|
-
# products recently viewed by the specified `userId` or `visitorId`, most recent
|
|
461
|
-
# ones first. Returns nothing if neither of them has viewed any products yet.
|
|
462
|
-
# For example - Recently viewed. The full list of available placements can be
|
|
463
|
-
# seen at https://console.cloud.google.com/recommendation/catalogs/
|
|
464
|
-
# default_catalog/placements
|
|
446
|
+
# catalogs/default_catalog/placements/*` The ID of the Recommendations AI
|
|
447
|
+
# placement. Before you can request predictions from your model, you must create
|
|
448
|
+
# at least one placement for it. For more information, see [Managing placements](
|
|
449
|
+
# https://cloud.google.com/retail/recommendations-ai/docs/manage-placements).
|
|
450
|
+
# The full list of available placements can be seen at https://console.cloud.
|
|
451
|
+
# google.com/recommendation/catalogs/default_catalog/placements
|
|
465
452
|
# @param [Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaPredictRequest] google_cloud_retail_v2alpha_predict_request_object
|
|
466
453
|
# @param [String] fields
|
|
467
454
|
# Selector specifying which fields to include in a partial response.
|
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.
|
|
4
|
+
version: 0.5.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: 2021-03-
|
|
11
|
+
date: 2021-03-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -52,7 +52,7 @@ licenses:
|
|
|
52
52
|
metadata:
|
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-retail_v2alpha/CHANGELOG.md
|
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2alpha/v0.
|
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2alpha/v0.5.0
|
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-retail_v2alpha
|
|
57
57
|
post_install_message:
|
|
58
58
|
rdoc_options: []
|