@maxim_mazurok/gapi.client.datacatalog-v1beta1 0.1.20251112 → 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.
- package/index.d.ts +17 -9
- 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:
|
|
12
|
+
// Revision: 20251205
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -677,12 +677,12 @@ declare namespace gapi.client {
|
|
|
677
677
|
alias?: string;
|
|
678
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
679
|
dataSource?: string;
|
|
680
|
-
/** Optional.
|
|
681
|
-
destinationNodeReference?:
|
|
682
|
-
/** Optional. If
|
|
683
|
-
|
|
684
|
-
/** Optional. If
|
|
685
|
-
|
|
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
686
|
/** Required. The name of the keys of the elements in the table. */
|
|
687
687
|
elementKeys?: string[];
|
|
688
688
|
/** Required. The input source of the graph element. */
|
|
@@ -691,8 +691,16 @@ declare namespace gapi.client {
|
|
|
691
691
|
kind?: string;
|
|
692
692
|
/** Required. The labels and their properties for the graph element. */
|
|
693
693
|
labelAndProperties?: GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties[];
|
|
694
|
-
/** Optional.
|
|
695
|
-
sourceNodeReference?:
|
|
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[];
|
|
696
704
|
}
|
|
697
705
|
interface GoogleCloudDatacatalogV1GraphSpecGraphElementTableLabelAndProperties {
|
|
698
706
|
/** Required. The name of the label. */
|