@maxim_mazurok/gapi.client.datacatalog-v1beta1 0.1.20250928 → 0.1.20251112

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 +45 -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: 20250928
12
+ // Revision: 20251112
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,48 @@ 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. Only applies to `kind = EDGE`. */
681
+ destinationNodeReference?: string;
682
+ /** Optional. If true, the graph element has a dynamic label in schemaless model. */
683
+ dynamicLabelEnabled?: boolean;
684
+ /** Optional. If true, the graph element has dynamic properties in schemaless model. */
685
+ dynamicPropertiesEnabled?: boolean;
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. Only applies to `kind = EDGE`. The reference to the source 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 of an edge element `Person_to_Address`. Similar rule applies to `destination_node_reference`. */
695
+ sourceNodeReference?: string;
696
+ }
697
+ interface GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties {
698
+ /** Required. The name of the label. */
699
+ label?: string;
700
+ /** Optional. The properties associated with the label. */
701
+ properties?: GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty[];
702
+ }
703
+ interface GoogleCloudDatacatalogV1GraphSpecGraphElementTableProperty {
704
+ /** Required. Property name. */
705
+ name?: string;
706
+ /** Required. Property data type. */
707
+ type?: string;
708
+ }
665
709
  interface GoogleCloudDatacatalogV1ImportEntriesMetadata {
666
710
  /** 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
711
  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.20250928",
3
+ "version": "0.1.20251112",
4
4
  "description": "TypeScript typings for Google Cloud Data Catalog API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",