| IDRARestServerAzureGroupMemberAdd Method |
Adds the specified objects to the azure group
UriTemplate: /dra/tenants/{tenantIdentifier}/azuregroups/members/post
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}/azuregroups/members/post")]
Stream AzureGroupMemberAdd(
string tenantIdentifier,
string azureGroupIdentifier,
string[] azureGroupIdentifiers,
AzureUser[] azureUsers,
AzureGroup[] azureGroups,
AzureContact[] azureContacts,
User[] users,
Group[] groups,
Contact[] contacts,
ConnectionParameters connectionParameters
)
<OperationContractAttribute>
<WebInvokeAttribute(Method := "POST", ResponseFormat := WebMessageFormat.Json,
RequestFormat := WebMessageFormat.Json, BodyStyle := WebMessageBodyStyle.Wrapped,
UriTemplate := "/dra/tenants/{tenantIdentifier}/azuregroups/members/post")>
Function AzureGroupMemberAdd (
tenantIdentifier As String,
azureGroupIdentifier As String,
azureGroupIdentifiers As String(),
azureUsers As AzureUser(),
azureGroups As AzureGroup(),
azureContacts As AzureContact(),
users As User(),
groups As Group(),
contacts As Contact(),
connectionParameters As ConnectionParameters
) As Stream
Parameters
- tenantIdentifier
- Type: SystemString
The GUID or displayname of the tenant where the Azure group is to be created. - azureGroupIdentifier
- Type: SystemString
A string identifying a azure group to be updated. Supported formats are: name and distinguishedName. - azureGroupIdentifiers
- Type: SystemString
An array of strings identifying a list of azure groups to be updated. Supported formats are: name and distinguishedName. - azureUsers
- Type: NetIQ.DRA.Common.Rest.DataModelsAzureUser
An optional array of AzureUser objects to add to the azure group - azureGroups
- Type: NetIQ.DRA.Common.Rest.DataModelsAzureGroup
An optional array of AzureGroup objects to add to the azure group - azureContacts
- Type: NetIQ.DRA.Common.Rest.DataModelsAzureContact
An optional array of AzureContact objects to add to the azure group - users
- Type: NetIQ.DRA.Common.Rest.DataModelsUser
An optional array of User objects to add to the azure group - groups
- Type: NetIQ.DRA.Common.Rest.DataModelsGroup
An optional array of Group objects to add to the azure group - contacts
- Type: NetIQ.DRA.Common.Rest.DataModelsContact
An optional array of Contact objects to add to the azure group - connectionParameters
- Type: NetIQ.DRA.Common.Rest.DataModelsConnectionParameters
Optional ConnectionParameters to specify a DRA server and Assistant Admin credentials
Return Value
Type:
StreamA
RestResponse containing the operation results
See Also