-
Notifications
You must be signed in to change notification settings - Fork 550
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add FileUploads service (#27360)
docs: A comment for enum value `PRODUCTS` in enum `Channel` is changed
- Loading branch information
1 parent
be9fa35
commit 16234fa
Showing
25 changed files
with
2,053 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |gem| | |
|
||
gem.authors = ["Google LLC"] | ||
gem.email = "[email protected]" | ||
gem.description = "Programmatically manage your Merchant Center accounts. Note that google-shopping-merchant-data_sources-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-data_sources instead. See the readme for more details." | ||
gem.summary = "Programmatically manage your Merchant Center accounts." | ||
gem.description = "Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment. Note that google-shopping-merchant-data_sources-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-data_sources instead. See the readme for more details." | ||
gem.summary = "Programmatically manage your Merchant Center Accounts." | ||
gem.homepage = "https://github.com/googleapis/google-cloud-ruby" | ||
gem.license = "Apache-2.0" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
...a_sources-v1beta/lib/google/shopping/merchant/data_sources/v1beta/file_uploads_service.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# frozen_string_literal: true | ||
|
||
# Copyright 2024 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Auto-generated by gapic-generator-ruby. DO NOT EDIT! | ||
|
||
require "gapic/common" | ||
require "gapic/config" | ||
require "gapic/config/method" | ||
|
||
require "google/shopping/merchant/data_sources/v1beta/version" | ||
|
||
require "google/shopping/merchant/data_sources/v1beta/file_uploads_service/credentials" | ||
require "google/shopping/merchant/data_sources/v1beta/file_uploads_service/paths" | ||
require "google/shopping/merchant/data_sources/v1beta/file_uploads_service/client" | ||
require "google/shopping/merchant/data_sources/v1beta/file_uploads_service/rest" | ||
|
||
module Google | ||
module Shopping | ||
module Merchant | ||
module DataSources | ||
module V1beta | ||
## | ||
# Service to manage data source file uploads. | ||
# | ||
# @example Load this service and instantiate a gRPC client | ||
# | ||
# require "google/shopping/merchant/data_sources/v1beta/file_uploads_service" | ||
# client = ::Google::Shopping::Merchant::DataSources::V1beta::FileUploadsService::Client.new | ||
# | ||
# @example Load this service and instantiate a REST client | ||
# | ||
# require "google/shopping/merchant/data_sources/v1beta/file_uploads_service/rest" | ||
# client = ::Google::Shopping::Merchant::DataSources::V1beta::FileUploadsService::Rest::Client.new | ||
# | ||
module FileUploadsService | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
|
||
helper_path = ::File.join __dir__, "file_uploads_service", "helpers.rb" | ||
require "google/shopping/merchant/data_sources/v1beta/file_uploads_service/helpers" if ::File.file? helper_path |
Oops, something went wrong.