Skip to content
This repository has been archived by the owner on Feb 28, 2024. It is now read-only.

Commit

Permalink
feat: generate v1p5beta1 (#47)
Browse files Browse the repository at this point in the history
* feat: generate v1p5beta1

* fix: fix unit tests, imports

* docs: fix docs

* docs: include v1p5beta1 docs

* build: update pip

* chore: try newer version of black

* Update build.sh
  • Loading branch information
busunkim96 committed Jun 25, 2020
1 parent 58f5d58 commit 207eff4
Show file tree
Hide file tree
Showing 21 changed files with 1,925 additions and 23 deletions.
6 changes: 6 additions & 0 deletions docs/gapic/v1p5beta1/api.rst
@@ -0,0 +1,6 @@
Client for Cloud Asset API
==========================

.. automodule:: google.cloud.asset_v1p5beta1
:members:
:inherited-members:
5 changes: 5 additions & 0 deletions docs/gapic/v1p5beta1/types.rst
@@ -0,0 +1,5 @@
Types for Cloud Asset API Client
================================

.. automodule:: google.cloud.asset_v1p5beta1.types
:members:
30 changes: 19 additions & 11 deletions docs/index.rst
Expand Up @@ -8,13 +8,13 @@ Api Reference
This package includes clients for multiple versions of the Cloud Asset API. By default, you will get ``v1``
the latest stable version.

v1
v1 <v1>
~~~~~~~~~
.. toctree::
:maxdepth: 2

gapic/v1/api
gapic/v1/types
Client (v1) <gapic/v1/api>
Types (v1) <gapic/v1/types>

Beta releases with additional features over the current stable version. These are expected to move into the stable release soon;
until then, the usual beta admonishment (changes are possible, etc.) applies.
Expand All @@ -27,36 +27,44 @@ v1p1beta1
.. toctree::
:maxdepth: 2

gapic/v1p1beta1/api
gapic/v1p1beta1/types
Client (v1p1beta1) <gapic/v1p1beta1/api>
Types (v1p1beta1) <gapic/v1p1beta1/types>


v1p2beta1
~~~~~~~~~
.. toctree::
:maxdepth: 2

gapic/v1p2beta1/api
gapic/v1p2beta1/types
Client (v1p1beta1) <gapic/v1p2beta1/api>
Types (v1p1beta1) <gapic/v1p2beta1/types>


v1p4beta1
~~~~~~~~~
.. toctree::
:maxdepth: 2

gapic/v1p4beta1/api
gapic/v1p4beta1/types
Client (v1p4beta1) <gapic/v1p4beta1/api>
Types (v1p4beta1) <gapic/v1p4beta1/types>


v1p5beta1
~~~~~~~~~
.. toctree::
:maxdepth: 2

Client (v1p5beta1) <gapic/v1p5beta1/api>
Types (v1p5beta1) <gapic/v1p5beta1/types>


v1beta1
~~~~~~~~~
.. toctree::
:maxdepth: 2

gapic/v1beta1/api
gapic/v1beta1/types
Client (v1beta1) <gapic/v1beta1/api>
Types (v1beta1) <gapic/v1beta1/types>


Changelog
Expand Down
41 changes: 41 additions & 0 deletions google/cloud/asset_v1p5beta1/__init__.py
@@ -0,0 +1,41 @@
# -*- coding: utf-8 -*-
#
# Copyright 2020 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.


from __future__ import absolute_import
import sys
import warnings

from google.cloud.asset_v1p5beta1 import types
from google.cloud.asset_v1p5beta1.gapic import asset_service_client
from google.cloud.asset_v1p5beta1.gapic import enums


if sys.version_info[:2] == (2, 7):
message = (
"A future version of this library will drop support for Python 2.7. "
"More details about Python 2 support for Google Cloud Client Libraries "
"can be found at https://cloud.google.com/python/docs/python2-sunset/"
)
warnings.warn(message, DeprecationWarning)


class AssetServiceClient(asset_service_client.AssetServiceClient):
__doc__ = asset_service_client.AssetServiceClient.__doc__
enums = enums


__all__ = ("enums", "types", "AssetServiceClient")
Empty file.

0 comments on commit 207eff4

Please sign in to comment.