Skip to content

Commit

Permalink
fix(healthcare): update the API
Browse files Browse the repository at this point in the history
#### healthcare:v1beta1

The following keys were changed:
- schemas.AttributeDefinition.properties.allowedValues.description

#### healthcare:v1

The following keys were changed:
- schemas.AttributeDefinition.properties.allowedValues.description
  • Loading branch information
yoshi-automation authored and sofisl committed Sep 23, 2021
1 parent 46263e5 commit b946c5c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions discovery/healthcare-v1.json
Expand Up @@ -3956,7 +3956,7 @@
}
}
},
"revision": "20210909",
"revision": "20210914",
"rootUrl": "https://healthcare.googleapis.com/",
"schemas": {
"ActivateConsentRequest": {
Expand Down Expand Up @@ -4071,7 +4071,7 @@
"id": "AttributeDefinition",
"properties": {
"allowedValues": {
"description": "Required. Possible values for the attribute. The number of allowed values must not exceed 100. An empty list is invalid. The list can only be expanded after creation.",
"description": "Required. Possible values for the attribute. The number of allowed values must not exceed 500. An empty list is invalid. The list can only be expanded after creation.",
"items": {
"type": "string"
},
Expand Down
4 changes: 2 additions & 2 deletions discovery/healthcare-v1beta1.json
Expand Up @@ -4865,7 +4865,7 @@
}
}
},
"revision": "20210830",
"revision": "20210914",
"rootUrl": "https://healthcare.googleapis.com/",
"schemas": {
"ActivateConsentRequest": {
Expand Down Expand Up @@ -5058,7 +5058,7 @@
"id": "AttributeDefinition",
"properties": {
"allowedValues": {
"description": "Required. Possible values for the attribute. The number of allowed values must not exceed 100. An empty list is invalid. The list can only be expanded after creation.",
"description": "Required. Possible values for the attribute. The number of allowed values must not exceed 500. An empty list is invalid. The list can only be expanded after creation.",
"items": {
"type": "string"
},
Expand Down
2 changes: 1 addition & 1 deletion src/apis/healthcare/v1.ts
Expand Up @@ -198,7 +198,7 @@ export namespace healthcare_v1 {
*/
export interface Schema$AttributeDefinition {
/**
* Required. Possible values for the attribute. The number of allowed values must not exceed 100. An empty list is invalid. The list can only be expanded after creation.
* Required. Possible values for the attribute. The number of allowed values must not exceed 500. An empty list is invalid. The list can only be expanded after creation.
*/
allowedValues?: string[] | null;
/**
Expand Down
2 changes: 1 addition & 1 deletion src/apis/healthcare/v1beta1.ts
Expand Up @@ -262,7 +262,7 @@ export namespace healthcare_v1beta1 {
*/
export interface Schema$AttributeDefinition {
/**
* Required. Possible values for the attribute. The number of allowed values must not exceed 100. An empty list is invalid. The list can only be expanded after creation.
* Required. Possible values for the attribute. The number of allowed values must not exceed 500. An empty list is invalid. The list can only be expanded after creation.
*/
allowedValues?: string[] | null;
/**
Expand Down

0 comments on commit b946c5c

Please sign in to comment.