Show / Hide Table of Contents

Class MigrationReplacement

A record to add to a zone in replacement of contents that cannot be migrated.

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

Properties

Rdata

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

The record data of the replacement record, as whitespace-delimited tokens in type-specific presentation format.

Remarks

Required

Rtype

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

The type of DNS record, such as A or CNAME. For more information, see Resource Record (RR) TYPEs.

Remarks

Required

SubstituteRtype

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

The canonical name for a substitute type of the replacement record to be used if the specified rtype is not allowed at the domain. The specified ttl and rdata will still apply with the substitute type.

Ttl

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

The Time To Live of the replacement record, in seconds.

Remarks

Required

In this article
Back to top