Show / Hide Table of Contents

Class ProviderRemoteRegionName

A pair of OCI region and Provider remote region names for FastConnect MultiCloud interconnect.

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

Properties

OciRegionName

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

The OCI region name associated with the provider remote region. Example: us-ashburn-1.

Remarks

Required

ProviderRegionName

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

The provider remote region name associated with the OCI region. Example: us-east-1.

Remarks

Required

In this article
Back to top