Show / Hide Table of Contents

Class ExternalLocation

External location for CSP Region, CSP-Physical-AZ

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

Properties

CspPhysicalAz

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

A mapping of OCI site group name to CSP physical availability zone name

Remarks

Required

CspPhysicalAzDisplayName

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

User friendly display name for cspPhysicalAZ

Remarks

Required

CspRegion

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

CSP region corresponding to the given OCI region

Remarks

Required

CspRegionDisplayName

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

CSP region display Name corresponding to the given OCI region

Remarks

Required

ServiceName

Declaration
[JsonProperty(PropertyName = "serviceName")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SubscriptionType? ServiceName { get; set; }
Property Value
Type Description
SubscriptionType?

The serviceName that externalLocation map object belongs to

In this article
Back to top