Show / Hide Table of Contents

Class InboundAuthConfig

The client-side inbound authentication configuration for the Hosted Application. Defines the network access rules. 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?

Inbound authentication configuration type of network access (IDCS_AUTH_CONFIG).

Remarks

Required

In this article
Back to top