build nodejs
This commit is contained in:
5
sdk/nodejs/config/index.ts
generated
Normal file
5
sdk/nodejs/config/index.ts
generated
Normal file
@@ -0,0 +1,5 @@
|
||||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
||||
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
||||
|
||||
// Export members:
|
||||
export * from "./vars";
|
||||
67
sdk/nodejs/config/vars.ts
generated
Normal file
67
sdk/nodejs/config/vars.ts
generated
Normal file
@@ -0,0 +1,67 @@
|
||||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
||||
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
||||
|
||||
import * as pulumi from "@pulumi/pulumi";
|
||||
import * as inputs from "../types/input";
|
||||
import * as outputs from "../types/output";
|
||||
import * as utilities from "../utilities";
|
||||
|
||||
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,
|
||||
});
|
||||
|
||||
/**
|
||||
* 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,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user