google-apis-firestore_v1beta2 0.17.0 → 0.18.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c05c5172ebdb40071e106cfb923ea233296a032c928cdd3698d1bd1328ee3736
|
4
|
+
data.tar.gz: cdcd3e9f1ef1625de57200de480e54041dba3e7316169817f0d0ec583cdb0446
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d3a219d3fd3b2ceb2108aba7cfc842d25784f437e41c4394a8b5dae95c8d7068bc988e2a5814ef689d6ce8d99933d428b02a747d14afeb1ee1cb9c0ba6ed5a8
|
7
|
+
data.tar.gz: 251c9d4917c8fc01ab06224c70611bd9e6d7f93e5419a6a011cd1ad32844b5fbf404aba071750ca1be23751e3cffbf977dc4416f3483581e05184fc9d0ad1f8b
|
data/CHANGELOG.md
CHANGED
@@ -38,6 +38,49 @@ module Google
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
# Metadata for the long-running operation from the RestoreDatabase request.
|
42
|
+
class GoogleFirestoreAdminV1RestoreDatabaseMetadata
|
43
|
+
include Google::Apis::Core::Hashable
|
44
|
+
|
45
|
+
# The name of the backup restoring from.
|
46
|
+
# Corresponds to the JSON property `backup`
|
47
|
+
# @return [String]
|
48
|
+
attr_accessor :backup
|
49
|
+
|
50
|
+
# The name of the database being restored to.
|
51
|
+
# Corresponds to the JSON property `database`
|
52
|
+
# @return [String]
|
53
|
+
attr_accessor :database
|
54
|
+
|
55
|
+
# The time the restore finished, unset for ongoing restores.
|
56
|
+
# Corresponds to the JSON property `endTime`
|
57
|
+
# @return [String]
|
58
|
+
attr_accessor :end_time
|
59
|
+
|
60
|
+
# The operation state of the restore.
|
61
|
+
# Corresponds to the JSON property `operationState`
|
62
|
+
# @return [String]
|
63
|
+
attr_accessor :operation_state
|
64
|
+
|
65
|
+
# The time the restore was started.
|
66
|
+
# Corresponds to the JSON property `startTime`
|
67
|
+
# @return [String]
|
68
|
+
attr_accessor :start_time
|
69
|
+
|
70
|
+
def initialize(**args)
|
71
|
+
update!(**args)
|
72
|
+
end
|
73
|
+
|
74
|
+
# Update properties of this object
|
75
|
+
def update!(**args)
|
76
|
+
@backup = args[:backup] if args.key?(:backup)
|
77
|
+
@database = args[:database] if args.key?(:database)
|
78
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
79
|
+
@operation_state = args[:operation_state] if args.key?(:operation_state)
|
80
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
41
84
|
# Metadata related to the update database operation.
|
42
85
|
class GoogleFirestoreAdminV1UpdateDatabaseMetadata
|
43
86
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirestoreV1beta2
|
18
18
|
# Version of the google-apis-firestore_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.18.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230621"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class GoogleFirestoreAdminV1RestoreDatabaseMetadata
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class GoogleFirestoreAdminV1UpdateDatabaseMetadata
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -142,6 +148,17 @@ module Google
|
|
142
148
|
end
|
143
149
|
end
|
144
150
|
|
151
|
+
class GoogleFirestoreAdminV1RestoreDatabaseMetadata
|
152
|
+
# @private
|
153
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
154
|
+
property :backup, as: 'backup'
|
155
|
+
property :database, as: 'database'
|
156
|
+
property :end_time, as: 'endTime'
|
157
|
+
property :operation_state, as: 'operationState'
|
158
|
+
property :start_time, as: 'startTime'
|
159
|
+
end
|
160
|
+
end
|
161
|
+
|
145
162
|
class GoogleFirestoreAdminV1UpdateDatabaseMetadata
|
146
163
|
# @private
|
147
164
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firestore_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02
|
11
|
+
date: 2023-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta2/v0.18.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1beta2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|