google-apis-retail_v2alpha 0.57.0 → 0.58.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: 33d839e5bf0b4020e6914b9314bc240c52994835661db4790a9d0f7f4f8a8e1f
|
|
4
|
+
data.tar.gz: 1506e9ca23e249d347c47955b8c3756e21d7fc3b9140bb7352b3fabf6c6c3148
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfa7b58da40c0a35df8ebbb2cc90d4f44189e78ce1682595aebc6d26b1809565995e541693a4a3befcac75d1d854a6a74cea1a3ae7771fd3da2ee1d9a4169452
|
|
7
|
+
data.tar.gz: c5f0982716b217f68240ddd2d56b2ceff9b446c7e2edd8e203585827d3b619ce6f270c4f9ba6d823c9674ccad7777ff11fa970a774affc1a3979d638af2dfd19
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-retail_v2alpha
|
|
2
2
|
|
|
3
|
+
### v0.58.0 (2022-09-23)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20220917
|
|
6
|
+
* Regenerated using generator version 0.10.0
|
|
7
|
+
|
|
3
8
|
### v0.57.0 (2022-09-17)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20220909
|
|
@@ -2524,6 +2524,32 @@ module Google
|
|
|
2524
2524
|
end
|
|
2525
2525
|
end
|
|
2526
2526
|
|
|
2527
|
+
# Merchant Center Feed filter criterrion.
|
|
2528
|
+
class GoogleCloudRetailV2alphaMerchantCenterFeedFilter
|
|
2529
|
+
include Google::Apis::Core::Hashable
|
|
2530
|
+
|
|
2531
|
+
# Merchant Center primary feed id.
|
|
2532
|
+
# Corresponds to the JSON property `primaryFeedId`
|
|
2533
|
+
# @return [Fixnum]
|
|
2534
|
+
attr_accessor :primary_feed_id
|
|
2535
|
+
|
|
2536
|
+
# Merchant Center primary feed name. The name is used for the display purposes
|
|
2537
|
+
# only.
|
|
2538
|
+
# Corresponds to the JSON property `primaryFeedName`
|
|
2539
|
+
# @return [String]
|
|
2540
|
+
attr_accessor :primary_feed_name
|
|
2541
|
+
|
|
2542
|
+
def initialize(**args)
|
|
2543
|
+
update!(**args)
|
|
2544
|
+
end
|
|
2545
|
+
|
|
2546
|
+
# Update properties of this object
|
|
2547
|
+
def update!(**args)
|
|
2548
|
+
@primary_feed_id = args[:primary_feed_id] if args.key?(:primary_feed_id)
|
|
2549
|
+
@primary_feed_name = args[:primary_feed_name] if args.key?(:primary_feed_name)
|
|
2550
|
+
end
|
|
2551
|
+
end
|
|
2552
|
+
|
|
2527
2553
|
# Represents a link between a Merchant Center account and a branch. Once a link
|
|
2528
2554
|
# is established, products from the linked merchant center account will be
|
|
2529
2555
|
# streamed to the linked branch.
|
|
@@ -2548,6 +2574,13 @@ module Google
|
|
|
2548
2574
|
# @return [Array<String>]
|
|
2549
2575
|
attr_accessor :destinations
|
|
2550
2576
|
|
|
2577
|
+
# Criteria for the Merchant Center feeds to be ingested via the link. All offers
|
|
2578
|
+
# will be ingested if the list is empty. Otherwise the offers will be ingested
|
|
2579
|
+
# from selected feeds.
|
|
2580
|
+
# Corresponds to the JSON property `feeds`
|
|
2581
|
+
# @return [Array<Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaMerchantCenterFeedFilter>]
|
|
2582
|
+
attr_accessor :feeds
|
|
2583
|
+
|
|
2551
2584
|
# Language of the title/description and other string attributes. Use language
|
|
2552
2585
|
# tags defined by [BCP 47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt). ISO
|
|
2553
2586
|
# 639-1. This specifies the language of offers in Merchant Center that will be
|
|
@@ -2580,6 +2613,7 @@ module Google
|
|
|
2580
2613
|
def update!(**args)
|
|
2581
2614
|
@branch_id = args[:branch_id] if args.key?(:branch_id)
|
|
2582
2615
|
@destinations = args[:destinations] if args.key?(:destinations)
|
|
2616
|
+
@feeds = args[:feeds] if args.key?(:feeds)
|
|
2583
2617
|
@language_code = args[:language_code] if args.key?(:language_code)
|
|
2584
2618
|
@merchant_center_account_id = args[:merchant_center_account_id] if args.key?(:merchant_center_account_id)
|
|
2585
2619
|
@region_code = args[:region_code] if args.key?(:region_code)
|
|
@@ -2824,7 +2858,7 @@ module Google
|
|
|
2824
2858
|
class GoogleCloudRetailV2alphaModelPageOptimizationConfigPanel
|
|
2825
2859
|
include Google::Apis::Core::Hashable
|
|
2826
2860
|
|
|
2827
|
-
# Required. The candidates to consider on the panel.
|
|
2861
|
+
# Required. The candidates to consider on the panel.
|
|
2828
2862
|
# Corresponds to the JSON property `candidates`
|
|
2829
2863
|
# @return [Array<Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaModelPageOptimizationConfigCandidate>]
|
|
2830
2864
|
attr_accessor :candidates
|
|
@@ -2921,15 +2955,15 @@ module Google
|
|
|
2921
2955
|
# do not have a stockState value of OUT_OF_STOCK. Examples: * tag=("Red" OR "
|
|
2922
2956
|
# Blue") tag="New-Arrival" tag=(NOT "promotional") * filterOutOfStockItems tag=(-
|
|
2923
2957
|
# "promotional") * filterOutOfStockItems If your filter blocks all prediction
|
|
2924
|
-
# results, the API will return
|
|
2925
|
-
#
|
|
2926
|
-
# in `PredictRequest.params
|
|
2927
|
-
#
|
|
2928
|
-
#
|
|
2929
|
-
#
|
|
2930
|
-
#
|
|
2931
|
-
#
|
|
2932
|
-
#
|
|
2958
|
+
# results, the API will return *no* results. If instead you want empty result
|
|
2959
|
+
# sets to return generic (unfiltered) popular products, set `strictFiltering` to
|
|
2960
|
+
# False in `PredictRequest.params`. Note that the API will never return items
|
|
2961
|
+
# with storageStatus of "EXPIRED" or "DELETED" regardless of filter choices. If `
|
|
2962
|
+
# filterSyntaxV2` is set to true under the `params` field, then attribute-based
|
|
2963
|
+
# expressions are expected instead of the above described tag-based syntax.
|
|
2964
|
+
# Examples: * (colors: ANY("Red", "Blue")) AND NOT (categories: ANY("Phones")) *
|
|
2965
|
+
# (availability: ANY("IN_STOCK")) AND (colors: ANY("Red") OR categories: ANY("
|
|
2966
|
+
# Phones"))
|
|
2933
2967
|
# Corresponds to the JSON property `filter`
|
|
2934
2968
|
# @return [String]
|
|
2935
2969
|
attr_accessor :filter
|
|
@@ -6243,6 +6277,27 @@ module Google
|
|
|
6243
6277
|
end
|
|
6244
6278
|
end
|
|
6245
6279
|
|
|
6280
|
+
# Metadata associated with a create operation.
|
|
6281
|
+
class GoogleCloudRetailV2betaCreateModelMetadata
|
|
6282
|
+
include Google::Apis::Core::Hashable
|
|
6283
|
+
|
|
6284
|
+
# The resource name of the model that this create applies to. Format: `projects/`
|
|
6285
|
+
# project_number`/locations/`location_id`/catalogs/`catalog_id`/models/`model_id`
|
|
6286
|
+
# `
|
|
6287
|
+
# Corresponds to the JSON property `model`
|
|
6288
|
+
# @return [String]
|
|
6289
|
+
attr_accessor :model
|
|
6290
|
+
|
|
6291
|
+
def initialize(**args)
|
|
6292
|
+
update!(**args)
|
|
6293
|
+
end
|
|
6294
|
+
|
|
6295
|
+
# Update properties of this object
|
|
6296
|
+
def update!(**args)
|
|
6297
|
+
@model = args[:model] if args.key?(:model)
|
|
6298
|
+
end
|
|
6299
|
+
end
|
|
6300
|
+
|
|
6246
6301
|
# Configuration of destination for Export related errors.
|
|
6247
6302
|
class GoogleCloudRetailV2betaExportErrorsConfig
|
|
6248
6303
|
include Google::Apis::Core::Hashable
|
|
@@ -6514,6 +6569,166 @@ module Google
|
|
|
6514
6569
|
end
|
|
6515
6570
|
end
|
|
6516
6571
|
|
|
6572
|
+
# Metadata that describes the training and serving parameters of a Model. A
|
|
6573
|
+
# Model can be associated with a ServingConfig and then queried through the
|
|
6574
|
+
# Predict API.
|
|
6575
|
+
class GoogleCloudRetailV2betaModel
|
|
6576
|
+
include Google::Apis::Core::Hashable
|
|
6577
|
+
|
|
6578
|
+
# Output only. Timestamp the Recommendation Model was created at.
|
|
6579
|
+
# Corresponds to the JSON property `createTime`
|
|
6580
|
+
# @return [String]
|
|
6581
|
+
attr_accessor :create_time
|
|
6582
|
+
|
|
6583
|
+
# Output only. The state of data requirements for this model: `DATA_OK` and `
|
|
6584
|
+
# DATA_ERROR`. Recommendation model cannot be trained if the data is in `
|
|
6585
|
+
# DATA_ERROR` state. Recommendation model can have `DATA_ERROR` state even if
|
|
6586
|
+
# serving state is `ACTIVE`: models were trained successfully before, but cannot
|
|
6587
|
+
# be refreshed because model no longer has sufficient data for training.
|
|
6588
|
+
# Corresponds to the JSON property `dataState`
|
|
6589
|
+
# @return [String]
|
|
6590
|
+
attr_accessor :data_state
|
|
6591
|
+
|
|
6592
|
+
# Required. The display name of the model. Should be human readable, used to
|
|
6593
|
+
# display Recommendation Models in the Retail Cloud Console Dashboard. UTF-8
|
|
6594
|
+
# encoded string with limit of 1024 characters.
|
|
6595
|
+
# Corresponds to the JSON property `displayName`
|
|
6596
|
+
# @return [String]
|
|
6597
|
+
attr_accessor :display_name
|
|
6598
|
+
|
|
6599
|
+
# Optional. If `RECOMMENDATIONS_FILTERING_ENABLED`, recommendation filtering by
|
|
6600
|
+
# attributes is enabled for the model.
|
|
6601
|
+
# Corresponds to the JSON property `filteringOption`
|
|
6602
|
+
# @return [String]
|
|
6603
|
+
attr_accessor :filtering_option
|
|
6604
|
+
|
|
6605
|
+
# Output only. The timestamp when the latest successful tune finished.
|
|
6606
|
+
# Corresponds to the JSON property `lastTuneTime`
|
|
6607
|
+
# @return [String]
|
|
6608
|
+
attr_accessor :last_tune_time
|
|
6609
|
+
|
|
6610
|
+
# Required. The fully qualified resource name of the model. Format: `projects/`
|
|
6611
|
+
# project_number`/locations/`location_id`/catalogs/`catalog_id`/models/`model_id`
|
|
6612
|
+
# ` catalog_id has char limit of 50. recommendation_model_id has char limit of
|
|
6613
|
+
# 40.
|
|
6614
|
+
# Corresponds to the JSON property `name`
|
|
6615
|
+
# @return [String]
|
|
6616
|
+
attr_accessor :name
|
|
6617
|
+
|
|
6618
|
+
# Optional. The optimization objective e.g. `cvr`. Currently supported values: `
|
|
6619
|
+
# ctr`, `cvr`, `revenue-per-order`. If not specified, we choose default based on
|
|
6620
|
+
# model type. Default depends on type of recommendation: `recommended-for-you` =>
|
|
6621
|
+
# `ctr` `others-you-may-like` => `ctr` `frequently-bought-together` => `
|
|
6622
|
+
# revenue_per_order` This field together with optimization_objective describe
|
|
6623
|
+
# model metadata to use to control model training and serving. See https://cloud.
|
|
6624
|
+
# google.com/retail/docs/models for more details on what the model metadata
|
|
6625
|
+
# control and which combination of parameters are valid. For invalid
|
|
6626
|
+
# combinations of parameters (e.g. type = `frequently-bought-together` and
|
|
6627
|
+
# optimization_objective = `ctr`), you receive an error 400 if you try to create/
|
|
6628
|
+
# update a recommendation with this set of knobs.
|
|
6629
|
+
# Corresponds to the JSON property `optimizationObjective`
|
|
6630
|
+
# @return [String]
|
|
6631
|
+
attr_accessor :optimization_objective
|
|
6632
|
+
|
|
6633
|
+
# Optional. The state of periodic tuning. The period we use is 3 months - to do
|
|
6634
|
+
# a one-off tune earlier use the `TuneModel` method. Default value is `
|
|
6635
|
+
# PERIODIC_TUNING_ENABLED`.
|
|
6636
|
+
# Corresponds to the JSON property `periodicTuningState`
|
|
6637
|
+
# @return [String]
|
|
6638
|
+
attr_accessor :periodic_tuning_state
|
|
6639
|
+
|
|
6640
|
+
# Output only. The list of valid serving configs associated with the
|
|
6641
|
+
# PageOptimizationConfig.
|
|
6642
|
+
# Corresponds to the JSON property `servingConfigLists`
|
|
6643
|
+
# @return [Array<Google::Apis::RetailV2alpha::GoogleCloudRetailV2betaModelServingConfigList>]
|
|
6644
|
+
attr_accessor :serving_config_lists
|
|
6645
|
+
|
|
6646
|
+
# Output only. The serving state of the model: `ACTIVE`, `NOT_ACTIVE`.
|
|
6647
|
+
# Corresponds to the JSON property `servingState`
|
|
6648
|
+
# @return [String]
|
|
6649
|
+
attr_accessor :serving_state
|
|
6650
|
+
|
|
6651
|
+
# Optional. The training state that the model is in (e.g. `TRAINING` or `PAUSED`)
|
|
6652
|
+
# . Since part of the cost of running the service is frequency of training -
|
|
6653
|
+
# this can be used to determine when to train model in order to control cost. If
|
|
6654
|
+
# not specified: the default value for `CreateModel` method is `TRAINING`. The
|
|
6655
|
+
# default value for `UpdateModel` method is to keep the state the same as before.
|
|
6656
|
+
# Corresponds to the JSON property `trainingState`
|
|
6657
|
+
# @return [String]
|
|
6658
|
+
attr_accessor :training_state
|
|
6659
|
+
|
|
6660
|
+
# Output only. The tune operation associated with the model. Can be used to
|
|
6661
|
+
# determine if there is an ongoing tune for this recommendation. Empty field
|
|
6662
|
+
# implies no tune is goig on.
|
|
6663
|
+
# Corresponds to the JSON property `tuningOperation`
|
|
6664
|
+
# @return [String]
|
|
6665
|
+
attr_accessor :tuning_operation
|
|
6666
|
+
|
|
6667
|
+
# Required. The type of model e.g. `home-page`. Currently supported values: `
|
|
6668
|
+
# recommended-for-you`, `others-you-may-like`, `frequently-bought-together`, `
|
|
6669
|
+
# page-optimization`, `similar-items`, `buy-it-again`, and `recently-viewed`(
|
|
6670
|
+
# readonly value). This field together with optimization_objective describe
|
|
6671
|
+
# model metadata to use to control model training and serving. See https://cloud.
|
|
6672
|
+
# google.com/retail/docs/models for more details on what the model metadata
|
|
6673
|
+
# control and which combination of parameters are valid. For invalid
|
|
6674
|
+
# combinations of parameters (e.g. type = `frequently-bought-together` and
|
|
6675
|
+
# optimization_objective = `ctr`), you receive an error 400 if you try to create/
|
|
6676
|
+
# update a recommendation with this set of knobs.
|
|
6677
|
+
# Corresponds to the JSON property `type`
|
|
6678
|
+
# @return [String]
|
|
6679
|
+
attr_accessor :type
|
|
6680
|
+
|
|
6681
|
+
# Output only. Timestamp the Recommendation Model was last updated. E.g. if a
|
|
6682
|
+
# Recommendation Model was paused - this would be the time the pause was
|
|
6683
|
+
# initiated.
|
|
6684
|
+
# Corresponds to the JSON property `updateTime`
|
|
6685
|
+
# @return [String]
|
|
6686
|
+
attr_accessor :update_time
|
|
6687
|
+
|
|
6688
|
+
def initialize(**args)
|
|
6689
|
+
update!(**args)
|
|
6690
|
+
end
|
|
6691
|
+
|
|
6692
|
+
# Update properties of this object
|
|
6693
|
+
def update!(**args)
|
|
6694
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
6695
|
+
@data_state = args[:data_state] if args.key?(:data_state)
|
|
6696
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
6697
|
+
@filtering_option = args[:filtering_option] if args.key?(:filtering_option)
|
|
6698
|
+
@last_tune_time = args[:last_tune_time] if args.key?(:last_tune_time)
|
|
6699
|
+
@name = args[:name] if args.key?(:name)
|
|
6700
|
+
@optimization_objective = args[:optimization_objective] if args.key?(:optimization_objective)
|
|
6701
|
+
@periodic_tuning_state = args[:periodic_tuning_state] if args.key?(:periodic_tuning_state)
|
|
6702
|
+
@serving_config_lists = args[:serving_config_lists] if args.key?(:serving_config_lists)
|
|
6703
|
+
@serving_state = args[:serving_state] if args.key?(:serving_state)
|
|
6704
|
+
@training_state = args[:training_state] if args.key?(:training_state)
|
|
6705
|
+
@tuning_operation = args[:tuning_operation] if args.key?(:tuning_operation)
|
|
6706
|
+
@type = args[:type] if args.key?(:type)
|
|
6707
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
6708
|
+
end
|
|
6709
|
+
end
|
|
6710
|
+
|
|
6711
|
+
# Represents an ordered combination of valid serving configs, which can be used
|
|
6712
|
+
# for `PAGE_OPTIMIZATION` recommendations.
|
|
6713
|
+
class GoogleCloudRetailV2betaModelServingConfigList
|
|
6714
|
+
include Google::Apis::Core::Hashable
|
|
6715
|
+
|
|
6716
|
+
# Optional. A set of valid serving configs that may be used for `
|
|
6717
|
+
# PAGE_OPTIMIZATION`.
|
|
6718
|
+
# Corresponds to the JSON property `servingConfigIds`
|
|
6719
|
+
# @return [Array<String>]
|
|
6720
|
+
attr_accessor :serving_config_ids
|
|
6721
|
+
|
|
6722
|
+
def initialize(**args)
|
|
6723
|
+
update!(**args)
|
|
6724
|
+
end
|
|
6725
|
+
|
|
6726
|
+
# Update properties of this object
|
|
6727
|
+
def update!(**args)
|
|
6728
|
+
@serving_config_ids = args[:serving_config_ids] if args.key?(:serving_config_ids)
|
|
6729
|
+
end
|
|
6730
|
+
end
|
|
6731
|
+
|
|
6517
6732
|
# Output result.
|
|
6518
6733
|
class GoogleCloudRetailV2betaOutputResult
|
|
6519
6734
|
include Google::Apis::Core::Hashable
|
|
@@ -6689,6 +6904,40 @@ module Google
|
|
|
6689
6904
|
end
|
|
6690
6905
|
end
|
|
6691
6906
|
|
|
6907
|
+
# Metadata associated with a tune operation.
|
|
6908
|
+
class GoogleCloudRetailV2betaTuneModelMetadata
|
|
6909
|
+
include Google::Apis::Core::Hashable
|
|
6910
|
+
|
|
6911
|
+
# The resource name of the model that this tune applies to. Format: `projects/`
|
|
6912
|
+
# project_number`/locations/`location_id`/catalogs/`catalog_id`/models/`model_id`
|
|
6913
|
+
# `
|
|
6914
|
+
# Corresponds to the JSON property `model`
|
|
6915
|
+
# @return [String]
|
|
6916
|
+
attr_accessor :model
|
|
6917
|
+
|
|
6918
|
+
def initialize(**args)
|
|
6919
|
+
update!(**args)
|
|
6920
|
+
end
|
|
6921
|
+
|
|
6922
|
+
# Update properties of this object
|
|
6923
|
+
def update!(**args)
|
|
6924
|
+
@model = args[:model] if args.key?(:model)
|
|
6925
|
+
end
|
|
6926
|
+
end
|
|
6927
|
+
|
|
6928
|
+
# Response associated with a tune operation.
|
|
6929
|
+
class GoogleCloudRetailV2betaTuneModelResponse
|
|
6930
|
+
include Google::Apis::Core::Hashable
|
|
6931
|
+
|
|
6932
|
+
def initialize(**args)
|
|
6933
|
+
update!(**args)
|
|
6934
|
+
end
|
|
6935
|
+
|
|
6936
|
+
# Update properties of this object
|
|
6937
|
+
def update!(**args)
|
|
6938
|
+
end
|
|
6939
|
+
end
|
|
6940
|
+
|
|
6692
6941
|
# A summary of import result. The UserEventImportSummary summarizes the import
|
|
6693
6942
|
# status for user events.
|
|
6694
6943
|
class GoogleCloudRetailV2betaUserEventImportSummary
|
|
@@ -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.58.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.10.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220917"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -496,6 +496,12 @@ module Google
|
|
|
496
496
|
include Google::Apis::Core::JsonObjectSupport
|
|
497
497
|
end
|
|
498
498
|
|
|
499
|
+
class GoogleCloudRetailV2alphaMerchantCenterFeedFilter
|
|
500
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
501
|
+
|
|
502
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
503
|
+
end
|
|
504
|
+
|
|
499
505
|
class GoogleCloudRetailV2alphaMerchantCenterLink
|
|
500
506
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
501
507
|
|
|
@@ -994,6 +1000,12 @@ module Google
|
|
|
994
1000
|
include Google::Apis::Core::JsonObjectSupport
|
|
995
1001
|
end
|
|
996
1002
|
|
|
1003
|
+
class GoogleCloudRetailV2betaCreateModelMetadata
|
|
1004
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1005
|
+
|
|
1006
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1007
|
+
end
|
|
1008
|
+
|
|
997
1009
|
class GoogleCloudRetailV2betaExportErrorsConfig
|
|
998
1010
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
999
1011
|
|
|
@@ -1048,6 +1060,18 @@ module Google
|
|
|
1048
1060
|
include Google::Apis::Core::JsonObjectSupport
|
|
1049
1061
|
end
|
|
1050
1062
|
|
|
1063
|
+
class GoogleCloudRetailV2betaModel
|
|
1064
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1065
|
+
|
|
1066
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1067
|
+
end
|
|
1068
|
+
|
|
1069
|
+
class GoogleCloudRetailV2betaModelServingConfigList
|
|
1070
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1071
|
+
|
|
1072
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1073
|
+
end
|
|
1074
|
+
|
|
1051
1075
|
class GoogleCloudRetailV2betaOutputResult
|
|
1052
1076
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1053
1077
|
|
|
@@ -1114,6 +1138,18 @@ module Google
|
|
|
1114
1138
|
include Google::Apis::Core::JsonObjectSupport
|
|
1115
1139
|
end
|
|
1116
1140
|
|
|
1141
|
+
class GoogleCloudRetailV2betaTuneModelMetadata
|
|
1142
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1143
|
+
|
|
1144
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1145
|
+
end
|
|
1146
|
+
|
|
1147
|
+
class GoogleCloudRetailV2betaTuneModelResponse
|
|
1148
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1149
|
+
|
|
1150
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1151
|
+
end
|
|
1152
|
+
|
|
1117
1153
|
class GoogleCloudRetailV2betaUserEventImportSummary
|
|
1118
1154
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1119
1155
|
|
|
@@ -1858,11 +1894,21 @@ module Google
|
|
|
1858
1894
|
end
|
|
1859
1895
|
end
|
|
1860
1896
|
|
|
1897
|
+
class GoogleCloudRetailV2alphaMerchantCenterFeedFilter
|
|
1898
|
+
# @private
|
|
1899
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1900
|
+
property :primary_feed_id, :numeric_string => true, as: 'primaryFeedId'
|
|
1901
|
+
property :primary_feed_name, as: 'primaryFeedName'
|
|
1902
|
+
end
|
|
1903
|
+
end
|
|
1904
|
+
|
|
1861
1905
|
class GoogleCloudRetailV2alphaMerchantCenterLink
|
|
1862
1906
|
# @private
|
|
1863
1907
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1864
1908
|
property :branch_id, as: 'branchId'
|
|
1865
1909
|
collection :destinations, as: 'destinations'
|
|
1910
|
+
collection :feeds, as: 'feeds', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaMerchantCenterFeedFilter, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaMerchantCenterFeedFilter::Representation
|
|
1911
|
+
|
|
1866
1912
|
property :language_code, as: 'languageCode'
|
|
1867
1913
|
property :merchant_center_account_id, :numeric_string => true, as: 'merchantCenterAccountId'
|
|
1868
1914
|
property :region_code, as: 'regionCode'
|
|
@@ -2703,6 +2749,13 @@ module Google
|
|
|
2703
2749
|
end
|
|
2704
2750
|
end
|
|
2705
2751
|
|
|
2752
|
+
class GoogleCloudRetailV2betaCreateModelMetadata
|
|
2753
|
+
# @private
|
|
2754
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2755
|
+
property :model, as: 'model'
|
|
2756
|
+
end
|
|
2757
|
+
end
|
|
2758
|
+
|
|
2706
2759
|
class GoogleCloudRetailV2betaExportErrorsConfig
|
|
2707
2760
|
# @private
|
|
2708
2761
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2791,6 +2844,34 @@ module Google
|
|
|
2791
2844
|
end
|
|
2792
2845
|
end
|
|
2793
2846
|
|
|
2847
|
+
class GoogleCloudRetailV2betaModel
|
|
2848
|
+
# @private
|
|
2849
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2850
|
+
property :create_time, as: 'createTime'
|
|
2851
|
+
property :data_state, as: 'dataState'
|
|
2852
|
+
property :display_name, as: 'displayName'
|
|
2853
|
+
property :filtering_option, as: 'filteringOption'
|
|
2854
|
+
property :last_tune_time, as: 'lastTuneTime'
|
|
2855
|
+
property :name, as: 'name'
|
|
2856
|
+
property :optimization_objective, as: 'optimizationObjective'
|
|
2857
|
+
property :periodic_tuning_state, as: 'periodicTuningState'
|
|
2858
|
+
collection :serving_config_lists, as: 'servingConfigLists', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2betaModelServingConfigList, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2betaModelServingConfigList::Representation
|
|
2859
|
+
|
|
2860
|
+
property :serving_state, as: 'servingState'
|
|
2861
|
+
property :training_state, as: 'trainingState'
|
|
2862
|
+
property :tuning_operation, as: 'tuningOperation'
|
|
2863
|
+
property :type, as: 'type'
|
|
2864
|
+
property :update_time, as: 'updateTime'
|
|
2865
|
+
end
|
|
2866
|
+
end
|
|
2867
|
+
|
|
2868
|
+
class GoogleCloudRetailV2betaModelServingConfigList
|
|
2869
|
+
# @private
|
|
2870
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2871
|
+
collection :serving_config_ids, as: 'servingConfigIds'
|
|
2872
|
+
end
|
|
2873
|
+
end
|
|
2874
|
+
|
|
2794
2875
|
class GoogleCloudRetailV2betaOutputResult
|
|
2795
2876
|
# @private
|
|
2796
2877
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2861,6 +2942,19 @@ module Google
|
|
|
2861
2942
|
end
|
|
2862
2943
|
end
|
|
2863
2944
|
|
|
2945
|
+
class GoogleCloudRetailV2betaTuneModelMetadata
|
|
2946
|
+
# @private
|
|
2947
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2948
|
+
property :model, as: 'model'
|
|
2949
|
+
end
|
|
2950
|
+
end
|
|
2951
|
+
|
|
2952
|
+
class GoogleCloudRetailV2betaTuneModelResponse
|
|
2953
|
+
# @private
|
|
2954
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2955
|
+
end
|
|
2956
|
+
end
|
|
2957
|
+
|
|
2864
2958
|
class GoogleCloudRetailV2betaUserEventImportSummary
|
|
2865
2959
|
# @private
|
|
2866
2960
|
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.
|
|
4
|
+
version: 0.58.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: 2022-09-
|
|
11
|
+
date: 2022-09-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.9.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 2.a
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
29
|
+
version: 0.9.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 2.a
|
|
@@ -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.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2alpha/v0.58.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: []
|