Skip to content

Commit 28cc6f2

Browse files
feat: Expose the Database.firestore_data_access_mode parameter (#32415)
feat: Expose the `Database.mongodb_compatible_data_access_mode` parameter feat: Expose the `Database.realtime_updates_mode` parameter feat: Expose the `Index.unique` parameter docs: Update documentation on several parameters, especially when relating to the new `enterprise` database edition PiperOrigin-RevId: 865444806 Source-Link: googleapis/googleapis@760ef85 Source-Link: googleapis/googleapis-gen@49f01fb Copy-Tag: eyJwIjoiZ29vZ2xlLWNsb3VkLWZpcmVzdG9yZS1hZG1pbi12MS8uT3dsQm90LnlhbWwiLCJoIjoiNDlmMDFmYjdjZjIxZDdhNzU4ZTNlMDNkZjk2NDlhNTJkYjgxZjVkOCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent fbd770b commit 28cc6f2

11 files changed

Lines changed: 223 additions & 44 deletions

File tree

google-cloud-firestore-admin-v1/.owlbot-manifest.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"lib/google/firestore/admin/v1/index_pb.rb",
3535
"lib/google/firestore/admin/v1/location_pb.rb",
3636
"lib/google/firestore/admin/v1/operation_pb.rb",
37+
"lib/google/firestore/admin/v1/realtime_updates_pb.rb",
3738
"lib/google/firestore/admin/v1/schedule_pb.rb",
3839
"lib/google/firestore/admin/v1/snapshot_pb.rb",
3940
"lib/google/firestore/admin/v1/user_creds_pb.rb",
@@ -50,6 +51,7 @@
5051
"proto_docs/google/firestore/admin/v1/index.rb",
5152
"proto_docs/google/firestore/admin/v1/location.rb",
5253
"proto_docs/google/firestore/admin/v1/operation.rb",
54+
"proto_docs/google/firestore/admin/v1/realtime_updates.rb",
5355
"proto_docs/google/firestore/admin/v1/schedule.rb",
5456
"proto_docs/google/firestore/admin/v1/snapshot.rb",
5557
"proto_docs/google/firestore/admin/v1/user_creds.rb",

google-cloud-firestore-admin-v1/lib/google/cloud/firestore/admin/v1/firestore_admin/client.rb

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -999,8 +999,8 @@ def list_fields request, options = nil
999999
# Required. Database to export. Should be of the form:
10001000
# `projects/{project_id}/databases/{database_id}`.
10011001
# @param collection_ids [::Array<::String>]
1002-
# Which collection IDs to export. Unspecified means all collections. Each
1003-
# collection ID in this list must be unique.
1002+
# IDs of the collection groups to export. Unspecified means all
1003+
# collection groups. Each collection group in this list must be unique.
10041004
# @param output_uri_prefix [::String]
10051005
# The output URI. Currently only supports Google Cloud Storage URIs of the
10061006
# form: `gs://BUCKET_NAME[/NAMESPACE_PATH]`, where `BUCKET_NAME` is the name
@@ -1125,8 +1125,9 @@ def export_documents request, options = nil
11251125
# Required. Database to import into. Should be of the form:
11261126
# `projects/{project_id}/databases/{database_id}`.
11271127
# @param collection_ids [::Array<::String>]
1128-
# Which collection IDs to import. Unspecified means all collections included
1129-
# in the import. Each collection ID in this list must be unique.
1128+
# IDs of the collection groups to import. Unspecified means all collection
1129+
# groups that were included in the export. Each collection group in this list
1130+
# must be unique.
11301131
# @param input_uri_prefix [::String]
11311132
# Location of the exported files.
11321133
# This must match the output_uri_prefix of an ExportDocumentsResponse from
@@ -1363,7 +1364,7 @@ def bulk_delete_documents request, options = nil
13631364
# with first character a letter and the last a letter or a number. Must not
13641365
# be UUID-like /[0-9a-f]\\{8}(-[0-9a-f]\\{4})\\{3}-[0-9a-f]\\{12}/.
13651366
#
1366-
# "(default)" database ID is also valid.
1367+
# "(default)" database ID is also valid if the database is Standard edition.
13671368
#
13681369
# @yield [response, operation] Access the result along with the RPC operation
13691370
# @yieldparam response [::Gapic::Operation]
@@ -2743,7 +2744,7 @@ def delete_backup request, options = nil
27432744
# with first character a letter and the last a letter or a number. Must not
27442745
# be UUID-like /[0-9a-f]\\{8}(-[0-9a-f]\\{4})\\{3}-[0-9a-f]\\{12}/.
27452746
#
2746-
# "(default)" database ID is also valid.
2747+
# "(default)" database ID is also valid if the database is Standard edition.
27472748
# @param backup [::String]
27482749
# Required. Backup to restore from. Must be from the same project as the
27492750
# parent.
@@ -3324,7 +3325,7 @@ def delete_backup_schedule request, options = nil
33243325
# with first character a letter and the last a letter or a number. Must not
33253326
# be UUID-like /[0-9a-f]\\{8}(-[0-9a-f]\\{4})\\{3}-[0-9a-f]\\{12}/.
33263327
#
3327-
# "(default)" database ID is also valid.
3328+
# "(default)" database ID is also valid if the database is Standard edition.
33283329
# @param pitr_snapshot [::Google::Cloud::Firestore::Admin::V1::PitrSnapshot, ::Hash]
33293330
# Required. Specification of the PITR data to clone from. The source database
33303331
# must exist.

google-cloud-firestore-admin-v1/lib/google/cloud/firestore/admin/v1/firestore_admin/rest/client.rb

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -943,8 +943,8 @@ def list_fields request, options = nil
943943
# Required. Database to export. Should be of the form:
944944
# `projects/{project_id}/databases/{database_id}`.
945945
# @param collection_ids [::Array<::String>]
946-
# Which collection IDs to export. Unspecified means all collections. Each
947-
# collection ID in this list must be unique.
946+
# IDs of the collection groups to export. Unspecified means all
947+
# collection groups. Each collection group in this list must be unique.
948948
# @param output_uri_prefix [::String]
949949
# The output URI. Currently only supports Google Cloud Storage URIs of the
950950
# form: `gs://BUCKET_NAME[/NAMESPACE_PATH]`, where `BUCKET_NAME` is the name
@@ -1062,8 +1062,9 @@ def export_documents request, options = nil
10621062
# Required. Database to import into. Should be of the form:
10631063
# `projects/{project_id}/databases/{database_id}`.
10641064
# @param collection_ids [::Array<::String>]
1065-
# Which collection IDs to import. Unspecified means all collections included
1066-
# in the import. Each collection ID in this list must be unique.
1065+
# IDs of the collection groups to import. Unspecified means all collection
1066+
# groups that were included in the export. Each collection group in this list
1067+
# must be unique.
10671068
# @param input_uri_prefix [::String]
10681069
# Location of the exported files.
10691070
# This must match the output_uri_prefix of an ExportDocumentsResponse from
@@ -1286,7 +1287,7 @@ def bulk_delete_documents request, options = nil
12861287
# with first character a letter and the last a letter or a number. Must not
12871288
# be UUID-like /[0-9a-f]\\{8}(-[0-9a-f]\\{4})\\{3}-[0-9a-f]\\{12}/.
12881289
#
1289-
# "(default)" database ID is also valid.
1290+
# "(default)" database ID is also valid if the database is Standard edition.
12901291
# @yield [result, operation] Access the result along with the TransportOperation object
12911292
# @yieldparam result [::Gapic::Operation]
12921293
# @yieldparam operation [::Gapic::Rest::TransportOperation]
@@ -2561,7 +2562,7 @@ def delete_backup request, options = nil
25612562
# with first character a letter and the last a letter or a number. Must not
25622563
# be UUID-like /[0-9a-f]\\{8}(-[0-9a-f]\\{4})\\{3}-[0-9a-f]\\{12}/.
25632564
#
2564-
# "(default)" database ID is also valid.
2565+
# "(default)" database ID is also valid if the database is Standard edition.
25652566
# @param backup [::String]
25662567
# Required. Backup to restore from. Must be from the same project as the
25672568
# parent.
@@ -3100,7 +3101,7 @@ def delete_backup_schedule request, options = nil
31003101
# with first character a letter and the last a letter or a number. Must not
31013102
# be UUID-like /[0-9a-f]\\{8}(-[0-9a-f]\\{4})\\{3}-[0-9a-f]\\{12}/.
31023103
#
3103-
# "(default)" database ID is also valid.
3104+
# "(default)" database ID is also valid if the database is Standard edition.
31043105
# @param pitr_snapshot [::Google::Cloud::Firestore::Admin::V1::PitrSnapshot, ::Hash]
31053106
# Required. Specification of the PITR data to clone from. The source database
31063107
# must exist.

google-cloud-firestore-admin-v1/lib/google/firestore/admin/v1/database_pb.rb

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)