| IDRARestServerSchemaAttributeEnum Method |
Lists the attributes defined in the DRA schema for the specified object class
UriTemplate: /dra/attributes/{objectClass}/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/attributes/{objectClass}/get")]
Stream SchemaAttributeEnum(
string objectClass,
SchemaAttribute schemaAttributeAndFilter,
SchemaAttribute schemaAttributeOrFilter,
bool excludeDraProperties,
string excludeFilter,
bool includeOnlyCachedAttribute,
ConnectionParameters connectionParameters
)
<OperationContractAttribute>
<WebInvokeAttribute(Method := "POST", ResponseFormat := WebMessageFormat.Json,
RequestFormat := WebMessageFormat.Json, BodyStyle := WebMessageBodyStyle.Wrapped,
UriTemplate := "/dra/attributes/{objectClass}/get")>
Function SchemaAttributeEnum (
objectClass As String,
schemaAttributeAndFilter As SchemaAttribute,
schemaAttributeOrFilter As SchemaAttribute,
excludeDraProperties As Boolean,
excludeFilter As String,
includeOnlyCachedAttribute As Boolean,
connectionParameters As ConnectionParameters
) As Stream
Parameters
- objectClass
- Type: SystemString
The object class whose properties are to be searched. - schemaAttributeAndFilter
- Type: NetIQ.DRA.Common.Rest.DataModelsSchemaAttribute
An optional SchemaAttribute object that defines the attribute patterns to match for schema attributes to use in the 'and' clause. - schemaAttributeOrFilter
- Type: NetIQ.DRA.Common.Rest.DataModelsSchemaAttribute
An optional SchemaAttribute object that defines the attribute patterns to match for schema attributes to use in the 'or' clause. - excludeDraProperties
- Type: SystemBoolean
An optional flag indicating the enumeration should return no DRA properties. - excludeFilter
- Type: SystemString
An optional match string. Any property whose name matches the filter will be excluded from the results. This parameter is ignored when excludeDraProperties is true. - includeOnlyCachedAttribute
- Type: SystemBoolean
An optional flag indicating if only cached attributes need to be returned - connectionParameters
- Type: NetIQ.DRA.Common.Rest.DataModelsConnectionParameters
Optional ConnectionParameters to specify a DRA server and Assistant Admin credentials.
Return Value
Type:
StreamA
SchemaAttributeListResponse containing the operation results
See Also