Skip to content

Commit

Permalink
fix: bump default deadline on CreateDatabase and RestoreDatabase to 2…
Browse files Browse the repository at this point in the history
… minutes

feat: add filter argument to FirestoreAdmin.ListBackupsRequest

PiperOrigin-RevId: 716763143

Source-Link: googleapis/googleapis@3776db1

Source-Link: googleapis/googleapis-gen@10db5ac
Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuRmlyZXN0b3JlLkFkbWluLlYxLy5Pd2xCb3QueWFtbCIsImgiOiIxMGRiNWFjNDc2YTk0YWE0YzllMGEyNDk0NmQ5ZmExYjdlYTQ1NmY2In0=
  • Loading branch information
gcf-owl-bot[bot] authored and amanda-tarafa committed Jan 18, 2025
1 parent b5ac4d9 commit 26c2a9d
Show file tree
Hide file tree
Showing 6 changed files with 192 additions and 137 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public async Task ListBackupsRequestObjectAsync()
ListBackupsRequest request = new ListBackupsRequest
{
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
Filter = "",
};
// Make the request
ListBackupsResponse response = await firestoreAdminClient.ListBackupsAsync(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public void ListBackupsRequestObject()
ListBackupsRequest request = new ListBackupsRequest
{
ParentAsLocationName = LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
Filter = "",
};
// Make the request
ListBackupsResponse response = firestoreAdminClient.ListBackups(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4567,12 +4567,12 @@
"segments": [
{
"start": 20,
"end": 44,
"end": 45,
"type": "FULL"
},
{
"start": 34,
"end": 42,
"end": 43,
"type": "SHORT"
}
]
Expand Down Expand Up @@ -4616,12 +4616,12 @@
"segments": [
{
"start": 20,
"end": 45,
"end": 46,
"type": "FULL"
},
{
"start": 35,
"end": 43,
"end": 44,
"type": "SHORT"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2510,6 +2510,7 @@ public void ListBackupsRequestObject()
gcfav::ListBackupsRequest request = new gcfav::ListBackupsRequest
{
ParentAsLocationName = gcfav::LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
Filter = "",
};
// Make the request
gcfav::ListBackupsResponse response = firestoreAdminClient.ListBackups(request);
Expand All @@ -2527,6 +2528,7 @@ public async Task ListBackupsRequestObjectAsync()
gcfav::ListBackupsRequest request = new gcfav::ListBackupsRequest
{
ParentAsLocationName = gcfav::LocationName.FromProjectLocation("[PROJECT]", "[LOCATION]"),
Filter = "",
};
// Make the request
gcfav::ListBackupsResponse response = await firestoreAdminClient.ListBackupsAsync(request);
Expand Down
Loading

0 comments on commit 26c2a9d

Please sign in to comment.