@pulumi/digitalocean 4.77.0-alpha.1785220775 → 4.77.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.
Files changed (47) hide show
  1. package/droplet.d.ts +39 -6
  2. package/droplet.d.ts.map +1 -1
  3. package/droplet.js +2 -0
  4. package/droplet.js.map +1 -1
  5. package/getDroplet.d.ts +4 -0
  6. package/getDroplet.d.ts.map +1 -1
  7. package/getDroplet.js.map +1 -1
  8. package/getMicrodroplet.d.ts +92 -0
  9. package/getMicrodroplet.d.ts.map +1 -0
  10. package/getMicrodroplet.js +83 -0
  11. package/getMicrodroplet.js.map +1 -0
  12. package/getMicrodropletCheckpoints.d.ts +113 -0
  13. package/getMicrodropletCheckpoints.d.ts.map +1 -0
  14. package/getMicrodropletCheckpoints.js +103 -0
  15. package/getMicrodropletCheckpoints.js.map +1 -0
  16. package/getMicrodropletImage.d.ts +91 -0
  17. package/getMicrodropletImage.d.ts.map +1 -0
  18. package/getMicrodropletImage.js +87 -0
  19. package/getMicrodropletImage.js.map +1 -0
  20. package/getMicrodropletImages.d.ts +95 -0
  21. package/getMicrodropletImages.d.ts.map +1 -0
  22. package/getMicrodropletImages.js +97 -0
  23. package/getMicrodropletImages.js.map +1 -0
  24. package/getMicrodroplets.d.ts +113 -0
  25. package/getMicrodroplets.d.ts.map +1 -0
  26. package/getMicrodroplets.js +101 -0
  27. package/getMicrodroplets.js.map +1 -0
  28. package/index.d.ts +21 -0
  29. package/index.d.ts.map +1 -1
  30. package/index.js +28 -3
  31. package/index.js.map +1 -1
  32. package/microdroplet.d.ts +285 -0
  33. package/microdroplet.d.ts.map +1 -0
  34. package/microdroplet.js +165 -0
  35. package/microdroplet.js.map +1 -0
  36. package/microdropletImage.d.ts +116 -0
  37. package/microdropletImage.d.ts.map +1 -0
  38. package/microdropletImage.js +114 -0
  39. package/microdropletImage.js.map +1 -0
  40. package/package.json +2 -2
  41. package/provider.d.ts.map +1 -1
  42. package/provider.js +3 -1
  43. package/provider.js.map +1 -1
  44. package/types/input.d.ts +178 -0
  45. package/types/input.d.ts.map +1 -1
  46. package/types/output.d.ts +270 -0
  47. package/types/output.d.ts.map +1 -1
