Skip to content

Commit

Permalink
chore: set Ruby namespace in proto options, use protoc-docs-plugin 0.…
Browse files Browse the repository at this point in the history
…8.0 (#56)

* chore: set Ruby namespace in proto options

PiperOrigin-RevId: 316039767

Source-Author: Google APIs <noreply@google.com>
Source-Date: Thu Jun 11 21:23:34 2020 -0700
Source-Repo: googleapis/googleapis
Source-Sha: 94fe3637559a257634d7b47a15bb8d976daff788
Source-Link: googleapis/googleapis@94fe363

* fix: use protoc-docs-plugin 0.8.0

Fixes issue with missing newline before 'Attributes' in Python docstrings.

PiperOrigin-RevId: 316182409

Source-Author: Google APIs <noreply@google.com>
Source-Date: Fri Jun 12 14:52:11 2020 -0700
Source-Repo: googleapis/googleapis
Source-Sha: 184661793fbe3b89f2b485c303e7466cef9d21a1
Source-Link: googleapis/googleapis@1846617
  • Loading branch information
yoshi-automation committed Jun 16, 2020
1 parent c38888d commit d257a93
Show file tree
Hide file tree
Showing 15 changed files with 123 additions and 17 deletions.
Expand Up @@ -35,6 +35,7 @@ option java_multiple_files = true;
option java_outer_classname = "BigtableInstanceAdminProto";
option java_package = "com.google.bigtable.admin.v2";
option php_namespace = "Google\\Cloud\\Bigtable\\Admin\\V2";
option ruby_package = "Google::Cloud::Bigtable::Admin::V2";

// Service for creating, configuring, and deleting Cloud Bigtable Instances and
// Clusters. Provides access to the Instance and Cluster schemas only, not the
Expand Down

Large diffs are not rendered by default.

Expand Up @@ -36,6 +36,7 @@ option java_multiple_files = true;
option java_outer_classname = "BigtableTableAdminProto";
option java_package = "com.google.bigtable.admin.v2";
option php_namespace = "Google\\Cloud\\Bigtable\\Admin\\V2";
option ruby_package = "Google::Cloud::Bigtable::Admin::V2";

// Service for creating, configuring, and deleting Cloud Bigtable tables.
//
Expand Down
35 changes: 33 additions & 2 deletions google/cloud/bigtable_admin_v2/proto/bigtable_table_admin_pb2.py

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions google/cloud/bigtable_admin_v2/proto/common.proto
Expand Up @@ -24,6 +24,7 @@ option java_multiple_files = true;
option java_outer_classname = "CommonProto";
option java_package = "com.google.bigtable.admin.v2";
option php_namespace = "Google\\Cloud\\Bigtable\\Admin\\V2";
option ruby_package = "Google::Cloud::Bigtable::Admin::V2";

// Storage media types for persisting Bigtable data.
enum StorageType {
Expand Down
5 changes: 3 additions & 2 deletions google/cloud/bigtable_admin_v2/proto/common_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions google/cloud/bigtable_admin_v2/proto/instance.proto
Expand Up @@ -27,6 +27,7 @@ option java_multiple_files = true;
option java_outer_classname = "InstanceProto";
option java_package = "com.google.bigtable.admin.v2";
option php_namespace = "Google\\Cloud\\Bigtable\\Admin\\V2";
option ruby_package = "Google::Cloud::Bigtable::Admin::V2";

// A collection of Bigtable [Tables][google.bigtable.admin.v2.Table] and
// the resources that serve them.
Expand Down
8 changes: 6 additions & 2 deletions google/cloud/bigtable_admin_v2/proto/instance_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions google/cloud/bigtable_admin_v2/proto/table.proto
Expand Up @@ -27,6 +27,7 @@ option java_multiple_files = true;
option java_outer_classname = "TableProto";
option java_package = "com.google.bigtable.admin.v2";
option php_namespace = "Google\\Cloud\\Bigtable\\Admin\\V2";
option ruby_package = "Google::Cloud::Bigtable::Admin::V2";

// Indicates the type of the restore source.
enum RestoreSourceType {
Expand Down

0 comments on commit d257a93

Please sign in to comment.