Skip to content

Commit

Permalink
feat(datacatalog)!: update the API
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This release has breaking changes.
#### datacatalog:v1beta1
The following keys were deleted:
- schemas.Binding.properties.bindingId.description
- schemas.GoogleCloudDatacatalogV1beta1FieldTypeEnumType.properties.allowedValues.description

The following keys were changed:
- schemas.GoogleCloudDatacatalogV1beta1Entry.properties.integratedSystem.enum
- schemas.GoogleCloudDatacatalogV1beta1Entry.properties.integratedSystem.enumDescriptions
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Nov 9, 2020
1 parent 0102cf4 commit e559971
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
10 changes: 5 additions & 5 deletions discovery/datacatalog-v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1808,15 +1808,14 @@
}
}
},
"revision": "20201021",
"revision": "20201102",
"rootUrl": "https://datacatalog.googleapis.com/",
"schemas": {
"Binding": {
"description": "Associates `members` with a `role`.",
"id": "Binding",
"properties": {
"bindingId": {
"description": "A client-specified ID for this binding. Expected to be globally unique to support the internal bindings-by-ID API.",
"type": "string"
},
"condition": {
Expand Down Expand Up @@ -2003,12 +2002,14 @@
"enum": [
"INTEGRATED_SYSTEM_UNSPECIFIED",
"BIGQUERY",
"CLOUD_PUBSUB"
"CLOUD_PUBSUB",
"DPMS"
],
"enumDescriptions": [
"Default unknown system.",
"BigQuery.",
"Cloud Pub/Sub."
"Cloud Pub/Sub.",
"Dataproc Metastore - Managed Hive Metastore."
],
"readOnly": true,
"type": "string"
Expand Down Expand Up @@ -2129,7 +2130,6 @@
"id": "GoogleCloudDatacatalogV1beta1FieldTypeEnumType",
"properties": {
"allowedValues": {
"description": "The set of allowed values for this enum. This set must not be empty, the display names of the values in this set must not be empty and the display names of the values must be case-insensitively unique within this set. The order of items in this list is preserved. This field can be used to Required on create; optional on update. The set of allowed values for this enum. This set must not be empty, the display names of the values in this set must not be empty and the display names of the values must be case-insensitively unique within this set. Currently, enum values can only be added to the list of allowed values. Deletion and renaming of enum values are not supported. Can have up to 500 allowed values.",
"items": {
"$ref": "GoogleCloudDatacatalogV1beta1FieldTypeEnumTypeEnumValue"
},
Expand Down
6 changes: 0 additions & 6 deletions src/apis/datacatalog/v1beta1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,6 @@ export namespace datacatalog_v1beta1 {
* Associates `members` with a `role`.
*/
export interface Schema$Binding {
/**
* A client-specified ID for this binding. Expected to be globally unique to support the internal bindings-by-ID API.
*/
bindingId?: string | null;
/**
* The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the members in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
Expand Down Expand Up @@ -348,9 +345,6 @@ export namespace datacatalog_v1beta1 {
primitiveType?: string | null;
}
export interface Schema$GoogleCloudDatacatalogV1beta1FieldTypeEnumType {
/**
* The set of allowed values for this enum. This set must not be empty, the display names of the values in this set must not be empty and the display names of the values must be case-insensitively unique within this set. The order of items in this list is preserved. This field can be used to Required on create; optional on update. The set of allowed values for this enum. This set must not be empty, the display names of the values in this set must not be empty and the display names of the values must be case-insensitively unique within this set. Currently, enum values can only be added to the list of allowed values. Deletion and renaming of enum values are not supported. Can have up to 500 allowed values.
*/
allowedValues?: Schema$GoogleCloudDatacatalogV1beta1FieldTypeEnumTypeEnumValue[];
}
export interface Schema$GoogleCloudDatacatalogV1beta1FieldTypeEnumTypeEnumValue {
Expand Down

0 comments on commit e559971

Please sign in to comment.