feat: updated openapi to support tasks containing scripts (#430)
This commit is contained in:
@ -133,11 +133,16 @@ type UsersApi interface {
|
||||
PostUsersExecuteWithHttpInfo(r ApiPostUsersRequest) (UserResponse, *_nethttp.Response, error)
|
||||
|
||||
/*
|
||||
* PostUsersIDPassword Update a password
|
||||
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
|
||||
* @param userID The user ID.
|
||||
* @return ApiPostUsersIDPasswordRequest
|
||||
*/
|
||||
* PostUsersIDPassword Update a password
|
||||
* #### InfluxDB Cloud
|
||||
|
||||
InfluxDB Cloud does not support changing user passwords through the API.
|
||||
Use the InfluxDB Cloud user interface to update your password.
|
||||
|
||||
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
|
||||
* @param userID The user ID.
|
||||
* @return ApiPostUsersIDPasswordRequest
|
||||
*/
|
||||
PostUsersIDPassword(ctx _context.Context, userID string) ApiPostUsersIDPasswordRequest
|
||||
|
||||
/*
|
||||
@ -1060,10 +1065,15 @@ func (r ApiPostUsersIDPasswordRequest) ExecuteWithHttpInfo() (*_nethttp.Response
|
||||
|
||||
/*
|
||||
* PostUsersIDPassword Update a password
|
||||
* #### InfluxDB Cloud
|
||||
|
||||
InfluxDB Cloud does not support changing user passwords through the API.
|
||||
Use the InfluxDB Cloud user interface to update your password.
|
||||
|
||||
* @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
|
||||
* @param userID The user ID.
|
||||
* @return ApiPostUsersIDPasswordRequest
|
||||
*/
|
||||
*/
|
||||
func (a *UsersApiService) PostUsersIDPassword(ctx _context.Context, userID string) ApiPostUsersIDPasswordRequest {
|
||||
return ApiPostUsersIDPasswordRequest{
|
||||
ApiService: a,
|
||||
|
Reference in New Issue
Block a user