Skip to content

Commit ef8e715

Browse files
chore: set Ruby namespace in proto options (#162)
PiperOrigin-RevId: 316124477 Source-Author: Google APIs <[email protected]> Source-Date: Fri Jun 12 10:06:09 2020 -0700 Source-Repo: googleapis/googleapis Source-Sha: c829fa0bfa725adaf20d82e86cbc1220e3ffd784 Source-Link: googleapis/googleapis@c829fa0
1 parent 39c8d72 commit ef8e715

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

proto-google-cloud-datastore-v1/src/main/java/com/google/datastore/v1/DatastoreProto.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,11 +214,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
214214
+ "ds:\001*\332A\017project_id,keys\032v\312A\030datastore.go"
215215
+ "ogleapis.com\322AXhttps://www.googleapis.co"
216216
+ "m/auth/cloud-platform,https://www.google"
217-
+ "apis.com/auth/datastoreB\241\001\n\027com.google.d"
217+
+ "apis.com/auth/datastoreB\300\001\n\027com.google.d"
218218
+ "atastore.v1B\016DatastoreProtoP\001Z<google.go"
219219
+ "lang.org/genproto/googleapis/datastore/v"
220220
+ "1;datastore\252\002\031Google.Cloud.Datastore.V1\312"
221-
+ "\002\031Google\\Cloud\\Datastore\\V1b\006proto3"
221+
+ "\002\031Google\\Cloud\\Datastore\\V1\352\002\034Google::Cl"
222+
+ "oud::Datastore::V1b\006proto3"
222223
};
223224
descriptor =
224225
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(

proto-google-cloud-datastore-v1/src/main/java/com/google/datastore/v1/EntityProto.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
9393
+ "\003 \003(\0132+.google.datastore.v1.Entity.Prope"
9494
+ "rtiesEntry\032M\n\017PropertiesEntry\022\013\n\003key\030\001 \001"
9595
+ "(\t\022)\n\005value\030\002 \001(\0132\032.google.datastore.v1."
96-
+ "Value:\0028\001B\236\001\n\027com.google.datastore.v1B\013E"
96+
+ "Value:\0028\001B\275\001\n\027com.google.datastore.v1B\013E"
9797
+ "ntityProtoP\001Z<google.golang.org/genproto"
9898
+ "/googleapis/datastore/v1;datastore\252\002\031Goo"
9999
+ "gle.Cloud.Datastore.V1\312\002\031Google\\Cloud\\Da"
100-
+ "tastore\\V1b\006proto3"
100+
+ "tastore\\V1\352\002\034Google::Cloud::Datastore::V"
101+
+ "1b\006proto3"
101102
};
102103
descriptor =
103104
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(

proto-google-cloud-datastore-v1/src/main/java/com/google/datastore/v1/QueryProto.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
153153
+ "\022!\n\035MORE_RESULTS_TYPE_UNSPECIFIED\020\000\022\020\n\014N"
154154
+ "OT_FINISHED\020\001\022\034\n\030MORE_RESULTS_AFTER_LIMI"
155155
+ "T\020\002\022\035\n\031MORE_RESULTS_AFTER_CURSOR\020\004\022\023\n\017NO"
156-
+ "_MORE_RESULTS\020\003B\235\001\n\027com.google.datastore"
156+
+ "_MORE_RESULTS\020\003B\274\001\n\027com.google.datastore"
157157
+ ".v1B\nQueryProtoP\001Z<google.golang.org/gen"
158158
+ "proto/googleapis/datastore/v1;datastore\252"
159159
+ "\002\031Google.Cloud.Datastore.V1\312\002\031Google\\Clo"
160-
+ "ud\\Datastore\\V1b\006proto3"
160+
+ "ud\\Datastore\\V1\352\002\034Google::Cloud::Datasto"
161+
+ "re::V1b\006proto3"
161162
};
162163
descriptor =
163164
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(

proto-google-cloud-datastore-v1/src/main/proto/google/datastore/v1/datastore.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ option java_multiple_files = true;
2828
option java_outer_classname = "DatastoreProto";
2929
option java_package = "com.google.datastore.v1";
3030
option php_namespace = "Google\\Cloud\\Datastore\\V1";
31+
option ruby_package = "Google::Cloud::Datastore::V1";
3132

3233
// Each RPC normalizes the partition IDs of the keys in its input entities,
3334
// and always returns entities with keys with normalized partition IDs.

proto-google-cloud-datastore-v1/src/main/proto/google/datastore/v1/entity.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ option java_multiple_files = true;
2727
option java_outer_classname = "EntityProto";
2828
option java_package = "com.google.datastore.v1";
2929
option php_namespace = "Google\\Cloud\\Datastore\\V1";
30+
option ruby_package = "Google::Cloud::Datastore::V1";
3031

3132
// A partition ID identifies a grouping of entities. The grouping is always
3233
// by project and namespace, however the namespace ID may be empty.

proto-google-cloud-datastore-v1/src/main/proto/google/datastore/v1/query.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ option java_multiple_files = true;
2727
option java_outer_classname = "QueryProto";
2828
option java_package = "com.google.datastore.v1";
2929
option php_namespace = "Google\\Cloud\\Datastore\\V1";
30+
option ruby_package = "Google::Cloud::Datastore::V1";
3031

3132
// The result of fetching an entity from Datastore.
3233
message EntityResult {

synth.metadata

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"git": {
55
"name": ".",
66
"remote": "https://github.com/googleapis/java-datastore.git",
7-
"sha": "425f6db057cbd78a1e91ed71684183ab7fd59c48"
7+
"sha": "39c8d723b318d08ca494b71167eaa80b1df6423d"
88
}
99
},
1010
{
1111
"git": {
1212
"name": "googleapis",
1313
"remote": "https://github.com/googleapis/googleapis.git",
14-
"sha": "c4e37010d74071851ff24121f522e802231ac86e",
15-
"internalRef": "313460921"
14+
"sha": "c829fa0bfa725adaf20d82e86cbc1220e3ffd784",
15+
"internalRef": "316124477"
1616
}
1717
},
1818
{

0 commit comments

Comments
 (0)