Show / Hide Table of Contents

Class DynectMigrationDetails

Details specific to performing a DynECT zone migration.

Inheritance
object
DynectMigrationDetails
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 DynectMigrationDetails

Properties

CustomerName

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

DynECT customer name the zone belongs to.

Remarks

Required

HttpRedirectReplacements

Declaration
[JsonProperty(PropertyName = "httpRedirectReplacements")]
public Dictionary<string, List<MigrationReplacement>> HttpRedirectReplacements { get; set; }
Property Value
Type Description
Dictionary<string, List<MigrationReplacement>>

A map of fully-qualified domain names (FQDNs) to an array of MigrationReplacement objects.

Password

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

DynECT API password for the provided username.

Remarks

Required

Username

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

DynECT API username to perform the migration with.

Remarks

Required

In this article
Back to top