Show / Hide Table of Contents

Class InboundAuthConfig

The inbound authentication configuration for the Hosted Application. When unspecified, the service applies the default inbound authentication configuration type.

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

Properties

IdcsConfig

Declaration
[JsonProperty(PropertyName = "idcsConfig")]
public IdcsAuthConfig IdcsConfig { get; set; }
Property Value
Type Description
IdcsAuthConfig

InboundAuthConfigType

Declaration
[Required(ErrorMessage = "InboundAuthConfigType is required.")]
[JsonProperty(PropertyName = "inboundAuthConfigType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InboundAuthConfig.InboundAuthConfigTypeEnum? InboundAuthConfigType { get; set; }
Property Value
Type Description
InboundAuthConfig.InboundAuthConfigTypeEnum?

The inbound authentication configuration type for the Hosted Application.

Remarks

Required

In this article
Back to top