75 lines
1.9 KiB
TypeScript
Generated
75 lines
1.9 KiB
TypeScript
Generated
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
|
|
import * as pulumi from "@pulumi/pulumi";
|
|
import * as outputs from "../types/output";
|
|
|
|
declare var exports: any;
|
|
const __config = new pulumi.Config("incus");
|
|
|
|
/**
|
|
* Accept the server certificate.
|
|
*/
|
|
export declare const acceptRemoteCertificate: boolean | undefined;
|
|
Object.defineProperty(exports, "acceptRemoteCertificate", {
|
|
get() {
|
|
return __config.getObject<boolean>("acceptRemoteCertificate");
|
|
},
|
|
enumerable: true,
|
|
});
|
|
|
|
/**
|
|
* The directory to look for existing Incus configuration. (default = $HOME/.config/incus)
|
|
*/
|
|
export declare const configDir: string | undefined;
|
|
Object.defineProperty(exports, "configDir", {
|
|
get() {
|
|
return __config.get("configDir");
|
|
},
|
|
enumerable: true,
|
|
});
|
|
|
|
/**
|
|
* The default remote to use when no other remote is defined in a resource.
|
|
*/
|
|
export declare const defaultRemote: string | undefined;
|
|
Object.defineProperty(exports, "defaultRemote", {
|
|
get() {
|
|
return __config.get("defaultRemote");
|
|
},
|
|
enumerable: true,
|
|
});
|
|
|
|
/**
|
|
* Automatically generate the Incus client certificates if they don't exist.
|
|
*/
|
|
export declare const generateClientCertificates: boolean | undefined;
|
|
Object.defineProperty(exports, "generateClientCertificates", {
|
|
get() {
|
|
return __config.getObject<boolean>("generateClientCertificates");
|
|
},
|
|
enumerable: true,
|
|
});
|
|
|
|
/**
|
|
* The project where project-scoped resources will be created. Can be overridden in individual resources. (default = default)
|
|
*/
|
|
export declare const project: string | undefined;
|
|
Object.defineProperty(exports, "project", {
|
|
get() {
|
|
return __config.get("project");
|
|
},
|
|
enumerable: true,
|
|
});
|
|
|
|
/**
|
|
* Incus Remote
|
|
*/
|
|
export declare const remotes: outputs.config.Remotes[] | undefined;
|
|
Object.defineProperty(exports, "remotes", {
|
|
get() {
|
|
return __config.getObject<outputs.config.Remotes[]>("remotes");
|
|
},
|
|
enumerable: true,
|
|
});
|