google-apis-retail_v2alpha 0.34.0 → 0.35.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: 82ba0873fffb5177af7796136383999137f3b300d93113a3a7d1079250df1ffb
4
- data.tar.gz: 6e886f2d384917a8aeb825cfe1e0dd117888eaf1ed5c7ff8bd10a4c7dea8f2d0
3
+ metadata.gz: c0fd269bd8d363bde55fb078faa86e74e1a323df56bcdc81846cf82107e23cde
4
+ data.tar.gz: 42fcacb10da9e023b5393ee211f0a3c01814ece82fc7f95f230dc57f5d30d8a6
5
5
  SHA512:
6
- metadata.gz: e5f285306766885d90316c1674eab733c87737d18dc830c879e54eacd7fbb6c4ba19acaac0ee99fa295eb1ce2ed561eaddf39e3d1e3cd425aa15d114c7e43261
7
- data.tar.gz: e3492014caaee1ebc2cecdd16a23a1b7b279452b13747103861f60620f504d47e82686c9b73ab29b7d0f72ace525825fc7ec99f17b5844b4257169141d6945da
6
+ metadata.gz: 75cb4ab0fd396f681da64abfe00f028f0a80ad9384430069bb97314b6ae685b095d3a23382675aef2dad849107d7243a622c2fcd92b4fe5bc5610fa0769d576f
7
+ data.tar.gz: 05a66051d85bd1ab7ee804d0cbee4a2e5955c2b2cd6cdcd6cc4ec0b15f020280fd8197a6fa6ef3711cc232e256268d0670918aa6c5e70abb16a57447eb4177f6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-retail_v2alpha
2
2
 
3
+ ### v0.35.0 (2022-03-31)
4
+
5
+ * Regenerated from discovery document revision 20220324
6
+
3
7
  ### v0.34.0 (2022-03-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20220319
@@ -308,6 +308,35 @@ module Google
308
308
  end
309
309
  end
310
310
 
311
+ # Metadata related to the progress of the AddLocalInventories operation.
312
+ # Currently empty because there is no meaningful metadata populated from the
313
+ # AddLocalInventories method.
314
+ class GoogleCloudRetailV2AddLocalInventoriesMetadata
315
+ include Google::Apis::Core::Hashable
316
+
317
+ def initialize(**args)
318
+ update!(**args)
319
+ end
320
+
321
+ # Update properties of this object
322
+ def update!(**args)
323
+ end
324
+ end
325
+
326
+ # Response of the AddLocalInventories API. Currently empty because there is no
327
+ # meaningful response populated from the AddLocalInventories method.
328
+ class GoogleCloudRetailV2AddLocalInventoriesResponse
329
+ include Google::Apis::Core::Hashable
330
+
331
+ def initialize(**args)
332
+ update!(**args)
333
+ end
334
+
335
+ # Update properties of this object
336
+ def update!(**args)
337
+ end
338
+ end
339
+
311
340
  # Response of the ImportCompletionDataRequest. If the long running operation is
312
341
  # done, this message is returned by the google.longrunning.Operations.response
313
342
  # field if the operation is successful.
@@ -561,6 +590,35 @@ module Google
561
590
  end
562
591
  end
563
592
 
593
+ # Metadata related to the progress of the RemoveLocalInventories operation.
594
+ # Currently empty because there is no meaningful metadata populated from the
595
+ # RemoveLocalInventories method.
596
+ class GoogleCloudRetailV2RemoveLocalInventoriesMetadata
597
+ include Google::Apis::Core::Hashable
598
+
599
+ def initialize(**args)
600
+ update!(**args)
601
+ end
602
+
603
+ # Update properties of this object
604
+ def update!(**args)
605
+ end
606
+ end
607
+
608
+ # Response of the RemoveLocalInventories API. Currently empty because there is
609
+ # no meaningful response populated from the RemoveLocalInventories method.
610
+ class GoogleCloudRetailV2RemoveLocalInventoriesResponse
611
+ include Google::Apis::Core::Hashable
612
+
613
+ def initialize(**args)
614
+ update!(**args)
615
+ end
616
+
617
+ # Update properties of this object
618
+ def update!(**args)
619
+ end
620
+ end
621
+
564
622
  # Metadata related to the progress of the SetInventory operation. Currently
