Class AppGrantedAppRoles
A list of AppRoles that are granted to this App (and that are defined by other Apps). Within the Oracle Public Cloud infrastructure, this allows AppID-based association. Such an association allows this App to act as a consumer and thus to access resources of another App that acts as a producer.
Inherited Members
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class AppGrantedAppRoles
Properties
AdminRole
Declaration
[JsonProperty(PropertyName = "adminRole")]
public bool? AdminRole { get; set; }
Property Value
Type | Description |
---|---|
bool? | If true, then this granted AppRole confers administrative privileges within the App that defines it. Otherwise, the granted AppRole confers only functional privileges.
|
AppId
Declaration
[JsonProperty(PropertyName = "appId")]
public string AppId { get; set; }
Property Value
Type | Description |
---|---|
string | The id of the App that defines this AppRole, which is granted to this App. The App that defines the AppRole acts as the producer; the App to which the AppRole is granted acts as a consumer.
|
AppName
Declaration
[JsonProperty(PropertyName = "appName")]
public string AppName { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the App that defines this AppRole, which is granted to this App. The App that defines the AppRole acts as the producer; the App to which the AppRole is granted acts as a consumer.
|
Display
Declaration
[JsonProperty(PropertyName = "display")]
public string Display { get; set; }
Property Value
Type | Description |
---|---|
string | The display-name of an AppRole that is granted to this App.
|
LegacyGroupName
Declaration
[JsonProperty(PropertyName = "legacyGroupName")]
public string LegacyGroupName { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the legacy group associated with this AppRole.
|
ReadOnly
Declaration
[JsonProperty(PropertyName = "readOnly")]
public bool? ReadOnly { get; set; }
Property Value
Type | Description |
---|---|
bool? | If true, indicates that this value must be protected.
|
Ref
Declaration
[JsonProperty(PropertyName = "$ref")]
public string Ref { get; set; }
Property Value
Type | Description |
---|---|
string | The URI of an AppRole that is granted to this App.
|
Type
Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AppGrantedAppRoles.TypeEnum? Type { get; set; }
Property Value
Type | Description |
---|---|
AppGrantedAppRoles.TypeEnum? | A label that indicates whether this AppRole was granted directly to the App (or indirectly through a Group). For an App, the value of this attribute will always be 'direct' (because an App cannot be a member of a Group).
|
Value
Declaration
[Required(ErrorMessage = "Value is required.")]
[JsonProperty(PropertyName = "value")]
public string Value { get; set; }
Property Value
Type | Description |
---|---|
string | The id of an AppRole that is granted to this App.
|
Remarks
Required