@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
46 lines (45 loc) • 2.04 kB
TypeScript
/**
* KubeVirt API
* This is KubeVirt API an add-on for Kubernetes.
*
* The version of the OpenAPI document: 1.0.0
* Contact: kubevirt-dev@googlegroups.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* StopOptions may be provided when deleting an API object.
* @export
* @interface V1StopOptions
*/
export interface V1StopOptions {
/**
* 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/sig-architecture/api-conventions.md#resources
* @type {string}
* @memberof V1StopOptions
*/
apiVersion?: string;
/**
* 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
* @type {Array<string>}
* @memberof V1StopOptions
*/
dryRun?: Array<string>;
/**
* this updates the VMIs terminationGracePeriodSeconds during shutdown
* @type {number}
* @memberof V1StopOptions
*/
gracePeriod?: number;
/**
* 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/sig-architecture/api-conventions.md#types-kinds
* @type {string}
* @memberof V1StopOptions
*/
kind?: string;
}
export declare function V1StopOptionsFromJSON(json: any): V1StopOptions;
export declare function V1StopOptionsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1StopOptions;
export declare function V1StopOptionsToJSON(value?: V1StopOptions | null): any;