565
623
  # empty because there is no meaningful metadata populated from the SetInventory
566
624
  # method.
@@ -2248,6 +2306,18 @@ module Google
2248
2306
  # @return [Hash<String,Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaCustomAttribute>]
2249
2307
  attr_accessor :attributes
2250
2308
 
2309
+ # Input only. Supported fulfillment types. Valid fulfillment type values include
2310
+ # commonly used types (such as pickup in store and same day delivery), and
2311
+ # custom types. Customers have to map custom types to their display names before
2312
+ # rendering UI. Supported values: * "pickup-in-store" * "ship-to-store" * "same-
2313
+ # day-delivery" * "next-day-delivery" * "custom-type-1" * "custom-type-2" * "
2314
+ # custom-type-3" * "custom-type-4" * "custom-type-5" If this field is set to an
2315
+ # invalid value other than these, an INVALID_ARGUMENT error is returned. All the
2316
+ # elements must be distinct. Otherwise, an INVALID_ARGUMENT error is returned.
2317
+ # Corresponds to the JSON property `fulfillmentTypes`
2318
+ # @return [Array<String>]
2319
+ attr_accessor :fulfillment_types
2320
+
2251
2321
  # The place ID for the current set of inventory information.
2252
2322
  # Corresponds to the JSON property `placeId`
2253
2323
  # @return [String]
@@ -2265,6 +2335,7 @@ module Google
2265
2335
  # Update properties of this object
2266
2336
  def update!(**args)
2267
2337
  @attributes = args[:attributes] if args.key?(:attributes)
2338
+ @fulfillment_types = args[:fulfillment_types] if args.key?(:fulfillment_types)
2268
2339
  @place_id = args[:place_id] if args.key?(:place_id)
2269
2340
  @price_info = args[:price_info] if args.key?(:price_info)
2270
2341
  end
@@ -2297,7 +2368,8 @@ module Google
2297
2368
  # Language of the title/description and other string attributes. Use language
2298
2369
  # tags defined by [BCP 47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt). ISO
2299
2370
  # 639-1. This specifies the language of offers in Merchant Center that will be
2300
- # accepted. If empty no language filtering will be performed.
2371
+ # accepted. If empty no language filtering will be performed. Example value: `en`
2372
+ # .
2301
2373
  # Corresponds to the JSON property `languageCode`
2302
2374
  # @return [String]
2303
2375
  attr_accessor :language_code
@@ -5339,13 +5411,12 @@ module Google
5339
5411
  attr_accessor :direct_user_request
5340
5412
  alias_method :direct_user_request?, :direct_user_request
5341
5413
 
5342
- # The end user's IP address. Required for getting SearchResponse.
5343
- # sponsored_results. This field is used to extract location information for
5344
- # personalization. This field must be either an IPv4 address (e.g. "104.133.9.80"
5345
- # ) or an IPv6 address (e.g. "2001:0db8:85a3:0000:0000:8a2e:0370:7334").
5346
- # Otherwise, an INVALID_ARGUMENT error is returned. This should not be set when
5347
- # using the JavaScript tag in UserEventService.CollectUserEvent or if
5348
- # direct_user_request is set.
5414
+ # The end user's IP address. This field is used to extract location information
5415
+ # for personalization. This field must be either an IPv4 address (e.g. "104.133.
5416
+ # 9.80") or an IPv6 address (e.g. "2001:0db8:85a3:0000:0000:8a2e:0370:7334").
5417
+ # Otherwise, an INVALID_ARGUMENT error is returned. This should not be set when:
5418
+ # * setting SearchRequest.user_info. * using the JavaScript tag in
5419
+ # UserEventService.CollectUserEvent or if direct_user_request is set.
5349
5420
  # Corresponds to the JSON property `ipAddress`
5350
5421
  # @return [String]
5351
5422
  attr_accessor :ip_address
