@kubernetes/client-node
Version:
NodeJS client for kubernetes
98 lines • 2.54 kB
JavaScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: v1.32.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.
*/
export class V1SecurityContext {
static getAttributeTypeMap() {
return V1SecurityContext.attributeTypeMap;
}
constructor() {
}
}
V1SecurityContext.discriminator = undefined;
V1SecurityContext.mapping = undefined;
V1SecurityContext.attributeTypeMap = [
{
"name": "allowPrivilegeEscalation",
"baseName": "allowPrivilegeEscalation",
"type": "boolean",
"format": ""
},
{
"name": "appArmorProfile",
"baseName": "appArmorProfile",
"type": "V1AppArmorProfile",
"format": ""
},
{
"name": "capabilities",
"baseName": "capabilities",
"type": "V1Capabilities",
"format": ""
},
{
"name": "privileged",
"baseName": "privileged",
"type": "boolean",
"format": ""
},
{
"name": "procMount",
"baseName": "procMount",
"type": "string",
"format": ""
},
{
"name": "readOnlyRootFilesystem",
"baseName": "readOnlyRootFilesystem",
"type": "boolean",
"format": ""
},
{
"name": "runAsGroup",
"baseName": "runAsGroup",
"type": "number",
"format": "int64"
},
{
"name": "runAsNonRoot",
"baseName": "runAsNonRoot",
"type": "boolean",
"format": ""
},
{
"name": "runAsUser",
"baseName": "runAsUser",
"type": "number",
"format": "int64"
},
{
"name": "seLinuxOptions",
"baseName": "seLinuxOptions",
"type": "V1SELinuxOptions",
"format": ""
},
{
"name": "seccompProfile",
"baseName": "seccompProfile",
"type": "V1SeccompProfile",
"format": ""
},
{
"name": "windowsOptions",
"baseName": "windowsOptions",
"type": "V1WindowsSecurityContextOptions",
"format": ""
}
];
//# sourceMappingURL=V1SecurityContext.js.map