Show / Hide Table of Contents

Class VolumeState

Inheritance
System.Object
InputArgs
ResourceArgs
VolumeState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.DigitalOcean
Assembly: Pulumi.DigitalOcean.dll
Syntax
public sealed class VolumeState : ResourceArgs

Constructors

View Source

VolumeState()

Declaration
public VolumeState()

Properties

View Source

Description

A free-form text field up to a limit of 1024 bytes to describe a block storage volume.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DropletIds

A list of associated droplet ids.

Declaration
public InputList<int> DropletIds { get; set; }
Property Value
Type Description
InputList<System.Int32>
View Source

FilesystemLabel

Filesystem label for the block storage volume.

Declaration
public Input<string> FilesystemLabel { get; set; }
Property Value
Type Description
Input<System.String>
View Source

FilesystemType

Filesystem type (xfs or ext4) for the block storage volume.

Declaration
public Input<string> FilesystemType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

InitialFilesystemLabel

Initial filesystem label for the block storage volume.

Declaration
public Input<string> InitialFilesystemLabel { get; set; }
Property Value
Type Description
Input<System.String>
View Source

InitialFilesystemType

Initial filesystem type (xfs or ext4) for the block storage volume.

Declaration
public Input<string> InitialFilesystemType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

A name for the block storage volume. Must be lowercase and be composed only of numbers, letters and "-", up to a limit of 64 characters.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Region

The region that the block storage volume will be created in.

Declaration
public Input<string> Region { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Size

The size of the block storage volume in GiB. If updated, can only be expanded.

Declaration
public Input<int> Size { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

SnapshotId

The ID of an existing volume snapshot from which the new volume will be created. If supplied, the region and size will be limitied on creation to that of the referenced snapshot

Declaration
public Input<string> SnapshotId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A list of the tags to be applied to this Volume.

Declaration
public InputList<string> Tags { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Urn

The uniform resource name for the volume.

Declaration
public Input<string> Urn { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.