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.VisualbuilderService.Models
Assembly: OCI.DotNetSDK.Visualbuilder.dll
Syntax
public class PublicEndpointDetails : NetworkEndpointDetails

Properties

AllowlistedHttpIps

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

Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.

AllowlistedHttpVcns

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

Virtual Cloud Networks allowed to access this network endpoint.

In this article
Back to top