@pulumi/hcloud 1.14.0-alpha.1690191878 → 1.14.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/getImage.d.ts CHANGED
@@ -28,6 +28,10 @@ export interface GetImageArgs {
28
28
  * ID of the Image.
29
29
  */
30
30
  id?: number;
31
+ /**
32
+ * Also return the image if it is marked as deprecated.
33
+ */
34
+ includeDeprecated?: boolean;
31
35
  /**
32
36
  * If more than one result is returned, use the most recent Image.
33
37
  */
@@ -77,6 +81,7 @@ export interface GetImageResult {
77
81
  * (int) Unique ID of the Image.
78
82
  */
79
83
  readonly id: number;
84
+ readonly includeDeprecated?: boolean;
80
85
  readonly labels: {
81
86
  [key: string]: any;
82
87
  };
@@ -138,6 +143,10 @@ export interface GetImageOutputArgs {
138
143
  * ID of the Image.
139
144
  */
140
145
  id?: pulumi.Input<number>;
146
+ /**
147
+ * Also return the image if it is marked as deprecated.
148
+ */
149
+ includeDeprecated?: pulumi.Input<boolean>;
141
150
  /**
142
151
  * If more than one result is returned, use the most recent Image.
143
152
  */
package/getImage.js CHANGED
@@ -30,6 +30,7 @@ function getImage(args, opts) {
30
30
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
31
31
  return pulumi.runtime.invoke("hcloud:index/getImage:getImage", {
32
32
  "id": args.id,
33
+ "includeDeprecated": args.includeDeprecated,
33
34
  "mostRecent": args.mostRecent,
34
35
  "name": args.name,
35
36
  "selector": args.selector,
package/getImage.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getImage.js","sourceRoot":"","sources":["../getImage.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,4BAaC;AA0FD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
1
+ {"version":3,"file":"getImage.js","sourceRoot":"","sources":["../getImage.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,4BAcC;AA+FD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
package/getImages.d.ts CHANGED
@@ -22,6 +22,10 @@ export declare function getImages(args?: GetImagesArgs, opts?: pulumi.InvokeOpti
22
22
  * A collection of arguments for invoking getImages.
23
23
  */
24
24
  export interface GetImagesArgs {
25
+ /**
26
+ * Also list images that are marked as deprecated.
27
+ */
28
+ includeDeprecated?: boolean;
25
29
  /**
26
30
  * Sorts list by date.
27
31
  */
@@ -51,6 +55,7 @@ export interface GetImagesResult {
51
55
  * (list) List of all matching images. See `data.hcloud_image` for schema.
52
56
  */
53
57
  readonly images: outputs.GetImagesImage[];
58
+ readonly includeDeprecated?: boolean;
54
59
  readonly mostRecent?: boolean;
55
60
  readonly withArchitectures?: string[];
56
61
  readonly withSelector?: string;
@@ -78,6 +83,10 @@ export declare function getImagesOutput(args?: GetImagesOutputArgs, opts?: pulum
78
83
  * A collection of arguments for invoking getImages.
79
84
  */
80
85
  export interface GetImagesOutputArgs {
86
+ /**
87
+ * Also list images that are marked as deprecated.
88
+ */
89
+ includeDeprecated?: pulumi.Input<boolean>;
81
90
  /**
82
91
  * Sorts list by date.
83
92
  */
package/getImages.js CHANGED
@@ -26,6 +26,7 @@ function getImages(args, opts) {
26
26
  args = args || {};
27
27
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
28
28
  return pulumi.runtime.invoke("hcloud:index/getImages:getImages", {
29
+ "includeDeprecated": args.includeDeprecated,
29
30
  "mostRecent": args.mostRecent,
30
31
  "withArchitectures": args.withArchitectures,
31
32
  "withSelector": args.withSelector,
package/getImages.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getImages.js","sourceRoot":"","sources":["../getImages.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8BAUC;AAyCD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
1
+ {"version":3,"file":"getImages.js","sourceRoot":"","sources":["../getImages.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,8BAWC;AA8CD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/hcloud",
3
- "version": "v1.14.0-alpha.1690191878+748f5ce2",
3
+ "version": "v1.14.0",
4
4
  "description": "A Pulumi package for creating and managing hcloud cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource hcloud v1.14.0-alpha.1690191878+748f5ce2"
14
+ "install": "node scripts/install-pulumi-plugin.js resource hcloud v1.14.0"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"