@@ -0,0 +1,285 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * Provides a [DigitalOcean MicroDroplet](https://docs.digitalocean.com/products/microdroplets/) resource. MicroDroplets run OCI images and can auto-pause when idle to reduce cost.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ```typescript
10
+ * import * as pulumi from "@pulumi/pulumi";
11
+ * import * as digitalocean from "@pulumi/digitalocean";
12
+ *
13
+ * const example = new digitalocean.Microdroplet("example", {
14
+ * name: "example-microdroplet",
15
+ * region: "nyc3",
16
+ * size: "microdroplet-1",
17
+ * image: "docker.io/library/nginx:latest",
18
+ * httpPort: 8080,
19
+ * httpProtocol: "http",
20
+ * autoPause: {
21
+ * enabled: true,
22
+ * idleTimeout: "5m",
23
+ * },
24
+ * autoResume: true,
25
+ * environment: {
26
+ * LOG_LEVEL: "info",
27
+ * },
28
+ * tags: [
29
+ * "web",
30
+ * "prod",
31
+ * ],
32
+ * });
33
+ * ```
34
+ *
35
+ * ### Pausing and resuming
36
+ *
37
+ * The `state` attribute is settable and defaults to `running`. Changing it to `paused` calls the MicroDroplet pause action endpoint; changing it back to `running` calls the resume action endpoint. Neither triggers recreation:
38
+ *
39
+ * ```typescript
40
+ * import * as pulumi from "@pulumi/pulumi";
41
+ * import * as digitalocean from "@pulumi/digitalocean";
42
+ *
43
+ * const example = new digitalocean.Microdroplet("example", {state: "paused"});
44
+ * ```
45
+ *
46
+ * Setting `state = "running"` on a paused MicroDroplet resumes it. When `autoPause` is enabled, the platform may transition the MicroDroplet to `paused` on its own — Terraform suppresses the diff in that case so it does not fight the platform.
47
+ *
48
+ * ## Import
49
+ *
50
+ * A MicroDroplet can be imported using its `id`, e.g.
51
+ *
52
+ * ```sh
53
+ * $ pulumi import digitalocean:index/microdroplet:Microdroplet example 506f78a4-e098-11e5-ad9f-000f53306ae1
54
+ * ```
55
+ */
56
+ export declare class Microdroplet extends pulumi.CustomResource {
57
+ /**
58
+ * Get an existing Microdroplet resource's state with the given name, ID, and optional extra
59
+ * properties used to qualify the lookup.
60
+ *
61
+ * @param name The _unique_ name of the resulting resource.
62
+ * @param id The _unique_ provider ID of the resource to lookup.
63
+ * @param state Any extra arguments used during the lookup.
64
+ * @param opts Optional settings to control the behavior of the CustomResource.
65
+ */
66
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: MicrodropletState, opts?: pulumi.CustomResourceOptions): Microdroplet;
67
+ /**
68
+ * Returns true if the given object is an instance of Microdroplet. This is designed to work even
69
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
70
+ */
71
+ static isInstance(obj: any): obj is Microdroplet;
72
+ /**
73
+ * Auto-pause configuration block. Forces recreation on change: the MicroDroplets API has no in-place update path for auto_pause.
74
+ */
75
+ readonly autoPause: pulumi.Output<outputs.MicrodropletAutoPause>;
76
+ /**
77
+ * Whether the MicroDroplet auto-resumes when it receives a request. Forces recreation on change: the MicroDroplets API has no in-place update path for auto_resume.
78
+ */
79
+ readonly autoResume: pulumi.Output<boolean>;
80
+ /**
81
+ * RFC3339 timestamp of when the MicroDroplet was created.
82
+ */
83
+ readonly createdAt: pulumi.Output<string>;
84
+ /**
85
+ * Observed lifecycle state of the MicroDroplet (may differ transiently from `state` while a transition is in progress).
86
+ */
87
+ readonly currentState: pulumi.Output<string>;
88
+ /**
89
+ * The uniform resource name (URN) for the MicroDroplet.
90
+ */
91
+ readonly digitaloceanUrn: pulumi.Output<string>;
92
+ /**
93
+ * Public endpoint URL for the MicroDroplet.
94
+ */
95
+ readonly endpoint: pulumi.Output<string>;
96
+ /**
97
+ * Map of environment variables passed to the MicroDroplet at boot. Forces recreation on change.
98
+ */
99
+ readonly environment: pulumi.Output<{
100
+ [key: string]: string;
101
+ } | undefined>;
102
+ /**
103
+ * HTTP port to expose. Forces recreation on change.
104
+ */
105
+ readonly httpPort: pulumi.Output<number | undefined>;
106
+ /**
107
+ * HTTP protocol: `http` or `http2`. Forces recreation on change.
108
+ */
109
+ readonly httpProtocol: pulumi.Output<string | undefined>;
110
+ /**
111
+ * MicroDroplet image reference (UUID or URN). Forces recreation on change.
112
+ */
113
+ readonly image: pulumi.Output<string>;
114
+ /**
115
+ * Name of the MicroDroplet. Forces recreation on change.
116
+ */
117
+ readonly name: pulumi.Output<string>;
118
+ /**
119
+ * Networking mode: `public` (default) or `vpc`. Forces recreation on change.
120
+ */
121
+ readonly networking: pulumi.Output<string>;
122
+ /**
123
+ * DigitalOcean region slug for the MicroDroplet's location. Forces recreation on change.
124
+ */
125
+ readonly region: pulumi.Output<string>;
126
+ /**
127
+ * MicroDroplet size slug. Forces recreation on change.
128
+ */
129
+ readonly size: pulumi.Output<string>;
130
+ /**
131
+ * Desired lifecycle state. One of `running` (default) or `paused`. Changes are applied by invoking the pause / resume action endpoints and do not recreate the resource. This is the only attribute the provider can mutate in place.
132
+ */
133
+ readonly state: pulumi.Output<string | undefined>;
134
+ /**
135
+ * Set of tags applied to the MicroDroplet at create time. Forces recreation on change: MicroDroplets are not exposed via the shared `/v2/tags` API, so tags cannot be added, removed, or verified after creation. They also do not populate on `pulumi import` or on `digitalocean.Microdroplet` / `digitalocean.getMicrodroplets` data sources.
136
+ */
137
+ readonly tags: pulumi.Output<string[] | undefined>;
138
+ /**
139
+ * UUID of a VPC to attach to. Only valid when `networking = "vpc"`. Forces recreation on change.
140
+ */
141
+ readonly vpcUuid: pulumi.Output<string>;
142
+ /**
143
+ * Create a Microdroplet resource with the given unique name, arguments, and options.
144
+ *
145
+ * @param name The _unique_ name of the resource.
146
+ * @param args The arguments to use to populate this resource's properties.
147
+ * @param opts A bag of options that control this resource's behavior.
148
+ */
149
+ constructor(name: string, args: MicrodropletArgs, opts?: pulumi.CustomResourceOptions);
150
+ }
151
+ /**
152
+ * Input properties used for looking up and filtering Microdroplet resources.
153
+ */
154
+ export interface MicrodropletState {
155
+ /**
156
+ * Auto-pause configuration block. Forces recreation on change: the MicroDroplets API has no in-place update path for auto_pause.
157
+ */
158
+ autoPause?: pulumi.Input<inputs.MicrodropletAutoPause | undefined>;
159
+ /**
160
+ * Whether the MicroDroplet auto-resumes when it receives a request. Forces recreation on change: the MicroDroplets API has no in-place update path for auto_resume.
161
+ */
162
+ autoResume?: pulumi.Input<boolean | undefined>;
163
+ /**
164
+ * RFC3339 timestamp of when the MicroDroplet was created.
165
+ */
166
+ createdAt?: pulumi.Input<string | undefined>;
167
+ /**
168
+ * Observed lifecycle state of the MicroDroplet (may differ transiently from `state` while a transition is in progress).
169
+ */
170
+ currentState?: pulumi.Input<string | undefined>;
171
+ /**
172
+ * The uniform resource name (URN) for the MicroDroplet.
173
+ */
174
+ digitaloceanUrn?: pulumi.Input<string | undefined>;
175
+ /**
176
+ * Public endpoint URL for the MicroDroplet.
177
+ */
178
+ endpoint?: pulumi.Input<string | undefined>;
179
+ /**
180
+ * Map of environment variables passed to the MicroDroplet at boot. Forces recreation on change.
181
+ */
182
+ environment?: pulumi.Input<{
183
+ [key: string]: pulumi.Input<string>;
184
+ } | undefined>;
185
+ /**
186
+ * HTTP port to expose. Forces recreation on change.
187
+ */
188
+ httpPort?: pulumi.Input<number | undefined>;
189
+ /**
190
+ * HTTP protocol: `http` or `http2`. Forces recreation on change.
191
+ */
192
+ httpProtocol?: pulumi.Input<string | undefined>;
193
+ /**
194
+ * MicroDroplet image reference (UUID or URN). Forces recreation on change.
195
+ */
196
+ image?: pulumi.Input<string | undefined>;
197
+ /**
198
+ * Name of the MicroDroplet. Forces recreation on change.
199
+ */
200
+ name?: pulumi.Input<string | undefined>;
201
+ /**
202
+ * Networking mode: `public` (default) or `vpc`. Forces recreation on change.
203
+ */
204
+ networking?: pulumi.Input<string | undefined>;
205
+ /**
206
+ * DigitalOcean region slug for the MicroDroplet's location. Forces recreation on change.
207
+ */
208
+ region?: pulumi.Input<string | undefined>;
209
+ /**
210
+ * MicroDroplet size slug. Forces recreation on change.
211
+ */
212
+ size?: pulumi.Input<string | undefined>;
213
+ /**
214
+ * Desired lifecycle state. One of `running` (default) or `paused`. Changes are applied by invoking the pause / resume action endpoints and do not recreate the resource. This is the only attribute the provider can mutate in place.
215
+ */
216
+ state?: pulumi.Input<string | undefined>;
217
+ /**
218
+ * Set of tags applied to the MicroDroplet at create time. Forces recreation on change: MicroDroplets are not exposed via the shared `/v2/tags` API, so tags cannot be added, removed, or verified after creation. They also do not populate on `pulumi import` or on `digitalocean.Microdroplet` / `digitalocean.getMicrodroplets` data sources.
219
+ */
220
+ tags?: pulumi.Input<pulumi.Input<string>[] | undefined>;
221
+ /**
222
+ * UUID of a VPC to attach to. Only valid when `networking = "vpc"`. Forces recreation on change.
223
+ */
224
+ vpcUuid?: pulumi.Input<string | undefined>;
225
+ }
226
+ /**
227
+ * The set of arguments for constructing a Microdroplet resource.
228
+ */
229
+ export interface MicrodropletArgs {
230
+ /**
231
+ * Auto-pause configuration block. Forces recreation on change: the MicroDroplets API has no in-place update path for auto_pause.
232
+ */
233
+ autoPause?: pulumi.Input<inputs.MicrodropletAutoPause | undefined>;
234
+ /**
235
+ * Whether the MicroDroplet auto-resumes when it receives a request. Forces recreation on change: the MicroDroplets API has no in-place update path for auto_resume.
236
+ */
237
+ autoResume?: pulumi.Input<boolean | undefined>;
238
+ /**
239
+ * Map of environment variables passed to the MicroDroplet at boot. Forces recreation on change.
240
+ */
241
+ environment?: pulumi.Input<{
242
+ [key: string]: pulumi.Input<string>;
243
+ } | undefined>;
244
+ /**
245
+ * HTTP port to expose. Forces recreation on change.
246
+ */
247
+ httpPort?: pulumi.Input<number | undefined>;
248
+ /**
249
+ * HTTP protocol: `http` or `http2`. Forces recreation on change.
250
+ */
251
+ httpProtocol?: pulumi.Input<string | undefined>;
252
+ /**
253
+ * MicroDroplet image reference (UUID or URN). Forces recreation on change.
254
+ */
255
+ image: pulumi.Input<string>;
256
+ /**
257
+ * Name of the MicroDroplet. Forces recreation on change.
258
+ */
259
+ name?: pulumi.Input<string | undefined>;
260
+ /**
261
+ * Networking mode: `public` (default) or `vpc`. Forces recreation on change.
262
+ */
263
+ networking?: pulumi.Input<string | undefined>;
264
+ /**
265
+ * DigitalOcean region slug for the MicroDroplet's location. Forces recreation on change.
266
+ */
267
+ region: pulumi.Input<string>;
268
+ /**
269
+ * MicroDroplet size slug. Forces recreation on change.
270
+ */
271
+ size: pulumi.Input<string>;
272
+ /**
273
+ * Desired lifecycle state. One of `running` (default) or `paused`. Changes are applied by invoking the pause / resume action endpoints and do not recreate the resource. This is the only attribute the provider can mutate in place.
274
+ */
275
+ state?: pulumi.Input<string | undefined>;
276
+ /**
277
+ * Set of tags applied to the MicroDroplet at create time. Forces recreation on change: MicroDroplets are not exposed via the shared `/v2/tags` API, so tags cannot be added, removed, or verified after creation. They also do not populate on `pulumi import` or on `digitalocean.Microdroplet` / `digitalocean.getMicrodroplets` data sources.
278
+ */
279
+ tags?: pulumi.Input<pulumi.Input<string>[] | undefined>;
280
+ /**
281
+ * UUID of a VPC to attach to. Only valid when `networking = "vpc"`. Forces recreation on change.
282
+ */
283
+ vpcUuid?: pulumi.Input<string | undefined>;
284
+ }
285
+ //# sourceMappingURL=microdroplet.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"microdroplet.d.ts","sourceRoot":"","sources":["../microdroplet.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,165 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
+ if (k2 === undefined) k2 = k;
6
+ var desc = Object.getOwnPropertyDescriptor(m, k);
7
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
+ desc = { enumerable: true, get: function() { return m[k]; } };
9
+ }
10
+ Object.defineProperty(o, k2, desc);
11
+ }) : (function(o, m, k, k2) {
12
+ if (k2 === undefined) k2 = k;
13
+ o[k2] = m[k];
14
+ }));
15
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
16
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
17
+ }) : function(o, v) {
18
+ o["default"] = v;
19
+ });
20
+ var __importStar = (this && this.__importStar) || function (mod) {
21
+ if (mod && mod.__esModule) return mod;
22
+ var result = {};
23
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
24
+ __setModuleDefault(result, mod);
25
+ return result;
26
+ };
27
+ Object.defineProperty(exports, "__esModule", { value: true });
28
+ exports.Microdroplet = void 0;
29
+ const pulumi = __importStar(require("@pulumi/pulumi"));
30
+ const utilities = __importStar(require("./utilities"));
31
+ /**
32
+ * Provides a [DigitalOcean MicroDroplet](https://docs.digitalocean.com/products/microdroplets/) resource. MicroDroplets run OCI images and can auto-pause when idle to reduce cost.
33
+ *
34
+ * ## Example Usage
35
+ *
36
+ * ```typescript
37
+ * import * as pulumi from "@pulumi/pulumi";
38
+ * import * as digitalocean from "@pulumi/digitalocean";
39
+ *
40
+ * const example = new digitalocean.Microdroplet("example", {
41
+ * name: "example-microdroplet",
42
+ * region: "nyc3",
43
+ * size: "microdroplet-1",
44
+ * image: "docker.io/library/nginx:latest",
45
+ * httpPort: 8080,
46
+ * httpProtocol: "http",
47
+ * autoPause: {
48
+ * enabled: true,
49
+ * idleTimeout: "5m",
50
+ * },
51
+ * autoResume: true,
52
+ * environment: {
53
+ * LOG_LEVEL: "info",
54
+ * },
55
+ * tags: [
56
+ * "web",
57
+ * "prod",
58
+ * ],
59
+ * });
60
+ * ```
61
+ *
62
+ * ### Pausing and resuming
63
+ *
64
+ * The `state` attribute is settable and defaults to `running`. Changing it to `paused` calls the MicroDroplet pause action endpoint; changing it back to `running` calls the resume action endpoint. Neither triggers recreation:
65
+ *
66
+ * ```typescript
67
+ * import * as pulumi from "@pulumi/pulumi";
68
+ * import * as digitalocean from "@pulumi/digitalocean";
69
+ *
70
+ * const example = new digitalocean.Microdroplet("example", {state: "paused"});
71
+ * ```
72
+ *
73
+ * Setting `state = "running"` on a paused MicroDroplet resumes it. When `autoPause` is enabled, the platform may transition the MicroDroplet to `paused` on its own — Terraform suppresses the diff in that case so it does not fight the platform.
74
+ *
75
+ * ## Import
76
+ *
77
+ * A MicroDroplet can be imported using its `id`, e.g.
78
+ *
79
+ * ```sh
80
+ * $ pulumi import digitalocean:index/microdroplet:Microdroplet example 506f78a4-e098-11e5-ad9f-000f53306ae1
81
+ * ```
82
+ */
83
+ class Microdroplet extends pulumi.CustomResource {
84
+ /**
85
+ * Get an existing Microdroplet resource's state with the given name, ID, and optional extra
86
+ * properties used to qualify the lookup.
87
+ *
88
+ * @param name The _unique_ name of the resulting resource.
89
+ * @param id The _unique_ provider ID of the resource to lookup.
90
+ * @param state Any extra arguments used during the lookup.
91
+ * @param opts Optional settings to control the behavior of the CustomResource.
92
+ */
93
+ static get(name, id, state, opts) {
94
+ return new Microdroplet(name, state, { ...opts, id: id });
95
+ }
96
+ /** @internal */
97
+ static __pulumiType = 'digitalocean:index/microdroplet:Microdroplet';
98
+ /**
99
+ * Returns true if the given object is an instance of Microdroplet. This is designed to work even
100
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
101
+ */
102
+ static isInstance(obj) {
103
+ if (obj === undefined || obj === null) {
104
+ return false;
105
+ }
106
+ return obj['__pulumiType'] === Microdroplet.__pulumiType;
107
+ }
108
+ constructor(name, argsOrState, opts) {
109
+ let resourceInputs = {};
110
+ opts = opts || {};
111
+ if (opts.id) {
112
+ const state = argsOrState;
113
+ resourceInputs["autoPause"] = state?.autoPause;
114
+ resourceInputs["autoResume"] = state?.autoResume;
115
+ resourceInputs["createdAt"] = state?.createdAt;
116
+ resourceInputs["currentState"] = state?.currentState;
117
+ resourceInputs["digitaloceanUrn"] = state?.digitaloceanUrn;
118
+ resourceInputs["endpoint"] = state?.endpoint;
119
+ resourceInputs["environment"] = state?.environment;
120
+ resourceInputs["httpPort"] = state?.httpPort;
121
+ resourceInputs["httpProtocol"] = state?.httpProtocol;
122
+ resourceInputs["image"] = state?.image;
123
+ resourceInputs["name"] = state?.name;
124
+ resourceInputs["networking"] = state?.networking;
125
+ resourceInputs["region"] = state?.region;
126
+ resourceInputs["size"] = state?.size;
127
+ resourceInputs["state"] = state?.state;
128
+ resourceInputs["tags"] = state?.tags;
129
+ resourceInputs["vpcUuid"] = state?.vpcUuid;
130
+ }
131
+ else {
132
+ const args = argsOrState;
133
+ if (args?.image === undefined && !opts.urn) {
134
+ throw new Error("Missing required property 'image'");
135
+ }
136
+ if (args?.region === undefined && !opts.urn) {
137
+ throw new Error("Missing required property 'region'");
138
+ }
139
+ if (args?.size === undefined && !opts.urn) {
140
+ throw new Error("Missing required property 'size'");
141
+ }
142
+ resourceInputs["autoPause"] = args?.autoPause;
143
+ resourceInputs["autoResume"] = args?.autoResume;
144
+ resourceInputs["environment"] = args?.environment;
145
+ resourceInputs["httpPort"] = args?.httpPort;
146
+ resourceInputs["httpProtocol"] = args?.httpProtocol;
147
+ resourceInputs["image"] = args?.image;
148
+ resourceInputs["name"] = args?.name;
149
+ resourceInputs["networking"] = args?.networking;
150
+ resourceInputs["region"] = args?.region;
151
+ resourceInputs["size"] = args?.size;
152
+ resourceInputs["state"] = args?.state;
153
+ resourceInputs["tags"] = args?.tags;
154
+ resourceInputs["vpcUuid"] = args?.vpcUuid;
155
+ resourceInputs["createdAt"] = undefined /*out*/;
156
+ resourceInputs["currentState"] = undefined /*out*/;
157
+ resourceInputs["digitaloceanUrn"] = undefined /*out*/;
158
+ resourceInputs["endpoint"] = undefined /*out*/;
159
+ }
160
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
161
+ super(Microdroplet.__pulumiType, name, resourceInputs, opts);
162
+ }
163
+ }
164
+ exports.Microdroplet = Microdroplet;
165
+ //# sourceMappingURL=microdroplet.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"microdroplet.js","sourceRoot":"","sources":["../microdroplet.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAIzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmDG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnE,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,8CAA8C,CAAC;IAErF;;;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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IA+ED,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;SAC9C;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,IAAI,IAAI,EAAE,KAAK,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxC,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACnD,cAAc,CAAC,iBAAiB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AA9JL,oCA+JC"}
@@ -0,0 +1,116 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Provides a [DigitalOcean MicroDroplet image](https://docs.digitalocean.com/products/microdroplets/) resource. Images are OCI references imported into DigitalOcean and consumed by `digitalocean.Microdroplet` resources.
4
+ *
5
+ * Both `name` and `source` are immutable — changing either recreates the image. There is no in-place update; images are create-only and delete-only.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ```typescript
10
+ * import * as pulumi from "@pulumi/pulumi";
11
+ * import * as digitalocean from "@pulumi/digitalocean";
12
+ *
13
+ * const example = new digitalocean.MicrodropletImage("example", {
14
+ * name: "my-app-v1",
15
+ * source: "docker.io/myorg/my-app:v1",
16
+ * });
17
+ * const exampleMicrodroplet = new digitalocean.Microdroplet("example", {
18
+ * name: "my-app",
19
+ * region: "nyc3",
20
+ * size: "microdroplet-1",
21
+ * image: example.id,
22
+ * });
23
+ * ```
24
+ *
25
+ * ## Import
26
+ *
27
+ * A MicroDroplet image can be imported using its `id`, e.g.
28
+ *
29
+ * ```sh
30
+ * $ pulumi import digitalocean:index/microdropletImage:MicrodropletImage example 4a2c9f10-3d18-4b6a-9e3d-2b7f8e0f1c11
31
+ * ```
32
+ */
33
+ export declare class MicrodropletImage extends pulumi.CustomResource {
34
+ /**
35
+ * Get an existing MicrodropletImage resource's state with the given name, ID, and optional extra
36
+ * properties used to qualify the lookup.
37
+ *
38
+ * @param name The _unique_ name of the resulting resource.
39
+ * @param id The _unique_ provider ID of the resource to lookup.
40
+ * @param state Any extra arguments used during the lookup.
41
+ * @param opts Optional settings to control the behavior of the CustomResource.
42
+ */
43
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: MicrodropletImageState, opts?: pulumi.CustomResourceOptions): MicrodropletImage;
44
+ /**
45
+ * Returns true if the given object is an instance of MicrodropletImage. This is designed to work even
46
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
47
+ */
48
+ static isInstance(obj: any): obj is MicrodropletImage;
49
+ /**
50
+ * RFC3339 timestamp of when the image was created.
51
+ */
52
+ readonly createdAt: pulumi.Output<string>;
53
+ /**
54
+ * The uniform resource name (URN) for the MicroDroplet image.
55
+ */
56
+ readonly digitaloceanUrn: pulumi.Output<string>;
57
+ /**
58
+ * Name of the MicroDroplet image. Forces recreation on change.
59
+ */
60
+ readonly name: pulumi.Output<string>;
61
+ /**
62
+ * OCI reference to import (e.g. `docker.io/library/nginx:latest` or a DOCR ref). Forces recreation on change.
63
+ */
64
+ readonly source: pulumi.Output<string>;
65
+ /**
66
+ * Lifecycle status (`IMAGE_AVAILABLE` once import completes).
67
+ */
68
+ readonly status: pulumi.Output<string>;
69
+ /**
70
+ * Create a MicrodropletImage resource with the given unique name, arguments, and options.
71
+ *
72
+ * @param name The _unique_ name of the resource.
73
+ * @param args The arguments to use to populate this resource's properties.
74
+ * @param opts A bag of options that control this resource's behavior.
75
+ */
76
+ constructor(name: string, args: MicrodropletImageArgs, opts?: pulumi.CustomResourceOptions);
77
+ }
78
+ /**
79
+ * Input properties used for looking up and filtering MicrodropletImage resources.
80
+ */
81
+ export interface MicrodropletImageState {
82
+ /**
83
+ * RFC3339 timestamp of when the image was created.
84
+ */
85
+ createdAt?: pulumi.Input<string | undefined>;
86
+ /**
87
+ * The uniform resource name (URN) for the MicroDroplet image.
88
+ */
89
+ digitaloceanUrn?: pulumi.Input<string | undefined>;
90
+ /**
91
+ * Name of the MicroDroplet image. Forces recreation on change.
92
+ */
93
+ name?: pulumi.Input<string | undefined>;
94
+ /**
95
+ * OCI reference to import (e.g. `docker.io/library/nginx:latest` or a DOCR ref). Forces recreation on change.
96
+ */
97
+ source?: pulumi.Input<string | undefined>;
98
+ /**
99
+ * Lifecycle status (`IMAGE_AVAILABLE` once import completes).
100
+ */
101
+ status?: pulumi.Input<string | undefined>;
102
+ }
103
+ /**
104
+ * The set of arguments for constructing a MicrodropletImage resource.
105
+ */
106
+ export interface MicrodropletImageArgs {
107
+ /**
108
+ * Name of the MicroDroplet image. Forces recreation on change.
109
+ */
110
+ name?: pulumi.Input<string | undefined>;
111
+ /**
112
+ * OCI reference to import (e.g. `docker.io/library/nginx:latest` or a DOCR ref). Forces recreation on change.
113
+ */
114
+ source: pulumi.Input<string>;
115
+ }
116
+ //# sourceMappingURL=microdropletImage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"microdropletImage.d.ts","sourceRoot":"","sources":["../microdropletImage.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,qBAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,sBAAsB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,iBAAiB;IAOpJ;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,iBAAiB;IAO5D;;OAEG;IACH,SAAgC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACjE;;OAEG;IACH,SAAgC,eAAe,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACvE;;OAEG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACpD;;OAEG;IACH,SAAwB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACtD;;OAEG;IACH,SAAgC,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAE9D;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,qBAAqB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAyB7F;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACnC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACnD;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1C;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC7C;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IAClC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CAChC"}