Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions datastore/.coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
branch = True

[report]
omit =
_app_engine_key_pb2.py
fail_under = 100
show_missing = True
exclude_lines =
Expand Down
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/_app_engine_key_pb2.py,

# Standard linting exemptions.
__pycache__,
.git,
*.pyc,
Expand Down
30 changes: 30 additions & 0 deletions datastore/google/cloud/datastore/_app_engine_key.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Copyright 2017 Google Inc.
//
// 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
//
// http://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.

syntax = "proto2";

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/_app_engine_key_pb2.py

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

Loading