Skip to content
This repository was archived by the owner on Sep 5, 2023. It is now read-only.

Commit cc97391

Browse files
authored
feat: add support for v1 (#15)
1 parent bbc389e commit cc97391

36 files changed

+5682
-3740
lines changed

.kokoro/build.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
32
# Copyright 2018 Google LLC
43
#
54
# Licensed under the Apache License, Version 2.0 (the "License");

.kokoro/publish-docs.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
#!/bin/bash
2+
# Copyright 2020 Google LLC
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# https://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
116
#!/bin/bash
217

318
set -eo pipefail

.kokoro/release.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
#!/bin/bash
2+
# Copyright 2020 Google LLC
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# https://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
116
#!/bin/bash
217

318
set -eo pipefail

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Running System Tests
143143
- To run system tests, you can execute::
144144

145145
$ nox -s system-3.7
146-
$ nox -s system-2.7
146+
$ nox -s system-2.7
147147

148148
.. note::
149149

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# documentation root, use os.path.abspath to make it absolute, like shown here.
2121
sys.path.insert(0, os.path.abspath(".."))
2222

23-
__version__ = "0.1.0"
23+
__version__ = ""
2424

2525
# -- General configuration ------------------------------------------------
2626

docs/gapic/v1/api.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Client for Secret Manager API
2+
=============================
3+
4+
.. automodule:: google.cloud.secretmanager_v1
5+
:members:
6+
:inherited-members:

docs/gapic/v1/types.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Types for Secret Manager API Client
2+
===================================
3+
4+
.. automodule:: google.cloud.secretmanager_v1.types
5+
:members:

docs/index.rst

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
.. include:: README.rst
22

3-
Api Reference
4-
-------------
3+
v1 Api Reference
4+
----------------
5+
.. toctree::
6+
:maxdepth: 2
7+
8+
gapic/v1/api
9+
gapic/v1/types
10+
11+
v1beta1 Api Reference
12+
---------------------
513
.. toctree::
614
:maxdepth: 2
715

@@ -13,4 +21,4 @@ Changelog
1321
.. toctree::
1422
:maxdepth: 2
1523

16-
changelog
24+
changelog

google/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright 2019 Google LLC
3+
# Copyright 2020 Google LLC
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

google/cloud/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright 2019 Google LLC
3+
# Copyright 2020 Google LLC
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)