Skip to content

Commit

Permalink
fix(people): update the API
Browse files Browse the repository at this point in the history
#### people:v1
The following keys were changed:
- schemas.ModifyContactGroupMembersRequest.properties.resourceNamesToAdd.description
- schemas.ModifyContactGroupMembersRequest.properties.resourceNamesToRemove.description
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Nov 30, 2020
1 parent 94fe6d9 commit b639a17
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions discovery/people-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@
}
}
},
"revision": "20201111",
"revision": "20201123",
"rootUrl": "https://people.googleapis.com/",
"schemas": {
"Address": {
Expand Down Expand Up @@ -1861,14 +1861,14 @@
"id": "ModifyContactGroupMembersRequest",
"properties": {
"resourceNamesToAdd": {
"description": "Optional. The resource names of the contact people to add in the form of `people/{person_id}`.",
"description": "Optional. The resource names of the contact people to add in the form of `people/{person_id}`. The total number of resource names in `resource_names_to_add` and `resource_names_to_remove` must be less than or equal to 1000.",
"items": {
"type": "string"
},
"type": "array"
},
"resourceNamesToRemove": {
"description": "Optional. The resource names of the contact people to remove in the form of `people/{person_id}`.",
"description": "Optional. The resource names of the contact people to remove in the form of `people/{person_id}`. The total number of resource names in `resource_names_to_add` and `resource_names_to_remove` must be less than or equal to 1000.",
"items": {
"type": "string"
},
Expand Down
4 changes: 2 additions & 2 deletions src/apis/people/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -791,11 +791,11 @@ export namespace people_v1 {
*/
export interface Schema$ModifyContactGroupMembersRequest {
/**
* Optional. The resource names of the contact people to add in the form of `people/{person_id\}`.
* Optional. The resource names of the contact people to add in the form of `people/{person_id\}`. The total number of resource names in `resource_names_to_add` and `resource_names_to_remove` must be less than or equal to 1000.
*/
resourceNamesToAdd?: string[] | null;
/**
* Optional. The resource names of the contact people to remove in the form of `people/{person_id\}`.
* Optional. The resource names of the contact people to remove in the form of `people/{person_id\}`. The total number of resource names in `resource_names_to_add` and `resource_names_to_remove` must be less than or equal to 1000.
*/
resourceNamesToRemove?: string[] | null;
}
Expand Down

0 comments on commit b639a17

Please sign in to comment.