google-apis-firestore_v1 0.47.0 → 0.48.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: 419c78e6cce08b859958b4cad6c6339bd6459fd63a6e01a718076fe98374316e
|
4
|
+
data.tar.gz: 18b5167a2b0543622a04bb6d01572912230066b50eaf4a2cd2994670bafe7478
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff6c6c13d860fa1d5fac69411a5dea33fcaf0ef2f1dc9967aa09f575e23ab5e9427086d694dc0dc647b9e75f8409c6e35342491c4d9c03c2ed721e2e0deb97c7
|
7
|
+
data.tar.gz: 4848dd8c03cc156e179c05221df441931d0057e6d60601cb461bbcceeb9114326520486158c6ad3077109a80ab04bc751cea8658f6deac892f8a1918121c9fe7
|
data/CHANGELOG.md
CHANGED
@@ -122,8 +122,9 @@ module Google
|
|
122
122
|
# @return [Google::Apis::FirestoreV1::TransactionOptions]
|
123
123
|
attr_accessor :new_transaction
|
124
124
|
|
125
|
-
# Reads documents as they were at the given time. This
|
126
|
-
#
|
125
|
+
# Reads documents as they were at the given time. This must be a microsecond
|
126
|
+
# precision timestamp within the past one hour, or if Point-in-Time Recovery is
|
127
|
+
# enabled, can additionally be a whole minute timestamp within the past 7 days.
|
127
128
|
# Corresponds to the JSON property `readTime`
|
128
129
|
# @return [String]
|
129
130
|
attr_accessor :read_time
|
@@ -1246,6 +1247,13 @@ module Google
|
|
1246
1247
|
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1Progress]
|
1247
1248
|
attr_accessor :progress_documents
|
1248
1249
|
|
1250
|
+
# The timestamp that corresponds to the version of the database that is being
|
1251
|
+
# exported. If unspecified, there are no guarantees about the consistency of the
|
1252
|
+
# documents being exported.
|
1253
|
+
# Corresponds to the JSON property `snapshotTime`
|
1254
|
+
# @return [String]
|
1255
|
+
attr_accessor :snapshot_time
|
1256
|
+
|
1249
1257
|
# The time this operation started.
|
1250
1258
|
# Corresponds to the JSON property `startTime`
|
1251
1259
|
# @return [String]
|
@@ -1264,6 +1272,7 @@ module Google
|
|
1264
1272
|
@output_uri_prefix = args[:output_uri_prefix] if args.key?(:output_uri_prefix)
|
1265
1273
|
@progress_bytes = args[:progress_bytes] if args.key?(:progress_bytes)
|
1266
1274
|
@progress_documents = args[:progress_documents] if args.key?(:progress_documents)
|
1275
|
+
@snapshot_time = args[:snapshot_time] if args.key?(:snapshot_time)
|
1267
1276
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1268
1277
|
end
|
1269
1278
|
end
|
@@ -2268,8 +2277,9 @@ module Google
|
|
2268
2277
|
# @return [String]
|
2269
2278
|
attr_accessor :page_token
|
2270
2279
|
|
2271
|
-
# Reads documents as they were at the given time. This
|
2272
|
-
#
|
2280
|
+
# Reads documents as they were at the given time. This must be a microsecond
|
2281
|
+
# precision timestamp within the past one hour, or if Point-in-Time Recovery is
|
2282
|
+
# enabled, can additionally be a whole minute timestamp within the past 7 days.
|
2273
2283
|
# Corresponds to the JSON property `readTime`
|
2274
2284
|
# @return [String]
|
2275
2285
|
attr_accessor :read_time
|
@@ -2576,8 +2586,9 @@ module Google
|
|
2576
2586
|
# @return [Fixnum]
|
2577
2587
|
attr_accessor :partition_count
|
2578
2588
|
|
2579
|
-
# Reads documents as they were at the given time. This
|
2580
|
-
#
|
2589
|
+
# Reads documents as they were at the given time. This must be a microsecond
|
2590
|
+
# precision timestamp within the past one hour, or if Point-in-Time Recovery is
|
2591
|
+
# enabled, can additionally be a whole minute timestamp within the past 7 days.
|
2581
2592
|
# Corresponds to the JSON property `readTime`
|
2582
2593
|
# @return [String]
|
2583
2594
|
attr_accessor :read_time
|
@@ -2717,7 +2728,9 @@ module Google
|
|
2717
2728
|
class ReadOnly
|
2718
2729
|
include Google::Apis::Core::Hashable
|
2719
2730
|
|
2720
|
-
# Reads documents at the given time. This
|
2731
|
+
# Reads documents at the given time. This must be a microsecond precision
|
2732
|
+
# timestamp within the past one hour, or if Point-in-Time Recovery is enabled,
|
2733
|
+
# can additionally be a whole minute timestamp within the past 7 days.
|
2721
2734
|
# Corresponds to the JSON property `readTime`
|
2722
2735
|
# @return [String]
|
2723
2736
|
attr_accessor :read_time
|
@@ -2783,8 +2796,9 @@ module Google
|
|
2783
2796
|
# @return [Google::Apis::FirestoreV1::TransactionOptions]
|
2784
2797
|
attr_accessor :new_transaction
|
2785
2798
|
|
2786
|
-
# Executes the query at the given timestamp.
|
2787
|
-
#
|
2799
|
+
# Executes the query at the given timestamp. This must be a microsecond
|
2800
|
+
# precision timestamp within the past one hour, or if Point-in-Time Recovery is
|
2801
|
+
# enabled, can additionally be a whole minute timestamp within the past 7 days.
|
2788
2802
|
# Corresponds to the JSON property `readTime`
|
2789
2803
|
# @return [String]
|
2790
2804
|
attr_accessor :read_time
|
@@ -2862,8 +2876,9 @@ module Google
|
|
2862
2876
|
# @return [Google::Apis::FirestoreV1::TransactionOptions]
|
2863
2877
|
attr_accessor :new_transaction
|
2864
2878
|
|
2865
|
-
# Reads documents as they were at the given time. This
|
2866
|
-
#
|
2879
|
+
# Reads documents as they were at the given time. This must be a microsecond
|
2880
|
+
# precision timestamp within the past one hour, or if Point-in-Time Recovery is
|
2881
|
+
# enabled, can additionally be a whole minute timestamp within the past 7 days.
|
2867
2882
|
# Corresponds to the JSON property `readTime`
|
2868
2883
|
# @return [String]
|
2869
2884
|
attr_accessor :read_time
|
@@ -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.48.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 = "20230716"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -947,6 +947,7 @@ module Google
|
|
947
947
|
|
948
948
|
property :progress_documents, as: 'progressDocuments', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1Progress, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1Progress::Representation
|
949
949
|
|
950
|
+
property :snapshot_time, as: 'snapshotTime'
|
950
951
|
property :start_time, as: 'startTime'
|
951
952
|
end
|
952
953
|
end
|
@@ -1025,8 +1025,10 @@ module Google
|
|
1025
1025
|
# The list of field paths in the mask. See Document.fields for a field path
|
1026
1026
|
# syntax reference.
|
1027
1027
|
# @param [String] read_time
|
1028
|
-
# Reads the version of the document at the given time. This
|
1029
|
-
#
|
1028
|
+
# Reads the version of the document at the given time. This must be a
|
1029
|
+
# microsecond precision timestamp within the past one hour, or if Point-in-Time
|
1030
|
+
# Recovery is enabled, can additionally be a whole minute timestamp within the
|
1031
|
+
# past 7 days.
|
1030
1032
|
# @param [String] transaction
|
1031
1033
|
# Reads the document in a transaction.
|
1032
1034
|
# @param [String] fields
|
@@ -1087,7 +1089,9 @@ module Google
|
|
1087
1089
|
# parameters (with the exception of `page_size`) must match the values set in
|
1088
1090
|
# the request that generated the page token.
|
1089
1091
|
# @param [String] read_time
|
1090
|
-
# Perform the read at the provided time. This
|
1092
|
+
# Perform the read at the provided time. This must be a microsecond precision
|
1093
|
+
# timestamp within the past one hour, or if Point-in-Time Recovery is enabled,
|
1094
|
+
# can additionally be a whole minute timestamp within the past 7 days.
|
1091
1095
|
# @param [Boolean] show_missing
|
1092
1096
|
# If the list should show missing documents. A document is missing if it does
|
1093
1097
|
# not exist, but there are sub-documents nested underneath it. When true, such
|
@@ -1194,7 +1198,9 @@ module Google
|
|
1194
1198
|
# parameters (with the exception of `page_size`) must match the values set in
|
1195
1199
|
# the request that generated the page token.
|
1196
1200
|
# @param [String] read_time
|
1197
|
-
# Perform the read at the provided time. This
|
1201
|
+
# Perform the read at the provided time. This must be a microsecond precision
|
1202
|
+
# timestamp within the past one hour, or if Point-in-Time Recovery is enabled,
|
1203
|
+
# can additionally be a whole minute timestamp within the past 7 days.
|
1198
1204
|
# @param [Boolean] show_missing
|
1199
1205
|
# If the list should show missing documents. A document is missing if it does
|
1200
1206
|
# not exist, but there are sub-documents nested underneath it. When true, such
|
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.48.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-07-
|
11
|
+
date: 2023-07-23 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.48.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: []
|