google-cloud-firestore-admin-v1 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/firestore/admin/v1/firestore_admin/client.rb +156 -0
- data/lib/google/cloud/firestore/admin/v1/firestore_admin/rest/client.rb +140 -0
- data/lib/google/cloud/firestore/admin/v1/firestore_admin/rest/service_stub.rb +62 -0
- data/lib/google/cloud/firestore/admin/v1/version.rb +1 -1
- data/lib/google/firestore/admin/v1/firestore_admin_pb.rb +5 -1
- data/lib/google/firestore/admin/v1/firestore_admin_services_pb.rb +18 -0
- data/lib/google/firestore/admin/v1/operation_pb.rb +4 -1
- data/lib/google/firestore/admin/v1/snapshot_pb.rb +49 -0
- data/proto_docs/google/api/routing.rb +459 -0
- data/proto_docs/google/firestore/admin/v1/firestore_admin.rb +51 -0
- data/proto_docs/google/firestore/admin/v1/operation.rb +25 -0
- data/proto_docs/google/firestore/admin/v1/snapshot.rb +48 -0
- metadata +4 -1
@@ -0,0 +1,48 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2025 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module Firestore
|
23
|
+
module Admin
|
24
|
+
module V1
|
25
|
+
# A consistent snapshot of a database at a specific point in time.
|
26
|
+
# A PITR (Point-in-time recovery) snapshot with previous versions of a
|
27
|
+
# database's data is available for every minute up to the associated database's
|
28
|
+
# data retention period. If the PITR feature is enabled, the retention period
|
29
|
+
# is 7 days; otherwise, it is one hour.
|
30
|
+
# @!attribute [rw] database
|
31
|
+
# @return [::String]
|
32
|
+
# Required. The name of the database that this was a snapshot of. Format:
|
33
|
+
# `projects/{project}/databases/{database}`.
|
34
|
+
# @!attribute [r] database_uid
|
35
|
+
# @return [::String]
|
36
|
+
# Output only. Public UUID of the database the snapshot was associated with.
|
37
|
+
# @!attribute [rw] snapshot_time
|
38
|
+
# @return [::Google::Protobuf::Timestamp]
|
39
|
+
# Required. Snapshot time of the database.
|
40
|
+
class PitrSnapshot
|
41
|
+
include ::Google::Protobuf::MessageExts
|
42
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-firestore-admin-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -87,12 +87,14 @@ files:
|
|
87
87
|
- lib/google/firestore/admin/v1/location_pb.rb
|
88
88
|
- lib/google/firestore/admin/v1/operation_pb.rb
|
89
89
|
- lib/google/firestore/admin/v1/schedule_pb.rb
|
90
|
+
- lib/google/firestore/admin/v1/snapshot_pb.rb
|
90
91
|
- lib/google/firestore/admin/v1/user_creds_pb.rb
|
91
92
|
- proto_docs/README.md
|
92
93
|
- proto_docs/google/api/client.rb
|
93
94
|
- proto_docs/google/api/field_behavior.rb
|
94
95
|
- proto_docs/google/api/launch_stage.rb
|
95
96
|
- proto_docs/google/api/resource.rb
|
97
|
+
- proto_docs/google/api/routing.rb
|
96
98
|
- proto_docs/google/firestore/admin/v1/backup.rb
|
97
99
|
- proto_docs/google/firestore/admin/v1/database.rb
|
98
100
|
- proto_docs/google/firestore/admin/v1/field.rb
|
@@ -101,6 +103,7 @@ files:
|
|
101
103
|
- proto_docs/google/firestore/admin/v1/location.rb
|
102
104
|
- proto_docs/google/firestore/admin/v1/operation.rb
|
103
105
|
- proto_docs/google/firestore/admin/v1/schedule.rb
|
106
|
+
- proto_docs/google/firestore/admin/v1/snapshot.rb
|
104
107
|
- proto_docs/google/firestore/admin/v1/user_creds.rb
|
105
108
|
- proto_docs/google/longrunning/operations.rb
|
106
109
|
- proto_docs/google/protobuf/any.rb
|