Show / Hide Table of Contents

Class AppAllowedScopes

A list of scopes (exposed by this App or by other Apps) that this App is allowed to access when it acts as an OAuthClient.

Inheritance
object
AppAllowedScopes
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class AppAllowedScopes

Properties

Fqs

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

A fully qualified scope that this App is allowed to access when it acts as an OAuthClient.
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

IdOfDefiningApp

Declaration
[JsonProperty(PropertyName = "idOfDefiningApp")]
public string IdOfDefiningApp { get; set; }
Property Value
Type Description
string

The ID of the App that defines this scope.
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

ReadOnly

Declaration
[JsonProperty(PropertyName = "readOnly")]
public bool? ReadOnly { get; set; }
Property Value
Type Description
bool?

If true, indicates that this value must be protected.
Added In: 18.2.2
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
In this article
Back to top