-
Notifications
You must be signed in to change notification settings - Fork 544
/
Copy pathv1NamespaceSpec.ts
37 lines (31 loc) · 1.07 KB
/
v1NamespaceSpec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: release-1.28
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { RequestFile } from './models';
/**
* NamespaceSpec describes the attributes on a Namespace.
*/
export class V1NamespaceSpec {
/**
* Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/
*/
'finalizers'?: Array<string>;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "finalizers",
"baseName": "finalizers",
"type": "Array<string>"
} ];
static getAttributeTypeMap() {
return V1NamespaceSpec.attributeTypeMap;
}
}