Show / Hide Table of Contents

Class MlApplicationInstanceViewSummary

Summary of the MlApplicationInstanceView.

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

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 MlApplicationInstanceView is created.

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. See Resource Tags. Example: {"Operations": {"CostCenter": "42"}}

DisplayName

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

The name of the MlApplicationInstance (created by the consumer) which this MlApplicationInstanceView is mirroring.

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. See Resource Tags. Example: {"Department": "Finance"}

Id

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

The OCID of the MlApplicationInstanceView. Unique identifier that is immutable after creation

Remarks

Required

IsEnabled

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

This field is a copy from MlApplicationInstance created by the consumer. States whether the MlApplicationInstance is supposed to be in ACTIVE lifecycle state.

Remarks

Required

LifecycleState

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

The current state of the MlApplicationInstance(View).

Remarks

Required

LifecycleSubstate

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

The current substate of the MlApplicationInstance. The substate has MlApplicationInstance specific values in comparison with lifecycleState which has standard values common for all OCI resources.

Remarks

Required

MlApplicationId

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

The OCID of ML Application. This resource is an instance of ML Application referenced by this OCID.

Remarks

Required

MlApplicationImplementationId

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

This field is a copy from MlApplicationInstance created by the consumer. The OCID of ML Application Implementation selected as a certain solution for a given ML problem (ML Application)

Remarks

Required

MlApplicationImplementationName

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

This field is a copy from MlApplicationInstance created by the consumer. The name of Ml Application Implemenation (based on mlApplicationImplementationId)

Remarks

Required

MlApplicationImplementationVersionId

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

The OCID of the currently used MlApplicationImplementationVersion

Remarks

Required

MlApplicationInstanceId

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

The OCID of the MlApplicationInstance (created by the consumer) which this MlApplicationInstanceView is mirroring.

Remarks

Required

MlApplicationName

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

The name of ML Application (based on mlApplicationId).

Remarks

Required

PackageVersion

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

Version of MlApplication package which is currently used by this MlApplicationInstance.

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

TimeCreated

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

The time the the MlApplicationInstanceView was created. An RFC3339 formatted datetime string

Remarks

Required

In this article
Back to top