@@ -5361,8 +5432,9 @@ module Google
5361
5432
  attr_accessor :user_agent
5362
5433
 
5363
5434
  # Highly recommended for logged-in users. Unique identifier for logged-in user,
5364
- # such as a user name. The field must be a UTF-8 encoded string with a length
5365
- # limit of 128 characters. Otherwise, an INVALID_ARGUMENT error is returned.
5435
+ # such as a user name. Always use a hashed value for this ID. The field must be
5436
+ # a UTF-8 encoded string with a length limit of 128 characters. Otherwise, an
5437
+ # INVALID_ARGUMENT error is returned.
5366
5438
  # Corresponds to the JSON property `userId`
5367
5439
  # @return [String]
5368
5440
  attr_accessor :user_id
@@ -5409,6 +5481,35 @@ module Google
5409
5481
  end
5410
5482
  end
5411
5483
 
5484
+ # Metadata related to the progress of the AddLocalInventories operation.
5485
+ # Currently empty because there is no meaningful metadata populated from the
5486
+ # AddLocalInventories method.
5487
+ class GoogleCloudRetailV2betaAddLocalInventoriesMetadata
5488
+ include Google::Apis::Core::Hashable
5489
+
5490
+ def initialize(**args)
5491
+ update!(**args)
5492
+ end
5493
+
5494
+ # Update properties of this object
5495
+ def update!(**args)
5496
+ end
5497
+ end
5498
+
5499
+ # Response of the AddLocalInventories API. Currently empty because there is no
5500
+ # meaningful response populated from the AddLocalInventories method.
5501
+ class GoogleCloudRetailV2betaAddLocalInventoriesResponse
5502
+ include Google::Apis::Core::Hashable
5503
+
5504
+ def initialize(**args)
5505
+ update!(**args)
5506
+ end
5507
+
5508
+ # Update properties of this object
5509
+ def update!(**args)
5510
+ end
5511
+ end
5512
+
5412
5513
  # Configuration of destination for Export related errors.
5413
5514
  class GoogleCloudRetailV2betaExportErrorsConfig
5414
5515
  include Google::Apis::Core::Hashable
@@ -5764,6 +5865,35 @@ module Google
5764
5865
  end
5765
5866
  end
5766
5867
 
5868
+ # Metadata related to the progress of the RemoveLocalInventories operation.
5869
+ # Currently empty because there is no meaningful metadata populated from the
5870
+ # RemoveLocalInventories method.
5871
+ class GoogleCloudRetailV2betaRemoveLocalInventoriesMetadata
5872
+ include Google::Apis::Core::Hashable
5873
+
5874
+ def initialize(**args)
5875
+ update!(**args)
5876
+ end
5877
+
5878
+ # Update properties of this object
5879
+ def update!(**args)
5880
+ end
5881
+ end
5882
+
5883
+ # Response of the RemoveLocalInventories API. Currently empty because there is
5884
+ # no meaningful response populated from the RemoveLocalInventories method.
5885
+ class GoogleCloudRetailV2betaRemoveLocalInventoriesResponse
5886
+ include Google::Apis::Core::Hashable
5887
+
5888
+ def initialize(**args)
5889
+ update!(**args)
5890
+ end
5891
+
5892
+ # Update properties of this object
5893
+ def update!(**args)
5894
+ end
5895
+ end
5896
+
5767
5897
  # Metadata related to the progress of the SetInventory operation. Currently
5768
5898
  # empty because there is no meaningful metadata populated from the SetInventory
5769
5899
  # method.
@@ -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.34.0"
19
+ GEM_VERSION = "0.35.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220319"
25
+ REVISION = "20220324"
26
26
  end
27
27
  end
28
28
  end
@@ -76,6 +76,18 @@ module Google
76
76
  include Google::Apis::Core::JsonObjectSupport
77
77
  end
78
78
 
79
+ class GoogleCloudRetailV2AddLocalInventoriesMetadata
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
85
+ class GoogleCloudRetailV2AddLocalInventoriesResponse
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
79
91
  class GoogleCloudRetailV2ImportCompletionDataResponse
