Show / Hide Table of Contents

Class OpsiDataObjectSummary

Summary of an OPSI data object.

Inheritance
object
OpsiDataObjectSummary
DatabaseInsightsDataObjectSummary
ExadataInsightsDataObjectSummary
HostInsightsDataObjectSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
[JsonConverter(typeof(OpsiDataObjectSummaryModelConverter))]
public class OpsiDataObjectSummary

Properties

Description

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

Description of OPSI data object.

DisplayName

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

User-friendly name of OPSI data object.

Remarks

Required

GroupNames

Declaration
[JsonProperty(PropertyName = "groupNames")]
public List<string> GroupNames { get; set; }
Property Value
Type Description
List<string>

Names of all the groups to which the data object belongs to.

Identifier

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

Unique identifier of OPSI data object.

Remarks

Required

Name

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

Name of the data object, which can be used in data object queries just like how view names are used in a query.

In this article
Back to top