@kubevirt-ui/kubevirt-api
    Preparing search index...

    Type Alias V1VirtualMachineExportStatus

    V1VirtualMachineExportStatus:
        | {
            conditions?: V1Condition[];
            links?: V1VirtualMachineExportLinks;
            phase?: string;
            serviceName?: string;
            tokenSecretRef?: string;
            ttlExpirationTime?: K8sIoApimachineryPkgApisMetaV1Time;
            virtualMachineName?: string;
        }
        | null

    VirtualMachineExportStatus is the status for a VirtualMachineExport resource

    Type Declaration

    • {
          conditions?: V1Condition[];
          links?: V1VirtualMachineExportLinks;
          phase?: string;
          serviceName?: string;
          tokenSecretRef?: string;
          ttlExpirationTime?: K8sIoApimachineryPkgApisMetaV1Time;
          virtualMachineName?: string;
      }
      • Optionalconditions?: V1Condition[]
      • Optionallinks?: V1VirtualMachineExportLinks

        VirtualMachineExportLinks contains the links that point the exported VM resources

      • Optionalphase?: string
      • OptionalserviceName?: string

        ServiceName is the name of the service created associated with the Virtual Machine export. It will be used to create the internal URLs for downloading the images

      • OptionaltokenSecretRef?: string

        TokenSecretRef is the name of the secret that contains the token used by the export server pod

      • OptionalttlExpirationTime?: K8sIoApimachineryPkgApisMetaV1Time

        The time at which the VM Export will be completely removed according to specified TTL Formula is CreationTimestamp + TTL

      • OptionalvirtualMachineName?: string

        VirtualMachineName shows the name of the source virtual machine if the source is either a VirtualMachine or a VirtualMachineSnapshot. This is mainly to easily identify the source VirtualMachine in case of a VirtualMachineSnapshot

    • null