Show / Hide Table of Contents

Class CreateAnalyticsInstanceDetails

Input payload to create an Anaytics instance.

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

Properties

AdminUser

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

user name of the authorized user.

Capacity

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

Required

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.

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. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

Description

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

Optional description.

DomainId

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

domain id for which the user is authorized.

EmailNotification

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

Email address receiving notifications.

FeatureBundle

Declaration
[JsonProperty(PropertyName = "featureBundle")]
[JsonConverter(typeof(StringEnumConverter))]
public FeatureBundle? FeatureBundle { get; set; }
Property Value
Type Description
FeatureBundle?

The feature set of an Analytics instance.

FeatureSet

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

Analytics feature set.

Remarks

Required

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

IdcsAccessToken

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

IDCS access token identifying a stripe and service administrator user.

KmsKeyId

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

OCID of the OCI Vault Key encrypting the customer data stored in this Analytics instance. A null value indicates Oracle managed default encryption.

LicenseType

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

The license used for the service.

Remarks

Required

Name

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

The name of the Analytics instance. This name must be unique in the tenancy and cannot be changed.

Remarks

Required

NetworkEndpointDetails

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

UpdateChannel

Declaration
[JsonProperty(PropertyName = "updateChannel")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateChannel? UpdateChannel { get; set; }
Property Value
Type Description
UpdateChannel?

Analytics instance update channel.

In this article
Back to top