Show / Hide Table of Contents

Class SupportedCloudRegionSummary

Summary of the supported cloud region.

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

Properties

AssetSourceType

Declaration
[Required(ErrorMessage = "AssetSourceType is required.")]
[JsonProperty(PropertyName = "assetSourceType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AssetSourceType? AssetSourceType { get; set; }
Property Value
Type Description
AssetSourceType?

The asset source type associated with the supported cloud region.

Remarks

Required

DefinedTags

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

The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: {"Operations": {"CostCenter": "42"}}

FreeformTags

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

The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: {"Department": "Finance"}

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SupportedCloudRegionLifecycleState? LifecycleState { get; set; }
Property Value
Type Description
SupportedCloudRegionLifecycleState?

The current state of the supported cloud region.

Remarks

Required

Name

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

The supported cloud region name.

Remarks

Required

In this article
Back to top