@maxim_mazurok/gapi.client.datacatalog-v1beta1 0.1.20251009 → 0.1.20251205

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 +53 -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: 20251009
12
+ // Revision: 20251205
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -603,6 +603,8 @@ declare namespace gapi.client {
603
603
  fullyQualifiedName?: string;
604
604
  /** Specification that applies to a Cloud Storage fileset. Valid only for entries with the `FILESET` type. */
605
605
  gcsFilesetSpec?: GoogleCloudDatacatalogV1GcsFilesetSpec;
606
+ /** Spec for graph. */
607
+ graphSpec?: GoogleCloudDatacatalogV1GraphSpec;
606
608
  /** Output only. Indicates the entry's source system that Data Catalog integrates with, such as BigQuery, Pub/Sub, or Dataproc Metastore. */
607
609
  integratedSystem?: string;
608
610
  /** Cloud labels attached to the entry. In Data Catalog, you can create and modify labels attached only to custom entries. Synced entries have unmodifiable labels that come from the source system. */
@@ -662,6 +664,56 @@ declare namespace gapi.client {
662
664
  /** Output only. File size in bytes. */
663
665
  sizeBytes?: string;
664
666
  }
667
+ interface GoogleCloudDatacatalogV1GraphSpec {
668
+ /** Optional. Edge tables of the graph. */
669
+ edgeTables?: GoogleCloudDatacatalogV1GraphSpecGraphElementTable[];
670
+ /** Output only. Fully qualified graph name. e.g. `named_catalog.MyGraph` */
671
+ name?: string;
672
+ /** Required. Node tables of the graph. */
673
+ nodeTables?: GoogleCloudDatacatalogV1GraphSpecGraphElementTable[];
674
+ }
675
+ interface GoogleCloudDatacatalogV1GraphSpecGraphElementTable {
676
+ /** Required. The alias name of the graph element. */
677
+ alias?: string;
678
+ /** Required. The name of the data source. This is either a table name or a view name that is used for graph element input source. E.g. `Person` table or `PersonView` view. */
679
+ dataSource?: string;
680
+ /** Optional. The destination node reference of the edge. */
681
+ destinationNodeReference?: GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference;
682
+ /** Optional. If set, this is the input column for dynamic label in schemaless data model. */
683
+ dynamicLabelColumn?: string;
684
+ /** Optional. If set, this is the input column for dynamic properties in schemaless data model. */
685
+ dynamicPropertiesColumn?: string;
686
+ /** Required. The name of the keys of the elements in the table. */
687
+ elementKeys?: string[];
688
+ /** Required. The input source of the graph element. */
689
+ inputSource?: string;
690
+ /** Required. The kind of the graph element. */
691
+ kind?: string;
692
+ /** Required. The labels and their properties for the graph element. */
693
+ labelAndProperties?: GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties[];
694
+ /** Optional. The source node reference of the edge. */
695
+ sourceNodeReference?: GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference;
696
+ }
697
+ interface GoogleCloudDatacatalogV1GraphSpecGraphElementTableGraphNodeReference {
698
+ /** Required. The referencing columns in the edge table. The size of `edge_table_columns` must be equal to the size of `node_table_columns`. */
699
+ edgeTableColumns?: string[];
700
+ /** Required. The reference to the source/destination node of the edge. This name must be a valid `alias` of a node element in the same graph. Example, `Person` node can be a source node name of an edge element `Person_to_Address`. */
701
+ nodeAlias?: string;
702
+ /** Required. The referenced columns of the source node table. */
703
+ nodeTableColumns?: string[];
704
+ }
705
+ interface GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties {
706
+ /** Required. The name of the label. */
707
+ label?: string;
708
+ /** Optional. The properties associated with the label. */
709
+ properties?: GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty[];
710
+ }
711
+ interface GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty {
712
+ /** Required. Property name. */
713
+ name?: string;
714
+ /** Required. Property data type. */
715
+ type?: string;
716
+ }
665
717
  interface GoogleCloudDatacatalogV1ImportEntriesMetadata {
666
718
  /** Partial errors that are encountered during the ImportEntries operation. There is no guarantee that all the encountered errors are reported. However, if no errors are reported, it means that no errors were encountered. */
667
719
  errors?: Status[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.datacatalog-v1beta1",
3
- "version": "0.1.20251009",
3
+ "version": "0.1.20251205",
4
4
  "description": "TypeScript typings for Google Cloud Data Catalog API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",