@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/volume.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
27
27
|
* Volumes can be imported using their `id`:
|
|
28
28
|
*
|
|
29
29
|
* ```sh
|
|
30
|
-
* $ pulumi import hcloud:index/volume:Volume
|
|
30
|
+
* $ pulumi import hcloud:index/volume:Volume example "$VOLUME_ID"
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
33
|
export declare class Volume extends pulumi.CustomResource {
|
package/volume.js
CHANGED
|
@@ -33,7 +33,7 @@ const utilities = require("./utilities");
|
|
|
33
33
|
* Volumes can be imported using their `id`:
|
|
34
34
|
*
|
|
35
35
|
* ```sh
|
|
36
|
-
* $ pulumi import hcloud:index/volume:Volume
|
|
36
|
+
* $ pulumi import hcloud:index/volume:Volume example "$VOLUME_ID"
|
|
37
37
|
* ```
|
|
38
38
|
*/
|
|
39
39
|
class Volume extends pulumi.CustomResource {
|
package/volumeAttachment.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
30
30
|
* Volume Attachments can be imported using the `volume_id`:
|
|
31
31
|
*
|
|
32
32
|
* ```sh
|
|
33
|
-
* $ pulumi import hcloud:index/volumeAttachment:VolumeAttachment
|
|
33
|
+
* $ pulumi import hcloud:index/volumeAttachment:VolumeAttachment example "$VOLUME_ID"
|
|
34
34
|
* ```
|
|
35
35
|
*/
|
|
36
36
|
export declare class VolumeAttachment extends pulumi.CustomResource {
|
package/volumeAttachment.js
CHANGED
|
@@ -36,7 +36,7 @@ const utilities = require("./utilities");
|
|
|
36
36
|
* Volume Attachments can be imported using the `volume_id`:
|
|
37
37
|
*
|
|
38
38
|
* ```sh
|
|
39
|
-
* $ pulumi import hcloud:index/volumeAttachment:VolumeAttachment
|
|
39
|
+
* $ pulumi import hcloud:index/volumeAttachment:VolumeAttachment example "$VOLUME_ID"
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
42
|
class VolumeAttachment extends pulumi.CustomResource {
|