@tyevco/pulumi-homelab 1.10.5 → 1.11.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/lxcContainer.d.ts CHANGED
@@ -27,6 +27,8 @@ export declare class LxcContainer extends pulumi.CustomResource {
27
27
  readonly config: pulumi.Output<string>;
28
28
  readonly autostart: pulumi.Output<boolean>;
29
29
  readonly status: pulumi.Output<number>;
30
+ /** Human-readable state: "running", "stopped", "frozen", or "unknown". */
31
+ readonly stateText: pulumi.Output<string>;
30
32
  readonly ip: pulumi.Output<string>;
31
33
  readonly pid: pulumi.Output<number>;
32
34
  readonly memory: pulumi.Output<string>;
package/lxcContainer.js CHANGED
@@ -41,6 +41,7 @@ class LxcContainer extends pulumi.CustomResource {
41
41
  constructor(name, args, opts) {
42
42
  super("homelab:index:LxcContainer", name, {
43
43
  status: undefined,
44
+ stateText: undefined,
44
45
  ip: undefined,
45
46
  pid: undefined,
46
47
  memory: undefined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tyevco/pulumi-homelab",
3
- "version": "1.10.5",
3
+ "version": "1.11.0",
4
4
  "description": "Pulumi SDK for managing homelab infrastructure",
5
5
  "main": "index.js",
6
6
  "typings": "index.d.ts",