| IDRARestServerGroupSetPermissions Method |
Set a group permissions
UriTemplate = "/dra/domains/{domainFqdn}/groups/permissions/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/domains/{domainFqdn}/groups/permissions/put")]
Stream GroupSetPermissions(
string domainFqdn,
string groupIdentifier,
string[] groupIdentifiers,
User[] users,
Group[] groups,
ConnectionParameters connectionParameters
)
<OperationContractAttribute>
<WebInvokeAttribute(Method := "POST", ResponseFormat := WebMessageFormat.Json,
RequestFormat := WebMessageFormat.Json, BodyStyle := WebMessageBodyStyle.Wrapped,
UriTemplate := "/dra/domains/{domainFqdn}/groups/permissions/put")>
Function GroupSetPermissions (
domainFqdn As String,
groupIdentifier As String,
groupIdentifiers As String(),
users As User(),
groups As Group(),
connectionParameters As ConnectionParameters
) As Stream
Parameters
- domainFqdn
- Type: SystemString
The FQDN of the domain where the group is located - groupIdentifier
- Type: SystemString
A string identifying the group. 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 add to the group - groups
- Type: NetIQ.DRA.Common.Rest.DataModelsGroup
An optional array of Group objects to add to the group - connectionParameters
- Type: NetIQ.DRA.Common.Rest.DataModelsConnectionParameters
Optional ConnectionParameters to specify a specify DRA server and Assistant Admin credentials
Return Value
Type:
StreamA
RestResponse object containing the operation results
See Also