Skip to content
Merged
5 changes: 5 additions & 0 deletions datastore/.flake8
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
[flake8]
exclude =
# Datastore includes generated code in the manual layer;
# do not lint this.
google/cloud/datastore/_onestore_v3_pb2.py,

# Standard linting exemptions.
__pycache__,
.git,
*.pyc,
Expand Down
16 changes: 16 additions & 0 deletions datastore/google/cloud/datastore/_onestore_v3.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
syntax = "proto2";

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.


message Reference {
required string app = 13;
optional string name_space = 20;
required Path path = 14;
optional string database_id = 23;
}

message Path {
repeated group Element = 1 {
required string type = 2;
optional int64 id = 3;
optional string name = 4;
}
}
184 changes: 184 additions & 0 deletions datastore/google/cloud/datastore/_onestore_v3_pb2.py

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

Loading