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

    Interface V1beta1DataVolumeSourceHTTP

    DataVolumeSourceHTTP can be either an http or https endpoint, with an optional basic auth user name and password, and an optional configmap containing additional CAs

    interface V1beta1DataVolumeSourceHTTP {
        certConfigMap?: string;
        extraHeaders?: string[];
        secretExtraHeaders?: string[];
        secretRef?: string;
        url: string;
    }
    Index

    Properties

    certConfigMap?: string

    CertConfigMap is a configmap reference, containing a Certificate Authority(CA) public key, and a base64 encoded pem certificate

    extraHeaders?: string[]

    ExtraHeaders is a list of strings containing extra headers to include with HTTP transfer requests

    secretExtraHeaders?: string[]

    SecretExtraHeaders is a list of Secret references, each containing an extra HTTP header that may include sensitive information

    secretRef?: string

    SecretRef A Secret reference, the secret should contain accessKeyId (user name) base64 encoded, and secretKey (password) also base64 encoded

    url: string

    URL is the URL of the http(s) endpoint

    ""