Skip to content

Commit

Permalink
feat(datacatalog): update the api
Browse files Browse the repository at this point in the history
#### datacatalog:v1

The following keys were added:
- schemas.GoogleCloudDatacatalogV1BigQueryConnectionSpec (Total Keys: 5)
- schemas.GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec (Total Keys: 5)
- schemas.GoogleCloudDatacatalogV1DataSourceConnectionSpec (Total Keys: 3)
- schemas.GoogleCloudDatacatalogV1Entry.properties.dataSourceConnectionSpec.$ref (Total Keys: 1)
- schemas.GoogleCloudDatacatalogV1Entry.properties.labels (Total Keys: 2)
- schemas.GoogleCloudDatacatalogV1SearchCatalogRequestScope.properties.includePublicTagTemplates.type (Total Keys: 1)
- schemas.GoogleCloudDatacatalogV1TagTemplate.properties.isPubliclyReadable.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jul 13, 2021
1 parent b4dcb42 commit 9970605
Show file tree
Hide file tree
Showing 6 changed files with 194 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/dyn/datacatalog_v1.catalog.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ <h3>Method Details</h3>
&quot;includeProjectIds&quot;: [ # The list of project IDs to search within. For more information on the distinction between project names, IDs, and numbers, see [Projects](/docs/overview/#projects).
&quot;A String&quot;,
],
&quot;includePublicTagTemplates&quot;: True or False, # Optional. If `true`, include public tag templates in the search results. By default, they are included only if you have explicit permissions on them to view them. For example, if you are the owner. Other scope fields, for example, ``include_org_ids``, still restrict the returned public tag templates and at least one of them is required.
&quot;restrictedLocations&quot;: [ # Optional. The list of locations to search within. If empty, all locations are searched. Returns an error if any location in the list isn&#x27;t one of the [Supported regions](https://cloud.google.com/data-catalog/docs/concepts/regions#supported_regions). If a location is unreachable, its name is returned in the `SearchCatalogResponse.unreachable` field. To get additional information on the error, repeat the search request and set the location name as the value of this parameter.
&quot;A String&quot;,
],
Expand Down
14 changes: 14 additions & 0 deletions docs/dyn/datacatalog_v1.entries.html
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,17 @@ <h3>Method Details</h3>
&quot;resource&quot;: &quot;A String&quot;, # Full name of a resource as defined by the service. For example: `//bigquery.googleapis.com/projects/{PROJECT_ID}/locations/{LOCATION}/datasets/{DATASET_ID}/tables/{TABLE_ID}`
&quot;service&quot;: &quot;A String&quot;, # Service that physically stores the data.
},
&quot;dataSourceConnectionSpec&quot;: { # Specification that applies to a data source connection. Valid only for entries with the `DATA_SOURCE_CONNECTION` type. # Specification that applies to a data source connection. Valid only for entries with the `DATA_SOURCE_CONNECTION` type.
&quot;bigqueryConnectionSpec&quot;: { # Specification for the BigQuery connection. # Fields specific to BigQuery connections.
&quot;cloudSql&quot;: { # Specification for the BigQuery connection to a Cloud SQL instance. # Specification for the BigQuery connection to a Cloud SQL instance.
&quot;database&quot;: &quot;A String&quot;, # Database name.
&quot;instanceId&quot;: &quot;A String&quot;, # Cloud SQL instance ID in the format of `project:location:instance`.
&quot;type&quot;: &quot;A String&quot;, # Type of the Cloud SQL database.
},
&quot;connectionType&quot;: &quot;A String&quot;, # The type of the BigQuery connection.
&quot;hasCredential&quot;: True or False, # True if there are credentials attached to the BigQuery connection; false otherwise.
},
},
&quot;databaseTableSpec&quot;: { # Specification that applies to a table resource. Valid only for entries with the `TABLE` type. # Specification that applies to a table resource. Valid only for entries with the `TABLE` type.
&quot;type&quot;: &quot;A String&quot;, # Type of this table.
},
Expand All @@ -144,6 +155,9 @@ <h3>Method Details</h3>
],
},
&quot;integratedSystem&quot;: &quot;A String&quot;, # Output only. Indicates the entry&#x27;s source system that Data Catalog integrates with, such as BigQuery, Pub/Sub, or Dataproc Metastore.
&quot;labels&quot;: { # 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.
&quot;a_key&quot;: &quot;A String&quot;,
},
&quot;linkedResource&quot;: &quot;A String&quot;, # The resource this metadata entry refers to. For Google Cloud Platform resources, `linked_resource` is the [Full Resource Name] (https://cloud.google.com/apis/design/resource_names#full_resource_name). For example, the `linked_resource` for a table resource from BigQuery is: `//bigquery.googleapis.com/projects/{PROJECT_ID}/datasets/{DATASET_ID}/tables/{TABLE_ID}` Output only when the entry is one of the types in the `EntryType` enum. For entries with a `user_specified_type`, this field is optional and defaults to an empty string. The resource string must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), periods (.), colons (:), slashes (/), dashes (-), and hashes (#). The maximum size is 200 bytes when encoded in UTF-8.
&quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of an entry in URL format. Note: The entry itself and its child resources might not be stored in the location specified in its name.
&quot;routineSpec&quot;: { # Specification that applies to a routine. Valid only for entries with the `ROUTINE` type. # Specification that applies to a user-defined function or procedure. Valid only for entries with the `ROUTINE` type.
Expand Down
Loading

0 comments on commit 9970605

Please sign in to comment.