Files
csharp/src/KubernetesClient/generated/Models/V1beta1VolumeAttachmentStatus.cs

107 lines
4.5 KiB
C#
Raw Normal View History

2018-03-28 10:30:09 +08:00
// <auto-generated>
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
// </auto-generated>
namespace k8s.Models
{
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
/// <summary>
/// VolumeAttachmentStatus is the status of a VolumeAttachment request.
/// </summary>
public partial class V1beta1VolumeAttachmentStatus
{
/// <summary>
/// Initializes a new instance of the V1beta1VolumeAttachmentStatus
/// class.
/// </summary>
public V1beta1VolumeAttachmentStatus()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1beta1VolumeAttachmentStatus
/// class.
/// </summary>
/// <param name="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.</param>
/// <param name="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.</param>
/// <param name="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.</param>
/// <param name="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.</param>
public V1beta1VolumeAttachmentStatus(bool attached, V1beta1VolumeError attachError = default(V1beta1VolumeError), IDictionary<string, string> attachmentMetadata = default(IDictionary<string, string>), V1beta1VolumeError detachError = default(V1beta1VolumeError))
{
AttachError = attachError;
Attached = attached;
AttachmentMetadata = attachmentMetadata;
DetachError = detachError;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets 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.
/// </summary>
[JsonProperty(PropertyName = "attachError")]
public V1beta1VolumeError AttachError { get; set; }
/// <summary>
/// Gets or sets indicates the volume is successfully attached. This
/// field must only be set by the entity completing the attach
/// operation, i.e. the external-attacher.
/// </summary>
[JsonProperty(PropertyName = "attached")]
public bool Attached { get; set; }
/// <summary>
/// Gets or sets 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.
/// </summary>
[JsonProperty(PropertyName = "attachmentMetadata")]
public IDictionary<string, string> AttachmentMetadata { get; set; }
/// <summary>
/// Gets or sets 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.
/// </summary>
[JsonProperty(PropertyName = "detachError")]
public V1beta1VolumeError DetachError { get; set; }
/// <summary>
/// Validate the object.
/// </summary>
/// <exception cref="Microsoft.Rest.ValidationException">
/// Thrown if validation fails
/// </exception>
public virtual void Validate()
{
}
}
}