Show / Hide Table of Contents

Class CreateIdcsCustomServiceAuthConfigurationDetails

Create configuration for existing Oracle Cloud Service

Inheritance
object
CreateAuthConfigurationDetails
CreateIdcsCustomServiceAuthConfigurationDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class CreateIdcsCustomServiceAuthConfigurationDetails : CreateAuthConfigurationDetails

Properties

AccessToken

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

Bearer token serving as Proof-of-Ownership for referenced IDCS stripe/application

Remarks

Required

ApplicationName

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

Name of the IDCS application

Remarks

Required

Audience

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

Audience of the IDCS application

Remarks

Required

RoleName

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

Name of the IDCS application role

Scope

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

Scope of the IDCS application

Remarks

Required

In this article
Back to top