@maxim_mazurok/gapi.client.sqladmin-v1 0.0.20250427 → 0.0.20250502
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.
- package/index.d.ts +4 -4
- package/package.json +1 -1
- package/readme.md +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://sqladmin.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250502
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1767,7 +1767,7 @@ declare namespace gapi.client {
|
|
|
1767
1767
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1768
1768
|
uploadType?: string;
|
|
1769
1769
|
}): Request<ListBackupsResponse>;
|
|
1770
|
-
/**
|
|
1770
|
+
/** Updates the retention period and description of the backup. You can use this API to update final backups only. */
|
|
1771
1771
|
UpdateBackup(request: {
|
|
1772
1772
|
/** V1 error format. */
|
|
1773
1773
|
'$.xgafv'?: string;
|
|
@@ -1789,7 +1789,7 @@ declare namespace gapi.client {
|
|
|
1789
1789
|
prettyPrint?: boolean;
|
|
1790
1790
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1791
1791
|
quotaUser?: string;
|
|
1792
|
-
/** The list of fields that you can update.
|
|
1792
|
+
/** The list of fields that you can update. You can update only the description and retention period of the final backup. */
|
|
1793
1793
|
updateMask?: string;
|
|
1794
1794
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1795
1795
|
upload_protocol?: string;
|
|
@@ -1820,7 +1820,7 @@ declare namespace gapi.client {
|
|
|
1820
1820
|
prettyPrint?: boolean;
|
|
1821
1821
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1822
1822
|
quotaUser?: string;
|
|
1823
|
-
/** The list of fields that you can update.
|
|
1823
|
+
/** The list of fields that you can update. You can update only the description and retention period of the final backup. */
|
|
1824
1824
|
updateMask?: string;
|
|
1825
1825
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1826
1826
|
upload_protocol?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -127,7 +127,7 @@ Lists all backups associated with the project.
|
|
|
127
127
|
await gapi.client.sql.Backups.ListBackups({parent: 'parent'});
|
|
128
128
|
|
|
129
129
|
/*
|
|
130
|
-
|
|
130
|
+
Updates the retention period and description of the backup. You can use this API to update final backups only.
|
|
131
131
|
*/
|
|
132
132
|
await gapi.client.sql.Backups.UpdateBackup({name: 'name'});
|
|
133
133
|
|