| IDRARestServerAzureUserSetInfo Method |
Updates the properties of a azure user
UriTemplate: /dra/tenants/{tenantIdentifier}/azureusers/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/put")]
Stream AzureUserSetInfo(
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/put")>
Function AzureUserSetInfo (
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. - azureUserIdentifier
- Type: SystemString
A string identifying a azure usre to be updated. Supported formats are: name and distinguishedName. - azureUser
- Type: NetIQ.DRA.Common.Rest.DataModelsAzureUser
A AzureUser object containing the properties to update - connectionParameters
- Type: NetIQ.DRA.Common.Rest.DataModelsConnectionParameters
Optional ConnectionParameters to specify a DRA server and Assistant Admin credentials
Return Value
Type:
StreamA
GetAzureUserPropertiesResponse containing the operation results
See Also