Show / Hide Table of Contents

Class HsmPartitionSummary

An object which encapsulates the details of a given HSM.

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

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 that contains a particular HSM resource.

Remarks

Required

HsmClusterId

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

The OCID of the HSMCluster that contains a particular HSM resource.

Remarks

Required

Id

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

The OCID of the HSM resource. Each HSM resource will have a unique OCID identifier.

Remarks

Required

LifecycleState

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

A HSMCluster resource's current lifecycle state.
Example: ACTIVE

Remarks

Required

PortInformation

Declaration
[Required(ErrorMessage = "PortInformation is required.")]
[JsonProperty(PropertyName = "portInformation")]
public List<PortInformation> PortInformation { get; set; }
Property Value
Type Description
List<PortInformation>

Details of a single portInformation item include the PortNumber (an integer used as an identifier) and the PortType (refers to either an enum value of Managementutility,Clientutility, or null)

Remarks

Required

TimeCreated

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

The date and time an HSM was created, expressed in RFC 3339 timestamp format.
Example: 2018-04-03T21:10:29.600Z

Remarks

Required

TimeUpdated

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

The date and time an HSM was updated, expressed in RFC 3339 timestamp format.
Example: 2018-04-03T21:10:29.600Z

Remarks

Required

In this article
Back to top