| IDRARestServerGetPublicFoldersRequest Method |
Retrieves a list of public folders matching the specified search criteria in a specific domain or returns the requested attributes of a specified public folder in that domain.
UriTemplate: /dra/domains/{domainFqdn}/publicFolders/get
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}/publicfolders/get")]
Stream GetPublicFoldersRequest(
string domainFqdn,
string publicFolderIdentifier,
PublicFolder publicFolderAndFilter,
PublicFolder publicFolderOrFilter,
string[] attributes,
GetInfoOptions getInfoOptions,
EnumerationOptions enumerationOptions,
ConnectionParameters connectionParameters
)
<OperationContractAttribute>
<WebInvokeAttribute(Method := "POST", ResponseFormat := WebMessageFormat.Json,
RequestFormat := WebMessageFormat.Json, BodyStyle := WebMessageBodyStyle.Wrapped,
UriTemplate := "/dra/domains/{domainFqdn}/publicfolders/get")>
Function GetPublicFoldersRequest (
domainFqdn As String,
publicFolderIdentifier As String,
publicFolderAndFilter As PublicFolder,
publicFolderOrFilter As PublicFolder,
attributes As String(),
getInfoOptions As GetInfoOptions,
enumerationOptions As EnumerationOptions,
connectionParameters As ConnectionParameters
) As Stream
Parameters
- domainFqdn
- Type: SystemString
The FQDN of the domain to query - publicFolderIdentifier
- Type: SystemString
A string identifying the public folder. Used to indicate that the requested attributes of the public folder should be returned. - publicFolderAndFilter
- Type: NetIQ.DRA.Common.Rest.DataModelsPublicFolder
An optional PublicFolder object that defines the attribute patterns to match for public folders to use in the 'and' clause - publicFolderOrFilter
- Type: NetIQ.DRA.Common.Rest.DataModelsPublicFolder
An optional PublicFolder object that defines the attribute patterns to match for public folders to use in the 'or' clause - attributes
- Type: SystemString
An optional list of the properties to retrieve from the server - getInfoOptions
- Type: NetIQ.DRA.Common.Rest.DataModelsGetInfoOptions
An optional GetInfoOptions structure that controls what data is returned - enumerationOptions
- Type: NetIQ.DRA.Common.Rest.DataModelsEnumerationOptions
An optional EnumerationOptions structure that controls how the enumeration is performed - connectionParameters
- Type: NetIQ.DRA.Common.Rest.DataModelsConnectionParameters
Optional ConnectionParameters to specify a DRA server and Assistant Admin credentials
Return Value
Type:
StreamA
GetPublicFolderPropertiesResponse when attributes of a public folder are requested or a
EnumObjectListResponse containing the public folders that matched the specified search filters.
See Also