@pulumi/digitalocean 4.71.0-alpha.1781853585 → 4.71.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/digitalocean",
3
- "version": "4.71.0-alpha.1781853585",
3
+ "version": "4.71.0",
4
4
  "description": "A Pulumi package for creating and managing DigitalOcean cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -22,6 +22,6 @@
22
22
  "pulumi": {
23
23
  "resource": true,
24
24
  "name": "digitalocean",
25
- "version": "4.71.0-alpha.1781853585"
25
+ "version": "4.71.0"
26
26
  }
27
27
  }
package/types/input.d.ts CHANGED
@@ -1006,6 +1006,10 @@ export interface AppSpecService {
1006
1006
  * A list of ports on which this service will listen for internal traffic.
1007
1007
  */
1008
1008
  internalPorts?: pulumi.Input<pulumi.Input<number>[] | undefined>;
1009
+ /**
1010
+ * A liveness health check to determine if the worker should be restarted. Workers do not accept inbound traffic, so only HTTP liveness probes are supported (TCP is not).
1011
+ */
1012
+ livenessHealthCheck?: pulumi.Input<inputs.AppSpecServiceLivenessHealthCheck | undefined>;
1009
1013
  /**
1010
1014
  * Describes a log forwarding destination.
1011
1015
  */
@@ -1283,6 +1287,36 @@ export interface AppSpecServiceImageDeployOnPush {
1283
1287
  */
1284
1288
  enabled?: pulumi.Input<boolean | undefined>;
1285
1289
  }
1290
+ export interface AppSpecServiceLivenessHealthCheck {
1291
+ /**
1292
+ * The number of failed health checks before considered unhealthy.
1293
+ */
1294
+ failureThreshold?: pulumi.Input<number | undefined>;
1295
+ /**
1296
+ * The route path used for the HTTP health check ping.
1297
+ */
1298
+ httpPath?: pulumi.Input<string | undefined>;
1299
+ /**
1300
+ * The number of seconds to wait before beginning health checks.
1301
+ */
1302
+ initialDelaySeconds?: pulumi.Input<number | undefined>;
1303
+ /**
1304
+ * The number of seconds to wait between health checks.
1305
+ */
1306
+ periodSeconds?: pulumi.Input<number | undefined>;
1307
+ /**
1308
+ * The port on which the health check will be performed.
1309
+ */
1310
+ port?: pulumi.Input<number | undefined>;
1311
+ /**
1312
+ * The number of successful health checks before considered healthy.
1313
+ */
1314
+ successThreshold?: pulumi.Input<number | undefined>;
1315
+ /**
1316
+ * The number of seconds after which the check times out.
1317
+ */
1318
+ timeoutSeconds?: pulumi.Input<number | undefined>;
1319
+ }
1286
1320
  export interface AppSpecServiceLogDestination {
1287
1321
  /**
1288
1322
  * Datadog configuration.
@@ -1630,6 +1664,10 @@ export interface AppSpecWorker {
1630
1664
  * The instance size to use for this component. This determines the plan (basic or professional) and the available CPU and memory. The list of available instance sizes can be [found with the API](https://docs.digitalocean.com/reference/api/digitalocean/#tag/Apps/operation/apps_list_instanceSizes) or using the [doctl CLI](https://docs.digitalocean.com/reference/doctl/) (`doctl apps tier instance-size list`). Default: `basic-xxs`
1631
1665
  */
1632
1666
  instanceSizeSlug?: pulumi.Input<string | undefined>;
1667
+ /**
1668
+ * A liveness health check to determine if the worker should be restarted. Workers do not accept inbound traffic, so only HTTP liveness probes are supported (TCP is not).
1669
+ */
1670
+ livenessHealthCheck?: pulumi.Input<inputs.AppSpecWorkerLivenessHealthCheck | undefined>;
1633
1671
  /**
1634
1672
  * Describes a log forwarding destination.
1635
1673
  */
@@ -1829,6 +1867,36 @@ export interface AppSpecWorkerImageDeployOnPush {
1829
1867
  */
1830
1868
  enabled?: pulumi.Input<boolean | undefined>;
1831
1869
  }
1870
+ export interface AppSpecWorkerLivenessHealthCheck {
1871
+ /**
1872
+ * The number of failed health checks before considered unhealthy.
1873
+ */
1874
+ failureThreshold?: pulumi.Input<number | undefined>;
1875
+ /**
1876
+ * The route path used for the HTTP health check ping.
1877
+ */
1878
+ httpPath?: pulumi.Input<string | undefined>;
1879
+ /**
1880
+ * The number of seconds to wait before beginning health checks.
1881
+ */
1882
+ initialDelaySeconds?: pulumi.Input<number | undefined>;
1883
+ /**
1884
+ * The number of seconds to wait between health checks.
1885
+ */
1886
+ periodSeconds?: pulumi.Input<number | undefined>;
1887
+ /**
1888
+ * The port on which the health check will be performed.
1889
+ */
1890
+ port?: pulumi.Input<number | undefined>;
1891
+ /**
1892
+ * The number of successful health checks before considered healthy.
1893
+ */
1894
+ successThreshold?: pulumi.Input<number | undefined>;
1895
+ /**
1896
+ * The number of seconds after which the check times out.
1897
+ */
1898
+ timeoutSeconds?: pulumi.Input<number | undefined>;
1899
+ }
1832
1900
  export interface AppSpecWorkerLogDestination {
1833
1901
  /**
1834
1902
  * Datadog configuration.