Show / Hide Table of Contents

Class PublicEndpointDetails

Public endpoint configuration details.

Inheritance
object
NetworkEndpointDetails
PublicEndpointDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AnalyticsService.Models
Assembly: OCI.DotNetSDK.Analytics.dll
Syntax
public class PublicEndpointDetails : NetworkEndpointDetails

Properties

WhitelistedIps

Declaration
[JsonProperty(PropertyName = "whitelistedIps")]
public List<string> WhitelistedIps { get; set; }
Property Value
Type Description
List<string>

Source IP addresses or IP address ranges in ingress rules.

WhitelistedServices

Declaration
[JsonProperty(PropertyName = "whitelistedServices", ItemConverterType = typeof(ResponseEnumConverter))]
public List<AccessControlServiceType> WhitelistedServices { get; set; }
Property Value
Type Description
List<AccessControlServiceType>

Oracle Cloud Services that are allowed to access this Analytics instance.

WhitelistedVcns

Declaration
[JsonProperty(PropertyName = "whitelistedVcns")]
public List<VirtualCloudNetwork> WhitelistedVcns { get; set; }
Property Value
Type Description
List<VirtualCloudNetwork>

Virtual Cloud Networks allowed to access this network endpoint.

In this article
Back to top