@upcloud/pulumi-upcloud 0.10.2 → 0.10.3

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": "@upcloud/pulumi-upcloud",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "description": "A Pulumi package for creating and managing UpCloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -24,7 +24,7 @@
24
24
  "pulumi": {
25
25
  "resource": true,
26
26
  "name": "upcloud",
27
- "version": "0.10.2",
27
+ "version": "0.10.3",
28
28
  "server": "github://api.github.com/UpCloudLtd/pulumi-upcloud"
29
29
  }
30
30
  }
package/types/input.d.ts CHANGED
@@ -2702,10 +2702,18 @@ export interface ManagedDatabasePostgresqlProperties {
2702
2702
  * The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
2703
2703
  */
2704
2704
  backupHour?: pulumi.Input<number>;
2705
+ /**
2706
+ * Backup interval in hours. Interval in hours between automatic backups. Minimum value is 3 hours. Must be a divisor of 24 (3, 4, 6, 8, 12, 24). (Applicable to ACU plans only).
2707
+ */
2708
+ backupIntervalHours?: pulumi.Input<number>;
2705
2709
  /**
2706
2710
  * The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
2707
2711
  */
2708
2712
  backupMinute?: pulumi.Input<number>;
2713
+ /**
2714
+ * Backup retention in days. Number of days to retain automatic backups. Backups older than this value will be automatically deleted. (Applicable to ACU plans only).
2715
+ */
2716
+ backupRetentionDays?: pulumi.Input<number>;
2709
2717
  /**
2710
2718
  * Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`.
2711
2719
  */
package/types/output.d.ts CHANGED
@@ -2506,10 +2506,18 @@ export interface ManagedDatabasePostgresqlProperties {
2506
2506
  * The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
2507
2507
  */
2508
2508
  backupHour: number;
2509
+ /**
2510
+ * Backup interval in hours. Interval in hours between automatic backups. Minimum value is 3 hours. Must be a divisor of 24 (3, 4, 6, 8, 12, 24). (Applicable to ACU plans only).
2511
+ */
2512
+ backupIntervalHours: number;
2509
2513
  /**
2510
2514
  * The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
2511
2515
  */
2512
2516
  backupMinute: number;
2517
+ /**
2518
+ * Backup retention in days. Number of days to retain automatic backups. Backups older than this value will be automatically deleted. (Applicable to ACU plans only).
2519
+ */
2520
+ backupRetentionDays: number;
2513
2521
  /**
2514
2522
  * Specifies the delay between activity rounds for the background writer in milliseconds. The default is `200`.
2515
2523
  */