Show / Hide Table of Contents

Class ScimQuerySelectionMode

Indicates that the selection is a scimQuery.

Inheritance
object
SelectionDetails
ScimQuerySelectionMode
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class ScimQuerySelectionMode : SelectionDetails

Properties

ScimQuery

Declaration
[Required(ErrorMessage = "ScimQuery is required.")]
[JsonProperty(PropertyName = "scimQuery")]
public string ScimQuery { get; set; }
Property Value
Type Description
string

The scimQuery query parameter accepts filter expressions that use the syntax described in Section 3.2.2.2 of the System for Cross-Domain Identity Management (SCIM) specification, which is available at RFC3339. In SCIM filtering expressions, text, date, and time values must be enclosed in quotation marks, with date and time values using ISO-8601 format. (Numeric and boolean values should not be quoted.)
**Example: ** query=(dbUserName eq "PAY_APP")

Remarks

Required

In this article
Back to top