| IDRARestServerAzureUserResetPassword Method |
Sets the password of a user.
UriTemplate: /dra/tenants/{tenantIdentifier}/azureusers/resetpassword/put
Namespace:
NetIQ.DRA.RestServiceLibrary
Assembly:
NetIQ.DRA.RestServiceLibrary (in NetIQ.DRA.RestServiceLibrary.dll) Version: 10.2.2.1
Syntax [OperationContractAttribute]
[WebInvokeAttribute(Method = "POST", ResponseFormat = WebMessageFormat.Json,
RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "/dra/tenants/{tenantIdentifier}/azureusers/resetpassword/put")]
Stream AzureUserResetPassword(
string tenantIdentifier,
string azureUserIdentifier,
AzureUser azureUser,
ConnectionParameters connectionParameters
)
<OperationContractAttribute>
<WebInvokeAttribute(Method := "POST", ResponseFormat := WebMessageFormat.Json,
RequestFormat := WebMessageFormat.Json, BodyStyle := WebMessageBodyStyle.Wrapped,
UriTemplate := "/dra/tenants/{tenantIdentifier}/azureusers/resetpassword/put")>
Function AzureUserResetPassword (
tenantIdentifier As String,
azureUserIdentifier As String,
azureUser As AzureUser,
connectionParameters As ConnectionParameters
) As Stream
Parameters
- tenantIdentifier
- Type: SystemString
The GUID or displayname of the tenant where the Azure user is located - azureUserIdentifier
- Type: SystemString
A string identifying the azure user. Supported formats are: guid or upn - azureUser
- Type: NetIQ.DRA.Common.Rest.DataModelsAzureUser
AzureUser Azure user object - connectionParameters
- Type: NetIQ.DRA.Common.Rest.DataModelsConnectionParameters
Optional ConnectionParameters to specify a DRA server and Assistant Admin credentials
Return Value
Type:
StreamA
RestResponse object containing the operation results
See Also