google-apis-firestore_v1 0.81.0 → 0.82.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: 53716e8f68240c401028ccd69b7402b1d2d7b477b0ccc5b43dd527a15685daf8
|
4
|
+
data.tar.gz: 0e38006a265f4b18efa94cf063c378184afe83662efab865695968b8597f6953
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69e0cabc2a27abb088365ca855afc3cbb604a31c6d57361c5977228dc3ceeb7f1519310a107c56587a29a5aac56794bb312276dd4ba48053035f78d36bf8aad0
|
7
|
+
data.tar.gz: 937706e2807fe88bf6bbd1cd9b37d231e3631720f8457bbac629f60553eb04f9f03c8b968c2f4444f2f5b5bb1946ff42446d35de1fcf5b6890ce97e3d408bc4a
|
data/CHANGELOG.md
CHANGED
@@ -1646,6 +1646,13 @@ module Google
|
|
1646
1646
|
# @return [String]
|
1647
1647
|
attr_accessor :etag
|
1648
1648
|
|
1649
|
+
# Optional. The Firestore API data access mode to use for this database. If not
|
1650
|
+
# set on write: - the default value is DATA_ACCESS_MODE_DISABLED for Enterprise
|
1651
|
+
# Edition. - the default value is DATA_ACCESS_MODE_ENABLED for Standard Edition.
|
1652
|
+
# Corresponds to the JSON property `firestoreDataAccessMode`
|
1653
|
+
# @return [String]
|
1654
|
+
attr_accessor :firestore_data_access_mode
|
1655
|
+
|
1649
1656
|
# Output only. Background: Free tier is the ability of a Firestore database to
|
1650
1657
|
# use a small amount of resources every day without being charged. Once usage
|
1651
1658
|
# exceeds the free tier limit further usage is charged. Whether this database
|
@@ -1674,6 +1681,14 @@ module Google
|
|
1674
1681
|
# @return [String]
|
1675
1682
|
attr_accessor :location_id
|
1676
1683
|
|
1684
|
+
# Optional. The MongoDB compatible API data access mode to use for this database.
|
1685
|
+
# If not set on write, the default value is DATA_ACCESS_MODE_ENABLED for
|
1686
|
+
# Enterprise Edition. The value is always DATA_ACCESS_MODE_DISABLED for Standard
|
1687
|
+
# Edition.
|
1688
|
+
# Corresponds to the JSON property `mongodbCompatibleDataAccessMode`
|
1689
|
+
# @return [String]
|
1690
|
+
attr_accessor :mongodb_compatible_data_access_mode
|
1691
|
+
|
1677
1692
|
# The resource name of the Database. Format: `projects/`project`/databases/`
|
1678
1693
|
# database``
|
1679
1694
|
# Corresponds to the JSON property `name`
|
@@ -1691,6 +1706,11 @@ module Google
|
|
1691
1706
|
# @return [String]
|
1692
1707
|
attr_accessor :previous_id
|
1693
1708
|
|
1709
|
+
# Immutable. The default Realtime Updates mode to use for this database.
|
1710
|
+
# Corresponds to the JSON property `realtimeUpdatesMode`
|
1711
|
+
# @return [String]
|
1712
|
+
attr_accessor :realtime_updates_mode
|
1713
|
+
|
1694
1714
|
# Information about the provenance of this database.
|
1695
1715
|
# Corresponds to the JSON property `sourceInfo`
|
1696
1716
|
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SourceInfo]
|
@@ -1745,12 +1765,15 @@ module Google
|
|
1745
1765
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1746
1766
|
@earliest_version_time = args[:earliest_version_time] if args.key?(:earliest_version_time)
|
1747
1767
|
@etag = args[:etag] if args.key?(:etag)
|
1768
|
+
@firestore_data_access_mode = args[:firestore_data_access_mode] if args.key?(:firestore_data_access_mode)
|
1748
1769
|
@free_tier = args[:free_tier] if args.key?(:free_tier)
|
1749
1770
|
@key_prefix = args[:key_prefix] if args.key?(:key_prefix)
|
1750
1771
|
@location_id = args[:location_id] if args.key?(:location_id)
|
1772
|
+
@mongodb_compatible_data_access_mode = args[:mongodb_compatible_data_access_mode] if args.key?(:mongodb_compatible_data_access_mode)
|
1751
1773
|
@name = args[:name] if args.key?(:name)
|
1752
1774
|
@point_in_time_recovery_enablement = args[:point_in_time_recovery_enablement] if args.key?(:point_in_time_recovery_enablement)
|
1753
1775
|
@previous_id = args[:previous_id] if args.key?(:previous_id)
|
1776
|
+
@realtime_updates_mode = args[:realtime_updates_mode] if args.key?(:realtime_updates_mode)
|
1754
1777
|
@source_info = args[:source_info] if args.key?(:source_info)
|
1755
1778
|
@tags = args[:tags] if args.key?(:tags)
|
1756
1779
|
@type = args[:type] if args.key?(:type)
|
@@ -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.82.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250918"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1233,12 +1233,15 @@ module Google
|
|
1233
1233
|
property :delete_time, as: 'deleteTime'
|
1234
1234
|
property :earliest_version_time, as: 'earliestVersionTime'
|
1235
1235
|
property :etag, as: 'etag'
|
1236
|
+
property :firestore_data_access_mode, as: 'firestoreDataAccessMode'
|
1236
1237
|
property :free_tier, as: 'freeTier'
|
1237
1238
|
property :key_prefix, as: 'keyPrefix'
|
1238
1239
|
property :location_id, as: 'locationId'
|
1240
|
+
property :mongodb_compatible_data_access_mode, as: 'mongodbCompatibleDataAccessMode'
|
1239
1241
|
property :name, as: 'name'
|
1240
1242
|
property :point_in_time_recovery_enablement, as: 'pointInTimeRecoveryEnablement'
|
1241
1243
|
property :previous_id, as: 'previousId'
|
1244
|
+
property :realtime_updates_mode, as: 'realtimeUpdatesMode'
|
1242
1245
|
property :source_info, as: 'sourceInfo', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SourceInfo, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SourceInfo::Representation
|
1243
1246
|
|
1244
1247
|
hash :tags, as: 'tags'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.82.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.82.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|