Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions packages/google-shopping-merchant-quota/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

.. include:: multiprocessing.rst

This package includes clients for multiple versions of Shopping Merchant Quota.
By default, you will get version ``merchant_quota_v1beta``.


API Reference
-------------
Expand All @@ -11,6 +14,14 @@ API Reference
merchant_quota_v1beta/services_
merchant_quota_v1beta/types_

API Reference
-------------
.. toctree::
:maxdepth: 2

merchant_quota_v1/services_
merchant_quota_v1/types_


Changelog
---------
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
QuotaService
------------------------------

.. automodule:: google.shopping.merchant_quota_v1.services.quota_service
:members:
:inherited-members:

.. automodule:: google.shopping.merchant_quota_v1.services.quota_service.pagers
:members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Services for Google Shopping Merchant Quota v1 API
==================================================
.. toctree::
:maxdepth: 2

quota_service
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Types for Google Shopping Merchant Quota v1 API
===============================================

.. automodule:: google.shopping.merchant_quota_v1.types
:members:
:show-inheritance:
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.1.8" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# -*- coding: utf-8 -*-
# Copyright 2025 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
#
# http://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.
#
from google.shopping.merchant_quota_v1 import gapic_version as package_version

__version__ = package_version.__version__


from .services.quota_service import QuotaServiceAsyncClient, QuotaServiceClient
from .types.quota import (
ListQuotaGroupsRequest,
ListQuotaGroupsResponse,
MethodDetails,
QuotaGroup,
)

__all__ = (
"QuotaServiceAsyncClient",
"ListQuotaGroupsRequest",
"ListQuotaGroupsResponse",
"MethodDetails",
"QuotaGroup",
"QuotaServiceClient",
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods",
"language": "python",
"libraryPackage": "google.shopping.merchant_quota_v1",
"protoPackage": "google.shopping.merchant.quota.v1",
"schema": "1.0",
"services": {
"QuotaService": {
"clients": {
"grpc": {
"libraryClient": "QuotaServiceClient",
"rpcs": {
"ListQuotaGroups": {
"methods": [
"list_quota_groups"
]
}
}
},
"grpc-async": {
"libraryClient": "QuotaServiceAsyncClient",
"rpcs": {
"ListQuotaGroups": {
"methods": [
"list_quota_groups"
]
}
}
},
"rest": {
"libraryClient": "QuotaServiceClient",
"rpcs": {
"ListQuotaGroups": {
"methods": [
"list_quota_groups"
]
}
}
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
# Copyright 2025 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
#
# http://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.
#
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Marker file for PEP 561.
# The google-shopping-merchant-quota package uses inline types.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# -*- coding: utf-8 -*-
# Copyright 2025 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
#
# http://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.
#
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# Copyright 2025 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
#
# http://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.
#
from .async_client import QuotaServiceAsyncClient
from .client import QuotaServiceClient

__all__ = (
"QuotaServiceClient",
"QuotaServiceAsyncClient",
)
Loading
Loading