Show / Hide Table of Contents

Class HostedEntitySummary

Information about a hosted entity which includes identifier, name, and type.

Inheritance
object
HostedEntitySummary
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
public class HostedEntitySummary

Properties

EntityIdentifier

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

The identifier of the entity.

Remarks

Required

EntityName

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

The entity name.

Remarks

Required

EntityType

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

The entity type.

Remarks

Required

In this article
Back to top