@maxim_mazurok/gapi.client.sqladmin-v1 0.0.20231029 → 0.0.20231108
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 +9 -1
- package/package.json +1 -1
- package/tests.ts +7 -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: 20231108
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -426,6 +426,8 @@ declare namespace gapi.client {
|
|
|
426
426
|
/** The user settings. */
|
|
427
427
|
settings?:
|
|
428
428
|
Settings;
|
|
429
|
+
sqlNetworkArchitecture?:
|
|
430
|
+
string;
|
|
429
431
|
/** The current serving state of the Cloud SQL instance. */
|
|
430
432
|
state?:
|
|
431
433
|
string;
|
|
@@ -1066,6 +1068,9 @@ declare namespace gapi.client {
|
|
|
1066
1068
|
string;
|
|
1067
1069
|
}
|
|
1068
1070
|
interface Operation {
|
|
1071
|
+
/** An Admin API warning message. */
|
|
1072
|
+
apiWarning?:
|
|
1073
|
+
ApiWarning;
|
|
1069
1074
|
/** The context for backup operation, if applicable. */
|
|
1070
1075
|
backupContext?:
|
|
1071
1076
|
BackupContext;
|
|
@@ -1185,6 +1190,9 @@ declare namespace gapi.client {
|
|
|
1185
1190
|
/** The complexity of the password. */
|
|
1186
1191
|
complexity?:
|
|
1187
1192
|
string;
|
|
1193
|
+
/** Disallow credentials that have been previously compromised by a public data breach. */
|
|
1194
|
+
disallowCompromisedCredentials?:
|
|
1195
|
+
boolean;
|
|
1188
1196
|
/** Disallow username as a part of the password. */
|
|
1189
1197
|
disallowUsernameSubstring?:
|
|
1190
1198
|
boolean;
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20231108
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -543,6 +543,7 @@ gapi.load('client', async () => {
|
|
|
543
543
|
},
|
|
544
544
|
passwordValidationPolicy: {
|
|
545
545
|
complexity: "Test string",
|
|
546
|
+
disallowCompromisedCredentials: true,
|
|
546
547
|
disallowUsernameSubstring: true,
|
|
547
548
|
enablePasswordPolicy: true,
|
|
548
549
|
minLength: 42,
|
|
@@ -566,6 +567,7 @@ gapi.load('client', async () => {
|
|
|
566
567
|
A: "Test string"
|
|
567
568
|
},
|
|
568
569
|
},
|
|
570
|
+
sqlNetworkArchitecture: "Test string",
|
|
569
571
|
state: "Test string",
|
|
570
572
|
suspensionReason: [
|
|
571
573
|
"Test string"
|
|
@@ -791,6 +793,7 @@ gapi.load('client', async () => {
|
|
|
791
793
|
},
|
|
792
794
|
passwordValidationPolicy: {
|
|
793
795
|
complexity: "Test string",
|
|
796
|
+
disallowCompromisedCredentials: true,
|
|
794
797
|
disallowUsernameSubstring: true,
|
|
795
798
|
enablePasswordPolicy: true,
|
|
796
799
|
minLength: 42,
|
|
@@ -814,6 +817,7 @@ gapi.load('client', async () => {
|
|
|
814
817
|
A: "Test string"
|
|
815
818
|
},
|
|
816
819
|
},
|
|
820
|
+
sqlNetworkArchitecture: "Test string",
|
|
817
821
|
state: "Test string",
|
|
818
822
|
suspensionReason: [
|
|
819
823
|
"Test string"
|
|
@@ -1098,6 +1102,7 @@ gapi.load('client', async () => {
|
|
|
1098
1102
|
},
|
|
1099
1103
|
passwordValidationPolicy: {
|
|
1100
1104
|
complexity: "Test string",
|
|
1105
|
+
disallowCompromisedCredentials: true,
|
|
1101
1106
|
disallowUsernameSubstring: true,
|
|
1102
1107
|
enablePasswordPolicy: true,
|
|
1103
1108
|
minLength: 42,
|
|
@@ -1121,6 +1126,7 @@ gapi.load('client', async () => {
|
|
|
1121
1126
|
A: "Test string"
|
|
1122
1127
|
},
|
|
1123
1128
|
},
|
|
1129
|
+
sqlNetworkArchitecture: "Test string",
|
|
1124
1130
|
state: "Test string",
|
|
1125
1131
|
suspensionReason: [
|
|
1126
1132
|
"Test string"
|