Show / Hide Table of Contents

Class CredentialEndpoint

The endpoint from where to fetch a credential, for example, the OAuth 2.0 token.

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

Properties

Description

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

The credential endpoint description.

EndpointId

Declaration
[JsonProperty(PropertyName = "endpointId")]
public long? EndpointId { get; set; }
Property Value
Type Description
long?

The endpoint unique identifier.

Model

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

The credential endpoint model.

Name

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

The credential endpoint name.

Remarks

Required

Proxy

Declaration
[JsonProperty(PropertyName = "proxy")]
public EndpointProxy Proxy { get; set; }
Property Value
Type Description
EndpointProxy

Request

Declaration
[Required(ErrorMessage = "Request is required.")]
[JsonProperty(PropertyName = "request")]
public EndpointRequest Request { get; set; }
Property Value
Type Description
EndpointRequest
Remarks

Required

Response

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