80
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
93
 
@@ -142,6 +154,18 @@ module Google
142
154
  include Google::Apis::Core::JsonObjectSupport
143
155
  end
144
156
 
157
+ class GoogleCloudRetailV2RemoveLocalInventoriesMetadata
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
163
+ class GoogleCloudRetailV2RemoveLocalInventoriesResponse
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
145
169
  class GoogleCloudRetailV2SetInventoryMetadata
146
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
147
171
 
@@ -844,6 +868,18 @@ module Google
844
868
  include Google::Apis::Core::JsonObjectSupport
845
869
  end
846
870
 
871
+ class GoogleCloudRetailV2betaAddLocalInventoriesMetadata
872
+ class Representation < Google::Apis::Core::JsonRepresentation; end
873
+
874
+ include Google::Apis::Core::JsonObjectSupport
875
+ end
876
+
877
+ class GoogleCloudRetailV2betaAddLocalInventoriesResponse
878
+ class Representation < Google::Apis::Core::JsonRepresentation; end
879
+
880
+ include Google::Apis::Core::JsonObjectSupport
881
+ end
882
+
847
883
  class GoogleCloudRetailV2betaExportErrorsConfig
848
884
  class Representation < Google::Apis::Core::JsonRepresentation; end
849
885
 
@@ -934,6 +970,18 @@ module Google
934
970
  include Google::Apis::Core::JsonObjectSupport
935
971
  end
936
972
 
973
+ class GoogleCloudRetailV2betaRemoveLocalInventoriesMetadata
974
+ class Representation < Google::Apis::Core::JsonRepresentation; end
975
+
976
+ include Google::Apis::Core::JsonObjectSupport
977
+ end
978
+
979
+ class GoogleCloudRetailV2betaRemoveLocalInventoriesResponse
980
+ class Representation < Google::Apis::Core::JsonRepresentation; end
981
+
982
+ include Google::Apis::Core::JsonObjectSupport
983
+ end
984
+
937
985
  class GoogleCloudRetailV2betaSetInventoryMetadata
938
986
  class Representation < Google::Apis::Core::JsonRepresentation; end
939
987
 
@@ -1063,6 +1111,18 @@ module Google
1063
1111
  end
1064
1112
  end
1065
1113
 
1114
+ class GoogleCloudRetailV2AddLocalInventoriesMetadata
1115
+ # @private
1116
+ class Representation < Google::Apis::Core::JsonRepresentation
1117
+ end
1118
+ end
1119
+
1120
+ class GoogleCloudRetailV2AddLocalInventoriesResponse
1121
+ # @private
1122
+ class Representation < Google::Apis::Core::JsonRepresentation
1123
+ end
1124
+ end
1125
+
1066
1126
  class GoogleCloudRetailV2ImportCompletionDataResponse
1067
1127
  # @private
1068
1128
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1150,6 +1210,18 @@ module Google
1150
1210
  end
1151
1211
  end
1152
1212
 
1213
+ class GoogleCloudRetailV2RemoveLocalInventoriesMetadata
1214
+ # @private
1215
+ class Representation < Google::Apis::Core::JsonRepresentation
1216
+ end
1217
+ end
1218
+
1219
+ class GoogleCloudRetailV2RemoveLocalInventoriesResponse
1220
+ # @private
1221
+ class Representation < Google::Apis::Core::JsonRepresentation
1222
+ end
1223
+ end
1224
+
1153
1225
  class GoogleCloudRetailV2SetInventoryMetadata
1154
1226
  # @private
1155
1227
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1611,6 +1683,7 @@ module Google
1611
1683
  class Representation < Google::Apis::Core::JsonRepresentation
1612
1684
  hash :attributes, as: 'attributes', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaCustomAttribute, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaCustomAttribute::Representation
1613
1685
 
1686
+ collection :fulfillment_types, as: 'fulfillmentTypes'
1614
1687
  property :place_id, as: 'placeId'
1615
1688
  property :price_info, as: 'priceInfo', class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaPriceInfo, decorator: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaPriceInfo::Representation
1616
1689
 
