@maxim_mazurok/gapi.client.datacatalog-v1beta1 0.1.20251210 → 0.1.20251226

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 +27 -1
  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://datacatalog.googleapis.com/$discovery/rest?version=v1beta1
12
- // Revision: 20251210
12
+ // Revision: 20251226
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -627,6 +627,8 @@ declare namespace gapi.client {
627
627
  serviceSpec?: GoogleCloudDatacatalogV1ServiceSpec;
628
628
  /** Timestamps from the underlying resource, not from the Data Catalog entry. Output only when the entry has a system listed in the `IntegratedSystem` enum. For entries with `user_specified_system`, this field is optional and defaults to an empty timestamp. */
629
629
  sourceSystemTimestamps?: GoogleCloudDatacatalogV1SystemTimestamps;
630
+ /** Specification of a Spanner table. */
631
+ spannerTableSpec?: GoogleCloudDatacatalogV1SpannerTableSpec;
630
632
  /** Specification that applies to a relational database system. Only settable when `user_specified_system` is equal to `SQL_DATABASE` */
631
633
  sqlDatabaseSystemSpec?: GoogleCloudDatacatalogV1SqlDatabaseSystemSpec;
632
634
  /** The type of the entry. For details, see [`EntryType`](#entrytype). */
@@ -823,6 +825,30 @@ declare namespace gapi.client {
823
825
  /** Specification that applies to Instance entries of `CLOUD_BIGTABLE` system. */
824
826
  cloudBigtableInstanceSpec?: GoogleCloudDatacatalogV1CloudBigtableInstanceSpec;
825
827
  }
828
+ interface GoogleCloudDatacatalogV1SpannerTableSpec {
829
+ /** Output only. The foreign keys of the table. */
830
+ foreignKeys?: GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey[];
831
+ /** Output only. The primary key of the table. */
832
+ primaryKey?: GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey;
833
+ }
834
+ interface GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKey {
835
+ /** Output only. The ordered list of column mappings for this foreign key. */
836
+ columnMappings?: GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping[];
837
+ /** Output only. The table name this foreign key referenced to. Format: `projects/{PROJECT_ID}/locations/{LOCATION}/entryGroups/{ENTRY_GROUP_ID}/entries/{ENTRY_ID}` */
838
+ entry?: string;
839
+ /** Output only. The constraint_name of the foreign key, for example, FK_CustomerOrder. */
840
+ name?: string;
841
+ }
842
+ interface GoogleCloudDatacatalogV1SpannerTableSpecSpannerForeignKeyForeignKeyColumnMapping {
843
+ /** Output only. The column in the current table that is part of the foreign key. */
844
+ column?: string;
845
+ /** Output only. The column in the referenced table that is part of the foreign key. */
846
+ referenceColumn?: string;
847
+ }
848
+ interface GoogleCloudDatacatalogV1SpannerTableSpecSpannerPrimaryKey {
849
+ /** Output only. Column names of the primary key. */
850
+ columns?: string[];
851
+ }
826
852
  interface GoogleCloudDatacatalogV1SqlDatabaseSystemSpec {
827
853
  /** Version of the database engine. */
828
854
  databaseVersion?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.datacatalog-v1beta1",
3
- "version": "0.1.20251210",
3
+ "version": "0.1.20251226",
4
4
  "description": "TypeScript typings for Google Cloud Data Catalog API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",