Skip to content

Commit bcfefa5

Browse files
yoshi-automationsofisl
authored andcommittedAug 16, 2024
fix(admin): update the API
#### admin:directory_v1 The following keys were changed: - resources.users.methods.insert.description
1 parent c24f578 commit bcfefa5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎discovery/admin-directory_v1.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3931,7 +3931,7 @@
39313931
]
39323932
},
39333933
"insert": {
3934-
"description": "Creates a user. Mutate calls immediately following user creation might sometimes fail as the user isn't fully created due to propagation delay in our backends. Check the error details for the \"User creation is not complete\" message to see if this is the case. Retrying the calls after some time can help in this case.",
3934+
"description": "Creates a user. Mutate calls immediately following user creation might sometimes fail as the user isn't fully created due to propagation delay in our backends. Check the error details for the \"User creation is not complete\" message to see if this is the case. Retrying the calls after some time can help in this case. If `resolveConflictAccount` is set to `true`, a `202` response code means that a conflicting unmanaged account exists and was invited to join the organization. A `409` response code means that a conflicting account exists so the user wasn't created based on the [handling unmanaged user accounts](https://support.google.com/a/answer/11112794) option selected.",
39353935
"flatPath": "admin/directory/v1/users",
39363936
"httpMethod": "POST",
39373937
"id": "directory.users.insert",
@@ -4671,7 +4671,7 @@
46714671
}
46724672
}
46734673
},
4674-
"revision": "20240618",
4674+
"revision": "20240709",
46754675
"rootUrl": "https://admin.googleapis.com/",
46764676
"schemas": {
46774677
"Alias": {

‎src/apis/admin/directory_v1.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13914,7 +13914,7 @@ export namespace admin_directory_v1 {
1391413914
}
1391513915

1391613916
/**
13917-
* Creates a user. Mutate calls immediately following user creation might sometimes fail as the user isn't fully created due to propagation delay in our backends. Check the error details for the "User creation is not complete" message to see if this is the case. Retrying the calls after some time can help in this case.
13917+
* Creates a user. Mutate calls immediately following user creation might sometimes fail as the user isn't fully created due to propagation delay in our backends. Check the error details for the "User creation is not complete" message to see if this is the case. Retrying the calls after some time can help in this case. If `resolveConflictAccount` is set to `true`, a `202` response code means that a conflicting unmanaged account exists and was invited to join the organization. A `409` response code means that a conflicting account exists so the user wasn't created based on the [handling unmanaged user accounts](https://support.google.com/a/answer/11112794) option selected.
1391813918
*
1391913919
* @param params - Parameters for request
1392013920
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.

0 commit comments

Comments
 (0)
Please sign in to comment.