Show / Hide Table of Contents

Class CreateGovernanceInstanceDetails

The details about a new GovernanceInstance.

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

Properties

CompartmentId

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

The OCID of the compartment where the GovernanceInstance resides.

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>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

Description

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

The description of the GovernanceInstance.

DisplayName

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

The name for the GovernanceInstance.

Remarks

Required

FreeformTags

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

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

IdcsAccessToken

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

IDCS access token identifying a stripe and service administrator user.

Remarks

Required

LicenseType

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

The licenseType being used.

Remarks

Required

SystemTags

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

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TenancyNamespace

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

The namespace for tenancy object storage.

Remarks

Required

In this article
Back to top