google-apis-firestore_v1beta1 0.27.0 → 0.29.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: fc4c4e013da5c7cb5cf24776f3ee291edf189ec082b06172992d521fcafc9b52
|
4
|
+
data.tar.gz: 19b39132dc9f4a0665771bc21e3718359bb9f25833478d25eda8de0e05074333
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f9393db1a195b540e333a45ee45aa3904ff2e127871a12a815e6b554603da23f801623763920f4d04fa0a720f530f2c9138087563cca52dc3a0daebce6df3ed
|
7
|
+
data.tar.gz: d73708c8cb653c9aa54938b4bb688c796b43332c65b11e77386a52cd9df6af49b49e78b486e820e54e390eaae93c8116ae2f5d08ef03212b623d801dd7e8dbdc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firestore_v1beta1
|
2
2
|
|
3
|
+
### v0.29.0 (2023-07-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230621
|
6
|
+
|
7
|
+
### v0.28.0 (2023-06-18)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230611
|
10
|
+
|
3
11
|
### v0.27.0 (2023-05-14)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230508
|
@@ -779,7 +779,8 @@ module Google
|
|
779
779
|
|
780
780
|
# The total count of documents that match target_id. If different from the count
|
781
781
|
# of documents in the client that match, the client must manually determine
|
782
|
-
# which documents no longer match the target.
|
782
|
+
# which documents no longer match the target. The client can use the `
|
783
|
+
# unchanged_names` bloom filter to assist with this determination.
|
783
784
|
# Corresponds to the JSON property `count`
|
784
785
|
# @return [Fixnum]
|
785
786
|
attr_accessor :count
|
@@ -950,6 +951,49 @@ module Google
|
|
950
951
|
end
|
951
952
|
end
|
952
953
|
|
954
|
+
# Metadata for the long-running operation from the RestoreDatabase request.
|
955
|
+
class GoogleFirestoreAdminV1RestoreDatabaseMetadata
|
956
|
+
include Google::Apis::Core::Hashable
|
957
|
+
|
958
|
+
# The name of the backup restoring from.
|
959
|
+
# Corresponds to the JSON property `backup`
|
960
|
+
# @return [String]
|
961
|
+
attr_accessor :backup
|
962
|
+
|
963
|
+
# The name of the database being restored to.
|
964
|
+
# Corresponds to the JSON property `database`
|
965
|
+
# @return [String]
|
966
|
+
attr_accessor :database
|
967
|
+
|
968
|
+
# The time the restore finished, unset for ongoing restores.
|
969
|
+
# Corresponds to the JSON property `endTime`
|
970
|
+
# @return [String]
|
971
|
+
attr_accessor :end_time
|
972
|
+
|
973
|
+
# The operation state of the restore.
|
974
|
+
# Corresponds to the JSON property `operationState`
|
975
|
+
# @return [String]
|
976
|
+
attr_accessor :operation_state
|
977
|
+
|
978
|
+
# The time the restore was started.
|
979
|
+
# Corresponds to the JSON property `startTime`
|
980
|
+
# @return [String]
|
981
|
+
attr_accessor :start_time
|
982
|
+
|
983
|
+
def initialize(**args)
|
984
|
+
update!(**args)
|
985
|
+
end
|
986
|
+
|
987
|
+
# Update properties of this object
|
988
|
+
def update!(**args)
|
989
|
+
@backup = args[:backup] if args.key?(:backup)
|
990
|
+
@database = args[:database] if args.key?(:database)
|
991
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
992
|
+
@operation_state = args[:operation_state] if args.key?(:operation_state)
|
993
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
994
|
+
end
|
995
|
+
end
|
996
|
+
|
953
997
|
# Metadata related to the update database operation.
|
954
998
|
class GoogleFirestoreAdminV1UpdateDatabaseMetadata
|
955
999
|
include Google::Apis::Core::Hashable
|
@@ -1837,6 +1881,8 @@ module Google
|
|
1837
1881
|
end
|
1838
1882
|
|
1839
1883
|
# Options for a transaction that can be used to read and write documents.
|
1884
|
+
# Firestore does not allow 3rd party auth requests to create read-write.
|
1885
|
+
# transactions.
|
1840
1886
|
class ReadWrite
|
1841
1887
|
include Google::Apis::Core::Hashable
|
1842
1888
|
|
@@ -2321,6 +2367,8 @@ module Google
|
|
2321
2367
|
attr_accessor :read_only
|
2322
2368
|
|
2323
2369
|
# Options for a transaction that can be used to read and write documents.
|
2370
|
+
# Firestore does not allow 3rd party auth requests to create read-write.
|
2371
|
+
# transactions.
|
2324
2372
|
# Corresponds to the JSON property `readWrite`
|
2325
2373
|
# @return [Google::Apis::FirestoreV1beta1::ReadWrite]
|
2326
2374
|
attr_accessor :read_write
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirestoreV1beta1
|
18
18
|
# Version of the google-apis-firestore_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.29.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
|
@@ -202,6 +202,12 @@ module Google
|
|
202
202
|
include Google::Apis::Core::JsonObjectSupport
|
203
203
|
end
|
204
204
|
|
205
|
+
class GoogleFirestoreAdminV1RestoreDatabaseMetadata
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
205
211
|
class GoogleFirestoreAdminV1UpdateDatabaseMetadata
|
206
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
213
|
|
@@ -749,6 +755,17 @@ module Google
|
|
749
755
|
end
|
750
756
|
end
|
751
757
|
|
758
|
+
class GoogleFirestoreAdminV1RestoreDatabaseMetadata
|
759
|
+
# @private
|
760
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
761
|
+
property :backup, as: 'backup'
|
762
|
+
property :database, as: 'database'
|
763
|
+
property :end_time, as: 'endTime'
|
764
|
+
property :operation_state, as: 'operationState'
|
765
|
+
property :start_time, as: 'startTime'
|
766
|
+
end
|
767
|
+
end
|
768
|
+
|
752
769
|
class GoogleFirestoreAdminV1UpdateDatabaseMetadata
|
753
770
|
# @private
|
754
771
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firestore_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.29.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-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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.29.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|