@kubevirt-ui-ext/kubevirt-api 1.8.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +76 -21
- package/dist/console/index.cjs +1 -1
- package/dist/console/index.cjs.map +1 -1
- package/dist/console/index.d.cts +4 -11
- package/dist/console/index.d.ts +4 -11
- package/dist/console/index.js +1 -1
- package/dist/console/index.js.map +1 -1
- package/dist/containerized-data-importer/index.cjs +1 -1
- package/dist/containerized-data-importer/index.cjs.map +1 -1
- package/dist/containerized-data-importer/index.d.cts +1277 -3788
- package/dist/containerized-data-importer/index.d.ts +1277 -3788
- package/dist/containerized-data-importer/index.js +1 -1
- package/dist/containerized-data-importer/index.js.map +1 -1
- package/dist/kubernetes/index.cjs.map +1 -1
- package/dist/kubernetes/index.d.cts +9298 -30800
- package/dist/kubernetes/index.d.ts +9298 -30800
- package/dist/kubevirt/index.cjs +1 -1
- package/dist/kubevirt/index.cjs.map +1 -1
- package/dist/kubevirt/index.d.cts +3509 -16106
- package/dist/kubevirt/index.d.ts +3509 -16106
- package/dist/kubevirt/index.js +1 -1
- package/dist/kubevirt/index.js.map +1 -1
- package/dist/nmstate/index.cjs +1 -1
- package/dist/nmstate/index.cjs.map +1 -1
- package/dist/nmstate/index.d.cts +7296 -665
- package/dist/nmstate/index.d.ts +7296 -665
- package/dist/nmstate/index.js +1 -0
- package/dist/nmstate/index.js.map +1 -1
- package/dist/virt-template/index.d.cts +238 -241
- package/dist/virt-template/index.d.ts +238 -241
- package/package.json +11 -15
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var
|
|
1
|
+
var e={DoesNotExist:"DoesNotExist",Exists:"Exists",Gt:"Gt",In:"In",Lt:"Lt",NotIn:"NotIn"};var t={ReadOnlyMany:"ReadOnlyMany",ReadWriteMany:"ReadWriteMany",ReadWriteOnce:"ReadWriteOnce",ReadWriteOncePod:"ReadWriteOncePod"};var n={Block:"Block",Filesystem:"Filesystem",FromStorageProfile:"FromStorageProfile"};var s={NoExecute:"NoExecute",NoSchedule:"NoSchedule",PreferNoSchedule:"PreferNoSchedule"};var m={Equal:"Equal",Exists:"Exists"};var p={Always:"Always",IfNotPresent:"IfNotPresent",Never:"Never"};var i={ReadOnlyMany:"ReadOnlyMany",ReadWriteMany:"ReadWriteMany",ReadWriteOnce:"ReadWriteOnce",ReadWriteOncePod:"ReadWriteOncePod"};var V={Block:"Block",Filesystem:"Filesystem",FromStorageProfile:"FromStorageProfile"};export{e as V1NodeSelectorRequirementOperatorEnum,t as V1PersistentVolumeClaimSpecAccessModesEnum,n as V1PersistentVolumeClaimSpecVolumeModeEnum,s as V1TolerationEffectEnum,m as V1TolerationOperatorEnum,p as V1beta1CDISpecImagePullPolicyEnum,i as V1beta1StorageSpecAccessModesEnum,V as V1beta1StorageSpecVolumeModeEnum};
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../containerized-data-importer/models/V1NodeSelectorRequirement.ts","../../containerized-data-importer/models/V1PersistentVolumeClaimSpec.ts","../../containerized-data-importer/models/V1Toleration.ts","../../containerized-data-importer/models/V1beta1CDISpec.ts","../../containerized-data-importer/models/V1beta1StorageSpec.ts"],"sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * KubeVirt Containerized Data Importer API\n * Containerized Data Importer for KubeVirt.\n *\n * The version of the OpenAPI document: 1.0.0\n * Contact: kubevirt-dev@googlegroups.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.\n * @export\n * @interface V1NodeSelectorRequirement\n */\nexport interface V1NodeSelectorRequirement {\n /**\n * The label key that the selector applies to.\n * @type {string}\n * @memberof V1NodeSelectorRequirement\n */\n key: string;\n /**\n * Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.\n *\n * Possible enum values:\n * - `\"DoesNotExist\"`\n * - `\"Exists\"`\n * - `\"Gt\"`\n * - `\"In\"`\n * - `\"Lt\"`\n * - `\"NotIn\"`\n * @type {string}\n * @memberof V1NodeSelectorRequirement\n */\n operator: V1NodeSelectorRequirementOperatorEnum;\n /**\n * An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.\n * @type {Array<string>}\n * @memberof V1NodeSelectorRequirement\n */\n values?: Array<string>;\n}\n\n/**\n * @export\n * @enum {string}\n */\nexport enum V1NodeSelectorRequirementOperatorEnum {\n DoesNotExist = 'DoesNotExist',\n Exists = 'Exists',\n Gt = 'Gt',\n In = 'In',\n Lt = 'Lt',\n NotIn = 'NotIn',\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * KubeVirt Containerized Data Importer API\n * Containerized Data Importer for KubeVirt.\n *\n * The version of the OpenAPI document: 1.0.0\n * Contact: kubevirt-dev@googlegroups.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nimport {\n V1LabelSelector,\n V1TypedLocalObjectReference,\n V1TypedObjectReference,\n V1VolumeResourceRequirements,\n} from './';\n\n/**\n * PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes\n * @export\n * @interface V1PersistentVolumeClaimSpec\n */\nexport interface V1PersistentVolumeClaimSpec {\n /**\n * accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\n * @type {Array<string>}\n * @memberof V1PersistentVolumeClaimSpec\n */\n accessModes?: Array<V1PersistentVolumeClaimSpecAccessModesEnum>;\n /**\n *\n * @type {V1TypedLocalObjectReference}\n * @memberof V1PersistentVolumeClaimSpec\n */\n dataSource?: V1TypedLocalObjectReference;\n /**\n *\n * @type {V1TypedObjectReference}\n * @memberof V1PersistentVolumeClaimSpec\n */\n dataSourceRef?: V1TypedObjectReference;\n /**\n *\n * @type {V1VolumeResourceRequirements}\n * @memberof V1PersistentVolumeClaimSpec\n */\n resources?: V1VolumeResourceRequirements;\n /**\n *\n * @type {V1LabelSelector}\n * @memberof V1PersistentVolumeClaimSpec\n */\n selector?: V1LabelSelector;\n /**\n * storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\n * @type {string}\n * @memberof V1PersistentVolumeClaimSpec\n */\n storageClassName?: string;\n /**\n * volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass will be applied to the claim but it's not allowed to reset this field to empty string once it is set. If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists. If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists. More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ (Beta) Using this field requires the VolumeAttributesClass feature gate to be enabled (off by default).\n * @type {string}\n * @memberof V1PersistentVolumeClaimSpec\n */\n volumeAttributesClassName?: string;\n /**\n * volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.\n *\n * Possible enum values:\n * - `\"Block\"` means the volume will not be formatted with a filesystem and will remain a raw block device.\n * - `\"Filesystem\"` means the volume will be or is formatted with a filesystem.\n * - `\"FromStorageProfile\"` means the volume mode will be auto selected by CDI according to a matching StorageProfile\n * @type {string}\n * @memberof V1PersistentVolumeClaimSpec\n */\n volumeMode?: V1PersistentVolumeClaimSpecVolumeModeEnum;\n /**\n * volumeName is the binding reference to the PersistentVolume backing this claim.\n * @type {string}\n * @memberof V1PersistentVolumeClaimSpec\n */\n volumeName?: string;\n}\n\n/**\n * @export\n * @enum {string}\n */\nexport enum V1PersistentVolumeClaimSpecAccessModesEnum {\n ReadOnlyMany = 'ReadOnlyMany',\n ReadWriteMany = 'ReadWriteMany',\n ReadWriteOnce = 'ReadWriteOnce',\n ReadWriteOncePod = 'ReadWriteOncePod',\n}\n/**\n * @export\n * @enum {string}\n */\nexport enum V1PersistentVolumeClaimSpecVolumeModeEnum {\n Block = 'Block',\n Filesystem = 'Filesystem',\n FromStorageProfile = 'FromStorageProfile',\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * KubeVirt Containerized Data Importer API\n * Containerized Data Importer for KubeVirt.\n *\n * The version of the OpenAPI document: 1.0.0\n * Contact: kubevirt-dev@googlegroups.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.\n * @export\n * @interface V1Toleration\n */\nexport interface V1Toleration {\n /**\n * Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.\n *\n * Possible enum values:\n * - `\"NoExecute\"` Evict any already-running pods that do not tolerate the taint. Currently enforced by NodeController.\n * - `\"NoSchedule\"` Do not allow new pods to schedule onto the node unless they tolerate the taint, but allow all pods submitted to Kubelet without going through the scheduler to start, and allow all already-running pods to continue running. Enforced by the scheduler.\n * - `\"PreferNoSchedule\"` Like TaintEffectNoSchedule, but the scheduler tries not to schedule new pods onto the node, rather than prohibiting new pods from scheduling onto the node entirely. Enforced by the scheduler.\n * @type {string}\n * @memberof V1Toleration\n */\n effect?: V1TolerationEffectEnum;\n /**\n * Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.\n * @type {string}\n * @memberof V1Toleration\n */\n key?: string;\n /**\n * Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.\n *\n * Possible enum values:\n * - `\"Equal\"`\n * - `\"Exists\"`\n * @type {string}\n * @memberof V1Toleration\n */\n operator?: V1TolerationOperatorEnum;\n /**\n * TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.\n * @type {number}\n * @memberof V1Toleration\n */\n tolerationSeconds?: number;\n /**\n * Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.\n * @type {string}\n * @memberof V1Toleration\n */\n value?: string;\n}\n\n/**\n * @export\n * @enum {string}\n */\nexport enum V1TolerationEffectEnum {\n NoExecute = 'NoExecute',\n NoSchedule = 'NoSchedule',\n PreferNoSchedule = 'PreferNoSchedule',\n}\n/**\n * @export\n * @enum {string}\n */\nexport enum V1TolerationOperatorEnum {\n Equal = 'Equal',\n Exists = 'Exists',\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * KubeVirt Containerized Data Importer API\n * Containerized Data Importer for KubeVirt.\n *\n * The version of the OpenAPI document: 1.0.0\n * Contact: kubevirt-dev@googlegroups.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nimport {\n ApiNodePlacement,\n V1beta1CDICertConfig,\n V1beta1CDIConfigSpec,\n V1beta1ComponentConfig,\n V1beta1CustomizeComponents,\n} from './';\n\n/**\n * CDISpec defines our specification for the CDI installation\n * @export\n * @interface V1beta1CDISpec\n */\nexport interface V1beta1CDISpec {\n /**\n *\n * @type {V1beta1CDICertConfig}\n * @memberof V1beta1CDISpec\n */\n certConfig?: V1beta1CDICertConfig;\n /**\n * Clone strategy override: should we use a host-assisted copy even if snapshots are available?\n * @type {string}\n * @memberof V1beta1CDISpec\n */\n cloneStrategyOverride?: string;\n /**\n *\n * @type {V1beta1CDIConfigSpec}\n * @memberof V1beta1CDISpec\n */\n config?: V1beta1CDIConfigSpec;\n /**\n *\n * @type {V1beta1CustomizeComponents}\n * @memberof V1beta1CDISpec\n */\n customizeComponents?: V1beta1CustomizeComponents;\n /**\n * PullPolicy describes a policy for if/when to pull a container image\n *\n * Possible enum values:\n * - `\"Always\"` means that kubelet always attempts to pull the latest image. Container will fail If the pull fails.\n * - `\"IfNotPresent\"` means that kubelet pulls if the image isn't present on disk. Container will fail if the image isn't present and the pull fails.\n * - `\"Never\"` means that kubelet never pulls an image, but only uses a local image. Container will fail if the image isn't present\n * @type {string}\n * @memberof V1beta1CDISpec\n */\n imagePullPolicy?: V1beta1CDISpecImagePullPolicyEnum;\n /**\n *\n * @type {V1beta1ComponentConfig}\n * @memberof V1beta1CDISpec\n */\n infra?: V1beta1ComponentConfig;\n /**\n * PriorityClass of the CDI control plane\n * @type {string}\n * @memberof V1beta1CDISpec\n */\n priorityClass?: string;\n /**\n * CDIUninstallStrategy defines the state to leave CDI on uninstall\n * @type {string}\n * @memberof V1beta1CDISpec\n */\n uninstallStrategy?: string;\n /**\n *\n * @type {ApiNodePlacement}\n * @memberof V1beta1CDISpec\n */\n workload?: ApiNodePlacement;\n}\n\n/**\n * @export\n * @enum {string}\n */\nexport enum V1beta1CDISpecImagePullPolicyEnum {\n Always = 'Always',\n IfNotPresent = 'IfNotPresent',\n Never = 'Never',\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * KubeVirt Containerized Data Importer API\n * Containerized Data Importer for KubeVirt.\n *\n * The version of the OpenAPI document: 1.0.0\n * Contact: kubevirt-dev@googlegroups.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nimport {\n V1LabelSelector,\n V1TypedLocalObjectReference,\n V1TypedObjectReference,\n V1VolumeResourceRequirements,\n} from './';\n\n/**\n * StorageSpec defines the Storage type specification\n * @export\n * @interface V1beta1StorageSpec\n */\nexport interface V1beta1StorageSpec {\n /**\n * AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\n * @type {Array<string>}\n * @memberof V1beta1StorageSpec\n */\n accessModes?: Array<V1beta1StorageSpecAccessModesEnum>;\n /**\n *\n * @type {V1TypedLocalObjectReference}\n * @memberof V1beta1StorageSpec\n */\n dataSource?: V1TypedLocalObjectReference;\n /**\n *\n * @type {V1TypedObjectReference}\n * @memberof V1beta1StorageSpec\n */\n dataSourceRef?: V1TypedObjectReference;\n /**\n *\n * @type {V1VolumeResourceRequirements}\n * @memberof V1beta1StorageSpec\n */\n resources?: V1VolumeResourceRequirements;\n /**\n *\n * @type {V1LabelSelector}\n * @memberof V1beta1StorageSpec\n */\n selector?: V1LabelSelector;\n /**\n * Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\n * @type {string}\n * @memberof V1beta1StorageSpec\n */\n storageClassName?: string;\n /**\n * volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.\n *\n * Possible enum values:\n * - `\"Block\"` means the volume will not be formatted with a filesystem and will remain a raw block device.\n * - `\"Filesystem\"` means the volume will be or is formatted with a filesystem.\n * - `\"FromStorageProfile\"` means the volume mode will be auto selected by CDI according to a matching StorageProfile\n * @type {string}\n * @memberof V1beta1StorageSpec\n */\n volumeMode?: V1beta1StorageSpecVolumeModeEnum;\n /**\n * VolumeName is the binding reference to the PersistentVolume backing this claim.\n * @type {string}\n * @memberof V1beta1StorageSpec\n */\n volumeName?: string;\n}\n\n/**\n * @export\n * @enum {string}\n */\nexport enum V1beta1StorageSpecAccessModesEnum {\n ReadOnlyMany = 'ReadOnlyMany',\n ReadWriteMany = 'ReadWriteMany',\n ReadWriteOnce = 'ReadWriteOnce',\n ReadWriteOncePod = 'ReadWriteOncePod',\n}\n/**\n * @export\n * @enum {string}\n */\nexport enum V1beta1StorageSpecVolumeModeEnum {\n Block = 'Block',\n Filesystem = 'Filesystem',\n FromStorageProfile = 'FromStorageProfile',\n}\n"],"mappings":"AAoDO,IAAKA,OACVA,EAAA,aAAe,eACfA,EAAA,OAAS,SACTA,EAAA,GAAK,KACLA,EAAA,GAAK,KACLA,EAAA,GAAK,KACLA,EAAA,MAAQ,QANEA,OAAA,ICwCL,IAAKC,OACVA,EAAA,aAAe,eACfA,EAAA,cAAgB,gBAChBA,EAAA,cAAgB,gBAChBA,EAAA,iBAAmB,mBAJTA,OAAA,IAUAC,OACVA,EAAA,MAAQ,QACRA,EAAA,WAAa,aACbA,EAAA,mBAAqB,qBAHXA,OAAA,ICrCL,IAAKC,OACVA,EAAA,UAAY,YACZA,EAAA,WAAa,aACbA,EAAA,iBAAmB,mBAHTA,OAAA,IASAC,OACVA,EAAA,MAAQ,QACRA,EAAA,OAAS,SAFCA,OAAA,ICmBL,IAAKC,OACVA,EAAA,OAAS,SACTA,EAAA,aAAe,eACfA,EAAA,MAAQ,QAHEA,OAAA,ICPL,IAAKC,OACVA,EAAA,aAAe,eACfA,EAAA,cAAgB,gBAChBA,EAAA,cAAgB,gBAChBA,EAAA,iBAAmB,mBAJTA,OAAA,IAUAC,OACVA,EAAA,MAAQ,QACRA,EAAA,WAAa,aACbA,EAAA,mBAAqB,qBAHXA,OAAA","names":["V1NodeSelectorRequirementOperatorEnum","V1PersistentVolumeClaimSpecAccessModesEnum","V1PersistentVolumeClaimSpecVolumeModeEnum","V1TolerationEffectEnum","V1TolerationOperatorEnum","V1beta1CDISpecImagePullPolicyEnum","V1beta1StorageSpecAccessModesEnum","V1beta1StorageSpecVolumeModeEnum"]}
|
|
1
|
+
{"version":3,"sources":["../../containerized-data-importer/models/V1NodeSelectorRequirementOperatorEnum.ts","../../containerized-data-importer/models/V1PersistentVolumeClaimSpecAccessModesEnum.ts","../../containerized-data-importer/models/V1PersistentVolumeClaimSpecVolumeModeEnum.ts","../../containerized-data-importer/models/V1TolerationEffectEnum.ts","../../containerized-data-importer/models/V1TolerationOperatorEnum.ts","../../containerized-data-importer/models/V1beta1CDISpecImagePullPolicyEnum.ts","../../containerized-data-importer/models/V1beta1StorageSpecAccessModesEnum.ts","../../containerized-data-importer/models/V1beta1StorageSpecVolumeModeEnum.ts"],"sourcesContent":["export const V1NodeSelectorRequirementOperatorEnum = {\n DoesNotExist: 'DoesNotExist',\n Exists: 'Exists',\n Gt: 'Gt',\n In: 'In',\n Lt: 'Lt',\n NotIn: 'NotIn',\n} as const;\n\nexport type V1NodeSelectorRequirementOperatorEnum =\n typeof V1NodeSelectorRequirementOperatorEnum[keyof typeof V1NodeSelectorRequirementOperatorEnum];\n","export const V1PersistentVolumeClaimSpecAccessModesEnum = {\n ReadOnlyMany: 'ReadOnlyMany',\n ReadWriteMany: 'ReadWriteMany',\n ReadWriteOnce: 'ReadWriteOnce',\n ReadWriteOncePod: 'ReadWriteOncePod',\n} as const;\n\nexport type V1PersistentVolumeClaimSpecAccessModesEnum =\n typeof V1PersistentVolumeClaimSpecAccessModesEnum[keyof typeof V1PersistentVolumeClaimSpecAccessModesEnum];\n","export const V1PersistentVolumeClaimSpecVolumeModeEnum = {\n Block: 'Block',\n Filesystem: 'Filesystem',\n FromStorageProfile: 'FromStorageProfile',\n} as const;\n\nexport type V1PersistentVolumeClaimSpecVolumeModeEnum =\n typeof V1PersistentVolumeClaimSpecVolumeModeEnum[keyof typeof V1PersistentVolumeClaimSpecVolumeModeEnum];\n","export const V1TolerationEffectEnum = {\n NoExecute: 'NoExecute',\n NoSchedule: 'NoSchedule',\n PreferNoSchedule: 'PreferNoSchedule',\n} as const;\n\nexport type V1TolerationEffectEnum =\n typeof V1TolerationEffectEnum[keyof typeof V1TolerationEffectEnum];\n","export const V1TolerationOperatorEnum = {\n Equal: 'Equal',\n Exists: 'Exists',\n} as const;\n\nexport type V1TolerationOperatorEnum =\n typeof V1TolerationOperatorEnum[keyof typeof V1TolerationOperatorEnum];\n","export const V1beta1CDISpecImagePullPolicyEnum = {\n Always: 'Always',\n IfNotPresent: 'IfNotPresent',\n Never: 'Never',\n} as const;\n\nexport type V1beta1CDISpecImagePullPolicyEnum =\n typeof V1beta1CDISpecImagePullPolicyEnum[keyof typeof V1beta1CDISpecImagePullPolicyEnum];\n","export const V1beta1StorageSpecAccessModesEnum = {\n ReadOnlyMany: 'ReadOnlyMany',\n ReadWriteMany: 'ReadWriteMany',\n ReadWriteOnce: 'ReadWriteOnce',\n ReadWriteOncePod: 'ReadWriteOncePod',\n} as const;\n\nexport type V1beta1StorageSpecAccessModesEnum =\n typeof V1beta1StorageSpecAccessModesEnum[keyof typeof V1beta1StorageSpecAccessModesEnum];\n","export const V1beta1StorageSpecVolumeModeEnum = {\n Block: 'Block',\n Filesystem: 'Filesystem',\n FromStorageProfile: 'FromStorageProfile',\n} as const;\n\nexport type V1beta1StorageSpecVolumeModeEnum =\n typeof V1beta1StorageSpecVolumeModeEnum[keyof typeof V1beta1StorageSpecVolumeModeEnum];\n"],"mappings":"AAAO,IAAMA,EAAwC,CACnD,aAAc,eACd,OAAQ,SACR,GAAI,KACJ,GAAI,KACJ,GAAI,KACJ,MAAO,OACT,ECPO,IAAMC,EAA6C,CACxD,aAAc,eACd,cAAe,gBACf,cAAe,gBACf,iBAAkB,kBACpB,ECLO,IAAMC,EAA4C,CACvD,MAAO,QACP,WAAY,aACZ,mBAAoB,oBACtB,ECJO,IAAMC,EAAyB,CACpC,UAAW,YACX,WAAY,aACZ,iBAAkB,kBACpB,ECJO,IAAMC,EAA2B,CACtC,MAAO,QACP,OAAQ,QACV,ECHO,IAAMC,EAAoC,CAC/C,OAAQ,SACR,aAAc,eACd,MAAO,OACT,ECJO,IAAMC,EAAoC,CAC/C,aAAc,eACd,cAAe,gBACf,cAAe,gBACf,iBAAkB,kBACpB,ECLO,IAAMC,EAAmC,CAC9C,MAAO,QACP,WAAY,aACZ,mBAAoB,oBACtB","names":["V1NodeSelectorRequirementOperatorEnum","V1PersistentVolumeClaimSpecAccessModesEnum","V1PersistentVolumeClaimSpecVolumeModeEnum","V1TolerationEffectEnum","V1TolerationOperatorEnum","V1beta1CDISpecImagePullPolicyEnum","V1beta1StorageSpecAccessModesEnum","V1beta1StorageSpecVolumeModeEnum"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../kubernetes/index.ts"],"sourcesContent":["
|
|
1
|
+
{"version":3,"sources":["../../kubernetes/index.ts"],"sourcesContent":["export * from './models';\n"],"mappings":"kWAAA,IAAAA,EAAA,kBAAAC,EAAAD","names":["kubernetes_exports","__toCommonJS"]}
|