@pulumi/digitalocean 4.25.1 → 4.25.2
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/app.d.ts +1 -1
- package/app.js +1 -1
- package/cdn.d.ts +1 -1
- package/cdn.js +1 -1
- package/certificate.d.ts +1 -1
- package/certificate.js +1 -1
- package/containerRegistry.d.ts +1 -1
- package/containerRegistry.js +1 -1
- package/databaseCluster.d.ts +1 -1
- package/databaseCluster.js +1 -1
- package/databaseConnectionPool.d.ts +4 -2
- package/databaseConnectionPool.js +4 -2
- package/databaseConnectionPool.js.map +1 -1
- package/databaseDb.d.ts +4 -2
- package/databaseDb.js +4 -2
- package/databaseDb.js.map +1 -1
- package/databaseFirewall.d.ts +4 -2
- package/databaseFirewall.js +4 -2
- package/databaseFirewall.js.map +1 -1
- package/databaseKafkaTopic.d.ts +2 -2
- package/databaseKafkaTopic.js +2 -2
- package/databaseMysqlConfig.d.ts +1 -1
- package/databaseMysqlConfig.js +1 -1
- package/databaseRedisConfig.d.ts +1 -1
- package/databaseRedisConfig.js +1 -1
- package/databaseReplica.d.ts +4 -2
- package/databaseReplica.js +4 -2
- package/databaseReplica.js.map +1 -1
- package/databaseUser.d.ts +4 -2
- package/databaseUser.js +4 -2
- package/databaseUser.js.map +1 -1
- package/dnsRecord.d.ts +3 -3
- package/dnsRecord.js +3 -3
- package/domain.d.ts +1 -1
- package/domain.js +1 -1
- package/droplet.d.ts +1 -1
- package/droplet.js +1 -1
- package/dropletSnapshot.d.ts +1 -1
- package/dropletSnapshot.js +1 -1
- 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 +4 -2
- package/floatingIpAssignment.js +4 -2
- package/floatingIpAssignment.js.map +1 -1
- package/kubernetesCluster.d.ts +16 -4
- package/kubernetesCluster.js +16 -4
- package/kubernetesCluster.js.map +1 -1
- package/kubernetesNodePool.d.ts +11 -3
- package/kubernetesNodePool.js +11 -3
- package/kubernetesNodePool.js.map +1 -1
- package/loadBalancer.d.ts +1 -1
- package/loadBalancer.js +1 -1
- package/monitorAlert.d.ts +1 -1
- package/monitorAlert.js +1 -1
- package/package.json +1 -1
- package/project.d.ts +1 -1
- package/project.js +1 -1
- package/reservedIp.d.ts +1 -1
- package/reservedIp.js +1 -1
- package/reservedIpAssignment.d.ts +4 -2
- package/reservedIpAssignment.js +4 -2
- package/reservedIpAssignment.js.map +1 -1
- package/spacesBucket.d.ts +2 -2
- package/spacesBucket.js +2 -2
- package/spacesBucketCorsConfiguration.d.ts +2 -2
- package/spacesBucketCorsConfiguration.js +2 -2
- package/spacesBucketPolicy.d.ts +2 -2
- package/spacesBucketPolicy.js +2 -2
- package/sshKey.d.ts +1 -1
- package/sshKey.js +1 -1
- package/tag.d.ts +1 -1
- package/tag.js +1 -1
- package/types/input.d.ts +9 -0
- package/types/output.d.ts +90 -0
- package/uptimeAlert.d.ts +1 -1
- package/uptimeAlert.js +1 -1
- package/uptimeCheck.d.ts +1 -1
- package/uptimeCheck.js +1 -1
- package/volume.d.ts +1 -1
- package/volume.js +1 -1
- package/volumeSnapshot.d.ts +1 -1
- package/volumeSnapshot.js +1 -1
- package/vpc.d.ts +1 -1
- package/vpc.js +1 -1
package/kubernetesCluster.d.ts
CHANGED
|
@@ -5,16 +5,28 @@ import * as enums from "./types/enums";
|
|
|
5
5
|
/**
|
|
6
6
|
* ## Import
|
|
7
7
|
*
|
|
8
|
-
* Before importing a Kubernetes cluster, the cluster's default node pool must be tagged with
|
|
8
|
+
* Before importing a Kubernetes cluster, the cluster's default node pool must be tagged with
|
|
9
|
+
*
|
|
10
|
+
* the `terraform:default-node-pool` tag. The provider will automatically add this tag if
|
|
11
|
+
*
|
|
12
|
+
* the cluster only has a single node pool. Clusters with more than one node pool, however, will require
|
|
13
|
+
*
|
|
14
|
+
* that you manually add the `terraform:default-node-pool` tag to the node pool that you intend to be
|
|
15
|
+
*
|
|
16
|
+
* the default node pool.
|
|
17
|
+
*
|
|
18
|
+
* Then the Kubernetes cluster and its default node pool can be imported using the cluster's `id`, e.g.
|
|
9
19
|
*
|
|
10
20
|
* ```sh
|
|
11
|
-
*
|
|
21
|
+
* $ pulumi import digitalocean:index/kubernetesCluster:KubernetesCluster mycluster 1b8b2100-0e9f-4e8f-ad78-9eb578c2a0af
|
|
12
22
|
* ```
|
|
13
23
|
*
|
|
14
|
-
* Additional node pools must be imported separately as `digitalocean_kubernetes_cluster`
|
|
24
|
+
* Additional node pools must be imported separately as `digitalocean_kubernetes_cluster`
|
|
25
|
+
*
|
|
26
|
+
* resources, e.g.
|
|
15
27
|
*
|
|
16
28
|
* ```sh
|
|
17
|
-
*
|
|
29
|
+
* $ pulumi import digitalocean:index/kubernetesCluster:KubernetesCluster mynodepool 9d76f410-9284-4436-9633-4066852442c8
|
|
18
30
|
* ```
|
|
19
31
|
*/
|
|
20
32
|
export declare class KubernetesCluster extends pulumi.CustomResource {
|
package/kubernetesCluster.js
CHANGED
|
@@ -8,16 +8,28 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* ## Import
|
|
10
10
|
*
|
|
11
|
-
* Before importing a Kubernetes cluster, the cluster's default node pool must be tagged with
|
|
11
|
+
* Before importing a Kubernetes cluster, the cluster's default node pool must be tagged with
|
|
12
|
+
*
|
|
13
|
+
* the `terraform:default-node-pool` tag. The provider will automatically add this tag if
|
|
14
|
+
*
|
|
15
|
+
* the cluster only has a single node pool. Clusters with more than one node pool, however, will require
|
|
16
|
+
*
|
|
17
|
+
* that you manually add the `terraform:default-node-pool` tag to the node pool that you intend to be
|
|
18
|
+
*
|
|
19
|
+
* the default node pool.
|
|
20
|
+
*
|
|
21
|
+
* Then the Kubernetes cluster and its default node pool can be imported using the cluster's `id`, e.g.
|
|
12
22
|
*
|
|
13
23
|
* ```sh
|
|
14
|
-
*
|
|
24
|
+
* $ pulumi import digitalocean:index/kubernetesCluster:KubernetesCluster mycluster 1b8b2100-0e9f-4e8f-ad78-9eb578c2a0af
|
|
15
25
|
* ```
|
|
16
26
|
*
|
|
17
|
-
* Additional node pools must be imported separately as `digitalocean_kubernetes_cluster`
|
|
27
|
+
* Additional node pools must be imported separately as `digitalocean_kubernetes_cluster`
|
|
28
|
+
*
|
|
29
|
+
* resources, e.g.
|
|
18
30
|
*
|
|
19
31
|
* ```sh
|
|
20
|
-
*
|
|
32
|
+
* $ pulumi import digitalocean:index/kubernetesCluster:KubernetesCluster mynodepool 9d76f410-9284-4436-9633-4066852442c8
|
|
21
33
|
* ```
|
|
22
34
|
*/
|
|
23
35
|
class KubernetesCluster extends pulumi.CustomResource {
|
package/kubernetesCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kubernetesCluster.js","sourceRoot":"","sources":["../kubernetesCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"kubernetesCluster.js","sourceRoot":"","sources":["../kubernetesCluster.ts"],"names":[],"mappings":"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"}
|
package/kubernetesNodePool.d.ts
CHANGED
|
@@ -57,13 +57,21 @@ import * as enums from "./types/enums";
|
|
|
57
57
|
*
|
|
58
58
|
* ## Import
|
|
59
59
|
*
|
|
60
|
-
* If you are importing an existing Kubernetes cluster with a single node pool, just
|
|
60
|
+
* If you are importing an existing Kubernetes cluster with a single node pool, just
|
|
61
|
+
*
|
|
62
|
+
* import the cluster. Additional node pools can be imported by using their `id`, e.g.
|
|
61
63
|
*
|
|
62
64
|
* ```sh
|
|
63
|
-
*
|
|
65
|
+
* $ pulumi import digitalocean:index/kubernetesNodePool:KubernetesNodePool mynodepool 9d76f410-9284-4436-9633-4066852442c8
|
|
64
66
|
* ```
|
|
65
67
|
*
|
|
66
|
-
*
|
|
68
|
+
* Note: If the node pool has the `terraform:default-node-pool` tag, then it is a default node pool for an
|
|
69
|
+
*
|
|
70
|
+
* existing cluster. The provider will refuse to import the node pool in that case because the node pool
|
|
71
|
+
*
|
|
72
|
+
* is managed by the `digitalocean_kubernetes_cluster` resource and not by this
|
|
73
|
+
*
|
|
74
|
+
* `digitalocean_kubernetes_node_pool` resource.
|
|
67
75
|
*/
|
|
68
76
|
export declare class KubernetesNodePool extends pulumi.CustomResource {
|
|
69
77
|
/**
|
package/kubernetesNodePool.js
CHANGED
|
@@ -60,13 +60,21 @@ const utilities = require("./utilities");
|
|
|
60
60
|
*
|
|
61
61
|
* ## Import
|
|
62
62
|
*
|
|
63
|
-
* If you are importing an existing Kubernetes cluster with a single node pool, just
|
|
63
|
+
* If you are importing an existing Kubernetes cluster with a single node pool, just
|
|
64
|
+
*
|
|
65
|
+
* import the cluster. Additional node pools can be imported by using their `id`, e.g.
|
|
64
66
|
*
|
|
65
67
|
* ```sh
|
|
66
|
-
*
|
|
68
|
+
* $ pulumi import digitalocean:index/kubernetesNodePool:KubernetesNodePool mynodepool 9d76f410-9284-4436-9633-4066852442c8
|
|
67
69
|
* ```
|
|
68
70
|
*
|
|
69
|
-
*
|
|
71
|
+
* Note: If the node pool has the `terraform:default-node-pool` tag, then it is a default node pool for an
|
|
72
|
+
*
|
|
73
|
+
* existing cluster. The provider will refuse to import the node pool in that case because the node pool
|
|
74
|
+
*
|
|
75
|
+
* is managed by the `digitalocean_kubernetes_cluster` resource and not by this
|
|
76
|
+
*
|
|
77
|
+
* `digitalocean_kubernetes_node_pool` resource.
|
|
70
78
|
*/
|
|
71
79
|
class KubernetesNodePool extends pulumi.CustomResource {
|
|
72
80
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kubernetesNodePool.js","sourceRoot":"","sources":["../kubernetesNodePool.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"kubernetesNodePool.js","sourceRoot":"","sources":["../kubernetesNodePool.ts"],"names":[],"mappings":"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"}
|
package/loadBalancer.d.ts
CHANGED
|
@@ -74,7 +74,7 @@ import * as enums from "./types/enums";
|
|
|
74
74
|
* Load Balancers can be imported using the `id`, e.g.
|
|
75
75
|
*
|
|
76
76
|
* ```sh
|
|
77
|
-
*
|
|
77
|
+
* $ pulumi import digitalocean:index/loadBalancer:LoadBalancer myloadbalancer 4de7ac8b-495b-4884-9a69-1050c6793cd6
|
|
78
78
|
* ```
|
|
79
79
|
*/
|
|
80
80
|
export declare class LoadBalancer extends pulumi.CustomResource {
|
package/loadBalancer.js
CHANGED
|
@@ -77,7 +77,7 @@ const utilities = require("./utilities");
|
|
|
77
77
|
* Load Balancers can be imported using the `id`, e.g.
|
|
78
78
|
*
|
|
79
79
|
* ```sh
|
|
80
|
-
*
|
|
80
|
+
* $ pulumi import digitalocean:index/loadBalancer:LoadBalancer myloadbalancer 4de7ac8b-495b-4884-9a69-1050c6793cd6
|
|
81
81
|
* ```
|
|
82
82
|
*/
|
|
83
83
|
class LoadBalancer extends pulumi.CustomResource {
|
package/monitorAlert.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ import * as outputs from "./types/output";
|
|
|
14
14
|
* Monitor alerts can be imported using the monitor alert `uuid`, e.g.
|
|
15
15
|
*
|
|
16
16
|
* ```sh
|
|
17
|
-
*
|
|
17
|
+
* $ pulumi import digitalocean:index/monitorAlert:MonitorAlert cpu_alert b8ecd2ab-2267-4a5e-8692-cbf1d32583e3
|
|
18
18
|
* ```
|
|
19
19
|
*/
|
|
20
20
|
export declare class MonitorAlert extends pulumi.CustomResource {
|
package/monitorAlert.js
CHANGED
|
@@ -18,7 +18,7 @@ const utilities = require("./utilities");
|
|
|
18
18
|
* Monitor alerts can be imported using the monitor alert `uuid`, e.g.
|
|
19
19
|
*
|
|
20
20
|
* ```sh
|
|
21
|
-
*
|
|
21
|
+
* $ pulumi import digitalocean:index/monitorAlert:MonitorAlert cpu_alert b8ecd2ab-2267-4a5e-8692-cbf1d32583e3
|
|
22
22
|
* ```
|
|
23
23
|
*/
|
|
24
24
|
class MonitorAlert extends pulumi.CustomResource {
|
package/package.json
CHANGED
package/project.d.ts
CHANGED
|
@@ -58,7 +58,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
58
58
|
* Projects can be imported using the `id` returned from DigitalOcean, e.g.
|
|
59
59
|
*
|
|
60
60
|
* ```sh
|
|
61
|
-
*
|
|
61
|
+
* $ pulumi import digitalocean:index/project:Project myproject 245bcfd0-7f31-4ce6-a2bc-475a116cca97
|
|
62
62
|
* ```
|
|
63
63
|
*/
|
|
64
64
|
export declare class Project extends pulumi.CustomResource {
|
package/project.js
CHANGED
|
@@ -64,7 +64,7 @@ const utilities = require("./utilities");
|
|
|
64
64
|
* Projects can be imported using the `id` returned from DigitalOcean, e.g.
|
|
65
65
|
*
|
|
66
66
|
* ```sh
|
|
67
|
-
*
|
|
67
|
+
* $ pulumi import digitalocean:index/project:Project myproject 245bcfd0-7f31-4ce6-a2bc-475a116cca97
|
|
68
68
|
* ```
|
|
69
69
|
*/
|
|
70
70
|
class Project extends pulumi.CustomResource {
|
package/reservedIp.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
28
28
|
* Reserved IPs can be imported using the `ip`, e.g.
|
|
29
29
|
*
|
|
30
30
|
* ```sh
|
|
31
|
-
*
|
|
31
|
+
* $ pulumi import digitalocean:index/reservedIp:ReservedIp myip 192.168.0.1
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export declare class ReservedIp extends pulumi.CustomResource {
|
package/reservedIp.js
CHANGED
|
@@ -34,7 +34,7 @@ const utilities = require("./utilities");
|
|
|
34
34
|
* Reserved IPs can be imported using the `ip`, e.g.
|
|
35
35
|
*
|
|
36
36
|
* ```sh
|
|
37
|
-
*
|
|
37
|
+
* $ pulumi import digitalocean:index/reservedIp:ReservedIp myip 192.168.0.1
|
|
38
38
|
* ```
|
|
39
39
|
*/
|
|
40
40
|
class ReservedIp extends pulumi.CustomResource {
|
|
@@ -26,10 +26,12 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
26
26
|
*
|
|
27
27
|
* ## Import
|
|
28
28
|
*
|
|
29
|
-
* Reserved IP assignments can be imported using the reserved IP itself and the `id` of
|
|
29
|
+
* Reserved IP assignments can be imported using the reserved IP itself and the `id` of
|
|
30
|
+
*
|
|
31
|
+
* the Droplet joined with a comma. For example:
|
|
30
32
|
*
|
|
31
33
|
* ```sh
|
|
32
|
-
*
|
|
34
|
+
* $ pulumi import digitalocean:index/reservedIpAssignment:ReservedIpAssignment foobar 192.0.2.1,123456
|
|
33
35
|
* ```
|
|
34
36
|
*/
|
|
35
37
|
export declare class ReservedIpAssignment extends pulumi.CustomResource {
|
package/reservedIpAssignment.js
CHANGED
|
@@ -32,10 +32,12 @@ const utilities = require("./utilities");
|
|
|
32
32
|
*
|
|
33
33
|
* ## Import
|
|
34
34
|
*
|
|
35
|
-
* Reserved IP assignments can be imported using the reserved IP itself and the `id` of
|
|
35
|
+
* Reserved IP assignments can be imported using the reserved IP itself and the `id` of
|
|
36
|
+
*
|
|
37
|
+
* the Droplet joined with a comma. For example:
|
|
36
38
|
*
|
|
37
39
|
* ```sh
|
|
38
|
-
*
|
|
40
|
+
* $ pulumi import digitalocean:index/reservedIpAssignment:ReservedIpAssignment foobar 192.0.2.1,123456
|
|
39
41
|
* ```
|
|
40
42
|
*/
|
|
41
43
|
class ReservedIpAssignment extends pulumi.CustomResource {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reservedIpAssignment.js","sourceRoot":"","sources":["../reservedIpAssignment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"reservedIpAssignment.js","sourceRoot":"","sources":["../reservedIpAssignment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3E,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,oBAAoB,CAAC,YAAY,CAAC;IACrE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAkE,EAAE,IAAmC;QAC7H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoD,CAAC;YACnE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAAmD,CAAC;YACjE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzE,CAAC;;AAjEL,oDAkEC;AApDG,gBAAgB;AACO,iCAAY,GAAG,8DAA8D,CAAC"}
|
package/spacesBucket.d.ts
CHANGED
|
@@ -67,10 +67,10 @@ import * as enums from "./types/enums";
|
|
|
67
67
|
*
|
|
68
68
|
* ## Import
|
|
69
69
|
*
|
|
70
|
-
* Buckets can be imported using the `region` and `name` attributes (delimited by a comma)
|
|
70
|
+
* Buckets can be imported using the `region` and `name` attributes (delimited by a comma):
|
|
71
71
|
*
|
|
72
72
|
* ```sh
|
|
73
|
-
*
|
|
73
|
+
* $ pulumi import digitalocean:index/spacesBucket:SpacesBucket foobar `region`,`name`
|
|
74
74
|
* ```
|
|
75
75
|
*/
|
|
76
76
|
export declare class SpacesBucket extends pulumi.CustomResource {
|
package/spacesBucket.js
CHANGED
|
@@ -70,10 +70,10 @@ const utilities = require("./utilities");
|
|
|
70
70
|
*
|
|
71
71
|
* ## Import
|
|
72
72
|
*
|
|
73
|
-
* Buckets can be imported using the `region` and `name` attributes (delimited by a comma)
|
|
73
|
+
* Buckets can be imported using the `region` and `name` attributes (delimited by a comma):
|
|
74
74
|
*
|
|
75
75
|
* ```sh
|
|
76
|
-
*
|
|
76
|
+
* $ pulumi import digitalocean:index/spacesBucket:SpacesBucket foobar `region`,`name`
|
|
77
77
|
* ```
|
|
78
78
|
*/
|
|
79
79
|
class SpacesBucket extends pulumi.CustomResource {
|
|
@@ -28,10 +28,10 @@ import * as outputs from "./types/output";
|
|
|
28
28
|
*
|
|
29
29
|
* ## Import
|
|
30
30
|
*
|
|
31
|
-
* Bucket policies can be imported using the `region` and `bucket` attributes (delimited by a comma)
|
|
31
|
+
* Bucket policies can be imported using the `region` and `bucket` attributes (delimited by a comma):
|
|
32
32
|
*
|
|
33
33
|
* ```sh
|
|
34
|
-
*
|
|
34
|
+
* $ pulumi import digitalocean:index/spacesBucketCorsConfiguration:SpacesBucketCorsConfiguration foobar `region`,`bucket`
|
|
35
35
|
* ```
|
|
36
36
|
*/
|
|
37
37
|
export declare class SpacesBucketCorsConfiguration extends pulumi.CustomResource {
|
|
@@ -32,10 +32,10 @@ const utilities = require("./utilities");
|
|
|
32
32
|
*
|
|
33
33
|
* ## Import
|
|
34
34
|
*
|
|
35
|
-
* Bucket policies can be imported using the `region` and `bucket` attributes (delimited by a comma)
|
|
35
|
+
* Bucket policies can be imported using the `region` and `bucket` attributes (delimited by a comma):
|
|
36
36
|
*
|
|
37
37
|
* ```sh
|
|
38
|
-
*
|
|
38
|
+
* $ pulumi import digitalocean:index/spacesBucketCorsConfiguration:SpacesBucketCorsConfiguration foobar `region`,`bucket`
|
|
39
39
|
* ```
|
|
40
40
|
*/
|
|
41
41
|
class SpacesBucketCorsConfiguration extends pulumi.CustomResource {
|
package/spacesBucketPolicy.d.ts
CHANGED
|
@@ -36,10 +36,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
36
36
|
*
|
|
37
37
|
* ## Import
|
|
38
38
|
*
|
|
39
|
-
* Bucket policies can be imported using the `region` and `bucket` attributes (delimited by a comma)
|
|
39
|
+
* Bucket policies can be imported using the `region` and `bucket` attributes (delimited by a comma):
|
|
40
40
|
*
|
|
41
41
|
* ```sh
|
|
42
|
-
*
|
|
42
|
+
* $ pulumi import digitalocean:index/spacesBucketPolicy:SpacesBucketPolicy foobar `region`,`bucket`
|
|
43
43
|
* ```
|
|
44
44
|
*/
|
|
45
45
|
export declare class SpacesBucketPolicy extends pulumi.CustomResource {
|
package/spacesBucketPolicy.js
CHANGED
|
@@ -42,10 +42,10 @@ const utilities = require("./utilities");
|
|
|
42
42
|
*
|
|
43
43
|
* ## Import
|
|
44
44
|
*
|
|
45
|
-
* Bucket policies can be imported using the `region` and `bucket` attributes (delimited by a comma)
|
|
45
|
+
* Bucket policies can be imported using the `region` and `bucket` attributes (delimited by a comma):
|
|
46
46
|
*
|
|
47
47
|
* ```sh
|
|
48
|
-
*
|
|
48
|
+
* $ pulumi import digitalocean:index/spacesBucketPolicy:SpacesBucketPolicy foobar `region`,`bucket`
|
|
49
49
|
* ```
|
|
50
50
|
*/
|
|
51
51
|
class SpacesBucketPolicy extends pulumi.CustomResource {
|
package/sshKey.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
28
28
|
* SSH Keys can be imported using the `ssh key id`, e.g.
|
|
29
29
|
*
|
|
30
30
|
* ```sh
|
|
31
|
-
*
|
|
31
|
+
* $ pulumi import digitalocean:index/sshKey:SshKey mykey 263654
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export declare class SshKey extends pulumi.CustomResource {
|
package/sshKey.js
CHANGED
|
@@ -34,7 +34,7 @@ const utilities = require("./utilities");
|
|
|
34
34
|
* SSH Keys can be imported using the `ssh key id`, e.g.
|
|
35
35
|
*
|
|
36
36
|
* ```sh
|
|
37
|
-
*
|
|
37
|
+
* $ pulumi import digitalocean:index/sshKey:SshKey mykey 263654
|
|
38
38
|
* ```
|
|
39
39
|
*/
|
|
40
40
|
class SshKey extends pulumi.CustomResource {
|
package/tag.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
27
27
|
* Tags can be imported using the `name`, e.g.
|
|
28
28
|
*
|
|
29
29
|
* ```sh
|
|
30
|
-
*
|
|
30
|
+
* $ pulumi import digitalocean:index/tag:Tag mytag tagname
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
33
|
export declare class Tag extends pulumi.CustomResource {
|
package/tag.js
CHANGED
|
@@ -33,7 +33,7 @@ const utilities = require("./utilities");
|
|
|
33
33
|
* Tags can be imported using the `name`, e.g.
|
|
34
34
|
*
|
|
35
35
|
* ```sh
|
|
36
|
-
*
|
|
36
|
+
* $ pulumi import digitalocean:index/tag:Tag mytag tagname
|
|
37
37
|
* ```
|
|
38
38
|
*/
|
|
39
39
|
class Tag extends pulumi.CustomResource {
|
package/types/input.d.ts
CHANGED
|
@@ -2704,11 +2704,20 @@ export interface LoadBalancerStickySessions {
|
|
|
2704
2704
|
type?: pulumi.Input<string>;
|
|
2705
2705
|
}
|
|
2706
2706
|
export interface MonitorAlertAlerts {
|
|
2707
|
+
/**
|
|
2708
|
+
* List of email addresses to sent notifications to
|
|
2709
|
+
*/
|
|
2707
2710
|
emails?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2708
2711
|
slacks?: pulumi.Input<pulumi.Input<inputs.MonitorAlertAlertsSlack>[]>;
|
|
2709
2712
|
}
|
|
2710
2713
|
export interface MonitorAlertAlertsSlack {
|
|
2714
|
+
/**
|
|
2715
|
+
* The Slack channel to send alerts to
|
|
2716
|
+
*/
|
|
2711
2717
|
channel: pulumi.Input<string>;
|
|
2718
|
+
/**
|
|
2719
|
+
* The webhook URL for Slack
|
|
2720
|
+
*/
|
|
2712
2721
|
url: pulumi.Input<string>;
|
|
2713
2722
|
}
|
|
2714
2723
|
export interface SpacesBucketCorsConfigurationCorsRule {
|
package/types/output.d.ts
CHANGED
|
@@ -1632,6 +1632,9 @@ export interface GetAppSpec {
|
|
|
1632
1632
|
* Describes an environment variable made available to an app competent.
|
|
1633
1633
|
*/
|
|
1634
1634
|
envs?: outputs.GetAppSpecEnv[];
|
|
1635
|
+
/**
|
|
1636
|
+
* List of features which is applied to the app
|
|
1637
|
+
*/
|
|
1635
1638
|
features?: string[];
|
|
1636
1639
|
functions?: outputs.GetAppSpecFunction[];
|
|
1637
1640
|
ingress: outputs.GetAppSpecIngress;
|
|
@@ -1640,6 +1643,9 @@ export interface GetAppSpec {
|
|
|
1640
1643
|
* The name of the component.
|
|
1641
1644
|
*/
|
|
1642
1645
|
name: string;
|
|
1646
|
+
/**
|
|
1647
|
+
* The slug for the DigitalOcean data center region hosting the app
|
|
1648
|
+
*/
|
|
1643
1649
|
region?: string;
|
|
1644
1650
|
services?: outputs.GetAppSpecService[];
|
|
1645
1651
|
staticSites?: outputs.GetAppSpecStaticSite[];
|
|
@@ -1694,7 +1700,13 @@ export interface GetAppSpecDomain {
|
|
|
1694
1700
|
* The type of the environment variable, `GENERAL` or `SECRET`.
|
|
1695
1701
|
*/
|
|
1696
1702
|
type: string;
|
|
1703
|
+
/**
|
|
1704
|
+
* Indicates whether the domain includes all sub-domains, in addition to the given domain.
|
|
1705
|
+
*/
|
|
1697
1706
|
wildcard: boolean;
|
|
1707
|
+
/**
|
|
1708
|
+
* If the domain uses DigitalOcean DNS and you would like App Platform to automatically manage it for you, set this to the name of the domain on your account.
|
|
1709
|
+
*/
|
|
1698
1710
|
zone?: string;
|
|
1699
1711
|
}
|
|
1700
1712
|
export interface GetAppSpecEnv {
|
|
@@ -2443,6 +2455,9 @@ export interface GetAppSpecServiceHealthCheck {
|
|
|
2443
2455
|
* The number of seconds to wait between health checks.
|
|
2444
2456
|
*/
|
|
2445
2457
|
periodSeconds?: number;
|
|
2458
|
+
/**
|
|
2459
|
+
* The port on which the health check will be performed. If not set, the health check will be performed on the component's http_port.
|
|
2460
|
+
*/
|
|
2446
2461
|
port?: number;
|
|
2447
2462
|
/**
|
|
2448
2463
|
* The number of successful health checks before considered healthy.
|
|
@@ -2979,6 +2994,9 @@ export interface GetDropletsDroplet {
|
|
|
2979
2994
|
* Whether backups are enabled.
|
|
2980
2995
|
*/
|
|
2981
2996
|
backups: boolean;
|
|
2997
|
+
/**
|
|
2998
|
+
* the creation date for the Droplet
|
|
2999
|
+
*/
|
|
2982
3000
|
createdAt: string;
|
|
2983
3001
|
/**
|
|
2984
3002
|
* The size of the Droplet's disk in GB.
|
|
@@ -3024,6 +3042,9 @@ export interface GetDropletsDroplet {
|
|
|
3024
3042
|
* Whether monitoring agent is installed.
|
|
3025
3043
|
*/
|
|
3026
3044
|
monitoring: boolean;
|
|
3045
|
+
/**
|
|
3046
|
+
* name of the Droplet
|
|
3047
|
+
*/
|
|
3027
3048
|
name: string;
|
|
3028
3049
|
/**
|
|
3029
3050
|
* Droplet hourly price.
|
|
@@ -3222,6 +3243,9 @@ export interface GetImagesImage {
|
|
|
3222
3243
|
* When the image was created
|
|
3223
3244
|
*/
|
|
3224
3245
|
created: string;
|
|
3246
|
+
/**
|
|
3247
|
+
* a description of the image
|
|
3248
|
+
*/
|
|
3225
3249
|
description: string;
|
|
3226
3250
|
/**
|
|
3227
3251
|
* The name of the distribution of the OS of the image.
|
|
@@ -3423,30 +3447,87 @@ export interface GetKubernetesClusterNodePoolTaint {
|
|
|
3423
3447
|
value: string;
|
|
3424
3448
|
}
|
|
3425
3449
|
export interface GetLoadBalancerFirewall {
|
|
3450
|
+
/**
|
|
3451
|
+
* the rules for ALLOWING traffic to the LB (strings in the form: 'ip:1.2.3.4' or 'cidr:1.2.0.0/16')
|
|
3452
|
+
*/
|
|
3426
3453
|
allows: string[];
|
|
3454
|
+
/**
|
|
3455
|
+
* the rules for DENYING traffic to the LB (strings in the form: 'ip:1.2.3.4' or 'cidr:1.2.0.0/16')
|
|
3456
|
+
*/
|
|
3427
3457
|
denies: string[];
|
|
3428
3458
|
}
|
|
3429
3459
|
export interface GetLoadBalancerForwardingRule {
|
|
3460
|
+
/**
|
|
3461
|
+
* the id of the tls certificate used for ssl termination if enabled
|
|
3462
|
+
*/
|
|
3430
3463
|
certificateId: string;
|
|
3464
|
+
/**
|
|
3465
|
+
* the name of the tls certificate used for ssl termination if enabled
|
|
3466
|
+
*/
|
|
3431
3467
|
certificateName: string;
|
|
3468
|
+
/**
|
|
3469
|
+
* the port on which the load balancer instance will listen
|
|
3470
|
+
*/
|
|
3432
3471
|
entryPort: number;
|
|
3472
|
+
/**
|
|
3473
|
+
* the protocol used for traffic to the load balancer
|
|
3474
|
+
*/
|
|
3433
3475
|
entryProtocol: string;
|
|
3476
|
+
/**
|
|
3477
|
+
* the port on the backend Droplets to which the load balancer will send traffic
|
|
3478
|
+
*/
|
|
3434
3479
|
targetPort: number;
|
|
3480
|
+
/**
|
|
3481
|
+
* the protocol used for traffic to the backend droplets
|
|
3482
|
+
*/
|
|
3435
3483
|
targetProtocol: string;
|
|
3484
|
+
/**
|
|
3485
|
+
* whether ssl encrypted traffic will be passed through to the backend droplets
|
|
3486
|
+
*/
|
|
3436
3487
|
tlsPassthrough: boolean;
|
|
3437
3488
|
}
|
|
3438
3489
|
export interface GetLoadBalancerHealthcheck {
|
|
3490
|
+
/**
|
|
3491
|
+
* the number of seconds between between two consecutive health checks
|
|
3492
|
+
*/
|
|
3439
3493
|
checkIntervalSeconds: number;
|
|
3494
|
+
/**
|
|
3495
|
+
* the number of times a health check must pass for a backend droplet to be marked 'healthy' and be re-added to the pool
|
|
3496
|
+
*/
|
|
3440
3497
|
healthyThreshold: number;
|
|
3498
|
+
/**
|
|
3499
|
+
* the path on the backend Droplets to which the Load Balancer will send a request
|
|
3500
|
+
*/
|
|
3441
3501
|
path: string;
|
|
3502
|
+
/**
|
|
3503
|
+
* the port on the backend droplets on which the health check will attempt a connection
|
|
3504
|
+
*/
|
|
3442
3505
|
port: number;
|
|
3506
|
+
/**
|
|
3507
|
+
* the protocol used for health checks sent to the backend droplets
|
|
3508
|
+
*/
|
|
3443
3509
|
protocol: string;
|
|
3510
|
+
/**
|
|
3511
|
+
* the number of seconds to wait for a response until marking a health check as failed
|
|
3512
|
+
*/
|
|
3444
3513
|
responseTimeoutSeconds: number;
|
|
3514
|
+
/**
|
|
3515
|
+
* The number of times a health check must fail for a backend droplet to be marked 'unhealthy' and be removed from the pool
|
|
3516
|
+
*/
|
|
3445
3517
|
unhealthyThreshold: number;
|
|
3446
3518
|
}
|
|
3447
3519
|
export interface GetLoadBalancerStickySession {
|
|
3520
|
+
/**
|
|
3521
|
+
* the name of the cookie sent to the client
|
|
3522
|
+
*/
|
|
3448
3523
|
cookieName: string;
|
|
3524
|
+
/**
|
|
3525
|
+
* the number of seconds until the cookie set by the Load Balancer expires
|
|
3526
|
+
*/
|
|
3449
3527
|
cookieTtlSeconds: number;
|
|
3528
|
+
/**
|
|
3529
|
+
* how and if requests from a client will be persistently served by the same backend droplet
|
|
3530
|
+
*/
|
|
3450
3531
|
type: string;
|
|
3451
3532
|
}
|
|
3452
3533
|
export interface GetProjectsFilter {
|
|
@@ -4161,11 +4242,20 @@ export interface LoadBalancerStickySessions {
|
|
|
4161
4242
|
type?: string;
|
|
4162
4243
|
}
|
|
4163
4244
|
export interface MonitorAlertAlerts {
|
|
4245
|
+
/**
|
|
4246
|
+
* List of email addresses to sent notifications to
|
|
4247
|
+
*/
|
|
4164
4248
|
emails?: string[];
|
|
4165
4249
|
slacks?: outputs.MonitorAlertAlertsSlack[];
|
|
4166
4250
|
}
|
|
4167
4251
|
export interface MonitorAlertAlertsSlack {
|
|
4252
|
+
/**
|
|
4253
|
+
* The Slack channel to send alerts to
|
|
4254
|
+
*/
|
|
4168
4255
|
channel: string;
|
|
4256
|
+
/**
|
|
4257
|
+
* The webhook URL for Slack
|
|
4258
|
+
*/
|
|
4169
4259
|
url: string;
|
|
4170
4260
|
}
|
|
4171
4261
|
export interface SpacesBucketCorsConfigurationCorsRule {
|
package/uptimeAlert.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import * as outputs from "./types/output";
|
|
|
10
10
|
* Uptime checks can be imported using the uptime alert's `id`, e.g.
|
|
11
11
|
*
|
|
12
12
|
* ```sh
|
|
13
|
-
*
|
|
13
|
+
* $ pulumi import digitalocean:index/uptimeAlert:UptimeAlert target 5a4981aa-9653-4bd1-bef5-d6bff52042e4
|
|
14
14
|
* ```
|
|
15
15
|
*/
|
|
16
16
|
export declare class UptimeAlert extends pulumi.CustomResource {
|