| IDRARestServerGroupCopy Method |
Copy the specified group to a new group
UriTemplate: /dra/domains/{domainFqdn}/groups/copies/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/domains/{domainFqdn}/groups/copies/post")]
Stream GroupCopy(
string domainFqdn,
string groupIdentifier,
bool noCopyMembers,
Group group,
ConnectionParameters connectionParameters
)
<OperationContractAttribute>
<WebInvokeAttribute(Method := "POST", ResponseFormat := WebMessageFormat.Json,
RequestFormat := WebMessageFormat.Json, BodyStyle := WebMessageBodyStyle.Wrapped,
UriTemplate := "/dra/domains/{domainFqdn}/groups/copies/post")>
Function GroupCopy (
domainFqdn As String,
groupIdentifier As String,
noCopyMembers As Boolean,
group 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 to copy. Supported formats are: name or distinguishedName - noCopyMembers
- Type: SystemBoolean
Set to true the to not copy the source group members information, default is false - group
- Type: NetIQ.DRA.Common.Rest.DataModelsGroup
A Group object containing the properties of the destination group - connectionParameters
- Type: NetIQ.DRA.Common.Rest.DataModelsConnectionParameters
Optional ConnectionParameters to specify a DRA server and Assistant Admin credentials
Return Value
Type:
StreamA
GetGroupPropertiesResponse containing the operation results
See Also