@maxim_mazurok/gapi.client.sqladmin-v1beta4 0.0.20250427 → 0.0.20250503
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=v1beta4
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250503
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1772,7 +1772,7 @@ declare namespace gapi.client {
|
|
|
1772
1772
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1773
1773
|
uploadType?: string;
|
|
1774
1774
|
}): Request<ListBackupsResponse>;
|
|
1775
|
-
/**
|
|
1775
|
+
/** Updates the retention period and the description of the backup. You can use this API to update final backups only. */
|
|
1776
1776
|
updateBackup(request: {
|
|
1777
1777
|
/** V1 error format. */
|
|
1778
1778
|
'$.xgafv'?: string;
|
|
@@ -1794,7 +1794,7 @@ declare namespace gapi.client {
|
|
|
1794
1794
|
prettyPrint?: boolean;
|
|
1795
1795
|
/** 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. */
|
|
1796
1796
|
quotaUser?: string;
|
|
1797
|
-
/** The list of fields that you can update.
|
|
1797
|
+
/** The list of fields that you can update. You can update only the description and retention period of the final backup. */
|
|
1798
1798
|
updateMask?: string;
|
|
1799
1799
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1800
1800
|
upload_protocol?: string;
|
|
@@ -1825,7 +1825,7 @@ declare namespace gapi.client {
|
|
|
1825
1825
|
prettyPrint?: boolean;
|
|
1826
1826
|
/** 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. */
|
|
1827
1827
|
quotaUser?: string;
|
|
1828
|
-
/** The list of fields that you can update.
|
|
1828
|
+
/** The list of fields that you can update. You can update only the description and retention period of the final backup. */
|
|
1829
1829
|
updateMask?: string;
|
|
1830
1830
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1831
1831
|
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 the 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
|
|