@upcloud/pulumi-upcloud 0.12.0 → 0.12.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@upcloud/pulumi-upcloud",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
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.12.0",
27
+ "version": "0.12.1",
28
28
  "server": "github://api.github.com/UpCloudLtd/pulumi-upcloud"
29
29
  }
30
30
  }
package/types/input.d.ts CHANGED
@@ -2972,7 +2972,11 @@ export interface ManagedDatabasePostgresqlProperties {
2972
2972
  sharedBuffersPercentage?: pulumi.Input<number>;
2973
2973
  switchoverWindows?: pulumi.Input<pulumi.Input<string>[]>;
2974
2974
  /**
2975
- * Synchronous replication type. Note that the service plan also needs to support synchronous replication.
2975
+ * Sets the current transaction's synchronization level. The default is `off`. This setting takes precedence over `synchronousReplication`.
2976
+ */
2977
+ synchronousCommit?: pulumi.Input<string>;
2978
+ /**
2979
+ * Synchronous replication type. (deprecated, use synchronousCommit instead). Note that the service plan also needs to support synchronous replication. This setting is deprecated. Use synchronousCommit instead. Any change to this setting will automatically update synchronous_commit. Setting the value to quorum changes synchronousCommit to remote_write, while setting it to off changes synchronousCommit to off.
2976
2980
  */
2977
2981
  synchronousReplication?: pulumi.Input<string>;
2978
2982
  /**
package/types/output.d.ts CHANGED
@@ -2776,7 +2776,11 @@ export interface ManagedDatabasePostgresqlProperties {
2776
2776
  sharedBuffersPercentage: number;
2777
2777
  switchoverWindows: string[];
2778
2778
  /**
2779
- * Synchronous replication type. Note that the service plan also needs to support synchronous replication.
2779
+ * Sets the current transaction's synchronization level. The default is `off`. This setting takes precedence over `synchronousReplication`.
2780
+ */
2781
+ synchronousCommit: string;
2782
+ /**
2783
+ * Synchronous replication type. (deprecated, use synchronousCommit instead). Note that the service plan also needs to support synchronous replication. This setting is deprecated. Use synchronousCommit instead. Any change to this setting will automatically update synchronous_commit. Setting the value to quorum changes synchronousCommit to remote_write, while setting it to off changes synchronousCommit to off.
2780
2784
  */
2781
2785
  synchronousReplication: string;
2782
2786
  /**