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
Copy file name to clipboardExpand all lines: CHANGELOG.md
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,6 @@
4
4
5
5
**New features:**
6
6
* Added support for the new `latest_offsets` and `latest_offsets_timestamp` attributes of `confluent_flink_statement`[resource](https://registry.terraform.io/providers/confluentinc/confluent/latest/docs/resources/confluent_flink_statement) in a [General Availability lifecycle stage](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy).
7
-
* Added support for the new `properties_sensitive` block of `confluent_flink_statement`[resource](https://registry.terraform.io/providers/confluentinc/confluent/latest/docs/resources/confluent_flink_statement) in a [General Availability lifecycle stage](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy) to resolve [#397](https://github.com/confluentinc/terraform-provider-confluent/issues/397).
8
7
* Added support for the new `versions` block of `confluent_flink_artifact`[resource](https://registry.terraform.io/providers/confluentinc/confluent/latest/docs/resources/confluent_flink_artifact) and [data source](https://registry.terraform.io/providers/confluentinc/confluent/latest/docs/data-sources/confluent_flink_artifact) in a [General Availability lifecycle stage](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy).
@@ -124,9 +107,6 @@ The following arguments are supported:
124
107
-`properties` - (Optional Map) The custom topic settings to set:
125
108
-`name` - (Required String) The setting name, for example, `sql.local-time-zone`.
126
109
-`value` - (Required String) The setting value, for example, `GMT-08:00`.
127
-
-`properties_sensitive` - (Optional Map) Block for sensitive statement properties:
128
-
-`name` - (Required String) The setting name, for example, `sql.secrets.openaikey`.
129
-
-`value` - (Required String) The setting value, for example, `s1234`.
130
110
131
111
-`stopped` - (Optional Boolean) The boolean flag to control whether the running Flink Statement should be stopped. Defaults to `false`. Update it to `true` to stop the statement. Subsequently, update it to `false` to resume the statement.
returndiag.Errorf("error updating Flink Statement %q: only %q and %q attribute can be updated for Flink Statement", d.Id(), paramStopped, paramPropertiesSensitive)
242
+
ifd.HasChangeExcept(paramStopped) {
243
+
returndiag.Errorf(`error updating Flink Statement %q: only %q attribute can be updated for Flink Statement, "true" -> "false" to trigger resuming, "false" -> "true" to trigger stopping`, d.Id(), paramStopped)
265
244
}
266
245
267
246
ifd.Get(paramStopped).(bool) ==false {
@@ -380,7 +359,7 @@ func setFlinkStatementAttributes(d *schema.ResourceData, c *FlinkRestClient, sta
0 commit comments