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
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
ConfigDelivery
--------------------------------

.. automodule:: google.cloud.configdelivery_v1beta.services.config_delivery
:members:
:inherited-members:

.. automodule:: google.cloud.configdelivery_v1beta.services.config_delivery.pagers
:members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Services for Google Cloud Configdelivery v1beta API
===================================================
.. toctree::
:maxdepth: 2

config_delivery
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Types for Google Cloud Configdelivery v1beta API
================================================

.. automodule:: google.cloud.configdelivery_v1beta.types
:members:
:show-inheritance:
11 changes: 11 additions & 0 deletions packages/google-cloud-configdelivery/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 Config Delivery API.
By default, you will get version ``configdelivery_v1alpha``.


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

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

configdelivery_v1beta/services_
configdelivery_v1beta/types_


Changelog
---------
Expand Down
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.0" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
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.0" # {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,128 @@
# -*- 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.cloud.configdelivery_v1beta import gapic_version as package_version

__version__ = package_version.__version__


from .services.config_delivery import ConfigDeliveryAsyncClient, ConfigDeliveryClient
from .types.config_delivery import (
AbortRolloutRequest,
AllAtOnceStrategy,
AllAtOnceStrategyInfo,
ClusterInfo,
CreateFleetPackageRequest,
CreateReleaseRequest,
CreateResourceBundleRequest,
CreateVariantRequest,
DeleteFleetPackageRequest,
DeleteReleaseRequest,
DeleteResourceBundleRequest,
DeleteVariantRequest,
DeletionPropagationPolicy,
Fleet,
FleetPackage,
FleetPackageError,
FleetPackageInfo,
GetFleetPackageRequest,
GetReleaseRequest,
GetResourceBundleRequest,
GetRolloutRequest,
GetVariantRequest,
ListFleetPackagesRequest,
ListFleetPackagesResponse,
ListReleasesRequest,
ListReleasesResponse,
ListResourceBundlesRequest,
ListResourceBundlesResponse,
ListRolloutsRequest,
ListRolloutsResponse,
ListVariantsRequest,
ListVariantsResponse,
OperationMetadata,
Release,
ReleaseInfo,
ResourceBundle,
ResourceBundleDeploymentInfo,
ResumeRolloutRequest,
RollingStrategy,
RollingStrategyInfo,
Rollout,
RolloutInfo,
RolloutStrategy,
RolloutStrategyInfo,
SuspendRolloutRequest,
UpdateFleetPackageRequest,
UpdateReleaseRequest,
UpdateResourceBundleRequest,
UpdateVariantRequest,
Variant,
)

__all__ = (
"ConfigDeliveryAsyncClient",
"AbortRolloutRequest",
"AllAtOnceStrategy",
"AllAtOnceStrategyInfo",
"ClusterInfo",
"ConfigDeliveryClient",
"CreateFleetPackageRequest",
"CreateReleaseRequest",
"CreateResourceBundleRequest",
"CreateVariantRequest",
"DeleteFleetPackageRequest",
"DeleteReleaseRequest",
"DeleteResourceBundleRequest",
"DeleteVariantRequest",
"DeletionPropagationPolicy",
"Fleet",
"FleetPackage",
"FleetPackageError",
"FleetPackageInfo",
"GetFleetPackageRequest",
"GetReleaseRequest",
"GetResourceBundleRequest",
"GetRolloutRequest",
"GetVariantRequest",
"ListFleetPackagesRequest",
"ListFleetPackagesResponse",
"ListReleasesRequest",
"ListReleasesResponse",
"ListResourceBundlesRequest",
"ListResourceBundlesResponse",
"ListRolloutsRequest",
"ListRolloutsResponse",
"ListVariantsRequest",
"ListVariantsResponse",
"OperationMetadata",
"Release",
"ReleaseInfo",
"ResourceBundle",
"ResourceBundleDeploymentInfo",
"ResumeRolloutRequest",
"RollingStrategy",
"RollingStrategyInfo",
"Rollout",
"RolloutInfo",
"RolloutStrategy",
"RolloutStrategyInfo",
"SuspendRolloutRequest",
"UpdateFleetPackageRequest",
"UpdateReleaseRequest",
"UpdateResourceBundleRequest",
"UpdateVariantRequest",
"Variant",
)
Loading
Loading