@pulumi/hcloud 1.21.0 → 1.21.1
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/getDatacenter.d.ts +24 -22
- package/getDatacenter.js +12 -10
- package/getDatacenter.js.map +1 -1
- package/getDatacenters.d.ts +13 -65
- package/getDatacenters.js +8 -18
- package/getDatacenters.js.map +1 -1
- package/getLoadBalancerType.d.ts +25 -23
- package/getLoadBalancerType.js +14 -12
- package/getLoadBalancerType.js.map +1 -1
- package/getLoadBalancerTypes.d.ts +2 -2
- package/getLocation.d.ts +26 -24
- package/getLocation.js +12 -10
- package/getLocation.js.map +1 -1
- package/getLocations.d.ts +10 -62
- package/getLocations.js +6 -16
- package/getLocations.js.map +1 -1
- package/getServerType.d.ts +42 -40
- package/getServerType.js +20 -10
- package/getServerType.js.map +1 -1
- package/getServerTypes.d.ts +26 -44
- package/getServerTypes.js +22 -16
- package/getServerTypes.js.map +1 -1
- package/getSshKey.d.ts +39 -41
- package/getSshKey.js +18 -22
- package/getSshKey.js.map +1 -1
- package/getSshKeys.d.ts +19 -10
- package/getSshKeys.js +6 -6
- package/getSshKeys.js.map +1 -1
- package/index.d.ts +3 -3
- package/loadBalancer.d.ts +1 -1
- package/loadBalancer.js +1 -1
- package/loadBalancerNetwork.d.ts +1 -1
- package/loadBalancerNetwork.js +1 -1
- package/loadBalancerService.d.ts +1 -1
- package/loadBalancerService.js +1 -1
- package/loadBalancerTarget.d.ts +3 -3
- package/loadBalancerTarget.js +3 -3
- package/managedCertificate.d.ts +20 -3
- package/managedCertificate.js +20 -3
- package/managedCertificate.js.map +1 -1
- package/network.d.ts +1 -1
- package/network.js +1 -1
- package/networkRoute.d.ts +1 -1
- package/networkRoute.js +1 -1
- package/networkSubnet.d.ts +1 -1
- package/networkSubnet.js +1 -1
- package/package.json +2 -2
- package/placementGroup.d.ts +1 -1
- package/placementGroup.js +1 -1
- package/primaryIp.d.ts +1 -1
- package/primaryIp.js +1 -1
- package/rdns.d.ts +4 -0
- package/rdns.js +4 -0
- package/rdns.js.map +1 -1
- package/server.d.ts +1 -1
- package/server.js +1 -1
- package/serverNetwork.d.ts +1 -1
- package/serverNetwork.js +1 -1
- package/snapshot.d.ts +1 -1
- package/snapshot.js +1 -1
- package/sshKey.d.ts +16 -19
- package/sshKey.js +5 -8
- package/sshKey.js.map +1 -1
- package/types/output.d.ts +103 -4
- package/uploadedCertificate.d.ts +28 -3
- package/uploadedCertificate.js +28 -3
- package/uploadedCertificate.js.map +1 -1
- package/volume.d.ts +1 -1
- package/volume.js +1 -1
- package/volumeAttachment.d.ts +1 -1
- package/volumeAttachment.js +1 -1
package/getServerTypes.js
CHANGED
|
@@ -7,30 +7,36 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
9
|
* Provides a list of available Hetzner Cloud Server Types.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as hcloud from "@pulumi/hcloud";
|
|
16
|
+
*
|
|
17
|
+
* const all = hcloud.getServerTypes({});
|
|
18
|
+
* ```
|
|
10
19
|
*/
|
|
11
|
-
function getServerTypes(
|
|
12
|
-
args = args || {};
|
|
20
|
+
function getServerTypes(opts) {
|
|
13
21
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
14
|
-
return pulumi.runtime.invoke("hcloud:index/getServerTypes:getServerTypes", {
|
|
15
|
-
"descriptions": args.descriptions,
|
|
16
|
-
"id": args.id,
|
|
17
|
-
"names": args.names,
|
|
18
|
-
"serverTypeIds": args.serverTypeIds,
|
|
19
|
-
}, opts);
|
|
22
|
+
return pulumi.runtime.invoke("hcloud:index/getServerTypes:getServerTypes", {}, opts);
|
|
20
23
|
}
|
|
21
24
|
exports.getServerTypes = getServerTypes;
|
|
22
25
|
/**
|
|
23
26
|
* Provides a list of available Hetzner Cloud Server Types.
|
|
27
|
+
*
|
|
28
|
+
* ## Example Usage
|
|
29
|
+
*
|
|
30
|
+
* ```typescript
|
|
31
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
32
|
+
* import * as hcloud from "@pulumi/hcloud";
|
|
33
|
+
*
|
|
34
|
+
* const all = hcloud.getServerTypes({});
|
|
35
|
+
* ```
|
|
24
36
|
*/
|
|
25
|
-
function getServerTypesOutput(
|
|
26
|
-
args = args || {};
|
|
37
|
+
function getServerTypesOutput(opts) {
|
|
27
38
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
28
|
-
return pulumi.runtime.invokeOutput("hcloud:index/getServerTypes:getServerTypes", {
|
|
29
|
-
"descriptions": args.descriptions,
|
|
30
|
-
"id": args.id,
|
|
31
|
-
"names": args.names,
|
|
32
|
-
"serverTypeIds": args.serverTypeIds,
|
|
33
|
-
}, opts);
|
|
39
|
+
return pulumi.runtime.invokeOutput("hcloud:index/getServerTypes:getServerTypes", {}, opts);
|
|
34
40
|
}
|
|
35
41
|
exports.getServerTypesOutput = getServerTypesOutput;
|
|
36
42
|
//# sourceMappingURL=getServerTypes.js.map
|
package/getServerTypes.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getServerTypes.js","sourceRoot":"","sources":["../getServerTypes.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getServerTypes.js","sourceRoot":"","sources":["../getServerTypes.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,cAAc,CAAC,IAA2B;IACtD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE,EAC1E,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,wCAIC;AAwBD;;;;;;;;;;;GAWG;AACH,SAAgB,oBAAoB,CAAC,IAA2B;IAC5D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE,EAChF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,oDAIC"}
|
package/getSshKey.d.ts
CHANGED
|
@@ -6,22 +6,22 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
6
6
|
* import * as pulumi from "@pulumi/pulumi";
|
|
7
7
|
* import * as hcloud from "@pulumi/hcloud";
|
|
8
8
|
*
|
|
9
|
-
* const
|
|
10
|
-
* id:
|
|
9
|
+
* const byId = hcloud.getSshKey({
|
|
10
|
+
* id: 24332897,
|
|
11
11
|
* });
|
|
12
|
-
* const
|
|
12
|
+
* const byName = hcloud.getSshKey({
|
|
13
13
|
* name: "my-ssh-key",
|
|
14
14
|
* });
|
|
15
|
-
* const
|
|
16
|
-
* fingerprint: "
|
|
15
|
+
* const byFingerprint = hcloud.getSshKey({
|
|
16
|
+
* fingerprint: "55:58:dc:bd:61:6e:7d:24:07:a7:7d:9b:be:99:83:a8",
|
|
17
17
|
* });
|
|
18
|
-
* const
|
|
18
|
+
* const byLabel = hcloud.getSshKey({
|
|
19
19
|
* withSelector: "key=value",
|
|
20
20
|
* });
|
|
21
21
|
* const main = new hcloud.Server("main", {sshKeys: [
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
22
|
+
* byId.then(byId => byId.id),
|
|
23
|
+
* byName.then(byName => byName.id),
|
|
24
|
+
* byFingerprint.then(byFingerprint => byFingerprint.id),
|
|
25
25
|
* ]});
|
|
26
26
|
* ```
|
|
27
27
|
*/
|
|
@@ -38,23 +38,18 @@ export interface GetSshKeyArgs {
|
|
|
38
38
|
* ID of the SSH Key.
|
|
39
39
|
*/
|
|
40
40
|
id?: number;
|
|
41
|
-
labels?: {
|
|
42
|
-
[key: string]: string;
|
|
43
|
-
};
|
|
44
41
|
/**
|
|
45
42
|
* Name of the SSH Key.
|
|
46
43
|
*/
|
|
47
44
|
name?: string;
|
|
48
45
|
/**
|
|
49
|
-
*
|
|
50
|
-
|
|
51
|
-
publicKey?: string;
|
|
52
|
-
/**
|
|
46
|
+
* Filter results using a [Label Selector](https://docs.hetzner.cloud/#label-selector).
|
|
47
|
+
*
|
|
53
48
|
* @deprecated Please use the withSelector property instead.
|
|
54
49
|
*/
|
|
55
50
|
selector?: string;
|
|
56
51
|
/**
|
|
57
|
-
* [Label
|
|
52
|
+
* Filter results using a [Label Selector](https://docs.hetzner.cloud/#label-selector).
|
|
58
53
|
*/
|
|
59
54
|
withSelector?: string;
|
|
60
55
|
}
|
|
@@ -63,28 +58,36 @@ export interface GetSshKeyArgs {
|
|
|
63
58
|
*/
|
|
64
59
|
export interface GetSshKeyResult {
|
|
65
60
|
/**
|
|
66
|
-
*
|
|
61
|
+
* Fingerprint of the SSH Key.
|
|
67
62
|
*/
|
|
68
|
-
readonly fingerprint
|
|
63
|
+
readonly fingerprint?: string;
|
|
69
64
|
/**
|
|
70
|
-
*
|
|
65
|
+
* ID of the SSH Key.
|
|
66
|
+
*/
|
|
67
|
+
readonly id?: number;
|
|
68
|
+
/**
|
|
69
|
+
* User-defined [labels](https://docs.hetzner.cloud/#labels) (key-value pairs) for the resource.
|
|
71
70
|
*/
|
|
72
|
-
readonly id: number;
|
|
73
71
|
readonly labels: {
|
|
74
72
|
[key: string]: string;
|
|
75
73
|
};
|
|
76
74
|
/**
|
|
77
|
-
*
|
|
75
|
+
* Name of the SSH Key.
|
|
78
76
|
*/
|
|
79
|
-
readonly name
|
|
77
|
+
readonly name?: string;
|
|
80
78
|
/**
|
|
81
|
-
*
|
|
79
|
+
* Public key of the SSH Key pair.
|
|
82
80
|
*/
|
|
83
81
|
readonly publicKey: string;
|
|
84
82
|
/**
|
|
83
|
+
* Filter results using a [Label Selector](https://docs.hetzner.cloud/#label-selector).
|
|
84
|
+
*
|
|
85
85
|
* @deprecated Please use the withSelector property instead.
|
|
86
86
|
*/
|
|
87
87
|
readonly selector?: string;
|
|
88
|
+
/**
|
|
89
|
+
* Filter results using a [Label Selector](https://docs.hetzner.cloud/#label-selector).
|
|
90
|
+
*/
|
|
88
91
|
readonly withSelector?: string;
|
|
89
92
|
}
|
|
90
93
|
/**
|
|
@@ -94,22 +97,22 @@ export interface GetSshKeyResult {
|
|
|
94
97
|
* import * as pulumi from "@pulumi/pulumi";
|
|
95
98
|
* import * as hcloud from "@pulumi/hcloud";
|
|
96
99
|
*
|
|
97
|
-
* const
|
|
98
|
-
* id:
|
|
100
|
+
* const byId = hcloud.getSshKey({
|
|
101
|
+
* id: 24332897,
|
|
99
102
|
* });
|
|
100
|
-
* const
|
|
103
|
+
* const byName = hcloud.getSshKey({
|
|
101
104
|
* name: "my-ssh-key",
|
|
102
105
|
* });
|
|
103
|
-
* const
|
|
104
|
-
* fingerprint: "
|
|
106
|
+
* const byFingerprint = hcloud.getSshKey({
|
|
107
|
+
* fingerprint: "55:58:dc:bd:61:6e:7d:24:07:a7:7d:9b:be:99:83:a8",
|
|
105
108
|
* });
|
|
106
|
-
* const
|
|
109
|
+
* const byLabel = hcloud.getSshKey({
|
|
107
110
|
* withSelector: "key=value",
|
|
108
111
|
* });
|
|
109
112
|
* const main = new hcloud.Server("main", {sshKeys: [
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
+
* byId.then(byId => byId.id),
|
|
114
|
+
* byName.then(byName => byName.id),
|
|
115
|
+
* byFingerprint.then(byFingerprint => byFingerprint.id),
|
|
113
116
|
* ]});
|
|
114
117
|
* ```
|
|
115
118
|
*/
|
|
@@ -126,23 +129,18 @@ export interface GetSshKeyOutputArgs {
|
|
|
126
129
|
* ID of the SSH Key.
|
|
127
130
|
*/
|
|
128
131
|
id?: pulumi.Input<number>;
|
|
129
|
-
labels?: pulumi.Input<{
|
|
130
|
-
[key: string]: pulumi.Input<string>;
|
|
131
|
-
}>;
|
|
132
132
|
/**
|
|
133
133
|
* Name of the SSH Key.
|
|
134
134
|
*/
|
|
135
135
|
name?: pulumi.Input<string>;
|
|
136
136
|
/**
|
|
137
|
-
*
|
|
138
|
-
|
|
139
|
-
publicKey?: pulumi.Input<string>;
|
|
140
|
-
/**
|
|
137
|
+
* Filter results using a [Label Selector](https://docs.hetzner.cloud/#label-selector).
|
|
138
|
+
*
|
|
141
139
|
* @deprecated Please use the withSelector property instead.
|
|
142
140
|
*/
|
|
143
141
|
selector?: pulumi.Input<string>;
|
|
144
142
|
/**
|
|
145
|
-
* [Label
|
|
143
|
+
* Filter results using a [Label Selector](https://docs.hetzner.cloud/#label-selector).
|
|
146
144
|
*/
|
|
147
145
|
withSelector?: pulumi.Input<string>;
|
|
148
146
|
}
|
package/getSshKey.js
CHANGED
|
@@ -12,22 +12,22 @@ const utilities = require("./utilities");
|
|
|
12
12
|
* import * as pulumi from "@pulumi/pulumi";
|
|
13
13
|
* import * as hcloud from "@pulumi/hcloud";
|
|
14
14
|
*
|
|
15
|
-
* const
|
|
16
|
-
* id:
|
|
15
|
+
* const byId = hcloud.getSshKey({
|
|
16
|
+
* id: 24332897,
|
|
17
17
|
* });
|
|
18
|
-
* const
|
|
18
|
+
* const byName = hcloud.getSshKey({
|
|
19
19
|
* name: "my-ssh-key",
|
|
20
20
|
* });
|
|
21
|
-
* const
|
|
22
|
-
* fingerprint: "
|
|
21
|
+
* const byFingerprint = hcloud.getSshKey({
|
|
22
|
+
* fingerprint: "55:58:dc:bd:61:6e:7d:24:07:a7:7d:9b:be:99:83:a8",
|
|
23
23
|
* });
|
|
24
|
-
* const
|
|
24
|
+
* const byLabel = hcloud.getSshKey({
|
|
25
25
|
* withSelector: "key=value",
|
|
26
26
|
* });
|
|
27
27
|
* const main = new hcloud.Server("main", {sshKeys: [
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
28
|
+
* byId.then(byId => byId.id),
|
|
29
|
+
* byName.then(byName => byName.id),
|
|
30
|
+
* byFingerprint.then(byFingerprint => byFingerprint.id),
|
|
31
31
|
* ]});
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
@@ -37,9 +37,7 @@ function getSshKey(args, opts) {
|
|
|
37
37
|
return pulumi.runtime.invoke("hcloud:index/getSshKey:getSshKey", {
|
|
38
38
|
"fingerprint": args.fingerprint,
|
|
39
39
|
"id": args.id,
|
|
40
|
-
"labels": args.labels,
|
|
41
40
|
"name": args.name,
|
|
42
|
-
"publicKey": args.publicKey,
|
|
43
41
|
"selector": args.selector,
|
|
44
42
|
"withSelector": args.withSelector,
|
|
45
43
|
}, opts);
|
|
@@ -52,22 +50,22 @@ exports.getSshKey = getSshKey;
|
|
|
52
50
|
* import * as pulumi from "@pulumi/pulumi";
|
|
53
51
|
* import * as hcloud from "@pulumi/hcloud";
|
|
54
52
|
*
|
|
55
|
-
* const
|
|
56
|
-
* id:
|
|
53
|
+
* const byId = hcloud.getSshKey({
|
|
54
|
+
* id: 24332897,
|
|
57
55
|
* });
|
|
58
|
-
* const
|
|
56
|
+
* const byName = hcloud.getSshKey({
|
|
59
57
|
* name: "my-ssh-key",
|
|
60
58
|
* });
|
|
61
|
-
* const
|
|
62
|
-
* fingerprint: "
|
|
59
|
+
* const byFingerprint = hcloud.getSshKey({
|
|
60
|
+
* fingerprint: "55:58:dc:bd:61:6e:7d:24:07:a7:7d:9b:be:99:83:a8",
|
|
63
61
|
* });
|
|
64
|
-
* const
|
|
62
|
+
* const byLabel = hcloud.getSshKey({
|
|
65
63
|
* withSelector: "key=value",
|
|
66
64
|
* });
|
|
67
65
|
* const main = new hcloud.Server("main", {sshKeys: [
|
|
68
|
-
*
|
|
69
|
-
*
|
|
70
|
-
*
|
|
66
|
+
* byId.then(byId => byId.id),
|
|
67
|
+
* byName.then(byName => byName.id),
|
|
68
|
+
* byFingerprint.then(byFingerprint => byFingerprint.id),
|
|
71
69
|
* ]});
|
|
72
70
|
* ```
|
|
73
71
|
*/
|
|
@@ -77,9 +75,7 @@ function getSshKeyOutput(args, opts) {
|
|
|
77
75
|
return pulumi.runtime.invokeOutput("hcloud:index/getSshKey:getSshKey", {
|
|
78
76
|
"fingerprint": args.fingerprint,
|
|
79
77
|
"id": args.id,
|
|
80
|
-
"labels": args.labels,
|
|
81
78
|
"name": args.name,
|
|
82
|
-
"publicKey": args.publicKey,
|
|
83
79
|
"selector": args.selector,
|
|
84
80
|
"withSelector": args.withSelector,
|
|
85
81
|
}, opts);
|
package/getSshKey.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSshKey.js","sourceRoot":"","sources":["../getSshKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,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,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,
|
|
1
|
+
{"version":3,"file":"getSshKey.js","sourceRoot":"","sources":["../getSshKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,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,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8BAUC;AAiED;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kCAAkC,EAAE;QACnE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,0CAUC"}
|
package/getSshKeys.d.ts
CHANGED
|
@@ -7,11 +7,11 @@ import * as outputs from "./types/output";
|
|
|
7
7
|
* import * as pulumi from "@pulumi/pulumi";
|
|
8
8
|
* import * as hcloud from "@pulumi/hcloud";
|
|
9
9
|
*
|
|
10
|
-
* const
|
|
11
|
-
* const
|
|
10
|
+
* const all = hcloud.getSshKeys({});
|
|
11
|
+
* const byLabel = hcloud.getSshKeys({
|
|
12
12
|
* withSelector: "foo=bar",
|
|
13
13
|
* });
|
|
14
|
-
* const main = new hcloud.Server("main", {sshKeys:
|
|
14
|
+
* const main = new hcloud.Server("main", {sshKeys: all.then(all => all.sshKeys.map(__item => __item.name))});
|
|
15
15
|
* ```
|
|
16
16
|
*/
|
|
17
17
|
export declare function getSshKeys(args?: GetSshKeysArgs, opts?: pulumi.InvokeOptions): Promise<GetSshKeysResult>;
|
|
@@ -19,9 +19,12 @@ export declare function getSshKeys(args?: GetSshKeysArgs, opts?: pulumi.InvokeOp
|
|
|
19
19
|
* A collection of arguments for invoking getSshKeys.
|
|
20
20
|
*/
|
|
21
21
|
export interface GetSshKeysArgs {
|
|
22
|
+
/**
|
|
23
|
+
* The ID of this resource.
|
|
24
|
+
*/
|
|
22
25
|
id?: string;
|
|
23
26
|
/**
|
|
24
|
-
* [Label
|
|
27
|
+
* Filter results using a [Label Selector](https://docs.hetzner.cloud/#label-selector)
|
|
25
28
|
*/
|
|
26
29
|
withSelector?: string;
|
|
27
30
|
}
|
|
@@ -29,11 +32,14 @@ export interface GetSshKeysArgs {
|
|
|
29
32
|
* A collection of values returned by getSshKeys.
|
|
30
33
|
*/
|
|
31
34
|
export interface GetSshKeysResult {
|
|
32
|
-
readonly id?: string;
|
|
33
35
|
/**
|
|
34
|
-
*
|
|
36
|
+
* The ID of this resource.
|
|
35
37
|
*/
|
|
38
|
+
readonly id?: string;
|
|
36
39
|
readonly sshKeys: outputs.GetSshKeysSshKey[];
|
|
40
|
+
/**
|
|
41
|
+
* Filter results using a [Label Selector](https://docs.hetzner.cloud/#label-selector)
|
|
42
|
+
*/
|
|
37
43
|
readonly withSelector?: string;
|
|
38
44
|
}
|
|
39
45
|
/**
|
|
@@ -43,11 +49,11 @@ export interface GetSshKeysResult {
|
|
|
43
49
|
* import * as pulumi from "@pulumi/pulumi";
|
|
44
50
|
* import * as hcloud from "@pulumi/hcloud";
|
|
45
51
|
*
|
|
46
|
-
* const
|
|
47
|
-
* const
|
|
52
|
+
* const all = hcloud.getSshKeys({});
|
|
53
|
+
* const byLabel = hcloud.getSshKeys({
|
|
48
54
|
* withSelector: "foo=bar",
|
|
49
55
|
* });
|
|
50
|
-
* const main = new hcloud.Server("main", {sshKeys:
|
|
56
|
+
* const main = new hcloud.Server("main", {sshKeys: all.then(all => all.sshKeys.map(__item => __item.name))});
|
|
51
57
|
* ```
|
|
52
58
|
*/
|
|
53
59
|
export declare function getSshKeysOutput(args?: GetSshKeysOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSshKeysResult>;
|
|
@@ -55,9 +61,12 @@ export declare function getSshKeysOutput(args?: GetSshKeysOutputArgs, opts?: pul
|
|
|
55
61
|
* A collection of arguments for invoking getSshKeys.
|
|
56
62
|
*/
|
|
57
63
|
export interface GetSshKeysOutputArgs {
|
|
64
|
+
/**
|
|
65
|
+
* The ID of this resource.
|
|
66
|
+
*/
|
|
58
67
|
id?: pulumi.Input<string>;
|
|
59
68
|
/**
|
|
60
|
-
* [Label
|
|
69
|
+
* Filter results using a [Label Selector](https://docs.hetzner.cloud/#label-selector)
|
|
61
70
|
*/
|
|
62
71
|
withSelector?: pulumi.Input<string>;
|
|
63
72
|
}
|
package/getSshKeys.js
CHANGED
|
@@ -12,11 +12,11 @@ const utilities = require("./utilities");
|
|
|
12
12
|
* import * as pulumi from "@pulumi/pulumi";
|
|
13
13
|
* import * as hcloud from "@pulumi/hcloud";
|
|
14
14
|
*
|
|
15
|
-
* const
|
|
16
|
-
* const
|
|
15
|
+
* const all = hcloud.getSshKeys({});
|
|
16
|
+
* const byLabel = hcloud.getSshKeys({
|
|
17
17
|
* withSelector: "foo=bar",
|
|
18
18
|
* });
|
|
19
|
-
* const main = new hcloud.Server("main", {sshKeys:
|
|
19
|
+
* const main = new hcloud.Server("main", {sshKeys: all.then(all => all.sshKeys.map(__item => __item.name))});
|
|
20
20
|
* ```
|
|
21
21
|
*/
|
|
22
22
|
function getSshKeys(args, opts) {
|
|
@@ -35,11 +35,11 @@ exports.getSshKeys = getSshKeys;
|
|
|
35
35
|
* import * as pulumi from "@pulumi/pulumi";
|
|
36
36
|
* import * as hcloud from "@pulumi/hcloud";
|
|
37
37
|
*
|
|
38
|
-
* const
|
|
39
|
-
* const
|
|
38
|
+
* const all = hcloud.getSshKeys({});
|
|
39
|
+
* const byLabel = hcloud.getSshKeys({
|
|
40
40
|
* withSelector: "foo=bar",
|
|
41
41
|
* });
|
|
42
|
-
* const main = new hcloud.Server("main", {sshKeys:
|
|
42
|
+
* const main = new hcloud.Server("main", {sshKeys: all.then(all => all.sshKeys.map(__item => __item.name))});
|
|
43
43
|
* ```
|
|
44
44
|
*/
|
|
45
45
|
function getSshKeysOutput(args, opts) {
|
package/getSshKeys.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSshKeys.js","sourceRoot":"","sources":["../getSshKeys.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gCAOC;
|
|
1
|
+
{"version":3,"file":"getSshKeys.js","sourceRoot":"","sources":["../getSshKeys.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,UAAU,CAAC,IAAqB,EAAE,IAA2B;IACzE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gCAOC;AA8BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oCAAoC,EAAE;QACrE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4CAOC"}
|
package/index.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export declare const getCertificatesOutput: typeof import("./getCertificates").g
|
|
|
22
22
|
export { GetDatacenterArgs, GetDatacenterResult, GetDatacenterOutputArgs } from "./getDatacenter";
|
|
23
23
|
export declare const getDatacenter: typeof import("./getDatacenter").getDatacenter;
|
|
24
24
|
export declare const getDatacenterOutput: typeof import("./getDatacenter").getDatacenterOutput;
|
|
25
|
-
export {
|
|
25
|
+
export { GetDatacentersResult } from "./getDatacenters";
|
|
26
26
|
export declare const getDatacenters: typeof import("./getDatacenters").getDatacenters;
|
|
27
27
|
export declare const getDatacentersOutput: typeof import("./getDatacenters").getDatacentersOutput;
|
|
28
28
|
export { GetFirewallArgs, GetFirewallResult, GetFirewallOutputArgs } from "./getFirewall";
|
|
@@ -58,7 +58,7 @@ export declare const getLoadBalancersOutput: typeof import("./getLoadBalancers")
|
|
|
58
58
|
export { GetLocationArgs, GetLocationResult, GetLocationOutputArgs } from "./getLocation";
|
|
59
59
|
export declare const getLocation: typeof import("./getLocation").getLocation;
|
|
60
60
|
export declare const getLocationOutput: typeof import("./getLocation").getLocationOutput;
|
|
61
|
-
export {
|
|
61
|
+
export { GetLocationsResult } from "./getLocations";
|
|
62
62
|
export declare const getLocations: typeof import("./getLocations").getLocations;
|
|
63
63
|
export declare const getLocationsOutput: typeof import("./getLocations").getLocationsOutput;
|
|
64
64
|
export { GetNetworkArgs, GetNetworkResult, GetNetworkOutputArgs } from "./getNetwork";
|
|
@@ -85,7 +85,7 @@ export declare const getServerOutput: typeof import("./getServer").getServerOutp
|
|
|
85
85
|
export { GetServerTypeArgs, GetServerTypeResult, GetServerTypeOutputArgs } from "./getServerType";
|
|
86
86
|
export declare const getServerType: typeof import("./getServerType").getServerType;
|
|
87
87
|
export declare const getServerTypeOutput: typeof import("./getServerType").getServerTypeOutput;
|
|
88
|
-
export {
|
|
88
|
+
export { GetServerTypesResult } from "./getServerTypes";
|
|
89
89
|
export declare const getServerTypes: typeof import("./getServerTypes").getServerTypes;
|
|
90
90
|
export declare const getServerTypesOutput: typeof import("./getServerTypes").getServerTypesOutput;
|
|
91
91
|
export { GetServersArgs, GetServersResult, GetServersOutputArgs } from "./getServers";
|
package/loadBalancer.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ import * as outputs from "./types/output";
|
|
|
32
32
|
* Load Balancers can be imported using its `id`:
|
|
33
33
|
*
|
|
34
34
|
* ```sh
|
|
35
|
-
* $ pulumi import hcloud:index/loadBalancer:LoadBalancer
|
|
35
|
+
* $ pulumi import hcloud:index/loadBalancer:LoadBalancer example "$LOAD_BALANCER_ID"
|
|
36
36
|
* ```
|
|
37
37
|
*/
|
|
38
38
|
export declare class LoadBalancer extends pulumi.CustomResource {
|
package/loadBalancer.js
CHANGED
|
@@ -36,7 +36,7 @@ const utilities = require("./utilities");
|
|
|
36
36
|
* Load Balancers can be imported using its `id`:
|
|
37
37
|
*
|
|
38
38
|
* ```sh
|
|
39
|
-
* $ pulumi import hcloud:index/loadBalancer:LoadBalancer
|
|
39
|
+
* $ pulumi import hcloud:index/loadBalancer:LoadBalancer example "$LOAD_BALANCER_ID"
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
42
|
class LoadBalancer extends pulumi.CustomResource {
|
package/loadBalancerNetwork.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
39
39
|
* `<load-balancer-id>-<network-id>`
|
|
40
40
|
*
|
|
41
41
|
* ```sh
|
|
42
|
-
* $ pulumi import hcloud:index/loadBalancerNetwork:LoadBalancerNetwork
|
|
42
|
+
* $ pulumi import hcloud:index/loadBalancerNetwork:LoadBalancerNetwork example "$LOAD_BALANCER_ID-$NETWORK_ID"
|
|
43
43
|
* ```
|
|
44
44
|
*/
|
|
45
45
|
export declare class LoadBalancerNetwork extends pulumi.CustomResource {
|
package/loadBalancerNetwork.js
CHANGED
|
@@ -45,7 +45,7 @@ const utilities = require("./utilities");
|
|
|
45
45
|
* `<load-balancer-id>-<network-id>`
|
|
46
46
|
*
|
|
47
47
|
* ```sh
|
|
48
|
-
* $ pulumi import hcloud:index/loadBalancerNetwork:LoadBalancerNetwork
|
|
48
|
+
* $ pulumi import hcloud:index/loadBalancerNetwork:LoadBalancerNetwork example "$LOAD_BALANCER_ID-$NETWORK_ID"
|
|
49
49
|
* ```
|
|
50
50
|
*/
|
|
51
51
|
class LoadBalancerNetwork extends pulumi.CustomResource {
|
package/loadBalancerService.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ import * as outputs from "./types/output";
|
|
|
45
45
|
* `<load-balancer-id>__<listen-port>`
|
|
46
46
|
*
|
|
47
47
|
* ```sh
|
|
48
|
-
* $ pulumi import hcloud:index/loadBalancerService:LoadBalancerService
|
|
48
|
+
* $ pulumi import hcloud:index/loadBalancerService:LoadBalancerService example "${LOAD_BALANCER_ID}__${LISTEN_PORT}"
|
|
49
49
|
* ```
|
|
50
50
|
*/
|
|
51
51
|
export declare class LoadBalancerService extends pulumi.CustomResource {
|
package/loadBalancerService.js
CHANGED
|
@@ -49,7 +49,7 @@ const utilities = require("./utilities");
|
|
|
49
49
|
* `<load-balancer-id>__<listen-port>`
|
|
50
50
|
*
|
|
51
51
|
* ```sh
|
|
52
|
-
* $ pulumi import hcloud:index/loadBalancerService:LoadBalancerService
|
|
52
|
+
* $ pulumi import hcloud:index/loadBalancerService:LoadBalancerService example "${LOAD_BALANCER_ID}__${LISTEN_PORT}"
|
|
53
53
|
* ```
|
|
54
54
|
*/
|
|
55
55
|
class LoadBalancerService extends pulumi.CustomResource {
|
package/loadBalancerTarget.d.ts
CHANGED
|
@@ -40,15 +40,15 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
40
40
|
* - `ip`: ip address, for example: `203.0.113.123`
|
|
41
41
|
*
|
|
42
42
|
* ```sh
|
|
43
|
-
* $ pulumi import hcloud:index/loadBalancerTarget:LoadBalancerTarget
|
|
43
|
+
* $ pulumi import hcloud:index/loadBalancerTarget:LoadBalancerTarget server "${LOAD_BALANCER_ID}__server__${SERVER_ID}"
|
|
44
44
|
* ```
|
|
45
45
|
*
|
|
46
46
|
* ```sh
|
|
47
|
-
* $ pulumi import hcloud:index/loadBalancerTarget:LoadBalancerTarget
|
|
47
|
+
* $ pulumi import hcloud:index/loadBalancerTarget:LoadBalancerTarget label "${LOAD_BALANCER_ID}__label_selector__${LABEL_SELECTOR}"
|
|
48
48
|
* ```
|
|
49
49
|
*
|
|
50
50
|
* ```sh
|
|
51
|
-
* $ pulumi import hcloud:index/loadBalancerTarget:LoadBalancerTarget
|
|
51
|
+
* $ pulumi import hcloud:index/loadBalancerTarget:LoadBalancerTarget ip "${LOAD_BALANCER_ID}__ip__${IP}"
|
|
52
52
|
* ```
|
|
53
53
|
*/
|
|
54
54
|
export declare class LoadBalancerTarget extends pulumi.CustomResource {
|
package/loadBalancerTarget.js
CHANGED
|
@@ -46,15 +46,15 @@ const utilities = require("./utilities");
|
|
|
46
46
|
* - `ip`: ip address, for example: `203.0.113.123`
|
|
47
47
|
*
|
|
48
48
|
* ```sh
|
|
49
|
-
* $ pulumi import hcloud:index/loadBalancerTarget:LoadBalancerTarget
|
|
49
|
+
* $ pulumi import hcloud:index/loadBalancerTarget:LoadBalancerTarget server "${LOAD_BALANCER_ID}__server__${SERVER_ID}"
|
|
50
50
|
* ```
|
|
51
51
|
*
|
|
52
52
|
* ```sh
|
|
53
|
-
* $ pulumi import hcloud:index/loadBalancerTarget:LoadBalancerTarget
|
|
53
|
+
* $ pulumi import hcloud:index/loadBalancerTarget:LoadBalancerTarget label "${LOAD_BALANCER_ID}__label_selector__${LABEL_SELECTOR}"
|
|
54
54
|
* ```
|
|
55
55
|
*
|
|
56
56
|
* ```sh
|
|
57
|
-
* $ pulumi import hcloud:index/loadBalancerTarget:LoadBalancerTarget
|
|
57
|
+
* $ pulumi import hcloud:index/loadBalancerTarget:LoadBalancerTarget ip "${LOAD_BALANCER_ID}__ip__${IP}"
|
|
58
58
|
* ```
|
|
59
59
|
*/
|
|
60
60
|
class LoadBalancerTarget extends pulumi.CustomResource {
|
package/managedCertificate.d.ts
CHANGED
|
@@ -2,14 +2,31 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* Obtain a Hetzner Cloud managed TLS certificate.
|
|
4
4
|
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as hcloud from "@pulumi/hcloud";
|
|
10
|
+
*
|
|
11
|
+
* const managedCert = new hcloud.ManagedCertificate("managed_cert", {
|
|
12
|
+
* name: "managed_cert",
|
|
13
|
+
* domainNames: [
|
|
14
|
+
* "*.example.com",
|
|
15
|
+
* "example.com",
|
|
16
|
+
* ],
|
|
17
|
+
* labels: {
|
|
18
|
+
* label_1: "value_1",
|
|
19
|
+
* label_2: "value_2",
|
|
20
|
+
* },
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
5
24
|
* ## Import
|
|
6
25
|
*
|
|
7
26
|
* Managed certificates can be imported using their `id`:
|
|
8
27
|
*
|
|
9
|
-
* hcl
|
|
10
|
-
*
|
|
11
28
|
* ```sh
|
|
12
|
-
* $ pulumi import hcloud:index/managedCertificate:ManagedCertificate
|
|
29
|
+
* $ pulumi import hcloud:index/managedCertificate:ManagedCertificate example "$CERTIFICATE_ID"
|
|
13
30
|
* ```
|
|
14
31
|
*/
|
|
15
32
|
export declare class ManagedCertificate extends pulumi.CustomResource {
|
package/managedCertificate.js
CHANGED
|
@@ -8,14 +8,31 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Obtain a Hetzner Cloud managed TLS certificate.
|
|
10
10
|
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as hcloud from "@pulumi/hcloud";
|
|
16
|
+
*
|
|
17
|
+
* const managedCert = new hcloud.ManagedCertificate("managed_cert", {
|
|
18
|
+
* name: "managed_cert",
|
|
19
|
+
* domainNames: [
|
|
20
|
+
* "*.example.com",
|
|
21
|
+
* "example.com",
|
|
22
|
+
* ],
|
|
23
|
+
* labels: {
|
|
24
|
+
* label_1: "value_1",
|
|
25
|
+
* label_2: "value_2",
|
|
26
|
+
* },
|
|
27
|
+
* });
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
11
30
|
* ## Import
|
|
12
31
|
*
|
|
13
32
|
* Managed certificates can be imported using their `id`:
|
|
14
33
|
*
|
|
15
|
-
* hcl
|
|
16
|
-
*
|
|
17
34
|
* ```sh
|
|
18
|
-
* $ pulumi import hcloud:index/managedCertificate:ManagedCertificate
|
|
35
|
+
* $ pulumi import hcloud:index/managedCertificate:ManagedCertificate example "$CERTIFICATE_ID"
|
|
19
36
|
* ```
|
|
20
37
|
*/
|
|
21
38
|
class ManagedCertificate extends pulumi.CustomResource {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"managedCertificate.js","sourceRoot":"","sources":["../managedCertificate.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"managedCertificate.js","sourceRoot":"","sources":["../managedCertificate.ts"],"names":[],"mappings":"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"}
|