Show / Hide Table of Contents

Class ApplicationComponent

Reference to an application component

Inheritance
object
ApplicationComponent
DataFlowApplicationApplicationComponent
DataScienceJobApplicationComponent
DataScienceModelApplicationComponent
DataSciencePipelineApplicationComponent
GenericOciResourceApplicationComponent
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
[JsonConverter(typeof(ApplicationComponentModelConverter))]
public class ApplicationComponent

Properties

ComponentName

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

Name of application component

Remarks

Required

Name

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

Name of referenced resource (generally resources do not have to have any name but most resources have name exposed as 'name' or 'displayName' field).

In this article
Back to top