 | IDRARestServerGetAdvancedQueryRequest Method |
Retrieves a list of advanced queries or returns the properties of a specified advanced query.
UriTemplate: /dra/advancedqueries/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/advancedqueries/get")]
Stream GetAdvancedQueryRequest(
string queryIdentifier,
AdvancedQuery advancedQueryOrFilter,
ConnectionParameters connectionParameters
)
<OperationContractAttribute>
<WebInvokeAttribute(Method := "POST", ResponseFormat := WebMessageFormat.Json,
RequestFormat := WebMessageFormat.Json, BodyStyle := WebMessageBodyStyle.Wrapped,
UriTemplate := "/dra/advancedqueries/get")>
Function GetAdvancedQueryRequest (
queryIdentifier As String,
advancedQueryOrFilter As AdvancedQuery,
connectionParameters As ConnectionParameters
) As Stream
Parameters
- queryIdentifier
- Type: SystemString
A string identifying the query. When specified the attributes of the query are returned. - advancedQueryOrFilter
- Type: NetIQ.DRA.Common.Rest.DataModelsAdvancedQuery
Optional AdvancedQuery that defines match criteria for the queries returned. Currently only queryFolder is supported. - connectionParameters
- Type: NetIQ.DRA.Common.Rest.DataModelsConnectionParameters
Optional ConnectionParameters to specify a DRA server and Assistant Admin credentials
Return Value
Type:
StreamA
GetAdvancedQueryPropertiesResponse when attributes of an advanced query are requested or a
AdvancedQueryListResponse containing the list of requested queries
See Also