google-apis-firestore_v1 0.49.0 → 0.51.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: 252d91b669d888922a66f913e7e20b05385d2b36ea80f18e3a2993ebb5360f16
|
4
|
+
data.tar.gz: 2a3023e21c16e9e98762d30b6c0d0a8c906b3529603d92fefac4e4dce8bfcb69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08243a86a20a9e4bec0d228762ecaff864255eaecd28b5d75d3e4ef8f4831944d18c8f8d6755cb4d9c9affe8a2e42ae0c4515d90b42303a2d7c63828448a8c96'
|
7
|
+
data.tar.gz: 8859eb1ef6beca57103604808ac6204ac72f2bd5c29ba2a4df292ac960212bad554e94b32ec65c3d31fe4d2032ff9610afcb3a6fe8a024c348fbdde828e932b8
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,16 @@
|
|
1
1
|
# Release history for google-apis-firestore_v1
|
2
2
|
|
3
|
-
### v0.
|
3
|
+
### v0.51.0 (2023-09-10)
|
4
4
|
|
5
|
-
* Regenerated from discovery document revision
|
5
|
+
* Regenerated from discovery document revision 20230905
|
6
|
+
|
7
|
+
### v0.50.0 (2023-08-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230806
|
10
|
+
|
11
|
+
### v0.49.0 (2023-08-06)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20230729
|
6
14
|
|
7
15
|
### v0.48.0 (2023-07-23)
|
8
16
|
|
@@ -38,12 +38,38 @@ module Google
|
|
38
38
|
# @return [String]
|
39
39
|
attr_accessor :alias
|
40
40
|
|
41
|
+
# Average of the values of the requested field. * Only numeric values will be
|
42
|
+
# aggregated. All non-numeric values including `NULL` are skipped. * If the
|
43
|
+
# aggregated values contain `NaN`, returns `NaN`. Infinity math follows IEEE-754
|
44
|
+
# standards. * If the aggregated value set is empty, returns `NULL`. * Always
|
45
|
+
# returns the result as a double.
|
46
|
+
# Corresponds to the JSON property `avg`
|
47
|
+
# @return [Google::Apis::FirestoreV1::Avg]
|
48
|
+
attr_accessor :avg
|
49
|
+
|
41
50
|
# Count of documents that match the query. The `COUNT(*)` aggregation function
|
42
51
|
# operates on the entire document so it does not require a field reference.
|
43
52
|
# Corresponds to the JSON property `count`
|
44
53
|
# @return [Google::Apis::FirestoreV1::Count]
|
45
54
|
attr_accessor :count
|
46
55
|
|
56
|
+
# Sum of the values of the requested field. * Only numeric values will be
|
57
|
+
# aggregated. All non-numeric values including `NULL` are skipped. * If the
|
58
|
+
# aggregated values contain `NaN`, returns `NaN`. Infinity math follows IEEE-754
|
59
|
+
# standards. * If the aggregated value set is empty, returns 0. * Returns a 64-
|
60
|
+
# bit integer if all aggregated numbers are integers and the sum result does not
|
61
|
+
# overflow. Otherwise, the result is returned as a double. Note that even if all
|
62
|
+
# the aggregated values are integers, the result is returned as a double if it
|
63
|
+
# cannot fit within a 64-bit signed integer. When this occurs, the returned
|
64
|
+
# value will lose precision. * When underflow occurs, floating-point aggregation
|
65
|
+
# is non-deterministic. This means that running the same query repeatedly
|
66
|
+
# without any changes to the underlying values could produce slightly different
|
67
|
+
# results each time. In those cases, values should be stored as integers over
|
68
|
+
# floating-point numbers.
|
69
|
+
# Corresponds to the JSON property `sum`
|
70
|
+
# @return [Google::Apis::FirestoreV1::Sum]
|
71
|
+
attr_accessor :sum
|
72
|
+
|
47
73
|
def initialize(**args)
|
48
74
|
update!(**args)
|
49
75
|
end
|
@@ -51,7 +77,9 @@ module Google
|
|
51
77
|
# Update properties of this object
|
52
78
|
def update!(**args)
|
53
79
|
@alias = args[:alias] if args.key?(:alias)
|
80
|
+
@avg = args[:avg] if args.key?(:avg)
|
54
81
|
@count = args[:count] if args.key?(:count)
|
82
|
+
@sum = args[:sum] if args.key?(:sum)
|
55
83
|
end
|
56
84
|
end
|
57
85
|
|
@@ -97,6 +125,29 @@ module Google
|
|
97
125
|
end
|
98
126
|
end
|
99
127
|
|
128
|
+
# Average of the values of the requested field. * Only numeric values will be
|
129
|
+
# aggregated. All non-numeric values including `NULL` are skipped. * If the
|
130
|
+
# aggregated values contain `NaN`, returns `NaN`. Infinity math follows IEEE-754
|
131
|
+
# standards. * If the aggregated value set is empty, returns `NULL`. * Always
|
132
|
+
# returns the result as a double.
|
133
|
+
class Avg
|
134
|
+
include Google::Apis::Core::Hashable
|
135
|
+
|
136
|
+
# A reference to a field in a document, ex: `stats.operations`.
|
137
|
+
# Corresponds to the JSON property `field`
|
138
|
+
# @return [Google::Apis::FirestoreV1::FieldReference]
|
139
|
+
attr_accessor :field
|
140
|
+
|
141
|
+
def initialize(**args)
|
142
|
+
update!(**args)
|
143
|
+
end
|
144
|
+
|
145
|
+
# Update properties of this object
|
146
|
+
def update!(**args)
|
147
|
+
@field = args[:field] if args.key?(:field)
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
100
151
|
# The request for Firestore.BatchGetDocuments.
|
101
152
|
class BatchGetDocumentsRequest
|
102
153
|
include Google::Apis::Core::Hashable
|
@@ -537,20 +588,7 @@ module Google
|
|
537
588
|
# @return [String]
|
538
589
|
attr_accessor :create_time
|
539
590
|
|
540
|
-
#
|
541
|
-
# contains only characters `a` to `z`, `A` to `Z`, `0` to `9`, or `_`, and must
|
542
|
-
# not start with `0` to `9`. For example, `foo_bar_17`. Field names matching the
|
543
|
-
# regular expression `__.*__` are reserved. Reserved field names are forbidden
|
544
|
-
# except in certain documented contexts. The map keys, represented as UTF-8,
|
545
|
-
# must not exceed 1,500 bytes and cannot be empty. Field paths may be used in
|
546
|
-
# other contexts to refer to structured fields defined here. For `map_value`,
|
547
|
-
# the field path is represented by the simple or quoted field names of the
|
548
|
-
# containing fields, delimited by `.`. For example, the structured field `"foo" :
|
549
|
-
# ` map_value: ` "x&y" : ` string_value: "hello" ```` would be represented by
|
550
|
-
# the field path `foo.x&y`. Within a field path, a quoted field name starts and
|
551
|
-
# ends with `` ` `` and may contain any character. Some characters, including ``
|
552
|
-
# ` ``, must be escaped using a `\`. For example, `` `x&y` `` represents `x&y`
|
553
|
-
# and `` `bak\`tik` `` represents `` bak`tik ``.
|
591
|
+
#
|
554
592
|
# Corresponds to the JSON property `fields`
|
555
593
|
# @return [Hash<String,Google::Apis::FirestoreV1::Value>]
|
556
594
|
attr_accessor :fields
|
@@ -781,7 +819,9 @@ module Google
|
|
781
819
|
# The total count of documents that match target_id. If different from the count
|
782
820
|
# of documents in the client that match, the client must manually determine
|
783
821
|
# which documents no longer match the target. The client can use the `
|
784
|
-
# unchanged_names` bloom filter to assist with this determination
|
822
|
+
# unchanged_names` bloom filter to assist with this determination by testing ALL
|
823
|
+
# the document names against the filter; if the document name is NOT in the
|
824
|
+
# filter, it means the document no longer matches the target.
|
785
825
|
# Corresponds to the JSON property `count`
|
786
826
|
# @return [Fixnum]
|
787
827
|
attr_accessor :count
|
@@ -850,8 +890,9 @@ module Google
|
|
850
890
|
class FieldReference
|
851
891
|
include Google::Apis::Core::Hashable
|
852
892
|
|
853
|
-
#
|
854
|
-
# document field name
|
893
|
+
# A reference to a field in a document. Requires: * MUST be a dot-delimited (`.`)
|
894
|
+
# string of segments, where each segment conforms to document field name
|
895
|
+
# limitations.
|
855
896
|
# Corresponds to the JSON property `fieldPath`
|
856
897
|
# @return [String]
|
857
898
|
attr_accessor :field_path
|
@@ -953,7 +994,7 @@ module Google
|
|
953
994
|
end
|
954
995
|
|
955
996
|
# A Backup of a Cloud Firestore Database. The backup contains all documents and
|
956
|
-
# index configurations for the given database at specific point in time.
|
997
|
+
# index configurations for the given database at a specific point in time.
|
957
998
|
class GoogleFirestoreAdminV1Backup
|
958
999
|
include Google::Apis::Core::Hashable
|
959
1000
|
|
@@ -1071,6 +1112,19 @@ module Google
|
|
1071
1112
|
end
|
1072
1113
|
end
|
1073
1114
|
|
1115
|
+
# Metadata related to the create database operation.
|
1116
|
+
class GoogleFirestoreAdminV1CreateDatabaseMetadata
|
1117
|
+
include Google::Apis::Core::Hashable
|
1118
|
+
|
1119
|
+
def initialize(**args)
|
1120
|
+
update!(**args)
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
# Update properties of this object
|
1124
|
+
def update!(**args)
|
1125
|
+
end
|
1126
|
+
end
|
1127
|
+
|
1074
1128
|
# Represent a recurring schedule that runs at a specific time every day. The
|
1075
1129
|
# time zone is UTC.
|
1076
1130
|
class GoogleFirestoreAdminV1DailyRecurrence
|
@@ -1085,8 +1139,7 @@ module Google
|
|
1085
1139
|
end
|
1086
1140
|
end
|
1087
1141
|
|
1088
|
-
# A Cloud Firestore Database.
|
1089
|
-
# project; this database must have a `database_id` of '(default)'.
|
1142
|
+
# A Cloud Firestore Database.
|
1090
1143
|
class GoogleFirestoreAdminV1Database
|
1091
1144
|
include Google::Apis::Core::Hashable
|
1092
1145
|
|
@@ -1204,6 +1257,19 @@ module Google
|
|
1204
1257
|
end
|
1205
1258
|
end
|
1206
1259
|
|
1260
|
+
# Metadata related to the delete database operation.
|
1261
|
+
class GoogleFirestoreAdminV1DeleteDatabaseMetadata
|
1262
|
+
include Google::Apis::Core::Hashable
|
1263
|
+
|
1264
|
+
def initialize(**args)
|
1265
|
+
update!(**args)
|
1266
|
+
end
|
1267
|
+
|
1268
|
+
# Update properties of this object
|
1269
|
+
def update!(**args)
|
1270
|
+
end
|
1271
|
+
end
|
1272
|
+
|
1207
1273
|
# Metadata for google.longrunning.Operation results from FirestoreAdmin.
|
1208
1274
|
# ExportDocuments.
|
1209
1275
|
class GoogleFirestoreAdminV1ExportDocumentsMetadata
|
@@ -1977,6 +2043,12 @@ module Google
|
|
1977
2043
|
# @return [String]
|
1978
2044
|
attr_accessor :operation_state
|
1979
2045
|
|
2046
|
+
# Describes the progress of the operation. Unit of work is generic and must be
|
2047
|
+
# interpreted based on where Progress is used.
|
2048
|
+
# Corresponds to the JSON property `progressPercentage`
|
2049
|
+
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1Progress]
|
2050
|
+
attr_accessor :progress_percentage
|
2051
|
+
|
1980
2052
|
# The time the restore was started.
|
1981
2053
|
# Corresponds to the JSON property `startTime`
|
1982
2054
|
# @return [String]
|
@@ -1992,6 +2064,7 @@ module Google
|
|
1992
2064
|
@database = args[:database] if args.key?(:database)
|
1993
2065
|
@end_time = args[:end_time] if args.key?(:end_time)
|
1994
2066
|
@operation_state = args[:operation_state] if args.key?(:operation_state)
|
2067
|
+
@progress_percentage = args[:progress_percentage] if args.key?(:progress_percentage)
|
1995
2068
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1996
2069
|
end
|
1997
2070
|
end
|
@@ -2210,13 +2283,13 @@ module Google
|
|
2210
2283
|
# @return [String]
|
2211
2284
|
attr_accessor :name
|
2212
2285
|
|
2213
|
-
# The normal response of the operation
|
2214
|
-
#
|
2215
|
-
#
|
2216
|
-
#
|
2217
|
-
#
|
2218
|
-
#
|
2219
|
-
#
|
2286
|
+
# The normal, successful response of the operation. If the original method
|
2287
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
2288
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
2289
|
+
# response should be the resource. For other methods, the response should have
|
2290
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
2291
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
2292
|
+
# `TakeSnapshotResponse`.
|
2220
2293
|
# Corresponds to the JSON property `response`
|
2221
2294
|
# @return [Hash<String,Object>]
|
2222
2295
|
attr_accessor :response
|
@@ -3104,6 +3177,37 @@ module Google
|
|
3104
3177
|
end
|
3105
3178
|
end
|
3106
3179
|
|
3180
|
+
# Sum of the values of the requested field. * Only numeric values will be
|
3181
|
+
# aggregated. All non-numeric values including `NULL` are skipped. * If the
|
3182
|
+
# aggregated values contain `NaN`, returns `NaN`. Infinity math follows IEEE-754
|
3183
|
+
# standards. * If the aggregated value set is empty, returns 0. * Returns a 64-
|
3184
|
+
# bit integer if all aggregated numbers are integers and the sum result does not
|
3185
|
+
# overflow. Otherwise, the result is returned as a double. Note that even if all
|
3186
|
+
# the aggregated values are integers, the result is returned as a double if it
|
3187
|
+
# cannot fit within a 64-bit signed integer. When this occurs, the returned
|
3188
|
+
# value will lose precision. * When underflow occurs, floating-point aggregation
|
3189
|
+
# is non-deterministic. This means that running the same query repeatedly
|
3190
|
+
# without any changes to the underlying values could produce slightly different
|
3191
|
+
# results each time. In those cases, values should be stored as integers over
|
3192
|
+
# floating-point numbers.
|
3193
|
+
class Sum
|
3194
|
+
include Google::Apis::Core::Hashable
|
3195
|
+
|
3196
|
+
# A reference to a field in a document, ex: `stats.operations`.
|
3197
|
+
# Corresponds to the JSON property `field`
|
3198
|
+
# @return [Google::Apis::FirestoreV1::FieldReference]
|
3199
|
+
attr_accessor :field
|
3200
|
+
|
3201
|
+
def initialize(**args)
|
3202
|
+
update!(**args)
|
3203
|
+
end
|
3204
|
+
|
3205
|
+
# Update properties of this object
|
3206
|
+
def update!(**args)
|
3207
|
+
@field = args[:field] if args.key?(:field)
|
3208
|
+
end
|
3209
|
+
end
|
3210
|
+
|
3107
3211
|
# A specification of a set of documents to listen to.
|
3108
3212
|
class Target
|
3109
3213
|
include Google::Apis::Core::Hashable
|
@@ -3146,7 +3250,17 @@ module Google
|
|
3146
3250
|
attr_accessor :resume_token
|
3147
3251
|
|
3148
3252
|
# The target ID that identifies the target on the stream. Must be a positive
|
3149
|
-
# number and non-zero.
|
3253
|
+
# number and non-zero. If `target_id` is 0 (or unspecified), the server will
|
3254
|
+
# assign an ID for this target and return that in a `TargetChange::ADD` event.
|
3255
|
+
# Once a target with `target_id=0` is added, all subsequent targets must also
|
3256
|
+
# have `target_id=0`. If an `AddTarget` request with `target_id != 0` is sent to
|
3257
|
+
# the server after a target with `target_id=0` is added, the server will
|
3258
|
+
# immediately send a response with a `TargetChange::Remove` event. Note that if
|
3259
|
+
# the client sends multiple `AddTarget` requests without an ID, the order of IDs
|
3260
|
+
# returned in `TargetChage.target_ids` are undefined. Therefore, clients should
|
3261
|
+
# provide a target ID instead of relying on the server to assign one. If `
|
3262
|
+
# target_id` is non-zero, there must not be an existing active target on this
|
3263
|
+
# stream with the same ID.
|
3150
3264
|
# Corresponds to the JSON property `targetId`
|
3151
3265
|
# @return [Fixnum]
|
3152
3266
|
attr_accessor :target_id
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirestoreV1
|
18
18
|
# Version of the google-apis-firestore_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.51.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 = "20230905"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,12 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class Avg
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
43
49
|
class BatchGetDocumentsRequest
|
44
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
51
|
|
@@ -214,6 +220,12 @@ module Google
|
|
214
220
|
include Google::Apis::Core::JsonObjectSupport
|
215
221
|
end
|
216
222
|
|
223
|
+
class GoogleFirestoreAdminV1CreateDatabaseMetadata
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
|
+
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
227
|
+
end
|
228
|
+
|
217
229
|
class GoogleFirestoreAdminV1DailyRecurrence
|
218
230
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
231
|
|
@@ -226,6 +238,12 @@ module Google
|
|
226
238
|
include Google::Apis::Core::JsonObjectSupport
|
227
239
|
end
|
228
240
|
|
241
|
+
class GoogleFirestoreAdminV1DeleteDatabaseMetadata
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
229
247
|
class GoogleFirestoreAdminV1ExportDocumentsMetadata
|
230
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
249
|
|
@@ -550,6 +568,12 @@ module Google
|
|
550
568
|
include Google::Apis::Core::JsonObjectSupport
|
551
569
|
end
|
552
570
|
|
571
|
+
class Sum
|
572
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
573
|
+
|
574
|
+
include Google::Apis::Core::JsonObjectSupport
|
575
|
+
end
|
576
|
+
|
553
577
|
class Target
|
554
578
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
579
|
|
@@ -608,8 +632,12 @@ module Google
|
|
608
632
|
# @private
|
609
633
|
class Representation < Google::Apis::Core::JsonRepresentation
|
610
634
|
property :alias, as: 'alias'
|
635
|
+
property :avg, as: 'avg', class: Google::Apis::FirestoreV1::Avg, decorator: Google::Apis::FirestoreV1::Avg::Representation
|
636
|
+
|
611
637
|
property :count, as: 'count', class: Google::Apis::FirestoreV1::Count, decorator: Google::Apis::FirestoreV1::Count::Representation
|
612
638
|
|
639
|
+
property :sum, as: 'sum', class: Google::Apis::FirestoreV1::Sum, decorator: Google::Apis::FirestoreV1::Sum::Representation
|
640
|
+
|
613
641
|
end
|
614
642
|
end
|
615
643
|
|
@@ -629,6 +657,14 @@ module Google
|
|
629
657
|
end
|
630
658
|
end
|
631
659
|
|
660
|
+
class Avg
|
661
|
+
# @private
|
662
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
663
|
+
property :field, as: 'field', class: Google::Apis::FirestoreV1::FieldReference, decorator: Google::Apis::FirestoreV1::FieldReference::Representation
|
664
|
+
|
665
|
+
end
|
666
|
+
end
|
667
|
+
|
632
668
|
class BatchGetDocumentsRequest
|
633
669
|
# @private
|
634
670
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -909,6 +945,12 @@ module Google
|
|
909
945
|
end
|
910
946
|
end
|
911
947
|
|
948
|
+
class GoogleFirestoreAdminV1CreateDatabaseMetadata
|
949
|
+
# @private
|
950
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
951
|
+
end
|
952
|
+
end
|
953
|
+
|
912
954
|
class GoogleFirestoreAdminV1DailyRecurrence
|
913
955
|
# @private
|
914
956
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -935,6 +977,12 @@ module Google
|
|
935
977
|
end
|
936
978
|
end
|
937
979
|
|
980
|
+
class GoogleFirestoreAdminV1DeleteDatabaseMetadata
|
981
|
+
# @private
|
982
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
983
|
+
end
|
984
|
+
end
|
985
|
+
|
938
986
|
class GoogleFirestoreAdminV1ExportDocumentsMetadata
|
939
987
|
# @private
|
940
988
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1142,6 +1190,8 @@ module Google
|
|
1142
1190
|
property :database, as: 'database'
|
1143
1191
|
property :end_time, as: 'endTime'
|
1144
1192
|
property :operation_state, as: 'operationState'
|
1193
|
+
property :progress_percentage, as: 'progressPercentage', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1Progress, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1Progress::Representation
|
1194
|
+
|
1145
1195
|
property :start_time, as: 'startTime'
|
1146
1196
|
end
|
1147
1197
|
end
|
@@ -1466,6 +1516,14 @@ module Google
|
|
1466
1516
|
end
|
1467
1517
|
end
|
1468
1518
|
|
1519
|
+
class Sum
|
1520
|
+
# @private
|
1521
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1522
|
+
property :field, as: 'field', class: Google::Apis::FirestoreV1::FieldReference, decorator: Google::Apis::FirestoreV1::FieldReference::Representation
|
1523
|
+
|
1524
|
+
end
|
1525
|
+
end
|
1526
|
+
|
1469
1527
|
class Target
|
1470
1528
|
# @private
|
1471
1529
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -302,7 +302,7 @@ module Google
|
|
302
302
|
execute_or_queue_command(command, &block)
|
303
303
|
end
|
304
304
|
|
305
|
-
#
|
305
|
+
# Creates a new database by restoring from an existing backup. The new database
|
306
306
|
# must be in the same cloud region or multi-region location as the existing
|
307
307
|
# backup. This behaves similar to FirestoreAdmin.CreateDatabase except instead
|
308
308
|
# of creating a new empty database, a new database is created with the database
|
@@ -310,9 +310,7 @@ module Google
|
|
310
310
|
# running operation can be used to track the progress of the restore, with the
|
311
311
|
# Operation's metadata field type being the RestoreDatabaseMetadata. The
|
312
312
|
# response type is the Database if the restore was successful. The new database
|
313
|
-
# is not readable or writeable until the LRO has completed.
|
314
|
-
# returned operation will stop the restore and delete the in-progress database,
|
315
|
-
# if the restore is still active.
|
313
|
+
# is not readable or writeable until the LRO has completed.
|
316
314
|
# @param [String] parent
|
317
315
|
# Required. The project to restore the database in. Format is `projects/`
|
318
316
|
# project_id``.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firestore_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.51.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-
|
11
|
+
date: 2023-09-17 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.51.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Firestore API V1
|