@maxim_mazurok/gapi.client.sqladmin-v1beta4 0.0.20230323 → 0.0.20230405

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.
Files changed (3) hide show
  1. package/index.d.ts +8 -2
  2. package/package.json +1 -1
  3. 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=v1beta4
12
- // Revision: 20230323
12
+ // Revision: 20230405
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
@@ -863,6 +867,8 @@ declare namespace gapi.client {
863
867
  activationPolicy?: string;
864
868
  /** Active Directory configuration, relevant only for Cloud SQL for SQL Server. */
865
869
  activeDirectoryConfig?: SqlActiveDirectoryConfig;
870
+ /** Specifies advance machine configuration for the instance relevant only for SQL Server. */
871
+ advancedMachineFeatures?: AdvancedMachineFeatures;
866
872
  /** The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only. */
867
873
  authorizedGaeApplications?: string[];
868
874
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.sqladmin-v1beta4",
3
- "version": "0.0.20230323",
3
+ "version": "0.0.20230405",
4
4
  "description": "TypeScript typings for Cloud SQL Admin API v1beta4",
5
5
  "license": "MIT",
6
6
  "author": {
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: 20230323
6
+ // Revision: 20230405
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
  ],