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

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-conversions/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 Merchant API.
By default, you will get version ``merchant_conversions_v1beta``.


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

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

merchant_conversions_v1/services_
merchant_conversions_v1/types_


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

.. automodule:: google.shopping.merchant_conversions_v1.services.conversion_sources_service
:members:
:inherited-members:

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

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

.. automodule:: google.shopping.merchant_conversions_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.9" # {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,53 @@
# -*- 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_conversions_v1 import gapic_version as package_version

__version__ = package_version.__version__


from .services.conversion_sources_service import (
ConversionSourcesServiceAsyncClient,
ConversionSourcesServiceClient,
)
from .types.conversionsources import (
AttributionSettings,
ConversionSource,
CreateConversionSourceRequest,
DeleteConversionSourceRequest,
GetConversionSourceRequest,
GoogleAnalyticsLink,
ListConversionSourcesRequest,
ListConversionSourcesResponse,
MerchantCenterDestination,
UndeleteConversionSourceRequest,
UpdateConversionSourceRequest,
)

__all__ = (
"ConversionSourcesServiceAsyncClient",
"AttributionSettings",
"ConversionSource",
"ConversionSourcesServiceClient",
"CreateConversionSourceRequest",
"DeleteConversionSourceRequest",
"GetConversionSourceRequest",
"GoogleAnalyticsLink",
"ListConversionSourcesRequest",
"ListConversionSourcesResponse",
"MerchantCenterDestination",
"UndeleteConversionSourceRequest",
"UpdateConversionSourceRequest",
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
{
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods",
"language": "python",
"libraryPackage": "google.shopping.merchant_conversions_v1",
"protoPackage": "google.shopping.merchant.conversions.v1",
"schema": "1.0",
"services": {
"ConversionSourcesService": {
"clients": {
"grpc": {
"libraryClient": "ConversionSourcesServiceClient",
"rpcs": {
"CreateConversionSource": {
"methods": [
"create_conversion_source"
]
},
"DeleteConversionSource": {
"methods": [
"delete_conversion_source"
]
},
"GetConversionSource": {
"methods": [
"get_conversion_source"
]
},
"ListConversionSources": {
"methods": [
"list_conversion_sources"
]
},
"UndeleteConversionSource": {
"methods": [
"undelete_conversion_source"
]
},
"UpdateConversionSource": {
"methods": [
"update_conversion_source"
]
}
}
},
"grpc-async": {
"libraryClient": "ConversionSourcesServiceAsyncClient",
"rpcs": {
"CreateConversionSource": {
"methods": [
"create_conversion_source"
]
},
"DeleteConversionSource": {
"methods": [
"delete_conversion_source"
]
},
"GetConversionSource": {
"methods": [
"get_conversion_source"
]
},
"ListConversionSources": {
"methods": [
"list_conversion_sources"
]
},
"UndeleteConversionSource": {
"methods": [
"undelete_conversion_source"
]
},
"UpdateConversionSource": {
"methods": [
"update_conversion_source"
]
}
}
},
"rest": {
"libraryClient": "ConversionSourcesServiceClient",
"rpcs": {
"CreateConversionSource": {
"methods": [
"create_conversion_source"
]
},
"DeleteConversionSource": {
"methods": [
"delete_conversion_source"
]
},
"GetConversionSource": {
"methods": [
"get_conversion_source"
]
},
"ListConversionSources": {
"methods": [
"list_conversion_sources"
]
},
"UndeleteConversionSource": {
"methods": [
"undelete_conversion_source"
]
},
"UpdateConversionSource": {
"methods": [
"update_conversion_source"
]
}
}
}
}
}
}
}
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-conversions 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 ConversionSourcesServiceAsyncClient
from .client import ConversionSourcesServiceClient

__all__ = (
"ConversionSourcesServiceClient",
"ConversionSourcesServiceAsyncClient",
)
Loading
Loading