@maxim_mazurok/gapi.client.sqladmin-v1beta4 0.0.20231011 → 0.0.20231017
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 +15 -16
- package/package.json +1 -1
- package/tests.ts +1 -4
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: 20231017
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -734,10 +734,13 @@ declare namespace gapi.client {
|
|
|
734
734
|
*/
|
|
735
735
|
recoveryOnly?:
|
|
736
736
|
boolean;
|
|
737
|
-
/**
|
|
737
|
+
/**
|
|
738
|
+
* Optional. The timestamp when the import should stop. This timestamp is in the [RFC 3339](https://tools.ietf.org/html/rfc3339) format (for example,
|
|
739
|
+
* `2023-10-01T16:19:00.094`). This field is equivalent to the STOPAT keyword and applies to Cloud SQL for SQL Server only.
|
|
740
|
+
*/
|
|
738
741
|
stopAt?:
|
|
739
742
|
string;
|
|
740
|
-
/** Optional.
|
|
743
|
+
/** Optional. The marked transaction where the import should stop. This field is equivalent to the STOPATMARK keyword and applies to Cloud SQL for SQL Server only. */
|
|
741
744
|
stopAtMark?:
|
|
742
745
|
string;
|
|
743
746
|
/** Whether or not the backup set being restored is striped. Applies only to Cloud SQL for SQL Server. */
|
|
@@ -918,20 +921,19 @@ declare namespace gapi.client {
|
|
|
918
921
|
pscConfig?:
|
|
919
922
|
PscConfig;
|
|
920
923
|
/**
|
|
921
|
-
*
|
|
922
|
-
*
|
|
923
|
-
*
|
|
924
|
-
* LINT.ThenChange(//depot/google3/java/com/google/storage/speckle/boss/admin/actions/InstanceUpdateAction.java:update_api_temp_fix)
|
|
924
|
+
* Whether SSL/TLS connections over IP are enforced. If set to false, then allow both non-SSL/non-TLS and SSL/TLS connections. For SSL/TLS connections, the client certificate won't be
|
|
925
|
+
* verified. If set to true, then only allow connections encrypted with SSL/TLS and with valid client certificates. If you want to enforce SSL/TLS without enforcing the requirement for
|
|
926
|
+
* valid client certificates, then use the `ssl_mode` flag instead of the legacy `require_ssl` flag.
|
|
925
927
|
*/
|
|
926
928
|
requireSsl?:
|
|
927
929
|
boolean;
|
|
928
930
|
/**
|
|
929
|
-
* Specify how SSL/TLS
|
|
930
|
-
*
|
|
931
|
-
*
|
|
932
|
-
*
|
|
933
|
-
*
|
|
934
|
-
*
|
|
931
|
+
* Specify how SSL/TLS is enforced in database connections. This flag is supported only for PostgreSQL. Use the legacy `require_ssl` flag for enforcing SSL/TLS in MySQL and SQL Server.
|
|
932
|
+
* But, for PostgreSQL, use the `ssl_mode` flag instead of the legacy `require_ssl` flag. To avoid the conflict between those flags in PostgreSQL, only the following value pairs are
|
|
933
|
+
* valid: * `ssl_mode=ALLOW_UNENCRYPTED_AND_ENCRYPTED` and `require_ssl=false` * `ssl_mode=ENCRYPTED_ONLY` and `require_ssl=false` * `ssl_mode=TRUSTED_CLIENT_CERTIFICATE_REQUIRED` and
|
|
934
|
+
* `require_ssl=true` Note that the value of `ssl_mode` gets priority over the value of the legacy `require_ssl`. For example, for the pair `ssl_mode=ENCRYPTED_ONLY,
|
|
935
|
+
* require_ssl=false`, the `ssl_mode=ENCRYPTED_ONLY` means "only accepts SSL connection", while the `require_ssl=false` means "both non-SSL and SSL connections are allowed". The
|
|
936
|
+
* database respects `ssl_mode` in this case and only accepts SSL connections.
|
|
935
937
|
*/
|
|
936
938
|
sslMode?:
|
|
937
939
|
string;
|
|
@@ -1173,9 +1175,6 @@ declare namespace gapi.client {
|
|
|
1173
1175
|
/** The complexity of the password. */
|
|
1174
1176
|
complexity?:
|
|
1175
1177
|
string;
|
|
1176
|
-
/** Disallow credentials that have been previously compromised by a public data breach. */
|
|
1177
|
-
disallowCompromisedCredentials?:
|
|
1178
|
-
boolean;
|
|
1179
1178
|
/** Disallow username as a part of the password. */
|
|
1180
1179
|
disallowUsernameSubstring?:
|
|
1181
1180
|
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: 20231017
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -533,7 +533,6 @@ gapi.load('client', async () => {
|
|
|
533
533
|
},
|
|
534
534
|
passwordValidationPolicy: {
|
|
535
535
|
complexity: "Test string",
|
|
536
|
-
disallowCompromisedCredentials: true,
|
|
537
536
|
disallowUsernameSubstring: true,
|
|
538
537
|
enablePasswordPolicy: true,
|
|
539
538
|
minLength: 42,
|
|
@@ -782,7 +781,6 @@ gapi.load('client', async () => {
|
|
|
782
781
|
},
|
|
783
782
|
passwordValidationPolicy: {
|
|
784
783
|
complexity: "Test string",
|
|
785
|
-
disallowCompromisedCredentials: true,
|
|
786
784
|
disallowUsernameSubstring: true,
|
|
787
785
|
enablePasswordPolicy: true,
|
|
788
786
|
minLength: 42,
|
|
@@ -1090,7 +1088,6 @@ gapi.load('client', async () => {
|
|
|
1090
1088
|
},
|
|
1091
1089
|
passwordValidationPolicy: {
|
|
1092
1090
|
complexity: "Test string",
|
|
1093
|
-
disallowCompromisedCredentials: true,
|
|
1094
1091
|
disallowUsernameSubstring: true,
|
|
1095
1092
|
enablePasswordPolicy: true,
|
|
1096
1093
|
minLength: 42,
|