@maxim_mazurok/gapi.client.sqladmin-v1 0.0.20230323 → 0.0.20230403
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 +8 -2
- package/package.json +1 -1
- package/tests.ts +10 -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: 20230403
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -32,6 +32,10 @@ declare namespace gapi.client {
|
|
|
32
32
|
/** The allowlisted value for the access control list. */
|
|
33
33
|
value?: string;
|
|
34
34
|
}
|
|
35
|
+
interface AdvancedMachineFeatures {
|
|
36
|
+
/** The number of threads per physical core. */
|
|
37
|
+
threadsPerCore?: number;
|
|
38
|
+
}
|
|
35
39
|
interface ApiWarning {
|
|
36
40
|
/** Code to uniquely identify the warning type. */
|
|
37
41
|
code?: string;
|
|
@@ -198,7 +202,7 @@ declare namespace gapi.client {
|
|
|
198
202
|
value?: string;
|
|
199
203
|
}
|
|
200
204
|
interface DatabaseInstance {
|
|
201
|
-
/** List all maintenance versions applicable on the instance */
|
|
205
|
+
/** Output only. List all maintenance versions applicable on the instance */
|
|
202
206
|
availableMaintenanceVersions?: string[];
|
|
203
207
|
/**
|
|
204
208
|
* The backend type. `SECOND_GEN`: Cloud SQL database instance. `EXTERNAL`: A database server that is not managed by Google. This property is read-only; use the `tier` property in the
|
|
@@ -860,6 +864,8 @@ declare namespace gapi.client {
|
|
|
860
864
|
activationPolicy?: string;
|
|
861
865
|
/** Active Directory configuration, relevant only for Cloud SQL for SQL Server. */
|
|
862
866
|
activeDirectoryConfig?: SqlActiveDirectoryConfig;
|
|
867
|
+
/** Specifies advance machine configuration for the instance relevant only for SQL Server. */
|
|
868
|
+
advancedMachineFeatures?: AdvancedMachineFeatures;
|
|
863
869
|
/** The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only. */
|
|
864
870
|
authorizedGaeApplications?: string[];
|
|
865
871
|
/**
|
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: 20230403
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -431,6 +431,9 @@ gapi.load('client', async () => {
|
|
|
431
431
|
domain: "Test string",
|
|
432
432
|
kind: "Test string",
|
|
433
433
|
},
|
|
434
|
+
advancedMachineFeatures: {
|
|
435
|
+
threadsPerCore: 42,
|
|
436
|
+
},
|
|
434
437
|
authorizedGaeApplications: [
|
|
435
438
|
"Test string"
|
|
436
439
|
],
|
|
@@ -660,6 +663,9 @@ gapi.load('client', async () => {
|
|
|
660
663
|
domain: "Test string",
|
|
661
664
|
kind: "Test string",
|
|
662
665
|
},
|
|
666
|
+
advancedMachineFeatures: {
|
|
667
|
+
threadsPerCore: 42,
|
|
668
|
+
},
|
|
663
669
|
authorizedGaeApplications: [
|
|
664
670
|
"Test string"
|
|
665
671
|
],
|
|
@@ -931,6 +937,9 @@ gapi.load('client', async () => {
|
|
|
931
937
|
domain: "Test string",
|
|
932
938
|
kind: "Test string",
|
|
933
939
|
},
|
|
940
|
+
advancedMachineFeatures: {
|
|
941
|
+
threadsPerCore: 42,
|
|
942
|
+
},
|
|
934
943
|
authorizedGaeApplications: [
|
|
935
944
|
"Test string"
|
|
936
945
|
],
|