@maxim_mazurok/gapi.client.datamigration-v1 0.0.20240902 → 0.0.20240914

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 (2) hide show
  1. package/index.d.ts +20 -2
  2. package/package.json +1 -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://datamigration.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20240902
12
+ // Revision: 20240914
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -83,6 +83,10 @@ declare namespace gapi.client {
83
83
  /** The log type that this config enables. */
84
84
  logType?: string;
85
85
  }
86
+ interface AuthorizedNetwork {
87
+ /** Optional. CIDR range for one authorzied network of the instance. */
88
+ cidrRange?: string;
89
+ }
86
90
  interface BackgroundJobLogEntry {
87
91
  /** Output only. Apply job details. */
88
92
  applyJobDetails?: ApplyJobDetails;
@@ -141,8 +145,10 @@ declare namespace gapi.client {
141
145
  collation?: string;
142
146
  /** The database flags passed to the Cloud SQL instance at startup. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }. */
143
147
  databaseFlags?: {[P in string]: string};
144
- /** The database engine type and version. */
148
+ /** The database engine type and version. Deprecated. Use database_version_name instead. */
145
149
  databaseVersion?: string;
150
+ /** Optional. The database engine type and version name. */
151
+ databaseVersionName?: string;
146
152
  /** Optional. Data cache is an optional feature available for Cloud SQL for MySQL Enterprise Plus edition only. For more information on data cache, see [Data cache overview](https://cloud.google.com/sql/help/mysql-data-cache) in Cloud SQL documentation. */
147
153
  dataCacheConfig?: DataCacheConfig;
148
154
  /** The storage capacity available to the database, in GB. The minimum (and default) size is 10GB. */
@@ -560,6 +566,14 @@ declare namespace gapi.client {
560
566
  /** Boolean value indicating whether the index is unique. */
561
567
  unique?: boolean;
562
568
  }
569
+ interface InstanceNetworkConfig {
570
+ /** Optional. A list of external network authorized to access this instance. */
571
+ authorizedExternalNetworks?: AuthorizedNetwork[];
572
+ /** Optional. Enabling an outbound public IP address to support a database server sending requests out into the internet. */
573
+ enableOutboundPublicIp?: boolean;
574
+ /** Optional. Enabling public ip for the instance. */
575
+ enablePublicIp?: boolean;
576
+ }
563
577
  interface IntComparisonFilter {
564
578
  /** Required. Integer compare value to be used */
565
579
  value?: string;
@@ -907,10 +921,14 @@ declare namespace gapi.client {
907
921
  databaseFlags?: {[P in string]: string};
908
922
  /** Required. The ID of the AlloyDB primary instance. The ID must satisfy the regex expression "[a-z0-9-]+". */
909
923
  id?: string;
924
+ /** Optional. Metadata related to instance level network configuration. */
925
+ instanceNetworkConfig?: InstanceNetworkConfig;
910
926
  /** Labels for the AlloyDB primary instance created by DMS. An object containing a list of 'key', 'value' pairs. */
911
927
  labels?: {[P in string]: string};
912
928
  /** Configuration for the machines that host the underlying database engine. */
913
929
  machineConfig?: MachineConfig;
930
+ /** Output only. All outbound public IP addresses configured for the instance. */
931
+ outboundPublicIpAddresses?: string[];
914
932
  /** Output only. The private IP address for the Instance. This is the connection endpoint for an end-user application. */
915
933
  privateIp?: string;
916
934
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.datamigration-v1",
3
- "version": "0.0.20240902",
3
+ "version": "0.0.20240914",
4
4
  "description": "TypeScript typings for Database Migration API v1",
5
5
  "repository": {
6
6
  "type": "git",