@@ -2317,6 +2390,18 @@ module Google
2317
2390
  end
2318
2391
  end
2319
2392
 
2393
+ class GoogleCloudRetailV2betaAddLocalInventoriesMetadata
2394
+ # @private
2395
+ class Representation < Google::Apis::Core::JsonRepresentation
2396
+ end
2397
+ end
2398
+
2399
+ class GoogleCloudRetailV2betaAddLocalInventoriesResponse
2400
+ # @private
2401
+ class Representation < Google::Apis::Core::JsonRepresentation
2402
+ end
2403
+ end
2404
+
2320
2405
  class GoogleCloudRetailV2betaExportErrorsConfig
2321
2406
  # @private
2322
2407
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2439,6 +2524,18 @@ module Google
2439
2524
  end
2440
2525
  end
2441
2526
 
2527
+ class GoogleCloudRetailV2betaRemoveLocalInventoriesMetadata
2528
+ # @private
2529
+ class Representation < Google::Apis::Core::JsonRepresentation
2530
+ end
2531
+ end
2532
+
2533
+ class GoogleCloudRetailV2betaRemoveLocalInventoriesResponse
2534
+ # @private
2535
+ class Representation < Google::Apis::Core::JsonRepresentation
2536
+ end
2537
+ end
2538
+
2442
2539
  class GoogleCloudRetailV2betaSetInventoryMetadata
2443
2540
  # @private
2444
2541
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -52,9 +52,8 @@ module Google
52
52
  end
53
53
 
54
54
  # Completes the specified prefix with keyword suggestions. This feature is only
55
- # available for users who have Retail Search enabled. Please submit a form [here]
56
- # (https://cloud.google.com/contact) to contact cloud sales if you are
57
- # interested in using Retail Search.
55
+ # available for users who have Retail Search enabled. Please enable Retail
56
+ # Search on Cloud Console before using this feature.
58
57
  # @param [String] catalog
59
58
  # Required. Catalog for which the completion is performed. Full resource name of
60
59
  # catalog, such as `projects/*/locations/global/catalogs/default_catalog`.
@@ -579,9 +578,8 @@ module Google
579
578
  # enqueued and processed downstream. As a consequence, when a response is
580
579
  # returned, the added place IDs are not immediately manifested in the Product
581
580
  # queried by GetProduct or ListProducts. This feature is only available for
582
- # users who have Retail Search enabled. Please submit a form [here](https://
583
- # cloud.google.com/contact) to contact cloud sales if you are interested in
584
- # using Retail Search.
581
+ # users who have Retail Search enabled. Please enable Retail Search on Cloud
582
+ # Console before using this feature.
585
583
  # @param [String] product
586
584
  # Required. Full resource name of Product, such as `projects/*/locations/global/
587
585
  # catalogs/default_catalog/branches/default_branch/products/some_product_id`. If
@@ -626,8 +624,7 @@ module Google
626
624
  # ListProducts. Local inventory information can only be modified using this
627
625
  # method. CreateProduct and UpdateProduct has no effect on local inventories.
628
626
  # This feature is only available for users who have Retail Search enabled.
629
- # Please submit a form [here](https://cloud.google.com/contact) to contact Cloud
630
- # sales if you are interested in using Retail Search.
627
+ # Please enable Retail Search on Cloud Console before using this feature.
631
628
  # @param [String] product
632
629
  # Required. Full resource name of Product, such as `projects/*/locations/global/
633
630
  # catalogs/default_catalog/branches/default_branch/products/some_product_id`. If
@@ -978,9 +975,8 @@ module Google
978
975
  # enqueued and processed downstream. As a consequence, when a response is
979
976
  # returned, the removed place IDs are not immediately manifested in the Product
980
977
  # queried by GetProduct or ListProducts. This feature is only available for
981
- # users who have Retail Search enabled. Please submit a form [here](https://
982
- # cloud.google.com/contact) to contact cloud sales if you are interested in
983
- # using Retail Search.
978
+ # users who have Retail Search enabled. Please enable Retail Search on Cloud
979
+ # Console before using this feature.
984
980
  # @param [String] product
