@pulumi/hcloud 1.11.0-alpha.1680908952 → 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/firewall.d.ts +1 -1
- package/firewall.js +1 -1
- package/floatingIp.d.ts +1 -1
- package/floatingIp.js +1 -1
- package/floatingIpAssignment.d.ts +1 -1
- package/floatingIpAssignment.js +1 -1
- package/getDatacenters.d.ts +5 -5
- package/getImage.d.ts +17 -2
- package/getImage.js +3 -0
- package/getImage.js.map +1 -1
- package/getImages.d.ts +15 -2
- package/getImages.js +7 -2
- package/getImages.js.map +1 -1
- package/getLocations.d.ts +5 -5
- package/getPrimaryIp.d.ts +3 -0
- package/getPrimaryIp.js.map +1 -1
- package/getServer.d.ts +1 -1
- package/getServerType.d.ts +4 -0
- package/getServerType.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/placementGroup.d.ts +1 -1
- package/placementGroup.js +1 -1
- package/primaryIp.d.ts +6 -0
- package/primaryIp.js.map +1 -1
- package/rdns.d.ts +1 -1
- package/rdns.js +1 -1
- package/server.d.ts +9 -9
- package/serverNetwork.d.ts +1 -1
- package/serverNetwork.js +1 -1
- package/snapshot.d.ts +1 -1
- package/snapshot.js +1 -1
- package/types/output.d.ts +2 -0
- package/volume.d.ts +1 -1
- package/volume.js +1 -1
- package/volumeAttachment.d.ts +1 -1
- package/volumeAttachment.js +1 -1
package/firewall.d.ts
CHANGED
package/firewall.js
CHANGED
package/floatingIp.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
9
9
|
* import * as hcloud from "@pulumi/hcloud";
|
|
10
10
|
*
|
|
11
11
|
* const node1 = new hcloud.Server("node1", {
|
|
12
|
-
* image: "debian-
|
|
12
|
+
* image: "debian-11",
|
|
13
13
|
* serverType: "cx11",
|
|
14
14
|
* });
|
|
15
15
|
* const master = new hcloud.FloatingIp("master", {
|
package/floatingIp.js
CHANGED
|
@@ -15,7 +15,7 @@ const utilities = require("./utilities");
|
|
|
15
15
|
* import * as hcloud from "@pulumi/hcloud";
|
|
16
16
|
*
|
|
17
17
|
* const node1 = new hcloud.Server("node1", {
|
|
18
|
-
* image: "debian-
|
|
18
|
+
* image: "debian-11",
|
|
19
19
|
* serverType: "cx11",
|
|
20
20
|
* });
|
|
21
21
|
* const master = new hcloud.FloatingIp("master", {
|
package/floatingIpAssignment.js
CHANGED
package/getDatacenters.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare function getDatacenters(args?: GetDatacentersArgs, opts?: pulumi.
|
|
|
10
10
|
*/
|
|
11
11
|
export interface GetDatacentersArgs {
|
|
12
12
|
/**
|
|
13
|
-
* (list) List of unique datacenter identifiers.
|
|
13
|
+
* (list) List of unique datacenter identifiers. **Deprecated**: Use `datacenters` attribute instead.
|
|
14
14
|
*
|
|
15
15
|
* @deprecated Use datacenters list instead
|
|
16
16
|
*/
|
|
@@ -21,7 +21,7 @@ export interface GetDatacentersArgs {
|
|
|
21
21
|
*/
|
|
22
22
|
export interface GetDatacentersResult {
|
|
23
23
|
/**
|
|
24
|
-
* (list) List of unique datacenter identifiers.
|
|
24
|
+
* (list) List of unique datacenter identifiers. **Deprecated**: Use `datacenters` attribute instead.
|
|
25
25
|
*
|
|
26
26
|
* @deprecated Use datacenters list instead
|
|
27
27
|
*/
|
|
@@ -31,7 +31,7 @@ export interface GetDatacentersResult {
|
|
|
31
31
|
*/
|
|
32
32
|
readonly datacenters: outputs.GetDatacentersDatacenter[];
|
|
33
33
|
/**
|
|
34
|
-
* (list) List of all datacenter descriptions.
|
|
34
|
+
* (list) List of all datacenter descriptions. **Deprecated**: Use `datacenters` attribute instead.
|
|
35
35
|
*
|
|
36
36
|
* @deprecated Use datacenters list instead
|
|
37
37
|
*/
|
|
@@ -41,7 +41,7 @@ export interface GetDatacentersResult {
|
|
|
41
41
|
*/
|
|
42
42
|
readonly id: string;
|
|
43
43
|
/**
|
|
44
|
-
* (list) List of datacenter names.
|
|
44
|
+
* (list) List of datacenter names. **Deprecated**: Use `datacenters` attribute instead.
|
|
45
45
|
*
|
|
46
46
|
* @deprecated Use datacenters list instead
|
|
47
47
|
*/
|
|
@@ -57,7 +57,7 @@ export declare function getDatacentersOutput(args?: GetDatacentersOutputArgs, op
|
|
|
57
57
|
*/
|
|
58
58
|
export interface GetDatacentersOutputArgs {
|
|
59
59
|
/**
|
|
60
|
-
* (list) List of unique datacenter identifiers.
|
|
60
|
+
* (list) List of unique datacenter identifiers. **Deprecated**: Use `datacenters` attribute instead.
|
|
61
61
|
*
|
|
62
62
|
* @deprecated Use datacenters list instead
|
|
63
63
|
*/
|
package/getImage.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
11
11
|
* });
|
|
12
12
|
* const image2 = hcloud.getImage({
|
|
13
13
|
* name: "ubuntu-18.04",
|
|
14
|
+
* withArchitecture: "x86",
|
|
14
15
|
* });
|
|
15
16
|
* const image3 = hcloud.getImage({
|
|
16
17
|
* withSelector: "key=value",
|
|
@@ -39,12 +40,16 @@ export interface GetImageArgs {
|
|
|
39
40
|
* @deprecated Please use the with_selector property instead.
|
|
40
41
|
*/
|
|
41
42
|
selector?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Select only images with this architecture, could be `x86` (default) or `arm`.
|
|
45
|
+
*/
|
|
46
|
+
withArchitecture?: string;
|
|
42
47
|
/**
|
|
43
48
|
* [Label selector](https://docs.hetzner.cloud/#overview-label-selector)
|
|
44
49
|
*/
|
|
45
50
|
withSelector?: string;
|
|
46
51
|
/**
|
|
47
|
-
*
|
|
52
|
+
* Select only images with the specified status, could contain `creating` or `available`.
|
|
48
53
|
*/
|
|
49
54
|
withStatuses?: string[];
|
|
50
55
|
}
|
|
@@ -52,6 +57,10 @@ export interface GetImageArgs {
|
|
|
52
57
|
* A collection of values returned by getImage.
|
|
53
58
|
*/
|
|
54
59
|
export interface GetImageResult {
|
|
60
|
+
/**
|
|
61
|
+
* (string) Architecture of the Image.
|
|
62
|
+
*/
|
|
63
|
+
readonly architecture: string;
|
|
55
64
|
/**
|
|
56
65
|
* (string) Date when the Image was created (in ISO-8601 format).
|
|
57
66
|
*/
|
|
@@ -96,6 +105,7 @@ export interface GetImageResult {
|
|
|
96
105
|
* (string) Type of the Image, could be `system`, `backup` or `snapshot`.
|
|
97
106
|
*/
|
|
98
107
|
readonly type: string;
|
|
108
|
+
readonly withArchitecture?: string;
|
|
99
109
|
readonly withSelector?: string;
|
|
100
110
|
readonly withStatuses?: string[];
|
|
101
111
|
}
|
|
@@ -111,6 +121,7 @@ export interface GetImageResult {
|
|
|
111
121
|
* });
|
|
112
122
|
* const image2 = hcloud.getImage({
|
|
113
123
|
* name: "ubuntu-18.04",
|
|
124
|
+
* withArchitecture: "x86",
|
|
114
125
|
* });
|
|
115
126
|
* const image3 = hcloud.getImage({
|
|
116
127
|
* withSelector: "key=value",
|
|
@@ -139,12 +150,16 @@ export interface GetImageOutputArgs {
|
|
|
139
150
|
* @deprecated Please use the with_selector property instead.
|
|
140
151
|
*/
|
|
141
152
|
selector?: pulumi.Input<string>;
|
|
153
|
+
/**
|
|
154
|
+
* Select only images with this architecture, could be `x86` (default) or `arm`.
|
|
155
|
+
*/
|
|
156
|
+
withArchitecture?: pulumi.Input<string>;
|
|
142
157
|
/**
|
|
143
158
|
* [Label selector](https://docs.hetzner.cloud/#overview-label-selector)
|
|
144
159
|
*/
|
|
145
160
|
withSelector?: pulumi.Input<string>;
|
|
146
161
|
/**
|
|
147
|
-
*
|
|
162
|
+
* Select only images with the specified status, could contain `creating` or `available`.
|
|
148
163
|
*/
|
|
149
164
|
withStatuses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
150
165
|
}
|
package/getImage.js
CHANGED
|
@@ -17,6 +17,7 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* });
|
|
18
18
|
* const image2 = hcloud.getImage({
|
|
19
19
|
* name: "ubuntu-18.04",
|
|
20
|
+
* withArchitecture: "x86",
|
|
20
21
|
* });
|
|
21
22
|
* const image3 = hcloud.getImage({
|
|
22
23
|
* withSelector: "key=value",
|
|
@@ -32,6 +33,7 @@ function getImage(args, opts) {
|
|
|
32
33
|
"mostRecent": args.mostRecent,
|
|
33
34
|
"name": args.name,
|
|
34
35
|
"selector": args.selector,
|
|
36
|
+
"withArchitecture": args.withArchitecture,
|
|
35
37
|
"withSelector": args.withSelector,
|
|
36
38
|
"withStatuses": args.withStatuses,
|
|
37
39
|
}, opts);
|
|
@@ -49,6 +51,7 @@ exports.getImage = getImage;
|
|
|
49
51
|
* });
|
|
50
52
|
* const image2 = hcloud.getImage({
|
|
51
53
|
* name: "ubuntu-18.04",
|
|
54
|
+
* withArchitecture: "x86",
|
|
52
55
|
* });
|
|
53
56
|
* const image3 = hcloud.getImage({
|
|
54
57
|
* withSelector: "key=value",
|
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
|
|
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"}
|
package/getImages.d.ts
CHANGED
|
@@ -9,7 +9,9 @@ import * as outputs from "./types/output";
|
|
|
9
9
|
* import * as pulumi from "@pulumi/pulumi";
|
|
10
10
|
* import * as hcloud from "@pulumi/hcloud";
|
|
11
11
|
*
|
|
12
|
-
* const image2 = hcloud.getImages({
|
|
12
|
+
* const image2 = hcloud.getImages({
|
|
13
|
+
* withArchitectures: ["x86"],
|
|
14
|
+
* });
|
|
13
15
|
* const image3 = hcloud.getImages({
|
|
14
16
|
* withSelector: "key=value",
|
|
15
17
|
* });
|
|
@@ -24,6 +26,10 @@ export interface GetImagesArgs {
|
|
|
24
26
|
* Sorts list by date.
|
|
25
27
|
*/
|
|
26
28
|
mostRecent?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* List only images with this architecture, could contain `x86` or `arm`.
|
|
31
|
+
*/
|
|
32
|
+
withArchitectures?: string[];
|
|
27
33
|
/**
|
|
28
34
|
* [Label selector](https://docs.hetzner.cloud/#overview-label-selector)
|
|
29
35
|
*/
|
|
@@ -46,6 +52,7 @@ export interface GetImagesResult {
|
|
|
46
52
|
*/
|
|
47
53
|
readonly images: outputs.GetImagesImage[];
|
|
48
54
|
readonly mostRecent?: boolean;
|
|
55
|
+
readonly withArchitectures?: string[];
|
|
49
56
|
readonly withSelector?: string;
|
|
50
57
|
readonly withStatuses?: string[];
|
|
51
58
|
}
|
|
@@ -58,7 +65,9 @@ export interface GetImagesResult {
|
|
|
58
65
|
* import * as pulumi from "@pulumi/pulumi";
|
|
59
66
|
* import * as hcloud from "@pulumi/hcloud";
|
|
60
67
|
*
|
|
61
|
-
* const image2 = hcloud.getImages({
|
|
68
|
+
* const image2 = hcloud.getImages({
|
|
69
|
+
* withArchitectures: ["x86"],
|
|
70
|
+
* });
|
|
62
71
|
* const image3 = hcloud.getImages({
|
|
63
72
|
* withSelector: "key=value",
|
|
64
73
|
* });
|
|
@@ -73,6 +82,10 @@ export interface GetImagesOutputArgs {
|
|
|
73
82
|
* Sorts list by date.
|
|
74
83
|
*/
|
|
75
84
|
mostRecent?: pulumi.Input<boolean>;
|
|
85
|
+
/**
|
|
86
|
+
* List only images with this architecture, could contain `x86` or `arm`.
|
|
87
|
+
*/
|
|
88
|
+
withArchitectures?: pulumi.Input<pulumi.Input<string>[]>;
|
|
76
89
|
/**
|
|
77
90
|
* [Label selector](https://docs.hetzner.cloud/#overview-label-selector)
|
|
78
91
|
*/
|
package/getImages.js
CHANGED
|
@@ -14,7 +14,9 @@ const utilities = require("./utilities");
|
|
|
14
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
15
|
* import * as hcloud from "@pulumi/hcloud";
|
|
16
16
|
*
|
|
17
|
-
* const image2 = hcloud.getImages({
|
|
17
|
+
* const image2 = hcloud.getImages({
|
|
18
|
+
* withArchitectures: ["x86"],
|
|
19
|
+
* });
|
|
18
20
|
* const image3 = hcloud.getImages({
|
|
19
21
|
* withSelector: "key=value",
|
|
20
22
|
* });
|
|
@@ -25,6 +27,7 @@ function getImages(args, opts) {
|
|
|
25
27
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
26
28
|
return pulumi.runtime.invoke("hcloud:index/getImages:getImages", {
|
|
27
29
|
"mostRecent": args.mostRecent,
|
|
30
|
+
"withArchitectures": args.withArchitectures,
|
|
28
31
|
"withSelector": args.withSelector,
|
|
29
32
|
"withStatuses": args.withStatuses,
|
|
30
33
|
}, opts);
|
|
@@ -39,7 +42,9 @@ exports.getImages = getImages;
|
|
|
39
42
|
* import * as pulumi from "@pulumi/pulumi";
|
|
40
43
|
* import * as hcloud from "@pulumi/hcloud";
|
|
41
44
|
*
|
|
42
|
-
* const image2 = hcloud.getImages({
|
|
45
|
+
* const image2 = hcloud.getImages({
|
|
46
|
+
* withArchitectures: ["x86"],
|
|
47
|
+
* });
|
|
43
48
|
* const image3 = hcloud.getImages({
|
|
44
49
|
* withSelector: "key=value",
|
|
45
50
|
* });
|
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
|
|
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"}
|
package/getLocations.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare function getLocations(args?: GetLocationsArgs, opts?: pulumi.Invo
|
|
|
10
10
|
*/
|
|
11
11
|
export interface GetLocationsArgs {
|
|
12
12
|
/**
|
|
13
|
-
* (list) List of unique location identifiers.
|
|
13
|
+
* (list) List of unique location identifiers. **Deprecated**: Use `locations` attribute instead.
|
|
14
14
|
*
|
|
15
15
|
* @deprecated Use locations list instead
|
|
16
16
|
*/
|
|
@@ -21,7 +21,7 @@ export interface GetLocationsArgs {
|
|
|
21
21
|
*/
|
|
22
22
|
export interface GetLocationsResult {
|
|
23
23
|
/**
|
|
24
|
-
* (list) List of all location descriptions.
|
|
24
|
+
* (list) List of all location descriptions. **Deprecated**: Use `locations` attribute instead.
|
|
25
25
|
*
|
|
26
26
|
* @deprecated Use locations list instead
|
|
27
27
|
*/
|
|
@@ -31,7 +31,7 @@ export interface GetLocationsResult {
|
|
|
31
31
|
*/
|
|
32
32
|
readonly id: string;
|
|
33
33
|
/**
|
|
34
|
-
* (list) List of unique location identifiers.
|
|
34
|
+
* (list) List of unique location identifiers. **Deprecated**: Use `locations` attribute instead.
|
|
35
35
|
*
|
|
36
36
|
* @deprecated Use locations list instead
|
|
37
37
|
*/
|
|
@@ -41,7 +41,7 @@ export interface GetLocationsResult {
|
|
|
41
41
|
*/
|
|
42
42
|
readonly locations: outputs.GetLocationsLocation[];
|
|
43
43
|
/**
|
|
44
|
-
* (list) List of location names.
|
|
44
|
+
* (list) List of location names. **Deprecated**: Use `locations` attribute instead.
|
|
45
45
|
*
|
|
46
46
|
* @deprecated Use locations list instead
|
|
47
47
|
*/
|
|
@@ -57,7 +57,7 @@ export declare function getLocationsOutput(args?: GetLocationsOutputArgs, opts?:
|
|
|
57
57
|
*/
|
|
58
58
|
export interface GetLocationsOutputArgs {
|
|
59
59
|
/**
|
|
60
|
-
* (list) List of unique location identifiers.
|
|
60
|
+
* (list) List of unique location identifiers. **Deprecated**: Use `locations` attribute instead.
|
|
61
61
|
*
|
|
62
62
|
* @deprecated Use locations list instead
|
|
63
63
|
*/
|
package/getPrimaryIp.d.ts
CHANGED
|
@@ -102,6 +102,9 @@ export interface GetPrimaryIpResult {
|
|
|
102
102
|
* (string) IP Address of the Primary IP.
|
|
103
103
|
*/
|
|
104
104
|
readonly ipAddress: string;
|
|
105
|
+
/**
|
|
106
|
+
* (string) IPv6 subnet of the Primary IP for IPv6 addresses. (Only set if `type` is `ipv6`)
|
|
107
|
+
*/
|
|
105
108
|
readonly ipNetwork: string;
|
|
106
109
|
/**
|
|
107
110
|
* (string) Description of the Primary IP.
|
package/getPrimaryIp.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPrimaryIp.js","sourceRoot":"","sources":["../getPrimaryIp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,SAAgB,YAAY,CAAC,IAAuB,EAAE,IAA2B;IAC7E,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,wCAAwC,EAAE;QACnE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,oCAWC;
|
|
1
|
+
{"version":3,"file":"getPrimaryIp.js","sourceRoot":"","sources":["../getPrimaryIp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,SAAgB,YAAY,CAAC,IAAuB,EAAE,IAA2B;IAC7E,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,wCAAwC,EAAE;QACnE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,oCAWC;AA8ED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACvE,CAAC;AAFD,gDAEC"}
|
package/getServer.d.ts
CHANGED
|
@@ -92,7 +92,7 @@ export interface GetServerResult {
|
|
|
92
92
|
*/
|
|
93
93
|
readonly ipv6Network: string;
|
|
94
94
|
/**
|
|
95
|
-
* (string) ID or Name of the mounted ISO image.
|
|
95
|
+
* (string) ID or Name of the mounted ISO image. Architecture of ISO must equal the server (type) architecture.
|
|
96
96
|
*/
|
|
97
97
|
readonly iso: string;
|
|
98
98
|
/**
|
package/getServerType.d.ts
CHANGED
|
@@ -35,6 +35,10 @@ export interface GetServerTypeArgs {
|
|
|
35
35
|
* A collection of values returned by getServerType.
|
|
36
36
|
*/
|
|
37
37
|
export interface GetServerTypeResult {
|
|
38
|
+
/**
|
|
39
|
+
* (string) Architecture of the server_type.
|
|
40
|
+
*/
|
|
41
|
+
readonly architecture: string;
|
|
38
42
|
/**
|
|
39
43
|
* (int) Number of cpu cores a Server of this type will have.
|
|
40
44
|
*/
|
package/getServerType.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getServerType.js","sourceRoot":"","sources":["../getServerType.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,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,0CAA0C,EAAE;QACrE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,sCAQC;
|
|
1
|
+
{"version":3,"file":"getServerType.js","sourceRoot":"","sources":["../getServerType.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,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,0CAA0C,EAAE;QACrE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,sCAQC;AAmDD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/hcloud",
|
|
3
|
-
"version": "v1.11.0
|
|
3
|
+
"version": "v1.11.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.11.0
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource hcloud v1.11.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/hcloud",
|
|
3
|
-
"version": "v1.11.0
|
|
3
|
+
"version": "v1.11.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.11.0
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource hcloud v1.11.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/placementGroup.d.ts
CHANGED
package/placementGroup.js
CHANGED
package/primaryIp.d.ts
CHANGED
|
@@ -83,6 +83,9 @@ export declare class PrimaryIp extends pulumi.CustomResource {
|
|
|
83
83
|
* (string) IP Address of the Primary IP.
|
|
84
84
|
*/
|
|
85
85
|
readonly ipAddress: pulumi.Output<string>;
|
|
86
|
+
/**
|
|
87
|
+
* (string) IPv6 subnet of the Primary IP for IPv6 addresses. (Only set if `type` is `ipv6`)
|
|
88
|
+
*/
|
|
86
89
|
readonly ipNetwork: pulumi.Output<string>;
|
|
87
90
|
/**
|
|
88
91
|
* Description of the Primary IP.
|
|
@@ -136,6 +139,9 @@ export interface PrimaryIpState {
|
|
|
136
139
|
* (string) IP Address of the Primary IP.
|
|
137
140
|
*/
|
|
138
141
|
ipAddress?: pulumi.Input<string>;
|
|
142
|
+
/**
|
|
143
|
+
* (string) IPv6 subnet of the Primary IP for IPv6 addresses. (Only set if `type` is `ipv6`)
|
|
144
|
+
*/
|
|
139
145
|
ipNetwork?: pulumi.Input<string>;
|
|
140
146
|
/**
|
|
141
147
|
* Description of the Primary IP.
|
package/primaryIp.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"primaryIp.js","sourceRoot":"","sources":["../primaryIp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;
|
|
1
|
+
{"version":3,"file":"primaryIp.js","sourceRoot":"","sources":["../primaryIp.ts"],"names":[],"mappings":"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"}
|
package/rdns.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
11
11
|
* import * as hcloud from "@pulumi/hcloud";
|
|
12
12
|
*
|
|
13
13
|
* const node1 = new hcloud.Server("node1", {
|
|
14
|
-
* image: "debian-
|
|
14
|
+
* image: "debian-11",
|
|
15
15
|
* serverType: "cx11",
|
|
16
16
|
* });
|
|
17
17
|
* const master = new hcloud.Rdns("master", {
|
package/rdns.js
CHANGED
|
@@ -17,7 +17,7 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* import * as hcloud from "@pulumi/hcloud";
|
|
18
18
|
*
|
|
19
19
|
* const node1 = new hcloud.Server("node1", {
|
|
20
|
-
* image: "debian-
|
|
20
|
+
* image: "debian-11",
|
|
21
21
|
* serverType: "cx11",
|
|
22
22
|
* });
|
|
23
23
|
* const master = new hcloud.Rdns("master", {
|
package/server.d.ts
CHANGED
|
@@ -123,7 +123,7 @@ export declare class Server extends pulumi.CustomResource {
|
|
|
123
123
|
*/
|
|
124
124
|
readonly backups: pulumi.Output<boolean | undefined>;
|
|
125
125
|
/**
|
|
126
|
-
* The datacenter name to create the server in.
|
|
126
|
+
* The datacenter name to create the server in. `nbg1-dc3`, `fsn1-dc14`, `hel1-dc2`, `ash-dc1` or `hil-dc1`
|
|
127
127
|
*/
|
|
128
128
|
readonly datacenter: pulumi.Output<string>;
|
|
129
129
|
/**
|
|
@@ -173,7 +173,7 @@ export declare class Server extends pulumi.CustomResource {
|
|
|
173
173
|
[key: string]: any;
|
|
174
174
|
} | undefined>;
|
|
175
175
|
/**
|
|
176
|
-
* The location name to create the server in. `nbg1`, `fsn1`, `hel1` or `
|
|
176
|
+
* The location name to create the server in. `nbg1`, `fsn1`, `hel1`, `ash` or `hil`
|
|
177
177
|
*/
|
|
178
178
|
readonly location: pulumi.Output<string>;
|
|
179
179
|
/**
|
|
@@ -198,7 +198,7 @@ export declare class Server extends pulumi.CustomResource {
|
|
|
198
198
|
*/
|
|
199
199
|
readonly rebuildProtection: pulumi.Output<boolean | undefined>;
|
|
200
200
|
/**
|
|
201
|
-
* Enable and boot in to the specified rescue system. This enables simple installation of custom operating systems. `linux64`
|
|
201
|
+
* Enable and boot in to the specified rescue system. This enables simple installation of custom operating systems. `linux64` or `linux32`
|
|
202
202
|
*/
|
|
203
203
|
readonly rescue: pulumi.Output<string | undefined>;
|
|
204
204
|
/**
|
|
@@ -245,7 +245,7 @@ export interface ServerState {
|
|
|
245
245
|
*/
|
|
246
246
|
backups?: pulumi.Input<boolean>;
|
|
247
247
|
/**
|
|
248
|
-
* The datacenter name to create the server in.
|
|
248
|
+
* The datacenter name to create the server in. `nbg1-dc3`, `fsn1-dc14`, `hel1-dc2`, `ash-dc1` or `hil-dc1`
|
|
249
249
|
*/
|
|
250
250
|
datacenter?: pulumi.Input<string>;
|
|
251
251
|
/**
|
|
@@ -295,7 +295,7 @@ export interface ServerState {
|
|
|
295
295
|
[key: string]: any;
|
|
296
296
|
}>;
|
|
297
297
|
/**
|
|
298
|
-
* The location name to create the server in. `nbg1`, `fsn1`, `hel1` or `
|
|
298
|
+
* The location name to create the server in. `nbg1`, `fsn1`, `hel1`, `ash` or `hil`
|
|
299
299
|
*/
|
|
300
300
|
location?: pulumi.Input<string>;
|
|
301
301
|
/**
|
|
@@ -320,7 +320,7 @@ export interface ServerState {
|
|
|
320
320
|
*/
|
|
321
321
|
rebuildProtection?: pulumi.Input<boolean>;
|
|
322
322
|
/**
|
|
323
|
-
* Enable and boot in to the specified rescue system. This enables simple installation of custom operating systems. `linux64`
|
|
323
|
+
* Enable and boot in to the specified rescue system. This enables simple installation of custom operating systems. `linux64` or `linux32`
|
|
324
324
|
*/
|
|
325
325
|
rescue?: pulumi.Input<string>;
|
|
326
326
|
/**
|
|
@@ -353,7 +353,7 @@ export interface ServerArgs {
|
|
|
353
353
|
*/
|
|
354
354
|
backups?: pulumi.Input<boolean>;
|
|
355
355
|
/**
|
|
356
|
-
* The datacenter name to create the server in.
|
|
356
|
+
* The datacenter name to create the server in. `nbg1-dc3`, `fsn1-dc14`, `hel1-dc2`, `ash-dc1` or `hil-dc1`
|
|
357
357
|
*/
|
|
358
358
|
datacenter?: pulumi.Input<string>;
|
|
359
359
|
/**
|
|
@@ -391,7 +391,7 @@ export interface ServerArgs {
|
|
|
391
391
|
[key: string]: any;
|
|
392
392
|
}>;
|
|
393
393
|
/**
|
|
394
|
-
* The location name to create the server in. `nbg1`, `fsn1`, `hel1` or `
|
|
394
|
+
* The location name to create the server in. `nbg1`, `fsn1`, `hel1`, `ash` or `hil`
|
|
395
395
|
*/
|
|
396
396
|
location?: pulumi.Input<string>;
|
|
397
397
|
/**
|
|
@@ -416,7 +416,7 @@ export interface ServerArgs {
|
|
|
416
416
|
*/
|
|
417
417
|
rebuildProtection?: pulumi.Input<boolean>;
|
|
418
418
|
/**
|
|
419
|
-
* Enable and boot in to the specified rescue system. This enables simple installation of custom operating systems. `linux64`
|
|
419
|
+
* Enable and boot in to the specified rescue system. This enables simple installation of custom operating systems. `linux64` or `linux32`
|
|
420
420
|
*/
|
|
421
421
|
rescue?: pulumi.Input<string>;
|
|
422
422
|
/**
|
package/serverNetwork.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
9
9
|
* import * as hcloud from "@pulumi/hcloud";
|
|
10
10
|
*
|
|
11
11
|
* const node1 = new hcloud.Server("node1", {
|
|
12
|
-
* image: "debian-
|
|
12
|
+
* image: "debian-11",
|
|
13
13
|
* serverType: "cx11",
|
|
14
14
|
* });
|
|
15
15
|
* const mynet = new hcloud.Network("mynet", {ipRange: "10.0.0.0/8"});
|
package/serverNetwork.js
CHANGED
|
@@ -15,7 +15,7 @@ const utilities = require("./utilities");
|
|
|
15
15
|
* import * as hcloud from "@pulumi/hcloud";
|
|
16
16
|
*
|
|
17
17
|
* const node1 = new hcloud.Server("node1", {
|
|
18
|
-
* image: "debian-
|
|
18
|
+
* image: "debian-11",
|
|
19
19
|
* serverType: "cx11",
|
|
20
20
|
* });
|
|
21
21
|
* const mynet = new hcloud.Network("mynet", {ipRange: "10.0.0.0/8"});
|
package/snapshot.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
9
9
|
* import * as hcloud from "@pulumi/hcloud";
|
|
10
10
|
*
|
|
11
11
|
* const node1 = new hcloud.Server("node1", {
|
|
12
|
-
* image: "debian-
|
|
12
|
+
* image: "debian-11",
|
|
13
13
|
* serverType: "cx11",
|
|
14
14
|
* });
|
|
15
15
|
* const my_snapshot = new hcloud.Snapshot("my-snapshot", {serverId: node1.id});
|
package/snapshot.js
CHANGED
|
@@ -15,7 +15,7 @@ const utilities = require("./utilities");
|
|
|
15
15
|
* import * as hcloud from "@pulumi/hcloud";
|
|
16
16
|
*
|
|
17
17
|
* const node1 = new hcloud.Server("node1", {
|
|
18
|
-
* image: "debian-
|
|
18
|
+
* image: "debian-11",
|
|
19
19
|
* serverType: "cx11",
|
|
20
20
|
* });
|
|
21
21
|
* const my_snapshot = new hcloud.Snapshot("my-snapshot", {serverId: node1.id});
|
package/types/output.d.ts
CHANGED
|
@@ -137,6 +137,7 @@ export interface GetFloatingIpsFloatingIp {
|
|
|
137
137
|
type: string;
|
|
138
138
|
}
|
|
139
139
|
export interface GetImagesImage {
|
|
140
|
+
architecture: string;
|
|
140
141
|
created: string;
|
|
141
142
|
deprecated: string;
|
|
142
143
|
description: string;
|
|
@@ -370,6 +371,7 @@ export interface GetPrimaryIpsPrimaryIp {
|
|
|
370
371
|
type: string;
|
|
371
372
|
}
|
|
372
373
|
export interface GetServerTypesServerType {
|
|
374
|
+
architecture: string;
|
|
373
375
|
cores: number;
|
|
374
376
|
cpuType: string;
|
|
375
377
|
description: string;
|
package/volume.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
9
9
|
* import * as hcloud from "@pulumi/hcloud";
|
|
10
10
|
*
|
|
11
11
|
* const node1 = new hcloud.Server("node1", {
|
|
12
|
-
* image: "debian-
|
|
12
|
+
* image: "debian-11",
|
|
13
13
|
* serverType: "cx11",
|
|
14
14
|
* });
|
|
15
15
|
* const master = new hcloud.Volume("master", {
|
package/volume.js
CHANGED
|
@@ -15,7 +15,7 @@ const utilities = require("./utilities");
|
|
|
15
15
|
* import * as hcloud from "@pulumi/hcloud";
|
|
16
16
|
*
|
|
17
17
|
* const node1 = new hcloud.Server("node1", {
|
|
18
|
-
* image: "debian-
|
|
18
|
+
* image: "debian-11",
|
|
19
19
|
* serverType: "cx11",
|
|
20
20
|
* });
|
|
21
21
|
* const master = new hcloud.Volume("master", {
|
package/volumeAttachment.d.ts
CHANGED
package/volumeAttachment.js
CHANGED