Skip to content

Commit

Permalink
feat(admin): update the API
Browse files Browse the repository at this point in the history
#### admin:directory_v1

The following keys were added:
- resources.users.methods.insert.parameters.resolveConflictAccount.description
- resources.users.methods.insert.parameters.resolveConflictAccount.location
- resources.users.methods.insert.parameters.resolveConflictAccount.type
  • Loading branch information
yoshi-automation authored and sofisl committed Aug 17, 2023
1 parent 4bae312 commit ebfb777
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
10 changes: 8 additions & 2 deletions discovery/admin-directory_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -3908,7 +3908,13 @@
"httpMethod": "POST",
"id": "directory.users.insert",
"parameterOrder": [],
"parameters": {},
"parameters": {
"resolveConflictAccount": {
"description": "Optional. If set to `true`, the option selected for [handling unmanaged user accounts](https://support.google.com/a/answer/11112794) will apply. Default: `false`",
"location": "query",
"type": "boolean"
}
},
"path": "admin/directory/v1/users",
"request": {
"$ref": "User"
Expand Down Expand Up @@ -4637,7 +4643,7 @@
}
}
},
"revision": "20230802",
"revision": "20230815",
"rootUrl": "https://admin.googleapis.com/",
"schemas": {
"Alias": {
Expand Down
5 changes: 5 additions & 0 deletions src/apis/admin/directory_v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14276,6 +14276,11 @@ export namespace admin_directory_v1 {
viewType?: string;
}
export interface Params$Resource$Users$Insert extends StandardParameters {
/**
* Optional. If set to `true`, the option selected for [handling unmanaged user accounts](https://support.google.com/a/answer/11112794) will apply. Default: `false`
*/
resolveConflictAccount?: boolean;

/**
* Request body metadata
*/
Expand Down

0 comments on commit ebfb777

Please sign in to comment.