You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: "Specify earliest backup start time, format `hh:mm:ss`.",
241
243
},
242
244
"max_backup_start_time": {
243
245
Type: schema.TypeString,
244
246
Optional: true,
247
+
Computed: true,
245
248
Description: "Specify latest backup start time, format `hh:mm:ss`.",
246
249
},
247
250
"base_backup_retention_period": {
248
251
Type: schema.TypeInt,
249
252
Optional: true,
253
+
Computed: true,
250
254
Description: "Specify days of the retention.",
251
255
},
252
256
"backup_period": {
253
257
Type: schema.TypeList,
254
258
Optional: true,
259
+
Computed: true,
255
260
Description: "List of backup period per week, available values: `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`. NOTE: At least specify two days.",
256
261
Elem: &schema.Schema{Type: schema.TypeString},
257
262
},
@@ -906,46 +911,44 @@ func resourceTencentCloudPostgresqlInstanceRead(d *schema.ResourceData, meta int
Copy file name to clipboardExpand all lines: tencentcloud/services/postgresql/resource_tc_postgresql_instance.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
Use this resource to create postgresql instance.
2
2
3
3
-> **Note:** To update the charge type, please update the `charge_type` and specify the `period` for the charging period. It only supports updating from `POSTPAID_BY_HOUR` to `PREPAID`, and the `period` field only valid in that upgrading case.
4
+
4
5
-> **Note:** If no values are set for the two parameters: `db_major_version` and `engine_version`, then `engine_version` is set to `10.4` by default. Suggest using parameter `db_major_version` to create an instance
Copy file name to clipboardExpand all lines: website/docs/r/postgresql_instance.html.markdown
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ description: |-
12
12
Use this resource to create postgresql instance.
13
13
14
14
-> **Note:** To update the charge type, please update the `charge_type` and specify the `period` for the charging period. It only supports updating from `POSTPAID_BY_HOUR` to `PREPAID`, and the `period` field only valid in that upgrading case.
15
+
15
16
-> **Note:** If no values are set for the two parameters: `db_major_version` and `engine_version`, then `engine_version` is set to `10.4` by default. Suggest using parameter `db_major_version` to create an instance
0 commit comments