@maxim_mazurok/gapi.client.sqladmin-v1beta4 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 +10 -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=v1beta4
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231108
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -426,6 +426,9 @@ declare namespace gapi.client {
|
|
|
426
426
|
/** The user settings. */
|
|
427
427
|
settings?:
|
|
428
428
|
Settings;
|
|
429
|
+
/** The SQL network architecture for the instance. */
|
|
430
|
+
sqlNetworkArchitecture?:
|
|
431
|
+
string;
|
|
429
432
|
/** The current serving state of the Cloud SQL instance. */
|
|
430
433
|
state?:
|
|
431
434
|
string;
|
|
@@ -1069,6 +1072,9 @@ declare namespace gapi.client {
|
|
|
1069
1072
|
string;
|
|
1070
1073
|
}
|
|
1071
1074
|
interface Operation {
|
|
1075
|
+
/** An Admin API warning message. */
|
|
1076
|
+
apiWarning?:
|
|
1077
|
+
ApiWarning;
|
|
1072
1078
|
/** The context for backup operation, if applicable. */
|
|
1073
1079
|
backupContext?:
|
|
1074
1080
|
BackupContext;
|
|
@@ -1188,6 +1194,9 @@ declare namespace gapi.client {
|
|
|
1188
1194
|
/** The complexity of the password. */
|
|
1189
1195
|
complexity?:
|
|
1190
1196
|
string;
|
|
1197
|
+
/** Disallow credentials that have been previously compromised by a public data breach. */
|
|
1198
|
+
disallowCompromisedCredentials?:
|
|
1199
|
+
boolean;
|
|
1191
1200
|
/** Disallow username as a part of the password. */
|
|
1192
1201
|
disallowUsernameSubstring?:
|
|
1193
1202
|
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"
|