Files
csharp/src/KubernetesClient/generated/Models/V1DeleteOptions.cs
Boshi Lian df3381607a run generate script for k8s 1.12 (#205)
* generate for 1.12

* run watch generator

* bump version
2018-10-03 13:38:37 -07:00

157 lines
7.8 KiB
C#

// <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>
/// DeleteOptions may be provided when deleting an API object.
/// </summary>
public partial class V1DeleteOptions
{
/// <summary>
/// Initializes a new instance of the V1DeleteOptions class.
/// </summary>
public V1DeleteOptions()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1DeleteOptions class.
/// </summary>
/// <param name="apiVersion">APIVersion defines the versioned schema of
/// this representation of an object. Servers should convert recognized
/// schemas to the latest internal value, and may reject unrecognized
/// values. More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources</param>
/// <param name="dryRun">When present, indicates that modifications
/// should not be persisted. An invalid or unrecognized dryRun
/// directive will result in an error response and no further
/// processing of the request. Valid values are: - All: all dry run
/// stages will be processed</param>
/// <param name="gracePeriodSeconds">The duration in seconds before the
/// object should be deleted. Value must be non-negative integer. The
/// value zero indicates delete immediately. If this value is nil, the
/// default grace period for the specified type will be used. Defaults
/// to a per object value if not specified. zero means delete
/// immediately.</param>
/// <param name="kind">Kind is a string value representing the REST
/// resource this object represents. Servers may infer this from the
/// endpoint the client submits requests to. Cannot be updated. In
/// CamelCase. More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds</param>
/// <param name="orphanDependents">Deprecated: please use the
/// PropagationPolicy, this field will be deprecated in 1.7. Should the
/// dependent objects be orphaned. If true/false, the "orphan"
/// finalizer will be added to/removed from the object's finalizers
/// list. Either this field or PropagationPolicy may be set, but not
/// both.</param>
/// <param name="preconditions">Must be fulfilled before a deletion is
/// carried out. If not possible, a 409 Conflict status will be
/// returned.</param>
/// <param name="propagationPolicy">Whether and how garbage collection
/// will be performed. Either this field or OrphanDependents may be
/// set, but not both. The default policy is decided by the existing
/// finalizer set in the metadata.finalizers and the resource-specific
/// default policy. Acceptable values are: 'Orphan' - orphan the
/// dependents; 'Background' - allow the garbage collector to delete
/// the dependents in the background; 'Foreground' - a cascading policy
/// that deletes all dependents in the foreground.</param>
public V1DeleteOptions(string apiVersion = default(string), IList<string> dryRun = default(IList<string>), long? gracePeriodSeconds = default(long?), string kind = default(string), bool? orphanDependents = default(bool?), V1Preconditions preconditions = default(V1Preconditions), string propagationPolicy = default(string))
{
ApiVersion = apiVersion;
DryRun = dryRun;
GracePeriodSeconds = gracePeriodSeconds;
Kind = kind;
OrphanDependents = orphanDependents;
Preconditions = preconditions;
PropagationPolicy = propagationPolicy;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets aPIVersion defines the versioned schema of this
/// representation of an object. Servers should convert recognized
/// schemas to the latest internal value, and may reject unrecognized
/// values. More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
/// </summary>
[JsonProperty(PropertyName = "apiVersion")]
public string ApiVersion { get; set; }
/// <summary>
/// Gets or sets when present, indicates that modifications should not
/// be persisted. An invalid or unrecognized dryRun directive will
/// result in an error response and no further processing of the
/// request. Valid values are: - All: all dry run stages will be
/// processed
/// </summary>
[JsonProperty(PropertyName = "dryRun")]
public IList<string> DryRun { get; set; }
/// <summary>
/// Gets or sets the duration in seconds before the object should be
/// deleted. Value must be non-negative integer. The value zero
/// indicates delete immediately. If this value is nil, the default
/// grace period for the specified type will be used. Defaults to a per
/// object value if not specified. zero means delete immediately.
/// </summary>
[JsonProperty(PropertyName = "gracePeriodSeconds")]
public long? GracePeriodSeconds { get; set; }
/// <summary>
/// Gets or sets kind is a string value representing the REST resource
/// this object represents. Servers may infer this from the endpoint
/// the client submits requests to. Cannot be updated. In CamelCase.
/// More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
/// </summary>
[JsonProperty(PropertyName = "kind")]
public string Kind { get; set; }
/// <summary>
/// Gets or sets deprecated: please use the PropagationPolicy, this
/// field will be deprecated in 1.7. Should the dependent objects be
/// orphaned. If true/false, the "orphan" finalizer will be added
/// to/removed from the object's finalizers list. Either this field or
/// PropagationPolicy may be set, but not both.
/// </summary>
[JsonProperty(PropertyName = "orphanDependents")]
public bool? OrphanDependents { get; set; }
/// <summary>
/// Gets or sets must be fulfilled before a deletion is carried out. If
/// not possible, a 409 Conflict status will be returned.
/// </summary>
[JsonProperty(PropertyName = "preconditions")]
public V1Preconditions Preconditions { get; set; }
/// <summary>
/// Gets or sets whether and how garbage collection will be performed.
/// Either this field or OrphanDependents may be set, but not both. The
/// default policy is decided by the existing finalizer set in the
/// metadata.finalizers and the resource-specific default policy.
/// Acceptable values are: 'Orphan' - orphan the dependents;
/// 'Background' - allow the garbage collector to delete the dependents
/// in the background; 'Foreground' - a cascading policy that deletes
/// all dependents in the foreground.
/// </summary>
[JsonProperty(PropertyName = "propagationPolicy")]
public string PropagationPolicy { get; set; }
}
}