985
981
  # Required. Full resource name of Product, such as `projects/*/locations/global/
986
982
  # catalogs/default_catalog/branches/default_branch/products/some_product_id`. If
@@ -1023,8 +1019,8 @@ module Google
1023
1019
  # queried by GetProduct or ListProducts. Local inventory information can only be
1024
1020
  # removed using this method. CreateProduct and UpdateProduct has no effect on
1025
1021
  # local inventories. This feature is only available for users who have Retail
1026
- # Search enabled. Please submit a form [here](https://cloud.google.com/contact)
1027
- # to contact Cloud sales if you are interested in using Retail Search.
1022
+ # Search enabled. Please enable Retail Search on Cloud Console before using this
1023
+ # feature.
1028
1024
  # @param [String] product
1029
1025
  # Required. Full resource name of Product, such as `projects/*/locations/global/
1030
1026
  # catalogs/default_catalog/branches/default_branch/products/some_product_id`. If
@@ -1076,9 +1072,8 @@ module Google
1076
1072
  # SetInventoryRequest.set_mask, then any existing inventory information will be
1077
1073
  # preserved. Pre-existing inventory information can only be updated with
1078
1074
  # SetInventory, AddFulfillmentPlaces, and RemoveFulfillmentPlaces. This feature
1079
- # is only available for users who have Retail Search enabled. Please submit a
1080
- # form [here](https://cloud.google.com/contact) to contact cloud sales if you
1081
- # are interested in using Retail Search.
1075
+ # is only available for users who have Retail Search enabled. Please enable
1076
+ # Retail Search on Cloud Console before using this feature.
1082
1077
  # @param [String] name
1083
1078
  # Immutable. Full resource name of the product, such as `projects/*/locations/
1084
1079
  # global/catalogs/default_catalog/branches/default_branch/products/product_id`.
@@ -1116,9 +1111,8 @@ module Google
1116
1111
  # asynchronous. Partial updating is not supported. The operation is successfully
1117
1112
  # finished only after the imported suggestions are indexed successfully and
1118
1113
  # ready for serving. The process takes hours. This feature is only available for
1119
- # users who have Retail Search enabled. Please submit a form [here](https://
1120
- # cloud.google.com/contact) to contact cloud sales if you are interested in
1121
- # using Retail Search.
1114
+ # users who have Retail Search enabled. Please enable Retail Search on Cloud
1115
+ # Console before using this feature.
1122
1116
  # @param [String] parent
1123
1117
  # Required. The catalog which the suggestions dataset belongs to. Format: `
1124
1118
  # projects/1234/locations/global/catalogs/default_catalog`.
@@ -1461,8 +1455,8 @@ module Google
1461
1455
  end
1462
1456
 
1463
1457
  # Performs a search. This feature is only available for users who have Retail
1464
- # Search enabled. Please submit a form [here](https://cloud.google.com/contact)
1465
- # to contact cloud sales if you are interested in using Retail Search.
1458
+ # Search enabled. Please enable Retail Search on Cloud Console before using this
1459
+ # feature.
1466
1460
  # @param [String] placement
1467
1461
  # Required. The resource name of the search engine placement, such as `projects/*
1468
1462
  # /locations/global/catalogs/default_catalog/placements/default_search` or `
@@ -1801,8 +1795,8 @@ module Google
1801
1795
  end
1802
1796
 
1803
1797
  # Performs a search. This feature is only available for users who have Retail
1804
- # Search enabled. Please submit a form [here](https://cloud.google.com/contact)
1805
- # to contact cloud sales if you are interested in using Retail Search.
1798
+ # Search enabled. Please enable Retail Search on Cloud Console before using this
1799
+ # feature.
1806
1800
  # @param [String] placement
1807
1801
  # Required. The resource name of the search engine placement, such as `projects/*
1808
1802
  # /locations/global/catalogs/default_catalog/placements/default_search` or `
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.34.0
4
+ version: 0.35.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-03-28 00:00:00.000000000 Z
11
+ date: 2022-04-04 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.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2alpha/v0.35.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: []