Show / Hide Table of Contents

Class VolumeAttachmentStatusArgs

VolumeAttachmentStatus is the status of a VolumeAttachment request.

Inheritance
System.Object
InputArgs
ResourceArgs
VolumeAttachmentStatusArgs
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.Kubernetes.Types.Inputs.Storage.V1Alpha1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class VolumeAttachmentStatusArgs : ResourceArgs

Properties

View Source

Attached

Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Declaration
public Input<bool> Attached { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

AttachError

The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Declaration
public Input<VolumeErrorArgs> AttachError { get; set; }
Property Value
Type Description
Input<VolumeErrorArgs>
View Source

AttachmentMetadata

Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

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

DetachError

The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.

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