Show / Hide Table of Contents

Class AdditionalEgressRule

Additional egress rule.

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

Properties

Description

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

Rule description.

Remarks

Required

DestinationCidr

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

Specifies the destination CIDR block the port should be opened for. Must be IPv4 only, and cannot be part of any private range from RFC 1918.

Remarks

Required

MaxDestinationPort

Declaration
[Required(ErrorMessage = "MaxDestinationPort is required.")]
[JsonProperty(PropertyName = "maxDestinationPort")]
public int? MaxDestinationPort { get; set; }
Property Value
Type Description
int?

The maximum port number, which must not be less than the minimum port number. To specify a single port number, set both the min and max to the same value.

Remarks

Required

MinDestinationPort

Declaration
[Required(ErrorMessage = "MinDestinationPort is required.")]
[JsonProperty(PropertyName = "minDestinationPort")]
public int? MinDestinationPort { get; set; }
Property Value
Type Description
int?

The minimum port number, which must not be greater than the maximum port number.

Remarks

Required

In this article
Back to top