Class EndpointProxy
An object containing the endpoint proxy details.
Inherited Members
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class EndpointProxy
Properties
CredentialName
Declaration
[JsonProperty(PropertyName = "credentialName")]
public string CredentialName { get; set; }
Property Value
Type | Description |
---|---|
string | The named credential name on the management agent, containing the proxy credentials. |
CredentialType
Declaration
[JsonProperty(PropertyName = "credentialType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public EndpointProxy.CredentialTypeEnum? CredentialType { get; set; }
Property Value
Type | Description |
---|---|
EndpointProxy.CredentialTypeEnum? | The credential type. NONE indicates credentials are not needed to access the proxy. BASIC_AUTH represents a username and password based model. TOKEN represents a token based model. |
Url
Declaration
[Required(ErrorMessage = "Url is required.")]
[JsonProperty(PropertyName = "url")]
public string Url { get; set; }
Property Value
Type | Description |
---|---|
string | The proxy URL. |
Remarks
Required