Skip to content

Commit 296afd1

Browse files
Google APIscopybara-github
authored andcommitted
docs: Clarify maximum retention of backups (max 14 weeks)
docs: Remove note about backups running at a specific time docs: Standardize on the capitalization of "ID" PiperOrigin-RevId: 668987834
1 parent b99f12a commit 296afd1

4 files changed

Lines changed: 14 additions & 12 deletions

File tree

google/firestore/admin/v1/field.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ option ruby_package = "Google::Cloud::Firestore::Admin::V1";
3232
// Represents a single field in the database.
3333
//
3434
// Fields are grouped by their "Collection Group", which represent all
35-
// collections in the database with the same id.
35+
// collections in the database with the same ID.
3636
message Field {
3737
option (google.api.resource) = {
3838
type: "firestore.googleapis.com/Field"

google/firestore/admin/v1/index.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ message Index {
4444

4545
// Indexes with a collection query scope specified allow queries
4646
// against a collection that is the child of a specific document, specified
47-
// at query time, and that has the collection id specified by the index.
47+
// at query time, and that has the collection ID specified by the index.
4848
COLLECTION = 1;
4949

5050
// Indexes with a collection group query scope specified allow queries
51-
// against all collections that has the collection id specified by the
51+
// against all collections that has the collection ID specified by the
5252
// index.
5353
COLLECTION_GROUP = 2;
5454

@@ -170,11 +170,11 @@ message Index {
170170

171171
// Indexes with a collection query scope specified allow queries
172172
// against a collection that is the child of a specific document, specified at
173-
// query time, and that has the same collection id.
173+
// query time, and that has the same collection ID.
174174
//
175175
// Indexes with a collection group query scope specified allow queries against
176176
// all collections descended from a specific document, specified at query
177-
// time, and that have the same collection id as this index.
177+
// time, and that have the same collection ID as this index.
178178
QueryScope query_scope = 2;
179179

180180
// The API scope supported by this index.

google/firestore/admin/v1/operation.proto

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,13 @@ message ExportDocumentsMetadata {
146146
// The progress, in bytes, of this operation.
147147
Progress progress_bytes = 5;
148148

149-
// Which collection ids are being exported.
149+
// Which collection IDs are being exported.
150150
repeated string collection_ids = 6;
151151

152152
// Where the documents are being exported to.
153153
string output_uri_prefix = 7;
154154

155-
// Which namespace ids are being exported.
155+
// Which namespace IDs are being exported.
156156
repeated string namespace_ids = 8;
157157

158158
// The timestamp that corresponds to the version of the database that is being
@@ -181,13 +181,13 @@ message ImportDocumentsMetadata {
181181
// The progress, in bytes, of this operation.
182182
Progress progress_bytes = 5;
183183

184-
// Which collection ids are being imported.
184+
// Which collection IDs are being imported.
185185
repeated string collection_ids = 6;
186186

187187
// The location of the documents being imported.
188188
string input_uri_prefix = 7;
189189

190-
// Which namespace ids are being imported.
190+
// Which namespace IDs are being imported.
191191
repeated string namespace_ids = 8;
192192
}
193193

@@ -211,10 +211,10 @@ message BulkDeleteDocumentsMetadata {
211211
// The progress, in bytes, of this operation.
212212
Progress progress_bytes = 5;
213213

214-
// The ids of the collection groups that are being deleted.
214+
// The IDs of the collection groups that are being deleted.
215215
repeated string collection_ids = 6;
216216

217-
// Which namespace ids are being deleted.
217+
// Which namespace IDs are being deleted.
218218
repeated string namespace_ids = 7;
219219

220220
// The timestamp that corresponds to the version of the database that is being

google/firestore/admin/v1/schedule.proto

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ message BackupSchedule {
6565

6666
// At what relative time in the future, compared to its creation time,
6767
// the backup should be deleted, e.g. keep backups for 7 days.
68+
//
69+
// The maximum supported retention period is 14 weeks.
6870
google.protobuf.Duration retention = 6;
6971

7072
// A oneof field to represent when backups will be taken.
@@ -77,7 +79,7 @@ message BackupSchedule {
7779
}
7880
}
7981

80-
// Represents a recurring schedule that runs at a specific time every day.
82+
// Represents a recurring schedule that runs every day.
8183
//
8284
// The time zone is UTC.
8385
message DailyRecurrence {}

0 commit comments

Comments
 (0)