Show / Hide Table of Contents

Class StorageServerDetails

Partial information about a storage server which includes name and displayName.

Inheritance
object
StorageServerDetails
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 StorageServerDetails

Properties

StorageServerDisplayName

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

The user-friendly name for the storage server. The name does not have to be unique.

Remarks

Required

StorageServerName

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

The storage server name.

Remarks

Required

In this article
Back to top