|
1 |
| -// Copyright 2018 Google Inc. |
| 1 | +// Copyright 2018 Google LLC. |
2 | 2 | //
|
3 | 3 | // Licensed under the Apache License, Version 2.0 (the "License");
|
4 | 4 | // you may not use this file except in compliance with the License.
|
|
11 | 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 | 12 | // See the License for the specific language governing permissions and
|
13 | 13 | // limitations under the License.
|
| 14 | +// |
14 | 15 |
|
15 | 16 | syntax = "proto3";
|
16 | 17 |
|
17 |
| -package google.firestore.v1beta1; |
| 18 | +package google.firestore.v1; |
18 | 19 |
|
19 | 20 | import "google/api/annotations.proto";
|
20 | 21 | import "google/protobuf/timestamp.proto";
|
21 | 22 |
|
22 |
| -option csharp_namespace = "Google.Cloud.Firestore.V1Beta1"; |
23 |
| -option go_package = "google.golang.org/genproto/googleapis/firestore/v1beta1;firestore"; |
| 23 | +option csharp_namespace = "Google.Cloud.Firestore.V1"; |
| 24 | +option go_package = "google.golang.org/genproto/googleapis/firestore/v1;firestore"; |
24 | 25 | option java_multiple_files = true;
|
25 | 26 | option java_outer_classname = "CommonProto";
|
26 |
| -option java_package = "com.google.firestore.v1beta1"; |
| 27 | +option java_package = "com.google.firestore.v1"; |
27 | 28 | option objc_class_prefix = "GCFS";
|
28 |
| -option php_namespace = "Google\\Cloud\\Firestore\\V1beta1"; |
| 29 | +option php_namespace = "Google\\Cloud\\Firestore\\V1"; |
29 | 30 |
|
30 | 31 |
|
31 | 32 | // A set of field paths on a document.
|
32 | 33 | // Used to restrict a get or update operation on a document to a subset of its
|
33 | 34 | // fields.
|
34 | 35 | // This is different from standard field masks, as this is always scoped to a
|
35 |
| -// [Document][google.firestore.v1beta1.Document], and takes in account the dynamic nature of [Value][google.firestore.v1beta1.Value]. |
| 36 | +// [Document][google.firestore.v1.Document], and takes in account the dynamic nature of [Value][google.firestore.v1.Value]. |
36 | 37 | message DocumentMask {
|
37 |
| - // The list of field paths in the mask. See [Document.fields][google.firestore.v1beta1.Document.fields] for a field |
| 38 | + // The list of field paths in the mask. See [Document.fields][google.firestore.v1.Document.fields] for a field |
38 | 39 | // path syntax reference.
|
39 | 40 | repeated string field_paths = 1;
|
40 | 41 | }
|
|
0 commit comments