Show / Hide Table of Contents

Class DataSafeConfiguration

A Data Safe configuration for a tenancy and region.

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

Properties

CompartmentId

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

The OCID of the tenancy used to enable Data Safe.

DataSafeNatGatewayIpAddress

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

The Oracle Data Safe's NAT Gateway IP Address.

DefinedTags

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

Defined tags for this resource. Each key is predefined and scoped to a namespace. 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>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags
Example: {"Department": "Finance"}

GlobalSettings

Declaration
[JsonProperty(PropertyName = "globalSettings")]
public GlobalSettings GlobalSettings { get; set; }
Property Value
Type Description
GlobalSettings

IsEnabled

Declaration
[Required(ErrorMessage = "IsEnabled is required.")]
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Indicates if Data Safe is enabled.

Remarks

Required

LifecycleState

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

The current state of Data Safe.

TimeEnabled

Declaration
[JsonProperty(PropertyName = "timeEnabled")]
public DateTime? TimeEnabled { get; set; }
Property Value
Type Description
DateTime?

The date and time Data Safe was enabled, in the format defined by RFC3339.

Url

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

The URL of the Data Safe service.

In this article
Back to top