Skip to content

Commit

Permalink
docs: Update cpu_utilization_percent limit
Browse files Browse the repository at this point in the history
docs: Remove the limitation of all clusters in a CMEK instance must use the same key

PiperOrigin-RevId: 438385300

Source-Link: googleapis/googleapis@c59f02e

Source-Link: googleapis/googleapis-gen@04d03d1
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMDRkMDNkMTdhYWZhN2I0NDIyZjczYzkzNjAwZjA0MDU0MjgxN2ZjZCJ9
  • Loading branch information
gcf-owl-bot[bot] committed Mar 30, 2022
1 parent 3ec3f3a commit 8a2fdd8
Show file tree
Hide file tree
Showing 82 changed files with 42,720 additions and 0 deletions.
17 changes: 17 additions & 0 deletions owl-bot-staging/bigtable/v2/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[run]
branch = True

[report]
show_missing = True
omit =
google/cloud/bigtable/__init__.py
exclude_lines =
# Re-enable the standard pragma
pragma: NO COVER
# Ignore debug-only repr
def __repr__
# Ignore pkg_resources exceptions.
# This is added at the module level as a safeguard for if someone
# generates the code and tries to run it without pip installing. This
# makes it virtually impossible to test properly.
except pkg_resources.DistributionNotFound
33 changes: 33 additions & 0 deletions owl-bot-staging/bigtable/v2/.flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# -*- 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.

# Generated by synthtool. DO NOT EDIT!
[flake8]
ignore = E203, E266, E501, W503
exclude =
# Exclude generated code.
**/proto/**
**/gapic/**
**/services/**
**/types/**
*_pb2.py

# Standard linting exemptions.
**/.nox/**
__pycache__,
.git,
*.pyc,
conf.py
2 changes: 2 additions & 0 deletions owl-bot-staging/bigtable/v2/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
recursive-include google/cloud/bigtable *.py
recursive-include google/cloud/bigtable_v2 *.py
49 changes: 49 additions & 0 deletions owl-bot-staging/bigtable/v2/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
Python Client for Google Cloud Bigtable API
=================================================

Quick Start
-----------

In order to use this library, you first need to go through the following steps:

1. `Select or create a Cloud Platform project.`_
2. `Enable billing for your project.`_
3. Enable the Google Cloud Bigtable API.
4. `Setup Authentication.`_

.. _Select or create a Cloud Platform project.: https://console.cloud.google.com/project
.. _Enable billing for your project.: https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project
.. _Setup Authentication.: https://googleapis.dev/python/google-api-core/latest/auth.html

Installation
~~~~~~~~~~~~

Install this library in a `virtualenv`_ using pip. `virtualenv`_ is a tool to
create isolated Python environments. The basic problem it addresses is one of
dependencies and versions, and indirectly permissions.

With `virtualenv`_, it's possible to install this library without needing system
install permissions, and without clashing with the installed system
dependencies.

.. _`virtualenv`: https://virtualenv.pypa.io/en/latest/


Mac/Linux
^^^^^^^^^

.. code-block:: console
python3 -m venv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install /path/to/library
Windows
^^^^^^^

.. code-block:: console
python3 -m venv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install \path\to\library
6 changes: 6 additions & 0 deletions owl-bot-staging/bigtable/v2/docs/bigtable_v2/bigtable.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bigtable
--------------------------

.. automodule:: google.cloud.bigtable_v2.services.bigtable
:members:
:inherited-members:
6 changes: 6 additions & 0 deletions owl-bot-staging/bigtable/v2/docs/bigtable_v2/services.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Services for Google Cloud Bigtable v2 API
=========================================
.. toctree::
:maxdepth: 2

bigtable
7 changes: 7 additions & 0 deletions owl-bot-staging/bigtable/v2/docs/bigtable_v2/types.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Types for Google Cloud Bigtable v2 API
======================================

.. automodule:: google.cloud.bigtable_v2.types
:members:
:undoc-members:
:show-inheritance:

0 comments on commit 8a2fdd8

Please sign in to comment.