Skip to content

Commit efa1353

Browse files
feat: Automated regeneration of firestore v1 client (#24405)
Auto-created at 2025-09-28 09:41:12 +0000 using the toys pull request generator.
1 parent c29e7a7 commit efa1353

File tree

5 files changed

+35
-2
lines changed

5 files changed

+35
-2
lines changed

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252033,12 +252033,15 @@
252033252033
"/firestore:v1/GoogleFirestoreAdminV1Database/deleteTime": delete_time
252034252034
"/firestore:v1/GoogleFirestoreAdminV1Database/earliestVersionTime": earliest_version_time
252035252035
"/firestore:v1/GoogleFirestoreAdminV1Database/etag": etag
252036+
"/firestore:v1/GoogleFirestoreAdminV1Database/firestoreDataAccessMode": firestore_data_access_mode
252036252037
"/firestore:v1/GoogleFirestoreAdminV1Database/freeTier": free_tier
252037252038
"/firestore:v1/GoogleFirestoreAdminV1Database/keyPrefix": key_prefix
252038252039
"/firestore:v1/GoogleFirestoreAdminV1Database/locationId": location_id
252040+
"/firestore:v1/GoogleFirestoreAdminV1Database/mongodbCompatibleDataAccessMode": mongodb_compatible_data_access_mode
252039252041
"/firestore:v1/GoogleFirestoreAdminV1Database/name": name
252040252042
"/firestore:v1/GoogleFirestoreAdminV1Database/pointInTimeRecoveryEnablement": point_in_time_recovery_enablement
252041252043
"/firestore:v1/GoogleFirestoreAdminV1Database/previousId": previous_id
252044+
"/firestore:v1/GoogleFirestoreAdminV1Database/realtimeUpdatesMode": realtime_updates_mode
252042252045
"/firestore:v1/GoogleFirestoreAdminV1Database/sourceInfo": source_info
252043252046
"/firestore:v1/GoogleFirestoreAdminV1Database/tags": tags
252044252047
"/firestore:v1/GoogleFirestoreAdminV1Database/tags/tag": tag

generated/google-apis-firestore_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-firestore_v1
22

3+
### v0.82.0 (2025-09-28)
4+
5+
* Regenerated from discovery document revision 20250918
6+
37
### v0.81.0 (2025-09-21)
48

59
* Regenerated from discovery document revision 20250908

generated/google-apis-firestore_v1/lib/google/apis/firestore_v1/classes.rb

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1646,6 +1646,13 @@ class GoogleFirestoreAdminV1Database
16461646
# @return [String]
16471647
attr_accessor :etag
16481648

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+
16491656
# Output only. Background: Free tier is the ability of a Firestore database to
16501657
# use a small amount of resources every day without being charged. Once usage
16511658
# exceeds the free tier limit further usage is charged. Whether this database
@@ -1674,6 +1681,14 @@ class GoogleFirestoreAdminV1Database
16741681
# @return [String]
16751682
attr_accessor :location_id
16761683

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+
16771692
# The resource name of the Database. Format: `projects/`project`/databases/`
16781693
# database``
16791694
# Corresponds to the JSON property `name`
@@ -1691,6 +1706,11 @@ class GoogleFirestoreAdminV1Database
16911706
# @return [String]
16921707
attr_accessor :previous_id
16931708

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+
16941714
# Information about the provenance of this database.
16951715
# Corresponds to the JSON property `sourceInfo`
16961716
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SourceInfo]
@@ -1745,12 +1765,15 @@ def update!(**args)
17451765
@delete_time = args[:delete_time] if args.key?(:delete_time)
17461766
@earliest_version_time = args[:earliest_version_time] if args.key?(:earliest_version_time)
17471767
@etag = args[:etag] if args.key?(:etag)
1768+
@firestore_data_access_mode = args[:firestore_data_access_mode] if args.key?(:firestore_data_access_mode)
17481769
@free_tier = args[:free_tier] if args.key?(:free_tier)
17491770
@key_prefix = args[:key_prefix] if args.key?(:key_prefix)
17501771
@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)
17511773
@name = args[:name] if args.key?(:name)
17521774
@point_in_time_recovery_enablement = args[:point_in_time_recovery_enablement] if args.key?(:point_in_time_recovery_enablement)
17531775
@previous_id = args[:previous_id] if args.key?(:previous_id)
1776+
@realtime_updates_mode = args[:realtime_updates_mode] if args.key?(:realtime_updates_mode)
17541777
@source_info = args[:source_info] if args.key?(:source_info)
17551778
@tags = args[:tags] if args.key?(:tags)
17561779
@type = args[:type] if args.key?(:type)

generated/google-apis-firestore_v1/lib/google/apis/firestore_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module FirestoreV1
1818
# Version of the google-apis-firestore_v1 gem
19-
GEM_VERSION = "0.81.0"
19+
GEM_VERSION = "0.82.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250908"
25+
REVISION = "20250918"
2626
end
2727
end
2828
end

generated/google-apis-firestore_v1/lib/google/apis/firestore_v1/representations.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1233,12 +1233,15 @@ class Representation < Google::Apis::Core::JsonRepresentation
12331233
property :delete_time, as: 'deleteTime'
12341234
property :earliest_version_time, as: 'earliestVersionTime'
12351235
property :etag, as: 'etag'
1236+
property :firestore_data_access_mode, as: 'firestoreDataAccessMode'
12361237
property :free_tier, as: 'freeTier'
12371238
property :key_prefix, as: 'keyPrefix'
12381239
property :location_id, as: 'locationId'
1240+
property :mongodb_compatible_data_access_mode, as: 'mongodbCompatibleDataAccessMode'
12391241
property :name, as: 'name'
12401242
property :point_in_time_recovery_enablement, as: 'pointInTimeRecoveryEnablement'
12411243
property :previous_id, as: 'previousId'
1244+
property :realtime_updates_mode, as: 'realtimeUpdatesMode'
12421245
property :source_info, as: 'sourceInfo', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SourceInfo, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SourceInfo::Representation
12431246

12441247
hash :tags, as: 'tags'

0 commit comments

Comments
 (0)