@upcloud/pulumi-upcloud 0.12.0 → 0.12.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/package.json +2 -2
- package/types/input.d.ts +5 -2
- package/types/output.d.ts +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@upcloud/pulumi-upcloud",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.2",
|
|
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.
|
|
27
|
+
"version": "0.12.2",
|
|
28
28
|
"server": "github://api.github.com/UpCloudLtd/pulumi-upcloud"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -2970,9 +2970,12 @@ export interface ManagedDatabasePostgresqlProperties {
|
|
|
2970
2970
|
* Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the sharedBuffers configuration value. Changing this parameter causes a service restart.
|
|
2971
2971
|
*/
|
|
2972
2972
|
sharedBuffersPercentage?: pulumi.Input<number>;
|
|
2973
|
-
switchoverWindows?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2974
2973
|
/**
|
|
2975
|
-
*
|
|
2974
|
+
* Sets the current transaction's synchronization level. The default is `off`. This setting takes precedence over `synchronousReplication`.
|
|
2975
|
+
*/
|
|
2976
|
+
synchronousCommit?: pulumi.Input<string>;
|
|
2977
|
+
/**
|
|
2978
|
+
* 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
2979
|
*/
|
|
2977
2980
|
synchronousReplication?: pulumi.Input<string>;
|
|
2978
2981
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -2774,9 +2774,12 @@ export interface ManagedDatabasePostgresqlProperties {
|
|
|
2774
2774
|
* Percentage of total RAM that the database server uses for shared memory buffers. Valid range is 20-60 (float), which corresponds to 20% - 60%. This setting adjusts the sharedBuffers configuration value. Changing this parameter causes a service restart.
|
|
2775
2775
|
*/
|
|
2776
2776
|
sharedBuffersPercentage: number;
|
|
2777
|
-
switchoverWindows: string[];
|
|
2778
2777
|
/**
|
|
2779
|
-
*
|
|
2778
|
+
* Sets the current transaction's synchronization level. The default is `off`. This setting takes precedence over `synchronousReplication`.
|
|
2779
|
+
*/
|
|
2780
|
+
synchronousCommit: string;
|
|
2781
|
+
/**
|
|
2782
|
+
* 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
2783
|
*/
|
|
2781
2784
|
synchronousReplication: string;
|
|
2782
2785
|
/**
|