google-apis-firestore_v1 0.81.0 → 0.83.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: 1093811b044c3294360a3f7af1193acacdaddb66ae16961a194df9124b9d875f
|
|
4
|
+
data.tar.gz: 0fc4b37443f343020decabb2ce14b632a7585f3b03a66848b35bc3e980939934
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ccc5998a45f1e6ba7d7e6d9ed244b3a896fba94d05723cdf19c95d6caba3bd90158139a84abf16749d8ace32cfb6628e8cef6cf8f29da3e54175e59c0b9d707
|
|
7
|
+
data.tar.gz: 5e6cfd041213eee01739aa164ee2fe618879030a191dfb19428825591bf28ef9452c32129ab35ddd01d4995536ec318a432ac8427ec9c8ac29a0a01a5225702f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-firestore_v1
|
|
2
2
|
|
|
3
|
+
### v0.83.0 (2025-10-12)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251001
|
|
6
|
+
|
|
7
|
+
### v0.82.0 (2025-09-28)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250918
|
|
10
|
+
|
|
3
11
|
### v0.81.0 (2025-09-21)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250908
|
|
@@ -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)
|
|
@@ -3099,6 +3122,13 @@ module Google
|
|
|
3099
3122
|
# @return [Array<Google::Apis::FirestoreV1::GoogleLongrunningOperation>]
|
|
3100
3123
|
attr_accessor :operations
|
|
3101
3124
|
|
|
3125
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
3126
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
3127
|
+
# when attempting to list all resources across all supported locations.
|
|
3128
|
+
# Corresponds to the JSON property `unreachable`
|
|
3129
|
+
# @return [Array<String>]
|
|
3130
|
+
attr_accessor :unreachable
|
|
3131
|
+
|
|
3102
3132
|
def initialize(**args)
|
|
3103
3133
|
update!(**args)
|
|
3104
3134
|
end
|
|
@@ -3107,6 +3137,7 @@ module Google
|
|
|
3107
3137
|
def update!(**args)
|
|
3108
3138
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
3109
3139
|
@operations = args[:operations] if args.key?(:operations)
|
|
3140
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
3110
3141
|
end
|
|
3111
3142
|
end
|
|
3112
3143
|
|
|
@@ -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.83.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 = "20251001"
|
|
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'
|
|
@@ -1637,6 +1640,7 @@ module Google
|
|
|
1637
1640
|
property :next_page_token, as: 'nextPageToken'
|
|
1638
1641
|
collection :operations, as: 'operations', class: Google::Apis::FirestoreV1::GoogleLongrunningOperation, decorator: Google::Apis::FirestoreV1::GoogleLongrunningOperation::Representation
|
|
1639
1642
|
|
|
1643
|
+
collection :unreachable, as: 'unreachable'
|
|
1640
1644
|
end
|
|
1641
1645
|
end
|
|
1642
1646
|
|
|
@@ -1710,6 +1710,13 @@ module Google
|
|
|
1710
1710
|
# The standard list page size.
|
|
1711
1711
|
# @param [String] page_token
|
|
1712
1712
|
# The standard list page token.
|
|
1713
|
+
# @param [Boolean] return_partial_success
|
|
1714
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1715
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
1716
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
1717
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
1718
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
1719
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
1713
1720
|
# @param [String] fields
|
|
1714
1721
|
# Selector specifying which fields to include in a partial response.
|
|
1715
1722
|
# @param [String] quota_user
|
|
@@ -1727,7 +1734,7 @@ module Google
|
|
|
1727
1734
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1728
1735
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1729
1736
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1730
|
-
def list_project_database_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1737
|
+
def list_project_database_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1731
1738
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
1732
1739
|
command.response_representation = Google::Apis::FirestoreV1::GoogleLongrunningListOperationsResponse::Representation
|
|
1733
1740
|
command.response_class = Google::Apis::FirestoreV1::GoogleLongrunningListOperationsResponse
|
|
@@ -1735,6 +1742,7 @@ module Google
|
|
|
1735
1742
|
command.query['filter'] = filter unless filter.nil?
|
|
1736
1743
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1737
1744
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1745
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
1738
1746
|
command.query['fields'] = fields unless fields.nil?
|
|
1739
1747
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1740
1748
|
execute_or_queue_command(command, &block)
|
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.83.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.83.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:
|