Show / Hide Table of Contents

Class AuthDetails

Authentication type to be used for Generic REST invocation. This is deprecated.

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

Properties

Key

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

Generated key that can be used in API calls to identify data flow. On scenarios where reference to the data flow is needed, a value can be passed in create.

ModelType

Declaration
[JsonProperty(PropertyName = "modelType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AuthDetails.ModelTypeEnum? ModelType { get; set; }
Property Value
Type Description
AuthDetails.ModelTypeEnum?

The authentication mode to be used for Generic REST invocation.

ModelVersion

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

The model version of an object.

ParentRef

Declaration
[JsonProperty(PropertyName = "parentRef")]
public ParentReference ParentRef { get; set; }
Property Value
Type Description
ParentReference
In this article
Back to top