Show / Hide Table of Contents

Class CloudServiceProviderNetworkMetadataItem

Cloud Service Provider metadata item. Warning - In future this object can change to generic object with future Cloud Service Provider based on CloudServiceProvider field. This can be one of CSP provider type Azure, GCP and AWS

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

Properties

CidrBlocks

Declaration
[JsonProperty(PropertyName = "cidrBlocks")]
public List<string> CidrBlocks { get; set; }
Property Value
Type Description
List<string>

An Azure/GCP/AWS cidrBlocks

DnsForwardingConfig

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

DNS domain ip mapping forwarding configuration

NetworkAnchorUri

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

CSP network anchor Uri

OdbNetworkId

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

CSP oracle database network anchor unique ID/name

Remarks

Required

Region

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

Azure/GCP/AWS region

Remarks

Required

In this article
Back to top