| IDRARestServerGroupMemberRemove Method |
Removes the specified objects from the group
UriTemplate: /dra/domains/{domainFqdn}/groups/members/delete
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/domains/{domainFqdn}/groups/members/delete")]
Stream GroupMemberRemove(
string domainFqdn,
string groupIdentifier,
string[] groupIdentifiers,
User[] users,
Computer[] computers,
Group[] groups,
Contact[] contacts,
GroupManagedServiceAccount[] gmsas,
ForeignSecurityPrincipal[] foreignSecurityPrincipals,
ConnectionParameters connectionParameters
)
<OperationContractAttribute>
<WebInvokeAttribute(Method := "POST", ResponseFormat := WebMessageFormat.Json,
RequestFormat := WebMessageFormat.Json, BodyStyle := WebMessageBodyStyle.Wrapped,
UriTemplate := "/dra/domains/{domainFqdn}/groups/members/delete")>
Function GroupMemberRemove (
domainFqdn As String,
groupIdentifier As String,
groupIdentifiers As String(),
users As User(),
computers As Computer(),
groups As Group(),
contacts As Contact(),
gmsas As GroupManagedServiceAccount(),
foreignSecurityPrincipals As ForeignSecurityPrincipal(),
connectionParameters As ConnectionParameters
) As Stream
Parameters
- domainFqdn
- Type: SystemString
The FQDN of the domain to query - groupIdentifier
- Type: SystemString
A string identifying a group to be updated. Supported formats are: name or distinguishedName - groupIdentifiers
- Type: SystemString
An array of strings identifying a list of groups to be updated. Supported formats are: name and distinguishedName. - users
- Type: NetIQ.DRA.Common.Rest.DataModelsUser
An optional array of User objects to remove from the group - computers
- Type: NetIQ.DRA.Common.Rest.DataModelsComputer
An optional array of Computer objects to remove from the group - groups
- Type: NetIQ.DRA.Common.Rest.DataModelsGroup
An optional array of Group objects to remove from the group - contacts
- Type: NetIQ.DRA.Common.Rest.DataModelsContact
An optional array of Contact objects to remove from the group - gmsas
- Type: NetIQ.DRA.Common.Rest.DataModelsGroupManagedServiceAccount
An optional array of GroupManagedServiceAccount objects to add to the group - foreignSecurityPrincipals
- Type: NetIQ.DRA.Common.Rest.DataModelsForeignSecurityPrincipal
An optional array of ForeignSecurityPrincipal objects to remove from the 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